chore: release main (#10151)

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
release-please[bot] 2023-05-11 19:41:41 +00:00 committed by GitHub
parent 4398f66f28
commit 671fa546f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
523 changed files with 62 additions and 32 deletions

View File

@ -1,7 +1,7 @@
{
"packages/puppeteer": "20.1.2",
"packages/puppeteer-core": "20.1.2",
"packages/puppeteer": "20.2.0",
"packages/puppeteer-core": "20.2.0",
"packages/testserver": "0.6.0",
"packages/ng-schematics": "0.2.0",
"packages/browsers": "1.1.0"
"packages/browsers": "1.2.0"
}

18
package-lock.json generated
View File

@ -9315,7 +9315,7 @@
},
"packages/browsers": {
"name": "@puppeteer/browsers",
"version": "1.1.0",
"version": "1.2.0",
"license": "Apache-2.0",
"dependencies": {
"debug": "4.3.4",
@ -9376,20 +9376,20 @@
"license": "MIT"
},
"packages/puppeteer": {
"version": "20.1.2",
"version": "20.2.0",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"@puppeteer/browsers": "1.1.0",
"@puppeteer/browsers": "1.2.0",
"cosmiconfig": "8.1.3",
"puppeteer-core": "20.1.2"
"puppeteer-core": "20.2.0"
}
},
"packages/puppeteer-core": {
"version": "20.1.2",
"version": "20.2.0",
"license": "Apache-2.0",
"dependencies": {
"@puppeteer/browsers": "1.1.0",
"@puppeteer/browsers": "1.2.0",
"chromium-bidi": "0.4.7",
"cross-fetch": "3.1.5",
"debug": "4.3.4",
@ -14364,15 +14364,15 @@
"puppeteer": {
"version": "file:packages/puppeteer",
"requires": {
"@puppeteer/browsers": "1.1.0",
"@puppeteer/browsers": "1.2.0",
"cosmiconfig": "8.1.3",
"puppeteer-core": "20.1.2"
"puppeteer-core": "20.2.0"
}
},
"puppeteer-core": {
"version": "file:packages/puppeteer-core",
"requires": {
"@puppeteer/browsers": "1.1.0",
"@puppeteer/browsers": "1.2.0",
"chromium-bidi": "0.4.7",
"cross-fetch": "3.1.5",
"debug": "4.3.4",

View File

@ -1,5 +1,12 @@
# Changelog
## [1.2.0](https://github.com/puppeteer/puppeteer/compare/browsers-v1.1.0...browsers-v1.2.0) (2023-05-11)
### Features
* support Chrome channels for ChromeDriver ([#10158](https://github.com/puppeteer/puppeteer/issues/10158)) ([e313b05](https://github.com/puppeteer/puppeteer/commit/e313b054e658887e2c062ea55d8ee99f3f4f3789))
## [1.1.0](https://github.com/puppeteer/puppeteer/compare/browsers-v1.0.1...browsers-v1.1.0) (2023-05-08)

View File

@ -1,6 +1,6 @@
{
"name": "@puppeteer/browsers",
"version": "1.1.0",
"version": "1.2.0",
"description": "Download and launch browsers",
"scripts": {
"build:docs": "wireit",

View File

@ -8,6 +8,25 @@ 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.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.1.2...puppeteer-core-v20.2.0) (2023-05-11)
### Features
* implement detailed errors for evaluation ([#10114](https://github.com/puppeteer/puppeteer/issues/10114)) ([317fa73](https://github.com/puppeteer/puppeteer/commit/317fa732f920382f9b3f6dea4e31ed31b04e25da))
### Bug Fixes
* downloadPath should be used by the install script ([#10163](https://github.com/puppeteer/puppeteer/issues/10163)) ([4398f66](https://github.com/puppeteer/puppeteer/commit/4398f66f281f1ffe5be81b529fc4751edfaf761d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @puppeteer/browsers bumped from 1.1.0 to 1.2.0
## [20.1.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.1.0...puppeteer-core-v20.1.1) (2023-05-05)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer-core",
"version": "20.1.2",
"version": "20.2.0",
"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.1.0"
"@puppeteer/browsers": "1.2.0"
},
"peerDependencies": {
"typescript": ">= 4.7.4"

View File

@ -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.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.1.2...puppeteer-v20.2.0) (2023-05-11)
### Bug Fixes
* downloadPath should be used by the install script ([#10163](https://github.com/puppeteer/puppeteer/issues/10163)) ([4398f66](https://github.com/puppeteer/puppeteer/commit/4398f66f281f1ffe5be81b529fc4751edfaf761d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* puppeteer-core bumped from 20.1.2 to 20.2.0
* @puppeteer/browsers bumped from 1.1.0 to 1.2.0
## [20.1.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.1.0...puppeteer-v20.1.1) (2023-05-05)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer",
"version": "20.1.2",
"version": "20.2.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.1.2",
"@puppeteer/browsers": "1.1.0"
"puppeteer-core": "20.2.0",
"@puppeteer/browsers": "1.2.0"
}
}

View File

@ -1,11 +0,0 @@
---
sidebar_label: EVALUATION_SCRIPT_URL
---
# EVALUATION_SCRIPT_URL variable
#### Signature:
```typescript
EVALUATION_SCRIPT_URL = 'pptr://__puppeteer_evaluation_script__';
```

View File

@ -128,7 +128,6 @@ sidebar_label: API
| [defaultArgs](./puppeteer.defaultargs.md) | |
| [devices](./puppeteer.devices.md) | |
| [errors](./puppeteer.errors.md) | |
| [EVALUATION_SCRIPT_URL](./puppeteer.evaluation_script_url.md) | |
| [executablePath](./puppeteer.executablepath.md) | |
| [KnownDevices](./puppeteer.knowndevices.md) | A list of devices to be used with [Page.emulate()](./puppeteer.page.emulate.md). |
| [launch](./puppeteer.launch.md) | |

View File

@ -22,7 +22,7 @@ export interface Configuration
| cacheDirectory | <code>optional</code> | string | <p>Defines the directory to be used by Puppeteer for caching.</p><p>Can be overridden by <code>PUPPETEER_CACHE_DIR</code>.</p> | <code>path.join(os.homedir(), '.cache', 'puppeteer')</code> |
| defaultProduct | <code>optional</code> | [Product](./puppeteer.product.md) | <p>Specifies which browser you'd like Puppeteer to use.</p><p>Can be overridden by <code>PUPPETEER_PRODUCT</code>.</p> | <code>chrome</code> |
| downloadBaseUrl | <code>optional</code> | string | <p>Specifies the URL prefix that is used to download the browser.</p><p>Can be overridden by <code>PUPPETEER_DOWNLOAD_BASE_URL</code>.</p> | Either https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing or https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central, depending on the product. |
| downloadPath | <code>optional</code> | string | <p>Specifies the path for the downloads folder.</p><p>Can be overridden by <code>PUPPETEER_DOWNLOAD_PATH</code>.</p> | <code>&lt;cache&gt;/&lt;product&gt;</code> where <code>&lt;cache&gt;</code> is Puppeteer's cache directory and <code>&lt;product&gt;</code> is the name of the browser. |
| downloadPath | <code>optional</code> | string | <p>Specifies the path for the downloads folder.</p><p>Can be overridden by <code>PUPPETEER_DOWNLOAD_PATH</code>.</p> | <code>&lt;cacheDirectory&gt;</code> |
| executablePath | <code>optional</code> | string | <p>Specifies an executable path to be used in [puppeteer.launch](./puppeteer.puppeteernode.launch.md).</p><p>Can be overridden by <code>PUPPETEER_EXECUTABLE_PATH</code>.</p> | **Auto-computed.** |
| experiments | <code>optional</code> | [ExperimentsConfiguration](./puppeteer.experimentsconfiguration.md) | Defines experimental options for Puppeteer. | |
| logLevel | <code>optional</code> | 'silent' \| 'error' \| 'warn' | Tells Puppeteer to log at the given level. | <code>warn</code> |

Some files were not shown because too many files have changed in this diff Show More