Skip to content

Commit

Permalink
v1.5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Nov 24, 2021
1 parent c0fbc82 commit 67bc0b6
Show file tree
Hide file tree
Showing 37 changed files with 327 additions and 95 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **client:** handle ws closing during shutdown ([09bfe29](https://github.com/ulixee/secret-agent/commit/09bfe29f54a4307fe0df1370a35a87d7950e9378))
* **mitm:** clean invalid response characters ([5d85921](https://github.com/ulixee/secret-agent/commit/5d859217d7cf6aa870058e4234a079c0027e35b3))
* **plugins:** improve user agent selector ([cd708bb](https://github.com/ulixee/secret-agent/commit/cd708bbc8e46705376f9cf3bd438a59c0063b6e7))
* **puppet:** better handling of default loader ([2979ba7](https://github.com/ulixee/secret-agent/commit/2979ba7b323aab6896f9c2f006ca4bbbe40e69cb))
* **puppet:** consisten timeout handling ([ba6bcee](https://github.com/ulixee/secret-agent/commit/ba6bcee3384811824ae3dc3789c5c3fc6088905a))
* **puppet:** don't use contexts we didn't initiate ([710acab](https://github.com/ulixee/secret-agent/commit/710acabd1b4c0275d95048cb9f0053e2775f4d77))
* **puppet:** fix flakiness on frame stopped ([002a516](https://github.com/ulixee/secret-agent/commit/002a51601123565b774f3589ddd9e35494516035))
* **puppet:** fix shutdown issues (port from hero) ([2b70752](https://github.com/ulixee/secret-agent/commit/2b70752054edae95701243cc59afa48e113856fe))


### Features

* **plugins:** mask public ip in webrtc ([14d3c67](https://github.com/ulixee/secret-agent/commit/14d3c673327c149084ae32cd71c944cf60a84df3))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)


Expand Down
11 changes: 11 additions & 0 deletions 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.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **client:** handle ws closing during shutdown ([09bfe29](https://github.com/ulixee/secret-agent/commit/09bfe29f54a4307fe0df1370a35a87d7950e9378))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)


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.14",
"version": "1.5.15",
"description": "The client interface for SecretAgent",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"dependencies": {
"@secret-agent/commons": "1.5.14",
"@secret-agent/interfaces": "1.5.14",
"@secret-agent/plugin-utils": "1.5.14",
"@secret-agent/replay": "1.5.14",
"@secret-agent/commons": "1.5.15",
"@secret-agent/interfaces": "1.5.15",
"@secret-agent/plugin-utils": "1.5.15",
"@secret-agent/replay": "1.5.15",
"awaited-dom": "1.3.0",
"uuid": "^8.3.2",
"ws": "^7.4.6"
},
"devDependencies": {
"@secret-agent/core": "1.5.14",
"@secret-agent/testing": "1.5.14"
"@secret-agent/core": "1.5.15",
"@secret-agent/testing": "1.5.15"
}
}
12 changes: 12 additions & 0 deletions commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **client:** handle ws closing during shutdown ([09bfe29](https://github.com/ulixee/secret-agent/commit/09bfe29f54a4307fe0df1370a35a87d7950e9378))
* **plugins:** improve user agent selector ([cd708bb](https://github.com/ulixee/secret-agent/commit/cd708bbc8e46705376f9cf3bd438a59c0063b6e7))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)

**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.14",
"version": "1.5.15",
"description": "Common utilities for Secret Agent",
"main": "index.js",
"dependencies": {
"@secret-agent/interfaces": "1.5.14",
"@secret-agent/interfaces": "1.5.15",
"https-proxy-agent": "^5.0.0",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@secret-agent/default-browser-emulator": "1.5.14",
"@secret-agent/puppet": "1.5.14",
"@secret-agent/default-browser-emulator": "1.5.15",
"@secret-agent/puppet": "1.5.15",
"@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.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **client:** handle ws closing during shutdown ([09bfe29](https://github.com/ulixee/secret-agent/commit/09bfe29f54a4307fe0df1370a35a87d7950e9378))
* **puppet:** consisten timeout handling ([ba6bcee](https://github.com/ulixee/secret-agent/commit/ba6bcee3384811824ae3dc3789c5c3fc6088905a))


### Features

* **plugins:** mask public ip in webrtc ([14d3c67](https://github.com/ulixee/secret-agent/commit/14d3c673327c149084ae32cd71c944cf60a84df3))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)


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.14",
"version": "1.5.15",
"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.14",
"@secret-agent/default-browser-emulator": "1.5.14",
"@secret-agent/default-human-emulator": "1.5.14",
"@secret-agent/interfaces": "1.5.14",
"@secret-agent/mitm": "1.5.14",
"@secret-agent/plugin-utils": "1.5.14",
"@secret-agent/puppet": "1.5.14",
"@secret-agent/commons": "1.5.15",
"@secret-agent/default-browser-emulator": "1.5.15",
"@secret-agent/default-human-emulator": "1.5.15",
"@secret-agent/interfaces": "1.5.15",
"@secret-agent/mitm": "1.5.15",
"@secret-agent/plugin-utils": "1.5.15",
"@secret-agent/puppet": "1.5.15",
"@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.14",
"@secret-agent/core": "1.5.14",
"@secret-agent/client": "1.5.15",
"@secret-agent/core": "1.5.15",
"@secret-agent/plugin-utils": "1.5.4",
"@secret-agent/puppet-chrome": "1.5.14",
"@secret-agent/replay": "1.5.14",
"@secret-agent/testing": "1.5.14",
"@secret-agent/puppet-chrome": "1.5.15",
"@secret-agent/replay": "1.5.15",
"@secret-agent/testing": "1.5.15",
"@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.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Features

* **plugins:** mask public ip in webrtc ([14d3c67](https://github.com/ulixee/secret-agent/commit/14d3c673327c149084ae32cd71c944cf60a84df3))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)

**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.14",
"version": "1.5.15",
"description": "The Web Browser Built for Scraping",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"dependencies": {
"@secret-agent/client": "1.5.14",
"@secret-agent/commons": "1.5.14",
"@secret-agent/core": "1.5.14",
"@secret-agent/execute-js-plugin": "1.5.14",
"@secret-agent/interfaces": "1.5.14"
"@secret-agent/client": "1.5.15",
"@secret-agent/commons": "1.5.15",
"@secret-agent/core": "1.5.15",
"@secret-agent/execute-js-plugin": "1.5.15",
"@secret-agent/interfaces": "1.5.15"
},
"devDependencies": {
"@secret-agent/default-browser-emulator": "1.5.14",
"@secret-agent/mitm": "1.5.14",
"@secret-agent/plugin-utils": "1.5.14",
"@secret-agent/testing": "1.5.14",
"@secret-agent/default-browser-emulator": "1.5.15",
"@secret-agent/mitm": "1.5.15",
"@secret-agent/plugin-utils": "1.5.15",
"@secret-agent/testing": "1.5.15",
"fpcollect": "^1.0.4",
"fpscanner": "^0.1.5",
"ws": "^7.4.6"
Expand Down
17 changes: 17 additions & 0 deletions interfaces/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.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **puppet:** consisten timeout handling ([ba6bcee](https://github.com/ulixee/secret-agent/commit/ba6bcee3384811824ae3dc3789c5c3fc6088905a))
* **puppet:** fix shutdown issues (port from hero) ([2b70752](https://github.com/ulixee/secret-agent/commit/2b70752054edae95701243cc59afa48e113856fe))


### Features

* **plugins:** mask public ip in webrtc ([14d3c67](https://github.com/ulixee/secret-agent/commit/14d3c673327c149084ae32cd71c944cf60a84df3))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)


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.14",
"version": "1.5.15",
"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.14",
"version": "1.5.15",
"npmClient": "yarn",
"packages": [
"client",
Expand Down
16 changes: 16 additions & 0 deletions mitm-socket/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **puppet:** better handling of default loader ([2979ba7](https://github.com/ulixee/secret-agent/commit/2979ba7b323aab6896f9c2f006ca4bbbe40e69cb))


### Features

* **plugins:** mask public ip in webrtc ([14d3c67](https://github.com/ulixee/secret-agent/commit/14d3c673327c149084ae32cd71c944cf60a84df3))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)

**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.5.14",
"version": "1.5.15",
"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.14",
"@secret-agent/interfaces": "1.5.14",
"@secret-agent/commons": "1.5.15",
"@secret-agent/interfaces": "1.5.15",
"uuid": "^8.3.2"
},
"devDependencies": {
"@secret-agent/testing": "1.5.14",
"@secret-agent/testing": "1.5.15",
"@types/ws": "^7.2.4",
"proxy": "^1.0.1",
"simple-socks": "^2.1.0",
Expand Down
16 changes: 16 additions & 0 deletions mitm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.5.15](https://github.com/ulixee/secret-agent/compare/v1.5.14...v1.5.15) (2021-11-24)


### Bug Fixes

* **mitm:** clean invalid response characters ([5d85921](https://github.com/ulixee/secret-agent/commit/5d859217d7cf6aa870058e4234a079c0027e35b3))


### Features

* **plugins:** mask public ip in webrtc ([14d3c67](https://github.com/ulixee/secret-agent/commit/14d3c673327c149084ae32cd71c944cf60a84df3))





## [1.5.14](https://github.com/ulixee/secret-agent/compare/v1.5.13...v1.5.14) (2021-11-15)


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.14",
"version": "1.5.15",
"description": "Man-in-the-middle proxy to fix chrome request/response",
"main": "index.js",
"dependencies": {
"@secret-agent/commons": "1.5.14",
"@secret-agent/interfaces": "1.5.14",
"@secret-agent/mitm-socket": "1.5.14",
"@secret-agent/commons": "1.5.15",
"@secret-agent/interfaces": "1.5.15",
"@secret-agent/mitm-socket": "1.5.15",
"better-sqlite3": "^7.4.1",
"devtools-protocol": "^0.0.799653",
"dns-packet": "^5.2.4",
"moment": "^2.24.1"
},
"devDependencies": {
"@secret-agent/core": "1.5.14",
"@secret-agent/default-browser-emulator": "1.5.14",
"@secret-agent/plugin-utils": "1.5.14",
"@secret-agent/testing": "1.5.14",
"@secret-agent/core": "1.5.15",
"@secret-agent/default-browser-emulator": "1.5.15",
"@secret-agent/plugin-utils": "1.5.15",
"@secret-agent/testing": "1.5.15",
"@types/ws": "^7.2.4",
"agent-base": "4.3.0",
"http-proxy-agent": "^4.0.1",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,6 @@
"resolutions": {
"remark-slug": "git://github.com/ulixee/remark-slug.git",
"tough-cookie": "^4.0.0"
}
},
"version": "0.0.0"
}
Loading

0 comments on commit 67bc0b6

Please sign in to comment.