Skip to content

Commit

Permalink
v1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Aug 30, 2021
1 parent c42c267 commit affb746
Show file tree
Hide file tree
Showing 36 changed files with 258 additions and 93 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)


### Bug Fixes

* **core:** throw invalid selectors, fix wait x/y ([2025f27](https://github.com/ulixee/secret-agent/commit/2025f27d749011730609202cbf5798496a3fccc1))
* **plugins:** fix versions not sorting correctly ([b9e7620](https://github.com/ulixee/secret-agent/commit/b9e76205c9c615f2639ca39e0f1e589c8bf15adf))


### Features

* **replay:** use old scripts for path to start core ([c1f893d](https://github.com/ulixee/secret-agent/commit/c1f893de9a871d3e94450a721ac7c05fcc17ceee))





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)


Expand Down
8 changes: 8 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)

**Note:** Version bump only for package @secret-agent/client





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)

**Note:** Version bump only for package @secret-agent/client
Expand Down
14 changes: 7 additions & 7 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "@secret-agent/client",
"version": "1.5.7",
"version": "1.5.8",
"description": "The client interface for SecretAgent",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"dependencies": {
"@secret-agent/commons": "1.5.7",
"@secret-agent/interfaces": "1.5.7",
"@secret-agent/plugin-utils": "1.5.7",
"@secret-agent/replay": "1.5.7",
"@secret-agent/commons": "1.5.8",
"@secret-agent/interfaces": "1.5.8",
"@secret-agent/plugin-utils": "1.5.8",
"@secret-agent/replay": "1.5.8",
"awaited-dom": "1.3.0",
"uuid": "^8.3.2",
"ws": "^7.4.4"
},
"devDependencies": {
"@secret-agent/core": "1.5.7",
"@secret-agent/testing": "1.5.7"
"@secret-agent/core": "1.5.8",
"@secret-agent/testing": "1.5.8"
}
}
11 changes: 11 additions & 0 deletions commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)


### Bug Fixes

* **plugins:** fix versions not sorting correctly ([b9e7620](https://github.com/ulixee/secret-agent/commit/b9e76205c9c615f2639ca39e0f1e589c8bf15adf))





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)

**Note:** Version bump only for package @secret-agent/commons
Expand Down
8 changes: 4 additions & 4 deletions commons/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@secret-agent/commons",
"version": "1.5.7",
"version": "1.5.8",
"description": "Common utilities for Secret Agent",
"main": "index.js",
"dependencies": {
"@secret-agent/interfaces": "1.5.7",
"@secret-agent/interfaces": "1.5.8",
"https-proxy-agent": "^5.0.0",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@secret-agent/default-browser-emulator": "1.5.7",
"@secret-agent/puppet": "1.5.7",
"@secret-agent/default-browser-emulator": "1.5.8",
"@secret-agent/puppet": "1.5.8",
"@types/better-sqlite3": "^5.4.1"
}
}
11 changes: 11 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)


### Bug Fixes

* **core:** throw invalid selectors, fix wait x/y ([2025f27](https://github.com/ulixee/secret-agent/commit/2025f27d749011730609202cbf5798496a3fccc1))





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)


Expand Down
26 changes: 13 additions & 13 deletions core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@secret-agent/core",
"version": "1.5.7",
"version": "1.5.8",
"description": "The core browser API used to run SecretAgent",
"exports": {
".": {
Expand All @@ -14,13 +14,13 @@
"./server": "./server/index.js"
},
"dependencies": {
"@secret-agent/commons": "1.5.7",
"@secret-agent/default-browser-emulator": "1.5.7",
"@secret-agent/default-human-emulator": "1.5.7",
"@secret-agent/interfaces": "1.5.7",
"@secret-agent/mitm": "1.5.7",
"@secret-agent/plugin-utils": "1.5.7",
"@secret-agent/puppet": "1.5.7",
"@secret-agent/commons": "1.5.8",
"@secret-agent/default-browser-emulator": "1.5.8",
"@secret-agent/default-human-emulator": "1.5.8",
"@secret-agent/interfaces": "1.5.8",
"@secret-agent/mitm": "1.5.8",
"@secret-agent/plugin-utils": "1.5.8",
"@secret-agent/puppet": "1.5.8",
"@types/ua-parser-js": "^0.7.35",
"awaited-dom": "1.3.0",
"better-sqlite3": "^7.4.1",
Expand All @@ -30,12 +30,12 @@
},
"devDependencies": {
"@secret-agent/chrome-app": "1.0.0",
"@secret-agent/client": "1.5.7",
"@secret-agent/core": "1.5.7",
"@secret-agent/client": "1.5.8",
"@secret-agent/core": "1.5.8",
"@secret-agent/plugin-utils": "1.5.4",
"@secret-agent/puppet-chrome": "1.5.7",
"@secret-agent/replay": "1.5.7",
"@secret-agent/testing": "1.5.7",
"@secret-agent/puppet-chrome": "1.5.8",
"@secret-agent/replay": "1.5.8",
"@secret-agent/testing": "1.5.8",
"@types/better-sqlite3": "^5.4.1",
"@types/json-socket": "^0.1.17",
"http-proxy-agent": "^4.0.1",
Expand Down
8 changes: 8 additions & 0 deletions full-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)

**Note:** Version bump only for package secret-agent





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)

**Note:** Version bump only for package secret-agent
Expand Down
20 changes: 10 additions & 10 deletions full-client/package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"name": "secret-agent",
"version": "1.5.7",
"version": "1.5.8",
"description": "The Web Browser Built for Scraping",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"dependencies": {
"@secret-agent/client": "1.5.7",
"@secret-agent/commons": "1.5.7",
"@secret-agent/core": "1.5.7",
"@secret-agent/execute-js-plugin": "1.5.7",
"@secret-agent/interfaces": "1.5.7"
"@secret-agent/client": "1.5.8",
"@secret-agent/commons": "1.5.8",
"@secret-agent/core": "1.5.8",
"@secret-agent/execute-js-plugin": "1.5.8",
"@secret-agent/interfaces": "1.5.8"
},
"devDependencies": {
"@secret-agent/default-browser-emulator": "1.5.7",
"@secret-agent/mitm": "1.5.7",
"@secret-agent/plugin-utils": "1.5.7",
"@secret-agent/testing": "1.5.7",
"@secret-agent/default-browser-emulator": "1.5.8",
"@secret-agent/mitm": "1.5.8",
"@secret-agent/plugin-utils": "1.5.8",
"@secret-agent/testing": "1.5.8",
"fpcollect": "^1.0.4",
"fpscanner": "^0.1.5",
"ws": "^7.4.4"
Expand Down
8 changes: 8 additions & 0 deletions interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)

**Note:** Version bump only for package @secret-agent/interfaces





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)


