chore: release main (#10942)

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
release-please[bot] 2023-09-19 20:20:53 +02:00 committed by GitHub
parent 9c5e9ee221
commit d98f488a51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
579 changed files with 99 additions and 22 deletions

View File

@ -1,6 +1,6 @@
{
"packages/puppeteer": "21.3.0",
"packages/puppeteer-core": "21.3.0",
"packages/puppeteer": "21.3.1",
"packages/puppeteer-core": "21.3.1",
"packages/testserver": "0.6.0",
"packages/ng-schematics": "0.5.0",
"packages/browsers": "1.7.1"

6
package-lock.json generated
View File

@ -11701,20 +11701,20 @@
}
},
"packages/puppeteer": {
"version": "21.3.0",
"version": "21.3.1",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"@puppeteer/browsers": "1.7.1",
"cosmiconfig": "8.3.6",
"puppeteer-core": "21.3.0"
"puppeteer-core": "21.3.1"
},
"engines": {
"node": ">=16.3.0"
}
},
"packages/puppeteer-core": {
"version": "21.3.0",
"version": "21.3.1",
"license": "Apache-2.0",
"dependencies": {
"@puppeteer/browsers": "1.7.1",

View File

@ -20,6 +20,13 @@ All notable changes to this project will be documented in this file. See [standa
* dependencies
* @puppeteer/browsers bumped from 1.5.1 to 1.6.0
## [21.3.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v21.3.0...puppeteer-core-v21.3.1) (2023-09-19)
### Bug Fixes
* make `CDPSessionEvent.SessionAttached` public ([#10941](https://github.com/puppeteer/puppeteer/issues/10941)) ([cfed7b9](https://github.com/puppeteer/puppeteer/commit/cfed7b93ec23e92ec11632f1cd90f00dac754739))
## [21.3.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v21.2.1...puppeteer-core-v21.3.0) (2023-09-19)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer-core",
"version": "21.3.0",
"version": "21.3.1",
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
"keywords": [
"puppeteer",

View File

@ -29,6 +29,20 @@ All notable changes to this project will be documented in this file. See [standa
* puppeteer-core bumped from 21.0.2 to 21.0.3
* @puppeteer/browsers bumped from 1.5.1 to 1.6.0
## [21.3.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.3.0...puppeteer-v21.3.1) (2023-09-19)
### Miscellaneous Chores
* **puppeteer:** Synchronize puppeteer versions
### Dependencies
* The following workspace dependencies were updated
* dependencies
* puppeteer-core bumped from 21.3.0 to 21.3.1
## [21.3.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.2.1...puppeteer-v21.3.0) (2023-09-19)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer",
"version": "21.3.0",
"version": "21.3.1",
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
"keywords": [
"puppeteer",
@ -122,7 +122,7 @@
"license": "Apache-2.0",
"dependencies": {
"cosmiconfig": "8.3.6",
"puppeteer-core": "21.3.0",
"puppeteer-core": "21.3.1",
"@puppeteer/browsers": "1.7.1"
}
}

View File

@ -1,13 +0,0 @@
---
sidebar_label: CDPSessionEvents
---
# CDPSessionEvents interface
#### Signature:
```typescript
export interface CDPSessionEvents extends CDPEvents, Record<EventType, unknown>
```
**Extends:** [CDPEvents](./puppeteer.cdpevents.md), Record&lt;EventType, unknown&gt;

View File

@ -134,6 +134,12 @@ sidebar_label: API
| [WaitForTargetOptions](./puppeteer.waitfortargetoptions.md) | |
| [WaitTimeoutOptions](./puppeteer.waittimeoutoptions.md) | |
## Namespaces
| Namespace | Description |
| ------------------------------------------------- | --------------------------------------- |
| [CDPSessionEvent](./puppeteer.cdpsessionevent.md) | Events that the CDPSession class emits. |
## Variables
| Variable | Description |

View File

@ -0,0 +1,20 @@
---
sidebar_label: CDPSessionEvent
---
# CDPSessionEvent namespace
Events that the CDPSession class emits.
#### Signature:
```typescript
export declare namespace CDPSessionEvent
```
## Variables
| Variable | Description |
| ----------------------------------------------------------------- | ----------- |
| [SessionAttached](./puppeteer.cdpsessionevent.sessionattached.md) | |
| [SessionDetached](./puppeteer.cdpsessionevent.sessiondetached.md) | |

View File

@ -0,0 +1,11 @@
---
sidebar_label: CDPSessionEvent.SessionAttached
---
# CDPSessionEvent.SessionAttached variable
#### Signature:
```typescript
SessionAttached: 'sessionattached';
```

View File

@ -0,0 +1,11 @@
---
sidebar_label: CDPSessionEvent.SessionDetached
---
# CDPSessionEvent.SessionDetached variable
#### Signature:
```typescript
SessionDetached: 'sessiondetached';
```

View File

@ -0,0 +1,20 @@
---
sidebar_label: CDPSessionEvents
---
# CDPSessionEvents interface
#### Signature:
```typescript
export interface CDPSessionEvents extends CDPEvents, Record<EventType, unknown>
```
**Extends:** [CDPEvents](./puppeteer.cdpevents.md), Record&lt;EventType, unknown&gt;
## Properties
| Property | Modifiers | Type | Description | Default |
| --------------- | --------- | --------------------------------------- | ----------- | ------- |
| sessionattached | | [CDPSession](./puppeteer.cdpsession.md) | | |
| sessiondetached | | [CDPSession](./puppeteer.cdpsession.md) | | |

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