chore: release main (#10075)

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
release-please[bot] 2023-04-25 16:59:34 +02:00 committed by GitHub
parent cfe9bbc852
commit 159513c8db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
539 changed files with 101 additions and 88 deletions

View File

@ -1,6 +1,6 @@
{
"packages/puppeteer": "19.11.0",
"packages/puppeteer-core": "19.11.0",
"packages/puppeteer": "19.11.1",
"packages/puppeteer-core": "19.11.1",
"packages/testserver": "0.6.0",
"packages/ng-schematics": "0.1.0",
"packages/browsers": "0.5.0"

8
package-lock.json generated
View File

@ -9259,7 +9259,7 @@
"license": "MIT"
},
"packages/puppeteer": {
"version": "19.11.0",
"version": "19.11.1",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
@ -9268,11 +9268,11 @@
"https-proxy-agent": "5.0.1",
"progress": "2.0.3",
"proxy-from-env": "1.1.0",
"puppeteer-core": "19.11.0"
"puppeteer-core": "19.11.1"
}
},
"packages/puppeteer-core": {
"version": "19.11.0",
"version": "19.11.1",
"license": "Apache-2.0",
"dependencies": {
"@puppeteer/browsers": "0.5.0",
@ -14094,7 +14094,7 @@
"https-proxy-agent": "5.0.1",
"progress": "2.0.3",
"proxy-from-env": "1.1.0",
"puppeteer-core": "19.11.0"
"puppeteer-core": "19.11.1"
}
},
"puppeteer-core": {

View File

@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [19.11.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.11.0...puppeteer-core-v19.11.1) (2023-04-25)
### Bug Fixes
* implement click `count` ([#10069](https://github.com/puppeteer/puppeteer/issues/10069)) ([8124a7d](https://github.com/puppeteer/puppeteer/commit/8124a7d5bfc1cfa8cb579271f78ce586efc62b8e))
* implement flag for disabling headless warning ([#10073](https://github.com/puppeteer/puppeteer/issues/10073)) ([cfe9bbc](https://github.com/puppeteer/puppeteer/commit/cfe9bbc852d014b31c754950590b6b6c96573eeb))
## [19.11.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.10.1...puppeteer-core-v19.11.0) (2023-04-24)

View File

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

View File

@ -8,6 +8,20 @@ All notable changes to this project will be documented in this file. See [standa
* dependencies
* @puppeteer/browsers bumped from 0.3.0 to 0.3.1
## [19.11.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.11.0...puppeteer-v19.11.1) (2023-04-25)
### Miscellaneous Chores
* **puppeteer:** Synchronize puppeteer versions
### Dependencies
* The following workspace dependencies were updated
* dependencies
* puppeteer-core bumped from 19.11.0 to 19.11.1
## [19.11.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.10.1...puppeteer-v19.11.0) (2023-04-24)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer",
"version": "19.11.0",
"version": "19.11.1",
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
"keywords": [
"puppeteer",
@ -120,7 +120,7 @@
"https-proxy-agent": "5.0.1",
"progress": "2.0.3",
"proxy-from-env": "1.1.0",
"puppeteer-core": "19.11.0",
"puppeteer-core": "19.11.1",
"@puppeteer/browsers": "0.5.0"
}
}

View File

@ -1,20 +0,0 @@
---
sidebar_label: ClickOptions
---
# ClickOptions interface
#### Signature:
```typescript
export interface ClickOptions
```
## Properties
| Property | Modifiers | Type | Description | Default |
| ---------- | --------------------- | ----------------------------------------- | ------------------------------------------------------------------------------------- | -------------- |
| button | <code>optional</code> | [MouseButton](./puppeteer.mousebutton.md) | | 'left' |
| clickCount | <code>optional</code> | number | | <code>1</code> |
| delay | <code>optional</code> | number | Time to wait between <code>mousedown</code> and <code>mouseup</code> in milliseconds. | <code>0</code> |
| offset | <code>optional</code> | [Offset](./puppeteer.offset.md) | Offset for the clickable point relative to the top-left corner of the border box. | |

View File

@ -1,27 +0,0 @@
---
sidebar_label: Mouse.click
---
# Mouse.click() method
Shortcut for `mouse.move`, `mouse.down` and `mouse.up`.
#### Signature:
```typescript
class Mouse {
click(x: number, y: number, options?: MouseClickOptions): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ----------------------------------------------------- | ------------------------------------------- |
| x | number | Horizontal position of the mouse. |
| y | number | Vertical position of the mouse. |
| options | [MouseClickOptions](./puppeteer.mouseclickoptions.md) | _(Optional)_ Options to configure behavior. |
**Returns:**
Promise&lt;void&gt;

View File

@ -0,0 +1,19 @@
---
sidebar_label: ClickOptions
---
# ClickOptions interface
#### Signature:
```typescript
export interface ClickOptions extends MouseClickOptions
```
**Extends:** [MouseClickOptions](./puppeteer.mouseclickoptions.md)
## Properties
| Property | Modifiers | Type | Description | Default |
| -------- | --------------------- | ------------------------------- | --------------------------------------------------------------------------------- | ------- |
| offset | <code>optional</code> | [Offset](./puppeteer.offset.md) | Offset for the clickable point relative to the top-left corner of the border box. | |

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