Expand Down
2 changes: 1 addition & 1 deletion interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@secret-agent/interfaces",
"version": "1.5.7",
"version": "1.5.8",
"description": "Core interfaces used by SecretAgent",
"dependencies": {
"awaited-dom": "1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.7",
"version": "1.5.8",
"npmClient": "yarn",
"packages": [
"client",
Expand Down
8 changes: 8 additions & 0 deletions mitm-socket/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)

**Note:** Version bump only for package @secret-agent/mitm-socket





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)


Expand Down
8 changes: 4 additions & 4 deletions mitm-socket/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@secret-agent/mitm-socket",
"version": "1.5.7",
"version": "1.5.8",
"description": "Man-in-the-middle socket library to emulate TLS and TCP settings",
"main": "index.js",
"scripts": {
"build": "node install.js",
"build-install": "npm run build"
},
"dependencies": {
"@secret-agent/commons": "1.5.7",
"@secret-agent/interfaces": "1.5.7",
"@secret-agent/commons": "1.5.8",
"@secret-agent/interfaces": "1.5.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@secret-agent/testing": "1.5.7",
"@secret-agent/testing": "1.5.8",
"@types/ws": "^7.2.4",
"proxy": "^1.0.1",
"simple-socks": "^2.1.0",
Expand Down
8 changes: 8 additions & 0 deletions mitm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)

**Note:** Version bump only for package @secret-agent/mitm





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)


Expand Down
16 changes: 8 additions & 8 deletions mitm/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "@secret-agent/mitm",
"version": "1.5.7",
"version": "1.5.8",
"description": "Man-in-the-middle proxy to fix chrome request/response",
"main": "index.js",
"dependencies": {
"@secret-agent/commons": "1.5.7",
"@secret-agent/interfaces": "1.5.7",
"@secret-agent/mitm-socket": "1.5.7",
"@secret-agent/commons": "1.5.8",
"@secret-agent/interfaces": "1.5.8",
"@secret-agent/mitm-socket": "1.5.8",
"better-sqlite3": "^7.4.1",
"devtools-protocol": "^0.0.799653",
"dns-packet": "^5.2.1",
"moment": "^2.24.1"
},
"devDependencies": {
"@secret-agent/core": "1.5.7",
"@secret-agent/default-browser-emulator": "1.5.7",
"@secret-agent/plugin-utils": "1.5.7",
"@secret-agent/testing": "1.5.7",
"@secret-agent/core": "1.5.8",
"@secret-agent/default-browser-emulator": "1.5.8",
"@secret-agent/plugin-utils": "1.5.8",
"@secret-agent/testing": "1.5.8",
"@types/ws": "^7.2.4",
"agent-base": "4.3.0",
"http-proxy-agent": "^4.0.1",
Expand Down
8 changes: 8 additions & 0 deletions plugin-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)

**Note:** Version bump only for package @secret-agent/plugin-utils





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)

**Note:** Version bump only for package @secret-agent/plugin-utils
Expand Down
14 changes: 7 additions & 7 deletions plugin-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@secret-agent/plugin-utils",
"version": "1.5.7",
"version": "1.5.8",
"description": "SecretAgent client that runs remotely",
"scripts": {},
"dependencies": {
"@secret-agent/chrome-app": "1.0.0",
"@secret-agent/commons": "1.5.7",
"@secret-agent/interfaces": "1.5.7",
"@secret-agent/commons": "1.5.8",
"@secret-agent/interfaces": "1.5.8",
"progress": "^2.0.3",
"tar": "^6.1.0"
},
"devDependencies": {
"@secret-agent/core": "1.5.7",
"@secret-agent/default-browser-emulator": "1.5.7",
"@secret-agent/puppet": "1.5.7",
"@secret-agent/testing": "1.5.7"
"@secret-agent/core": "1.5.8",
"@secret-agent/default-browser-emulator": "1.5.8",
"@secret-agent/puppet": "1.5.8",
"@secret-agent/testing": "1.5.8"
}
}
11 changes: 11 additions & 0 deletions plugins/default-browser-emulator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.8](https://github.com/ulixee/secret-agent/compare/v1.5.7...v1.5.8) (2021-08-30)


### Bug Fixes

* **plugins:** fix versions not sorting correctly ([b9e7620](https://github.com/ulixee/secret-agent/commit/b9e76205c9c615f2639ca39e0f1e589c8bf15adf))





## [1.5.7](https://github.com/ulixee/secret-agent/compare/v1.5.6...v1.5.7) (2021-08-26)


Expand Down
Loading

0 comments on commit affb746

Please sign in to comment.