chore: release main (#10185)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
parent
2808240c71
commit
1e0cb1a164
@ -1,7 +1,7 @@
|
||||
{
|
||||
"packages/puppeteer": "20.2.0",
|
||||
"packages/puppeteer-core": "20.2.0",
|
||||
"packages/puppeteer": "20.2.1",
|
||||
"packages/puppeteer-core": "20.2.1",
|
||||
"packages/testserver": "0.6.0",
|
||||
"packages/ng-schematics": "0.2.0",
|
||||
"packages/browsers": "1.2.0"
|
||||
"packages/browsers": "1.3.0"
|
||||
}
|
||||
|
18
package-lock.json
generated
18
package-lock.json
generated
@ -9389,7 +9389,7 @@
|
||||
},
|
||||
"packages/browsers": {
|
||||
"name": "@puppeteer/browsers",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.0",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"debug": "4.3.4",
|
||||
@ -9450,20 +9450,20 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"packages/puppeteer": {
|
||||
"version": "20.2.0",
|
||||
"version": "20.2.1",
|
||||
"hasInstallScript": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@puppeteer/browsers": "1.2.0",
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
"cosmiconfig": "8.1.3",
|
||||
"puppeteer-core": "20.2.0"
|
||||
"puppeteer-core": "20.2.1"
|
||||
}
|
||||
},
|
||||
"packages/puppeteer-core": {
|
||||
"version": "20.2.0",
|
||||
"version": "20.2.1",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@puppeteer/browsers": "1.2.0",
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
"chromium-bidi": "0.4.9",
|
||||
"cross-fetch": "3.1.5",
|
||||
"debug": "4.3.4",
|
||||
@ -14494,15 +14494,15 @@
|
||||
"puppeteer": {
|
||||
"version": "file:packages/puppeteer",
|
||||
"requires": {
|
||||
"@puppeteer/browsers": "1.2.0",
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
"cosmiconfig": "8.1.3",
|
||||
"puppeteer-core": "20.2.0"
|
||||
"puppeteer-core": "20.2.1"
|
||||
}
|
||||
},
|
||||
"puppeteer-core": {
|
||||
"version": "file:packages/puppeteer-core",
|
||||
"requires": {
|
||||
"@puppeteer/browsers": "1.2.0",
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
"chromium-bidi": "0.4.9",
|
||||
"cross-fetch": "3.1.5",
|
||||
"debug": "4.3.4",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Changelog
|
||||
|
||||
## [1.3.0](https://github.com/puppeteer/puppeteer/compare/browsers-v1.2.0...browsers-v1.3.0) (2023-05-15)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add ability to uninstall a browser ([#10179](https://github.com/puppeteer/puppeteer/issues/10179)) ([d388a6e](https://github.com/puppeteer/puppeteer/commit/d388a6edfd164548b008cb0d8e9cb5c0d03cdcda))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* update the command name ([#10178](https://github.com/puppeteer/puppeteer/issues/10178)) ([ccbb82d](https://github.com/puppeteer/puppeteer/commit/ccbb82d9cd5b77f8262c143a5663fc1f9938a8c4))
|
||||
|
||||
## [1.2.0](https://github.com/puppeteer/puppeteer/compare/browsers-v1.1.0...browsers-v1.2.0) (2023-05-11)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@puppeteer/browsers",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.0",
|
||||
"description": "Download and launch browsers",
|
||||
"scripts": {
|
||||
"build:docs": "wireit",
|
||||
|
@ -8,6 +8,20 @@ All notable changes to this project will be documented in this file. See [standa
|
||||
* dependencies
|
||||
* @puppeteer/browsers bumped from 1.0.1 to 1.1.0
|
||||
|
||||
## [20.2.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.2.0...puppeteer-core-v20.2.1) (2023-05-15)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use encode/decodeURIComponent ([#10183](https://github.com/puppeteer/puppeteer/issues/10183)) ([d0c68ff](https://github.com/puppeteer/puppeteer/commit/d0c68ff002df37907968d3b999a8273590ac7c97))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @puppeteer/browsers bumped from 1.2.0 to 1.3.0
|
||||
|
||||
## [20.2.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.1.2...puppeteer-core-v20.2.0) (2023-05-11)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "puppeteer-core",
|
||||
"version": "20.2.0",
|
||||
"version": "20.2.1",
|
||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
@ -137,7 +137,7 @@
|
||||
"debug": "4.3.4",
|
||||
"devtools-protocol": "0.0.1120988",
|
||||
"ws": "8.13.0",
|
||||
"@puppeteer/browsers": "1.2.0"
|
||||
"@puppeteer/browsers": "1.3.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": ">= 4.7.4"
|
||||
|
@ -15,6 +15,21 @@ All notable changes to this project will be documented in this file. See [standa
|
||||
* puppeteer-core bumped from 20.1.1 to 20.1.2
|
||||
* @puppeteer/browsers bumped from 1.0.1 to 1.1.0
|
||||
|
||||
## [20.2.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.2.0...puppeteer-v20.2.1) (2023-05-15)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **puppeteer:** Synchronize puppeteer versions
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* puppeteer-core bumped from 20.2.0 to 20.2.1
|
||||
* @puppeteer/browsers bumped from 1.2.0 to 1.3.0
|
||||
|
||||
## [20.2.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.1.2...puppeteer-v20.2.0) (2023-05-11)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "puppeteer",
|
||||
"version": "20.2.0",
|
||||
"version": "20.2.1",
|
||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
@ -117,7 +117,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"cosmiconfig": "8.1.3",
|
||||
"puppeteer-core": "20.2.0",
|
||||
"@puppeteer/browsers": "1.2.0"
|
||||
"puppeteer-core": "20.2.1",
|
||||
"@puppeteer/browsers": "1.3.0"
|
||||
}
|
||||
}
|
||||
|
@ -1259,6 +1259,12 @@
|
||||
"parameters": ["cdp", "firefox"],
|
||||
"expectations": ["FAIL"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[navigation.spec] navigation Page.goto should work with anchor navigation",
|
||||
"platforms": ["linux"],
|
||||
"parameters": ["chrome", "headless"],
|
||||
"expectations": ["PASS", "TIMEOUT"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[navigation.spec] navigation Page.goto should work with redirects",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
@ -2207,6 +2213,12 @@
|
||||
"parameters": ["firefox", "headless", "webDriverBiDi"],
|
||||
"expectations": ["FAIL"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[navigation.spec] navigation \"after each\" hook in \"navigation\"",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
"parameters": ["chrome", "headless", "webDriverBiDi"],
|
||||
"expectations": ["FAIL"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[network.spec] network \"after each\" hook for \"Same-origin set-cookie subresource\"",
|
||||
"platforms": ["win32"],
|
||||
@ -2290,17 +2302,5 @@
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
"parameters": ["cdp", "chrome", "headless"],
|
||||
"expectations": ["FAIL", "PASS"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[navigation.spec] navigation Page.goto should work with anchor navigation",
|
||||
"platforms": ["linux"],
|
||||
"parameters": ["chrome", "headless"],
|
||||
"expectations": ["PASS", "TIMEOUT"]
|
||||
},
|
||||
{
|
||||
"testIdPattern": "[navigation.spec] navigation \"after each\" hook in \"navigation\"",
|
||||
"platforms": ["darwin", "linux", "win32"],
|
||||
"parameters": ["chrome", "headless", "webDriverBiDi"],
|
||||
"expectations": ["FAIL"]
|
||||
}
|
||||
]
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user