Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Dec 20, 2021
1 parent 05f7132 commit c10001e
Show file tree
Hide file tree
Showing 36 changed files with 278 additions and 94 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)


### Bug Fixes

* **client:** reload should return a resource ([83b80b5](https://github.com/ulixee/secret-agent/commit/83b80b5b3d70bc06344fb64d31fed1434ac98114)), closes [#393](https://github.com/ulixee/secret-agent/issues/393)
* **core:** navigations directly to hash fixed ([c02f61b](https://github.com/ulixee/secret-agent/commit/c02f61b549d34c438614ab8f63c8fce17af60d2c)), closes [#404](https://github.com/ulixee/secret-agent/issues/404)


### Features

* **client:** return resource in waitForLocation ([253b33b](https://github.com/ulixee/secret-agent/commit/253b33b3528952432528949ab0dc2c8b4cf9a50c))
* **core:** dialogs should run out of command line ([52a737f](https://github.com/ulixee/secret-agent/commit/52a737ff7ca380b00a1f156aa7dacf5e9af0bcfb)), closes [#397](https://github.com/ulixee/secret-agent/issues/397)





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)


Expand Down
17 changes: 17 additions & 0 deletions client/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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)


### Bug Fixes

* **client:** reload should return a resource ([83b80b5](https://github.com/ulixee/secret-agent/commit/83b80b5b3d70bc06344fb64d31fed1434ac98114)), closes [#393](https://github.com/ulixee/secret-agent/issues/393)


### Features

* **client:** return resource in waitForLocation ([253b33b](https://github.com/ulixee/secret-agent/commit/253b33b3528952432528949ab0dc2c8b4cf9a50c))
* **core:** dialogs should run out of command line ([52a737f](https://github.com/ulixee/secret-agent/commit/52a737ff7ca380b00a1f156aa7dacf5e9af0bcfb)), closes [#397](https://github.com/ulixee/secret-agent/issues/397)





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)


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.6.1",
"version": "1.6.2",
"description": "The client interface for SecretAgent",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"dependencies": {
"@secret-agent/commons": "1.6.1",
"@secret-agent/interfaces": "1.6.1",
"@secret-agent/plugin-utils": "1.6.1",
"@secret-agent/replay": "1.6.1",
"@secret-agent/commons": "1.6.2",
"@secret-agent/interfaces": "1.6.2",
"@secret-agent/plugin-utils": "1.6.2",
"@secret-agent/replay": "1.6.2",
"awaited-dom": "1.3.0",
"uuid": "^8.3.2",
"ws": "^7.4.6"
},
"devDependencies": {
"@secret-agent/core": "1.6.1",
"@secret-agent/testing": "1.6.1"
"@secret-agent/core": "1.6.2",
"@secret-agent/testing": "1.6.2"
}
}
8 changes: 8 additions & 0 deletions commons/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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)

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





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)


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.6.1",
"version": "1.6.2",
"description": "Common utilities for Secret Agent",
"main": "index.js",
"dependencies": {
"@secret-agent/interfaces": "1.6.1",
"@secret-agent/interfaces": "1.6.2",
"https-proxy-agent": "^5.0.0",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@secret-agent/default-browser-emulator": "1.6.1",
"@secret-agent/puppet": "1.6.1",
"@secret-agent/default-browser-emulator": "1.6.2",
"@secret-agent/puppet": "1.6.2",
"@types/better-sqlite3": "^5.4.1"
}
}
17 changes: 17 additions & 0 deletions core/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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)


### Bug Fixes

* **core:** navigations directly to hash fixed ([c02f61b](https://github.com/ulixee/secret-agent/commit/c02f61b549d34c438614ab8f63c8fce17af60d2c)), closes [#404](https://github.com/ulixee/secret-agent/issues/404)


### Features

* **client:** return resource in waitForLocation ([253b33b](https://github.com/ulixee/secret-agent/commit/253b33b3528952432528949ab0dc2c8b4cf9a50c))
* **core:** dialogs should run out of command line ([52a737f](https://github.com/ulixee/secret-agent/commit/52a737ff7ca380b00a1f156aa7dacf5e9af0bcfb)), closes [#397](https://github.com/ulixee/secret-agent/issues/397)





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)


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.6.1",
"version": "1.6.2",
"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.6.1",
"@secret-agent/default-browser-emulator": "1.6.1",
"@secret-agent/default-human-emulator": "1.6.1",
"@secret-agent/interfaces": "1.6.1",
"@secret-agent/mitm": "1.6.1",
"@secret-agent/plugin-utils": "1.6.1",
"@secret-agent/puppet": "1.6.1",
"@secret-agent/commons": "1.6.2",
"@secret-agent/default-browser-emulator": "1.6.2",
"@secret-agent/default-human-emulator": "1.6.2",
"@secret-agent/interfaces": "1.6.2",
"@secret-agent/mitm": "1.6.2",
"@secret-agent/plugin-utils": "1.6.2",
"@secret-agent/puppet": "1.6.2",
"@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.6.1",
"@secret-agent/core": "1.6.1",
"@secret-agent/client": "1.6.2",
"@secret-agent/core": "1.6.2",
"@secret-agent/plugin-utils": "1.5.4",
"@secret-agent/puppet-chrome": "1.6.1",
"@secret-agent/replay": "1.6.1",
"@secret-agent/testing": "1.6.1",
"@secret-agent/puppet-chrome": "1.6.2",
"@secret-agent/replay": "1.6.2",
"@secret-agent/testing": "1.6.2",
"@types/better-sqlite3": "^5.4.1",
"@types/json-socket": "^0.1.17",
"http-proxy-agent": "^4.0.1",
Expand Down
11 changes: 11 additions & 0 deletions full-client/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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)


### Features

* **client:** return resource in waitForLocation ([253b33b](https://github.com/ulixee/secret-agent/commit/253b33b3528952432528949ab0dc2c8b4cf9a50c))





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)


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.6.1",
"version": "1.6.2",
"description": "The Web Browser Built for Scraping",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"dependencies": {
"@secret-agent/client": "1.6.1",
"@secret-agent/commons": "1.6.1",
"@secret-agent/core": "1.6.1",
"@secret-agent/execute-js-plugin": "1.6.1",
"@secret-agent/interfaces": "1.6.1"
"@secret-agent/client": "1.6.2",
"@secret-agent/commons": "1.6.2",
"@secret-agent/core": "1.6.2",
"@secret-agent/execute-js-plugin": "1.6.2",
"@secret-agent/interfaces": "1.6.2"
},
"devDependencies": {
"@secret-agent/default-browser-emulator": "1.6.1",
"@secret-agent/mitm": "1.6.1",
"@secret-agent/plugin-utils": "1.6.1",
"@secret-agent/testing": "1.6.1",
"@secret-agent/default-browser-emulator": "1.6.2",
"@secret-agent/mitm": "1.6.2",
"@secret-agent/plugin-utils": "1.6.2",
"@secret-agent/testing": "1.6.2",
"awaited-dom": "^1.3.0",
"fpcollect": "^1.0.4",
"fpscanner": "^0.1.5",
Expand Down
11 changes: 11 additions & 0 deletions interfaces/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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)


### Features

* **core:** dialogs should run out of command line ([52a737f](https://github.com/ulixee/secret-agent/commit/52a737ff7ca380b00a1f156aa7dacf5e9af0bcfb)), closes [#397](https://github.com/ulixee/secret-agent/issues/397)





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)


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.6.1",
"version": "1.6.2",
"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.6.1",
"version": "1.6.2",
"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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)

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





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)

**Note:** Version bump only for package @secret-agent/mitm-socket
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.6.1",
"version": "1.6.2",
"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.6.1",
"@secret-agent/interfaces": "1.6.1",
"@secret-agent/commons": "1.6.2",
"@secret-agent/interfaces": "1.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@secret-agent/testing": "1.6.1",
"@secret-agent/testing": "1.6.2",
"@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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)

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





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)

**Note:** Version bump only for package @secret-agent/mitm
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.6.1",
"version": "1.6.2",
"description": "Man-in-the-middle proxy to fix chrome request/response",
"main": "index.js",
"dependencies": {
"@secret-agent/commons": "1.6.1",
"@secret-agent/interfaces": "1.6.1",
"@secret-agent/mitm-socket": "1.6.1",
"@secret-agent/commons": "1.6.2",
"@secret-agent/interfaces": "1.6.2",
"@secret-agent/mitm-socket": "1.6.2",
"better-sqlite3": "^7.4.1",
"devtools-protocol": "^0.0.799653",
"dns-packet": "^5.2.4",
"moment": "^2.24.1"
},
"devDependencies": {
"@secret-agent/core": "1.6.1",
"@secret-agent/default-browser-emulator": "1.6.1",
"@secret-agent/plugin-utils": "1.6.1",
"@secret-agent/testing": "1.6.1",
"@secret-agent/core": "1.6.2",
"@secret-agent/default-browser-emulator": "1.6.2",
"@secret-agent/plugin-utils": "1.6.2",
"@secret-agent/testing": "1.6.2",
"@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.6.2](https://github.com/ulixee/secret-agent/compare/v1.6.1...v1.6.2) (2021-12-20)

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





## [1.6.1](https://github.com/ulixee/secret-agent/compare/v1.5.15...v1.6.1) (2021-12-14)

**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.6.1",
"version": "1.6.2",
"description": "SecretAgent client that runs remotely",
"scripts": {},
"dependencies": {
"@secret-agent/chrome-app": "1.0.0",
"@secret-agent/commons": "1.6.1",
"@secret-agent/interfaces": "1.6.1",
"@secret-agent/commons": "1.6.2",
"@secret-agent/interfaces": "1.6.2",
"progress": "^2.0.3",
"tar": "^6.1.11"
},
"devDependencies": {
"@secret-agent/core": "1.6.1",
"@secret-agent/default-browser-emulator": "1.6.1",
"@secret-agent/puppet": "1.6.1",
"@secret-agent/testing": "1.6.1"
"@secret-agent/core": "1.6.2",
"@secret-agent/default-browser-emulator": "1.6.2",
"@secret-agent/puppet": "1.6.2",
"@secret-agent/testing": "1.6.2"
}
}
Loading

0 comments on commit c10001e

Please sign in to comment.