chore: release main (#10570)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
parent
e6265ee353
commit
6be24edacc
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"packages/puppeteer": "20.8.2",
|
"packages/puppeteer": "20.8.3",
|
||||||
"packages/puppeteer-core": "20.8.2",
|
"packages/puppeteer-core": "20.8.3",
|
||||||
"packages/testserver": "0.6.0",
|
"packages/testserver": "0.6.0",
|
||||||
"packages/ng-schematics": "0.3.0",
|
"packages/ng-schematics": "0.3.0",
|
||||||
"packages/browsers": "1.4.5"
|
"packages/browsers": "1.4.5"
|
||||||
|
8
package-lock.json
generated
8
package-lock.json
generated
@ -10207,20 +10207,20 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"packages/puppeteer": {
|
"packages/puppeteer": {
|
||||||
"version": "20.8.2",
|
"version": "20.8.3",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@puppeteer/browsers": "1.4.5",
|
"@puppeteer/browsers": "1.4.5",
|
||||||
"cosmiconfig": "8.2.0",
|
"cosmiconfig": "8.2.0",
|
||||||
"puppeteer-core": "20.8.2"
|
"puppeteer-core": "20.8.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.3.0"
|
"node": ">=16.3.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packages/puppeteer-core": {
|
"packages/puppeteer-core": {
|
||||||
"version": "20.8.2",
|
"version": "20.8.3",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@puppeteer/browsers": "1.4.5",
|
"@puppeteer/browsers": "1.4.5",
|
||||||
@ -15736,7 +15736,7 @@
|
|||||||
"requires": {
|
"requires": {
|
||||||
"@puppeteer/browsers": "1.4.5",
|
"@puppeteer/browsers": "1.4.5",
|
||||||
"cosmiconfig": "8.2.0",
|
"cosmiconfig": "8.2.0",
|
||||||
"puppeteer-core": "20.8.2"
|
"puppeteer-core": "20.8.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"puppeteer-core": {
|
"puppeteer-core": {
|
||||||
|
@ -14,6 +14,14 @@ All notable changes to this project will be documented in this file. See [standa
|
|||||||
* dependencies
|
* dependencies
|
||||||
* @puppeteer/browsers bumped from 1.4.4 to 1.4.5
|
* @puppeteer/browsers bumped from 1.4.4 to 1.4.5
|
||||||
|
|
||||||
|
## [20.8.3](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.8.2...puppeteer-core-v20.8.3) (2023-07-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **locators:** reject the race if there are only failures ([#10567](https://github.com/puppeteer/puppeteer/issues/10567)) ([e3dd596](https://github.com/puppeteer/puppeteer/commit/e3dd5968cae196b64d958c161fed3d1b39aed3f6))
|
||||||
|
* prevent erroneous new main frame ([#10549](https://github.com/puppeteer/puppeteer/issues/10549)) ([cb46413](https://github.com/puppeteer/puppeteer/commit/cb46413d87f10970f4088b7d58e02a65c5ccd27e))
|
||||||
|
|
||||||
## [20.8.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.8.0...puppeteer-core-v20.8.1) (2023-07-11)
|
## [20.8.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v20.8.0...puppeteer-core-v20.8.1) (2023-07-11)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "puppeteer-core",
|
"name": "puppeteer-core",
|
||||||
"version": "20.8.2",
|
"version": "20.8.3",
|
||||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"puppeteer",
|
"puppeteer",
|
||||||
|
@ -22,6 +22,20 @@ All notable changes to this project will be documented in this file. See [standa
|
|||||||
* puppeteer-core bumped from 20.8.1 to 20.8.2
|
* puppeteer-core bumped from 20.8.1 to 20.8.2
|
||||||
* @puppeteer/browsers bumped from 1.4.4 to 1.4.5
|
* @puppeteer/browsers bumped from 1.4.4 to 1.4.5
|
||||||
|
|
||||||
|
## [20.8.3](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.8.2...puppeteer-v20.8.3) (2023-07-18)
|
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* **puppeteer:** Synchronize puppeteer versions
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* puppeteer-core bumped from 20.8.2 to 20.8.3
|
||||||
|
|
||||||
## [20.8.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.8.0...puppeteer-v20.8.1) (2023-07-11)
|
## [20.8.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v20.8.0...puppeteer-v20.8.1) (2023-07-11)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "puppeteer",
|
"name": "puppeteer",
|
||||||
"version": "20.8.2",
|
"version": "20.8.3",
|
||||||
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"puppeteer",
|
"puppeteer",
|
||||||
@ -125,7 +125,7 @@
|
|||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cosmiconfig": "8.2.0",
|
"cosmiconfig": "8.2.0",
|
||||||
"puppeteer-core": "20.8.2",
|
"puppeteer-core": "20.8.3",
|
||||||
"@puppeteer/browsers": "1.4.5"
|
"@puppeteer/browsers": "1.4.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
sidebar_label: InstalledBrowser
|
|
||||||
---
|
|
||||||
|
|
||||||
# InstalledBrowser type
|
|
||||||
|
|
||||||
#### Signature:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
export type InstalledBrowser = {
|
|
||||||
path: string;
|
|
||||||
browser: Browser;
|
|
||||||
buildId: string;
|
|
||||||
platform: BrowserPlatform;
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
**References:** [Browser](./browsers.browser.md), [BrowserPlatform](./browsers.browserplatform.md)
|
|
@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
sidebar_label: LaunchOptions
|
|
||||||
---
|
|
||||||
|
|
||||||
# LaunchOptions type
|
|
||||||
|
|
||||||
#### Signature:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
export type LaunchOptions = {
|
|
||||||
executablePath: string;
|
|
||||||
pipe?: boolean;
|
|
||||||
dumpio?: boolean;
|
|
||||||
args?: string[];
|
|
||||||
env?: Record<string, string | undefined>;
|
|
||||||
handleSIGINT?: boolean;
|
|
||||||
handleSIGTERM?: boolean;
|
|
||||||
handleSIGHUP?: boolean;
|
|
||||||
detached?: boolean;
|
|
||||||
onExit?: () => Promise<void>;
|
|
||||||
};
|
|
||||||
```
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user