mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: release main (#10201)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
parent
b6d8145d06
commit
7487598433
@ -1,6 +1,6 @@
|
||||
{
|
||||
"packages/puppeteer": "20.2.1",
|
||||
"packages/puppeteer-core": "20.2.1",
|
||||
"packages/puppeteer": "20.3.0",
|
||||
"packages/puppeteer-core": "20.3.0",
|
||||
"packages/testserver": "0.6.0",
|
||||
"packages/ng-schematics": "0.2.0",
|
||||
"packages/browsers": "1.3.0"
|
||||
|
8
package-lock.json
generated
8
package-lock.json
generated
@ -9480,17 +9480,17 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"packages/puppeteer": {
|
||||
"version": "20.2.1",
|
||||
"version": "20.3.0",
|
||||
"hasInstallScript": true,
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
"cosmiconfig": "8.1.3",
|
||||
"puppeteer-core": "20.2.1"
|
||||
"puppeteer-core": "20.3.0"
|
||||
}
|
||||
},
|
||||
"packages/puppeteer-core": {
|
||||
"version": "20.2.1",
|
||||
"version": "20.3.0",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
@ -14549,7 +14549,7 @@
|
||||
"requires": {
|
||||
"@puppeteer/browsers": "1.3.0",
|
||||
"cosmiconfig": "8.1.3",
|
||||
"puppeteer-core": "20.2.1"
|
||||
"puppeteer-core": "20.3.0"
|
||||
}
|
||||
},
|
||||
"puppeteer-core": {
|
||||
|
@ -8,6 +8,18 @@ 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.3.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.2.1...puppeteer-core-v20.3.0) (2023-05-22)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add an ability to trim cache for Puppeteer ([#10199](https://github.com/puppeteer/puppeteer/issues/10199)) ([1ad32ec](https://github.com/puppeteer/puppeteer/commit/1ad32ec9948ca3e07e15548a562c8f3c633b3dc3))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* ElementHandle dragAndDrop should fail when interception is disabled ([#10209](https://github.com/puppeteer/puppeteer/issues/10209)) ([bcf5fd8](https://github.com/puppeteer/puppeteer/commit/bcf5fd87aeeb822203c3388e8aa6dadaa0107690))
|
||||
|
||||
## [20.2.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.2.0...puppeteer-core-v20.2.1) (2023-05-15)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "puppeteer-core",
|
||||
"version": "20.2.1",
|
||||
"version": "20.3.0",
|
||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||
"keywords": [
|
||||
"puppeteer",
|
||||
|
@ -15,6 +15,20 @@ 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.3.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.2.1...puppeteer-v20.3.0) (2023-05-22)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add an ability to trim cache for Puppeteer ([#10199](https://github.com/puppeteer/puppeteer/issues/10199)) ([1ad32ec](https://github.com/puppeteer/puppeteer/commit/1ad32ec9948ca3e07e15548a562c8f3c633b3dc3))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* puppeteer-core bumped from 20.2.1 to 20.3.0
|
||||
|
||||
## [20.2.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.2.0...puppeteer-v20.2.1) (2023-05-15)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "puppeteer",
|
||||
"version": "20.2.1",
|
||||
"version": "20.3.0",
|
||||
"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.1",
|
||||
"puppeteer-core": "20.3.0",
|
||||
"@puppeteer/browsers": "1.3.0"
|
||||
}
|
||||
}
|
||||
|
@ -135,6 +135,7 @@ sidebar_label: API
|
||||
| [networkConditions](./puppeteer.networkconditions.md) | |
|
||||
| [PredefinedNetworkConditions](./puppeteer.predefinednetworkconditions.md) | A list of network conditions to be used with [Page.emulateNetworkConditions()](./puppeteer.page.emulatenetworkconditions.md). |
|
||||
| [puppeteer](./puppeteer.puppeteer.md) | |
|
||||
| [trimCache](./puppeteer.trimcache.md) | |
|
||||
|
||||
## Type Aliases
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user