Skip to content

Commit

Permalink
v1.0.0-alpha.21
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Nov 2, 2020
1 parent 6737007 commit 6292399
Show file tree
Hide file tree
Showing 54 changed files with 484 additions and 125 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Bug Fixes

* **core:** improved waitForElement ([4d139b3](https://github.com/ulixee/secret-agent/commit/4d139b3aa920dc400691eb035f61936948e187b0))
* **mitm:** cache content-type ([68d7384](https://github.com/ulixee/secret-agent/commit/68d7384305e46106830f1a548d6de77c7b9deb07))
* **replay:** cross domain iframes ([db65711](https://github.com/ulixee/secret-agent/commit/db6571120ccf1c5fa59c091bde6d752706c5c2e6))
* **replay:** loading resources ([747f4ff](https://github.com/ulixee/secret-agent/commit/747f4ff24ba7ef1b162f0a2a5f1327ebd39cf18e))
* bugs in replay ([2bf8808](https://github.com/ulixee/secret-agent/commit/2bf8808ae115ba9ea9f3cc64f3eba673fcb311aa))


### Features

* **core:** improve jspath waitForElement perf ([435576a](https://github.com/ulixee/secret-agent/commit/435576a47a31dfedcfd3307c090e23b63998c716))
* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))
* **replay:** add support for iframe and shadows ([0978fd5](https://github.com/ulixee/secret-agent/commit/0978fd55802ebf4285a48ef1ce0d208e2d21aeba))
* **replay:** record heirarchy of elements ([89310c0](https://github.com/ulixee/secret-agent/commit/89310c0ba186d02e01b246dfa9c56f89d7a651af))
* **replay:** set screen viewport ([f818ff5](https://github.com/ulixee/secret-agent/commit/f818ff5577d49d284a4116d328e78dc1d235824a))
* **session:** support CSSOM for recorder/playback ([0cbe7c8](https://github.com/ulixee/secret-agent/commit/0cbe7c81aa6e6111a82db4bcbff5bf2efbc6d5b9))
* **session:** track frame dom node ids ([a41d678](https://github.com/ulixee/secret-agent/commit/a41d6786d6fd10a386d9c2739713a26b6063b127))
* **session-state:** record and playback shadows ([508fd39](https://github.com/ulixee/secret-agent/commit/508fd3988eb5e25d2c11a713a99f3f6a5a78ed5b))





# [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)


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

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





# [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)


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.20",
"version": "1.0.0-alpha.21",
"description": "The client interface for SecretAgent",
"dependencies": {
"@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",
"@secret-agent/commons": "1.0.0-alpha.21",
"@secret-agent/core": "1.0.0-alpha.21",
"@secret-agent/core-interfaces": "1.0.0-alpha.21",
"@secret-agent/replay": "1.0.0-alpha.21",
"awaited-dom": "^1.1.5",
"uuid": "^8.1.0"
},
"devDependencies": {
"@secret-agent/testing": "1.0.0-alpha.20",
"@secret-agent/testing": "1.0.0-alpha.21",
"@types/node": "^12.7.11"
}
}
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.0.0-alpha.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Features

* **replay:** add support for iframe and shadows ([0978fd5](https://github.com/ulixee/secret-agent/commit/0978fd55802ebf4285a48ef1ce0d208e2d21aeba))
* **session:** track frame dom node ids ([a41d678](https://github.com/ulixee/secret-agent/commit/a41d6786d6fd10a386d9c2739713a26b6063b127))





# [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)


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.20",
"version": "1.0.0-alpha.21",
"description": "Common utilities for Secret Agent",
"main": "index.js",
"dependencies": {
"@secret-agent/core-interfaces": "1.0.0-alpha.20",
"@secret-agent/core-interfaces": "1.0.0-alpha.21",
"better-sqlite3": "^7.1.1"
}
}
12 changes: 12 additions & 0 deletions core-interfaces/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.0.0-alpha.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Features

* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))
* **replay:** set screen viewport ([f818ff5](https://github.com/ulixee/secret-agent/commit/f818ff5577d49d284a4116d328e78dc1d235824a))





# [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)


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.20",
"version": "1.0.0-alpha.21",
"description": "Core interfaces used by SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.0.0-alpha.20",
"@secret-agent/commons": "1.0.0-alpha.21",
"awaited-dom": "^1.1.5"
},
"devDependencies": {
"@secret-agent/injected-scripts": "1.0.0-alpha.20",
"@secret-agent/injected-scripts": "1.0.0-alpha.21",
"@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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)

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





# [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
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.20",
"version": "1.0.0-alpha.21",
"description": "Server framework for running SecretAgent remotely",
"dependencies": {
"@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"
"@secret-agent/commons": "1.0.0-alpha.21",
"@secret-agent/core": "1.0.0-alpha.21",
"@secret-agent/core-interfaces": "1.0.0-alpha.21",
"@secret-agent/remote-interfaces": "1.0.0-alpha.21"
},
"devDependencies": {
"@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",
"@secret-agent/core-server": "1.0.0-alpha.21",
"@secret-agent/remote-client": "1.0.0-alpha.21",
"@secret-agent/testing": "1.0.0-alpha.21",
"@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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Bug Fixes

* **core:** improved waitForElement ([4d139b3](https://github.com/ulixee/secret-agent/commit/4d139b3aa920dc400691eb035f61936948e187b0))
* bugs in replay ([2bf8808](https://github.com/ulixee/secret-agent/commit/2bf8808ae115ba9ea9f3cc64f3eba673fcb311aa))


### Features

* **core:** improve jspath waitForElement perf ([435576a](https://github.com/ulixee/secret-agent/commit/435576a47a31dfedcfd3307c090e23b63998c716))
* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))
* **replay:** set screen viewport ([f818ff5](https://github.com/ulixee/secret-agent/commit/f818ff5577d49d284a4116d328e78dc1d235824a))
* **session:** track frame dom node ids ([a41d678](https://github.com/ulixee/secret-agent/commit/a41d6786d6fd10a386d9c2739713a26b6063b127))





# [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)


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.20",
"version": "1.0.0-alpha.21",
"description": "The core browser API used to run SecretAgent",
"dependencies": {
"@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",
"@secret-agent/commons": "1.0.0-alpha.21",
"@secret-agent/core-interfaces": "1.0.0-alpha.21",
"@secret-agent/emulate-chrome-83": "1.0.0-alpha.21",
"@secret-agent/emulators": "1.0.0-alpha.21",
"@secret-agent/humanoids": "1.0.0-alpha.21",
"@secret-agent/injected-scripts": "1.0.0-alpha.21",
"@secret-agent/mitm": "1.0.0-alpha.21",
"@secret-agent/puppet": "1.0.0-alpha.21",
"@secret-agent/session-state": "1.0.0-alpha.21",
"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.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",
"@secret-agent/client": "1.0.0-alpha.21",
"@secret-agent/core": "1.0.0-alpha.21",
"@secret-agent/emulate-safari-13": "1.0.0-alpha.21",
"@secret-agent/puppet-chrome": "1.0.0-alpha.21",
"@secret-agent/testing": "1.0.0-alpha.21",
"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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Features

* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))





# [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)


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.20",
"version": "1.0.0-alpha.21",
"description": "EmulatorPlugin for Google Chrome version 80",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "722234"
},
"dependencies": {
"@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"
"@secret-agent/commons": "1.0.0-alpha.21",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.21",
"@secret-agent/emulators": "1.0.0-alpha.21"
}
}
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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Features

* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))





# [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)


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.20",
"version": "1.0.0-alpha.21",
"description": "EmulatorPlugin for Google Chrome version 83",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "756035"
},
"dependencies": {
"@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"
"@secret-agent/commons": "1.0.0-alpha.21",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.21",
"@secret-agent/emulators": "1.0.0-alpha.21"
}
}
11 changes: 11 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,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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Features

* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))





# [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
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.20",
"version": "1.0.0-alpha.21",
"description": "EmulatorPlugin for Apple Safari version 13.0",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "722234"
},
"dependencies": {
"@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",
"@secret-agent/commons": "1.0.0-alpha.21",
"@secret-agent/core-interfaces": "1.0.0-alpha.21",
"@secret-agent/emulator-plugins-shared": "1.0.0-alpha.21",
"@secret-agent/emulators": "1.0.0-alpha.21",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
Expand Down
14 changes: 14 additions & 0 deletions emulator-plugins/shared/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.21](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2020-11-02)


### Features

* **locale:** add locale emulation + tests ([57cc7ff](https://github.com/ulixee/secret-agent/commit/57cc7ff8c342dc27a477b16cca066dffb9687e2f))
* **replay:** set screen viewport ([f818ff5](https://github.com/ulixee/secret-agent/commit/f818ff5577d49d284a4116d328e78dc1d235824a))
* **session:** track frame dom node ids ([a41d678](https://github.com/ulixee/secret-agent/commit/a41d6786d6fd10a386d9c2739713a26b6063b127))
* **session-state:** record and playback shadows ([508fd39](https://github.com/ulixee/secret-agent/commit/508fd3988eb5e25d2c11a713a99f3f6a5a78ed5b))





# [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
Expand Down
Loading

0 comments on commit 6292399

Please sign in to comment.