chore: release main (#10059)

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
This commit is contained in:
release-please[bot] 2023-04-24 13:31:02 +02:00 committed by GitHub
parent a6eaac4c39
commit 4815676f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
539 changed files with 125 additions and 75 deletions

View File

@ -1,6 +1,6 @@
{
"packages/puppeteer": "19.10.1",
"packages/puppeteer-core": "19.10.1",
"packages/puppeteer": "19.11.0",
"packages/puppeteer-core": "19.11.0",
"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.10.1",
"version": "19.11.0",
"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.10.1"
"puppeteer-core": "19.11.0"
}
},
"packages/puppeteer-core": {
"version": "19.10.1",
"version": "19.11.0",
"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.10.1"
"puppeteer-core": "19.11.0"
}
},
"puppeteer-core": {

View File

@ -2,6 +2,18 @@
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.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.10.1...puppeteer-core-v19.11.0) (2023-04-24)
### Features
* add warn for `headless: true` ([#10039](https://github.com/puppeteer/puppeteer/issues/10039)) ([23d6a95](https://github.com/puppeteer/puppeteer/commit/23d6a95cf10c90f8aba2b12d7b02a73072e20382))
### Bug Fixes
* infer last pressed button in mouse move ([#10067](https://github.com/puppeteer/puppeteer/issues/10067)) ([a6eaac4](https://github.com/puppeteer/puppeteer/commit/a6eaac4c39d4b0ab3ab1a3c2f319a70fde393edb))
## [19.10.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v19.10.0...puppeteer-core-v19.10.1) (2023-04-21)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer-core",
"version": "19.10.1",
"version": "19.11.0",
"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.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.10.1...puppeteer-v19.11.0) (2023-04-24)
### Miscellaneous Chores
* **puppeteer:** Synchronize puppeteer versions
### Dependencies
* The following workspace dependencies were updated
* dependencies
* puppeteer-core bumped from 19.10.1 to 19.11.0
## [19.10.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v19.10.0...puppeteer-v19.10.1) (2023-04-21)

View File

@ -1,6 +1,6 @@
{
"name": "puppeteer",
"version": "19.10.1",
"version": "19.11.0",
"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.10.1",
"puppeteer-core": "19.11.0",
"@puppeteer/browsers": "0.5.0"
}
}

View File

@ -1,29 +0,0 @@
---
sidebar_label: ElementHandle.uploadFile
---
# ElementHandle.uploadFile() method
This method expects `elementHandle` to point to an [input element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input).
#### Signature:
```typescript
class ElementHandle {
uploadFile(
this: ElementHandle<HTMLInputElement>,
...filePaths: string[]
): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | --------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| this | [ElementHandle](./puppeteer.elementhandle.md)&lt;HTMLInputElement&gt; | |
| filePaths | string\[\] | Sets the value of the file input to these paths. If a path is relative, then it is resolved against the [current working directory](https://nodejs.org/api/process.html#process_process_cwd). Note for locals script connecting to remote chrome environments, paths must be absolute. |
**Returns:**
Promise&lt;void&gt;

View File

@ -1,25 +0,0 @@
---
sidebar_label: FileChooser.accept
---
# FileChooser.accept() method
Accept the file chooser request with given paths.
#### Signature:
```typescript
class FileChooser {
accept(filePaths: string[]): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| filePaths | string\[\] | If some of the <code>filePaths</code> are relative paths, then they are resolved relative to the [current working directory](https://nodejs.org/api/process.html#process_process_cwd). |
**Returns:**
Promise&lt;void&gt;

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