Skip to content

Commit

Permalink
v1.1.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Nov 5, 2020
1 parent 9e35694 commit ba9dfbd
Show file tree
Hide file tree
Showing 50 changed files with 364 additions and 118 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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)


### Bug Fixes

* **mitm:** should add host to http1 headers ([b655ea9](https://github.com/ulixee/secret-agent/commit/b655ea925b531a53bb9b55271df5150881783bcf))


### Features

* **client:** get/set/delete cookies + domstorage ([2e2de6b](https://github.com/ulixee/secret-agent/commit/2e2de6b9f2debf5eadf54b03b3f8d9db7cace269))
* **client:** split out ISecretAgentClass ([8765900](https://github.com/ulixee/secret-agent/commit/876590001e62598daaad71d9a236e94600717c72))





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


Expand Down
12 changes: 12 additions & 0 deletions client/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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)


### Features

* **client:** get/set/delete cookies + domstorage ([2e2de6b](https://github.com/ulixee/secret-agent/commit/2e2de6b9f2debf5eadf54b03b3f8d9db7cace269))
* **client:** split out ISecretAgentClass ([8765900](https://github.com/ulixee/secret-agent/commit/876590001e62598daaad71d9a236e94600717c72))





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


Expand Down
10 changes: 5 additions & 5 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@secret-agent/client",
"version": "1.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "The client interface for SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/core": "1.1.0-alpha.0",
"@secret-agent/core-interfaces": "1.1.0-alpha.0",
"@secret-agent/commons": "1.1.0-alpha.1",
"@secret-agent/core": "1.1.0-alpha.1",
"@secret-agent/core-interfaces": "1.1.0-alpha.1",
"@secret-agent/replay": "1.1.0-alpha.0",
"awaited-dom": "^1.1.6",
"uuid": "^8.1.0"
},
"devDependencies": {
"@secret-agent/testing": "1.1.0-alpha.0",
"@secret-agent/testing": "1.1.0-alpha.1",
"@types/node": "^12.7.11"
}
}
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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)

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





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "Common utilities for Secret Agent",
"main": "index.js",
"dependencies": {
"@secret-agent/core-interfaces": "1.1.0-alpha.0",
"@secret-agent/core-interfaces": "1.1.0-alpha.1",
"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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)


### Features

* **client:** get/set/delete cookies + domstorage ([2e2de6b](https://github.com/ulixee/secret-agent/commit/2e2de6b9f2debf5eadf54b03b3f8d9db7cace269))





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "Core interfaces used by SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/commons": "1.1.0-alpha.1",
"awaited-dom": "^1.1.6"
},
"devDependencies": {
"@secret-agent/injected-scripts": "1.1.0-alpha.0",
"@secret-agent/injected-scripts": "1.1.0-alpha.1",
"@types/node": "^12.7.11",
"devtools-protocol": "^0.0.799653"
}
Expand Down
11 changes: 11 additions & 0 deletions core-server/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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)


### Features

* **client:** split out ISecretAgentClass ([8765900](https://github.com/ulixee/secret-agent/commit/876590001e62598daaad71d9a236e94600717c72))





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "Server framework for running SecretAgent remotely",
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/core": "1.1.0-alpha.0",
"@secret-agent/core-interfaces": "1.1.0-alpha.0",
"@secret-agent/remote-interfaces": "1.1.0-alpha.0"
"@secret-agent/commons": "1.1.0-alpha.1",
"@secret-agent/core": "1.1.0-alpha.1",
"@secret-agent/core-interfaces": "1.1.0-alpha.1",
"@secret-agent/remote-interfaces": "1.1.0-alpha.1"
},
"devDependencies": {
"@secret-agent/core-server": "1.1.0-alpha.0",
"@secret-agent/remote-client": "1.1.0-alpha.0",
"@secret-agent/testing": "1.1.0-alpha.0",
"@secret-agent/core-server": "1.1.0-alpha.1",
"@secret-agent/remote-client": "1.1.0-alpha.1",
"@secret-agent/testing": "1.1.0-alpha.1",
"@types/node": "^12.7.11",
"json-socket": "^0.3.0"
}
Expand Down
16 changes: 16 additions & 0 deletions core/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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)


### Bug Fixes

* **mitm:** should add host to http1 headers ([b655ea9](https://github.com/ulixee/secret-agent/commit/b655ea925b531a53bb9b55271df5150881783bcf))


### Features

* **client:** get/set/delete cookies + domstorage ([2e2de6b](https://github.com/ulixee/secret-agent/commit/2e2de6b9f2debf5eadf54b03b3f8d9db7cace269))





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "The core browser API used to run SecretAgent",
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/core-interfaces": "1.1.0-alpha.0",
"@secret-agent/emulate-chrome-83": "1.1.0-alpha.0",
"@secret-agent/emulators": "1.1.0-alpha.0",
"@secret-agent/humanoids": "1.1.0-alpha.0",
"@secret-agent/injected-scripts": "1.1.0-alpha.0",
"@secret-agent/mitm": "1.1.0-alpha.0",
"@secret-agent/puppet": "1.1.0-alpha.0",
"@secret-agent/session-state": "1.1.0-alpha.0",
"@secret-agent/commons": "1.1.0-alpha.1",
"@secret-agent/core-interfaces": "1.1.0-alpha.1",
"@secret-agent/emulate-chrome-83": "1.1.0-alpha.1",
"@secret-agent/emulators": "1.1.0-alpha.1",
"@secret-agent/humanoids": "1.1.0-alpha.1",
"@secret-agent/injected-scripts": "1.1.0-alpha.1",
"@secret-agent/mitm": "1.1.0-alpha.1",
"@secret-agent/puppet": "1.1.0-alpha.1",
"@secret-agent/session-state": "1.1.0-alpha.1",
"awaited-dom": "^1.1.6",
"moment": "^2.24.0",
"typeson": "^5.18.2",
"typeson-registry": "^1.0.0-alpha.38",
"uuid": "^8.1.0"
},
"devDependencies": {
"@secret-agent/client": "1.1.0-alpha.0",
"@secret-agent/core": "1.1.0-alpha.0",
"@secret-agent/emulate-safari-13": "1.1.0-alpha.0",
"@secret-agent/puppet-chrome": "1.1.0-alpha.0",
"@secret-agent/testing": "1.1.0-alpha.0",
"@secret-agent/client": "1.1.0-alpha.1",
"@secret-agent/core": "1.1.0-alpha.1",
"@secret-agent/emulate-safari-13": "1.1.0-alpha.1",
"@secret-agent/puppet-chrome": "1.1.0-alpha.1",
"@secret-agent/testing": "1.1.0-alpha.1",
"http-proxy-agent": "^4.0.1"
}
}
8 changes: 8 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,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)

**Note:** Version bump only for package @secret-agent/emulate-chrome-80





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)

**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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "EmulatorPlugin for Google Chrome version 80",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "722234"
},
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/emulator-plugins-shared": "1.1.0-alpha.0",
"@secret-agent/emulators": "1.1.0-alpha.0"
"@secret-agent/commons": "1.1.0-alpha.1",
"@secret-agent/emulator-plugins-shared": "1.1.0-alpha.1",
"@secret-agent/emulators": "1.1.0-alpha.1"
}
}
8 changes: 8 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,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)

**Note:** Version bump only for package @secret-agent/emulate-chrome-83





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)

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

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





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)

**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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "EmulatorPlugin for Apple Safari version 13.0",
"main": "index.js",
"engine": {
"browser": "chromium",
"revision": "722234"
},
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/core-interfaces": "1.1.0-alpha.0",
"@secret-agent/emulator-plugins-shared": "1.1.0-alpha.0",
"@secret-agent/emulators": "1.1.0-alpha.0",
"@secret-agent/commons": "1.1.0-alpha.1",
"@secret-agent/core-interfaces": "1.1.0-alpha.1",
"@secret-agent/emulator-plugins-shared": "1.1.0-alpha.1",
"@secret-agent/emulators": "1.1.0-alpha.1",
"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.1.0-alpha.1](https://github.com/ulixee/secret-agent/compare/v1.1.0-alpha.0...v1.1.0-alpha.1) (2020-11-05)

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





# [1.1.0-alpha.0](https://github.com/ulixee/secret-agent/compare/v1.0.0-alpha.21...v1.1.0-alpha.0) (2020-11-03)


Expand Down
16 changes: 8 additions & 8 deletions emulator-plugins/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@secret-agent/emulator-plugins-shared",
"version": "1.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "SecretAgent client that runs remotely",
"dependencies": {
"@secret-agent/commons": "1.1.0-alpha.0",
"@secret-agent/core-interfaces": "1.1.0-alpha.0",
"@secret-agent/emulators": "1.1.0-alpha.0",
"@secret-agent/puppet": "1.1.0-alpha.0"
"@secret-agent/commons": "1.1.0-alpha.1",
"@secret-agent/core-interfaces": "1.1.0-alpha.1",
"@secret-agent/emulators": "1.1.0-alpha.1",
"@secret-agent/puppet": "1.1.0-alpha.1"
},
"devDependencies": {
"@secret-agent/core": "1.1.0-alpha.0",
"@secret-agent/emulate-chrome-80": "1.1.0-alpha.0",
"@secret-agent/testing": "1.1.0-alpha.0"
"@secret-agent/core": "1.1.0-alpha.1",
"@secret-agent/emulate-chrome-80": "1.1.0-alpha.1",
"@secret-agent/testing": "1.1.0-alpha.1"
}
}
Loading

0 comments on commit ba9dfbd

Please sign in to comment.