Skip to content

Commit

Permalink
v1.0.0-alpha.20
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Oct 23, 2020
1 parent 6c819d5 commit 8aad8cf
Show file tree
Hide file tree
Showing 62 changed files with 481 additions and 162 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
"trailingComma": "all",
"tabWidth": 2
}
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Bug Fixes

* **mitm:** tweak stored msg for connect errors ([6c819d5](https://github.com/ulixee/secret-agent/commit/6c819d5cd5315028a8f6b49337d2beed8aef20dd))
* order of session closing ([046243b](https://github.com/ulixee/secret-agent/commit/046243b7b2f84f633674dbe23122eb1d58ca431c))
* **puppet:** stabilize chained nav ([7a99f69](https://github.com/ulixee/secret-agent/commit/7a99f693da6f03c6c77d2b604e55b6f70dd25adc))
* mitmRequestAgent tests ([d93b4fa](https://github.com/ulixee/secret-agent/commit/d93b4fa72bd0aceea70079777f1f6c3bdcfae630))


### Features

* **client:** add scrollTo shortcut ([a1613f1](https://github.com/ulixee/secret-agent/commit/a1613f15907c6eaea30e597bdabc3238eb7c96c1))
* **mitm:** dns over tls lookups ([8797847](https://github.com/ulixee/secret-agent/commit/8797847fd5388ee6e4165c02390d45587799edbf))
* **mitm:** store ca/keys in network.db ([fd69f97](https://github.com/ulixee/secret-agent/commit/fd69f97cee898720d5e5a5b30e0697b728c6e8d4))
* **puppet:** use mouse wheel events ([1efea8a](https://github.com/ulixee/secret-agent/commit/1efea8abcf094d8c6644ecdedd5f0069b2fd909c))
* **session-state:** record devtools logs ([784da7f](https://github.com/ulixee/secret-agent/commit/784da7f7728671485bce55b877fa350981c88ea2))
* **session-state:** record mitm resource states ([08976df](https://github.com/ulixee/secret-agent/commit/08976dfa95f3b2629aedaca3002cc07b97e5bd2e))





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)


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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Features

* **client:** add scrollTo shortcut ([a1613f1](https://github.com/ulixee/secret-agent/commit/a1613f15907c6eaea30e597bdabc3238eb7c96c1))





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/client
Expand Down
12 changes: 6 additions & 6 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@secret-agent/client",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "The client interface for SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/core": "1.0.0-alpha.19",
"@secret-agent/core-interfaces": "1.0.0-alpha.16",
"@secret-agent/replay": "1.0.0-alpha.19",
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/core": "1.0.0-alpha.20",
"@secret-agent/core-interfaces": "1.0.0-alpha.20",
"@secret-agent/replay": "1.0.0-alpha.20",
"awaited-dom": "^1.1.5",
"uuid": "^8.1.0"
},
"devDependencies": {
"@secret-agent/testing": "1.0.0-alpha.19",
"@secret-agent/testing": "1.0.0-alpha.20",
"@types/node": "^12.7.11"
}
}
14 changes: 14 additions & 0 deletions commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Features

* **mitm:** dns over tls lookups ([8797847](https://github.com/ulixee/secret-agent/commit/8797847fd5388ee6e4165c02390d45587799edbf))
* **mitm:** store ca/keys in network.db ([fd69f97](https://github.com/ulixee/secret-agent/commit/fd69f97cee898720d5e5a5b30e0697b728c6e8d4))
* **session-state:** record devtools logs ([784da7f](https://github.com/ulixee/secret-agent/commit/784da7f7728671485bce55b877fa350981c88ea2))
* **session-state:** record mitm resource states ([08976df](https://github.com/ulixee/secret-agent/commit/08976dfa95f3b2629aedaca3002cc07b97e5bd2e))





# [1.0.0-alpha.16](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2020-10-13)

**Note:** Version bump only for package @secret-agent/commons
Expand Down
4 changes: 2 additions & 2 deletions commons/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@secret-agent/commons",
"version": "1.0.0-alpha.16",
"version": "1.0.0-alpha.20",
"description": "Common utilities for Secret Agent",
"main": "index.js",
"dependencies": {
"@secret-agent/core-interfaces": "1.0.0-alpha.16",
"@secret-agent/core-interfaces": "1.0.0-alpha.20",
"better-sqlite3": "^7.1.1"
}
}
11 changes: 11 additions & 0 deletions core-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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Features

* **puppet:** use mouse wheel events ([1efea8a](https://github.com/ulixee/secret-agent/commit/1efea8abcf094d8c6644ecdedd5f0069b2fd909c))





# [1.0.0-alpha.16](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2020-10-13)


Expand Down
6 changes: 3 additions & 3 deletions core-interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@secret-agent/core-interfaces",
"version": "1.0.0-alpha.16",
"version": "1.0.0-alpha.20",
"description": "Core interfaces used by SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/commons": "1.0.0-alpha.20",
"awaited-dom": "^1.1.5"
},
"devDependencies": {
"@secret-agent/injected-scripts": "1.0.0-alpha.16",
"@secret-agent/injected-scripts": "1.0.0-alpha.20",
"@types/node": "^12.7.11",
"devtools-protocol": "^0.0.799653"
}
Expand Down
8 changes: 8 additions & 0 deletions core-server/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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)

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





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/core-server
Expand Down
16 changes: 8 additions & 8 deletions core-server/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@secret-agent/core-server",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "Server framework for running SecretAgent remotely",
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/core": "1.0.0-alpha.19",
"@secret-agent/core-interfaces": "1.0.0-alpha.16",
"@secret-agent/remote-interfaces": "1.0.0-alpha.19"
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/core": "1.0.0-alpha.20",
"@secret-agent/core-interfaces": "1.0.0-alpha.20",
"@secret-agent/remote-interfaces": "1.0.0-alpha.20"
},
"devDependencies": {
"@secret-agent/core-server": "1.0.0-alpha.19",
"@secret-agent/remote-client": "1.0.0-alpha.19",
"@secret-agent/testing": "1.0.0-alpha.19",
"@secret-agent/core-server": "1.0.0-alpha.20",
"@secret-agent/remote-client": "1.0.0-alpha.20",
"@secret-agent/testing": "1.0.0-alpha.20",
"@types/node": "^12.7.11",
"json-socket": "^0.3.0"
}
Expand Down
20 changes: 20 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Bug Fixes

* order of session closing ([046243b](https://github.com/ulixee/secret-agent/commit/046243b7b2f84f633674dbe23122eb1d58ca431c))


### Features

* **mitm:** dns over tls lookups ([8797847](https://github.com/ulixee/secret-agent/commit/8797847fd5388ee6e4165c02390d45587799edbf))
* **mitm:** store ca/keys in network.db ([fd69f97](https://github.com/ulixee/secret-agent/commit/fd69f97cee898720d5e5a5b30e0697b728c6e8d4))
* **puppet:** use mouse wheel events ([1efea8a](https://github.com/ulixee/secret-agent/commit/1efea8abcf094d8c6644ecdedd5f0069b2fd909c))
* **session-state:** record devtools logs ([784da7f](https://github.com/ulixee/secret-agent/commit/784da7f7728671485bce55b877fa350981c88ea2))
* **session-state:** record mitm resource states ([08976df](https://github.com/ulixee/secret-agent/commit/08976dfa95f3b2629aedaca3002cc07b97e5bd2e))





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/core
Expand Down
30 changes: 15 additions & 15 deletions core/package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"name": "@secret-agent/core",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "The core browser API used to run SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/core-interfaces": "1.0.0-alpha.16",
"@secret-agent/emulate-chrome-83": "1.0.0-alpha.19",
"@secret-agent/emulators": "1.0.0-alpha.16",
"@secret-agent/humanoids": "1.0.0-alpha.16",
"@secret-agent/injected-scripts": "1.0.0-alpha.16",
"@secret-agent/mitm": "1.0.0-alpha.19",
"@secret-agent/puppet": "1.0.0-alpha.19",
"@secret-agent/session-state": "1.0.0-alpha.19",
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/core-interfaces": "1.0.0-alpha.20",
"@secret-agent/emulate-chrome-83": "1.0.0-alpha.20",
"@secret-agent/emulators": "1.0.0-alpha.20",
"@secret-agent/humanoids": "1.0.0-alpha.20",
"@secret-agent/injected-scripts": "1.0.0-alpha.20",
"@secret-agent/mitm": "1.0.0-alpha.20",
"@secret-agent/puppet": "1.0.0-alpha.20",
"@secret-agent/session-state": "1.0.0-alpha.20",
"awaited-dom": "^1.1.5",
"moment": "^2.24.0",
"typeson": "^5.18.2",
"typeson-registry": "^1.0.0-alpha.38",
"uuid": "^8.1.0"
},
"devDependencies": {
"@secret-agent/client": "1.0.0-alpha.19",
"@secret-agent/core": "1.0.0-alpha.19",
"@secret-agent/emulate-safari-13": "1.0.0-alpha.19",
"@secret-agent/puppet-chrome": "1.0.0-alpha.19",
"@secret-agent/testing": "1.0.0-alpha.19",
"@secret-agent/client": "1.0.0-alpha.20",
"@secret-agent/core": "1.0.0-alpha.20",
"@secret-agent/emulate-safari-13": "1.0.0-alpha.20",
"@secret-agent/puppet-chrome": "1.0.0-alpha.20",
"@secret-agent/testing": "1.0.0-alpha.20",
"http-proxy-agent": "^4.0.1"
}
}
11 changes: 11 additions & 0 deletions emulator-plugins/emulate-chrome-80/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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Features

* **mitm:** dns over tls lookups ([8797847](https://github.com/ulixee/secret-agent/commit/8797847fd5388ee6e4165c02390d45587799edbf))





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/emulate-chrome-80
Expand Down
8 changes: 4 additions & 4 deletions emulator-plugins/emulate-chrome-80/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@secret-agent/emulate-chrome-80",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "EmulatorPlugin for Google Chrome version 80",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "722234"
},
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.19",
"@secret-agent/emulators": "1.0.0-alpha.16"
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.20",
"@secret-agent/emulators": "1.0.0-alpha.20"
}
}
11 changes: 11 additions & 0 deletions emulator-plugins/emulate-chrome-83/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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)


### Features

* **mitm:** dns over tls lookups ([8797847](https://github.com/ulixee/secret-agent/commit/8797847fd5388ee6e4165c02390d45587799edbf))





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/emulate-chrome-83
Expand Down
8 changes: 4 additions & 4 deletions emulator-plugins/emulate-chrome-83/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@secret-agent/emulate-chrome-83",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "EmulatorPlugin for Google Chrome version 83",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "756035"
},
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.19",
"@secret-agent/emulators": "1.0.0-alpha.16"
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.20",
"@secret-agent/emulators": "1.0.0-alpha.20"
}
}
8 changes: 8 additions & 0 deletions emulator-plugins/emulate-safari-13/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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)

**Note:** Version bump only for package @secret-agent/emulate-safari-13





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/emulate-safari-13
Expand Down
10 changes: 5 additions & 5 deletions emulator-plugins/emulate-safari-13/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@secret-agent/emulate-safari-13",
"version": "1.0.0-alpha.19",
"version": "1.0.0-alpha.20",
"description": "EmulatorPlugin for Apple Safari version 13.0",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "722234"
},
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.16",
"@secret-agent/core-interfaces": "1.0.0-alpha.16",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.19",
"@secret-agent/emulators": "1.0.0-alpha.16",
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/core-interfaces": "1.0.0-alpha.20",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.20",
"@secret-agent/emulators": "1.0.0-alpha.20",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions emulator-plugins/shared/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.0.0-alpha.20](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2020-10-23)

**Note:** Version bump only for package @secret-agent/emulator-plugins-shared





# [1.0.0-alpha.19](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2020-10-13)

**Note:** Version bump only for package @secret-agent/emulator-plugins-shared
Expand Down
Loading

0 comments on commit 8aad8cf

Please sign in to comment.