Skip to content

Commit

Permalink
chore: release main (#11010)
Browse files Browse the repository at this point in the history
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
  • Loading branch information
release-please[bot] committed Sep 22, 2023
1 parent 5081094 commit 50f07a8
Show file tree
Hide file tree
Showing 578 changed files with 46 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .release-please-manifest.json
@@ -1,6 +1,6 @@
{
"packages/puppeteer": "21.3.3",
"packages/puppeteer-core": "21.3.3",
"packages/puppeteer": "21.3.4",
"packages/puppeteer-core": "21.3.4",
"packages/testserver": "0.6.0",
"packages/ng-schematics": "0.5.0",
"packages/browsers": "1.7.1"
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/puppeteer-core/CHANGELOG.md
Expand Up @@ -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.4](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v21.3.3...puppeteer-core-v21.3.4) (2023-09-22)


### Bug Fixes

* avoid structuredClone for Node 16 ([#11006](https://github.com/puppeteer/puppeteer/issues/11006)) ([25eca9a](https://github.com/puppeteer/puppeteer/commit/25eca9a747c122b3096b0f2d01b3323339d57dd9))

## [21.3.3](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v21.3.2...puppeteer-core-v21.3.3) (2023-09-22)


Expand Down
2 changes: 1 addition & 1 deletion packages/puppeteer-core/package.json
@@ -1,6 +1,6 @@
{
"name": "puppeteer-core",
"version": "21.3.3",
"version": "21.3.4",
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
"keywords": [
"puppeteer",
Expand Down
14 changes: 14 additions & 0 deletions packages/puppeteer/CHANGELOG.md
Expand Up @@ -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.4](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.3.3...puppeteer-v21.3.4) (2023-09-22)


### Miscellaneous Chores

* **puppeteer:** Synchronize puppeteer versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* puppeteer-core bumped from 21.3.3 to 21.3.4

## [21.3.3](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.3.2...puppeteer-v21.3.3) (2023-09-22)


Expand Down
4 changes: 2 additions & 2 deletions packages/puppeteer/package.json
@@ -1,6 +1,6 @@
{
"name": "puppeteer",
"version": "21.3.3",
"version": "21.3.4",
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
"keywords": [
"puppeteer",
Expand Down Expand Up @@ -122,7 +122,7 @@
"license": "Apache-2.0",
"dependencies": {
"cosmiconfig": "8.3.6",
"puppeteer-core": "21.3.3",
"puppeteer-core": "21.3.4",
"@puppeteer/browsers": "1.7.1"
},
"devDependencies": {
Expand Down
Expand Up @@ -10,7 +10,10 @@ Dispatches a `keydown` event.

```typescript
class Keyboard {
down(key: KeyInput, options?: Readonly<KeyDownOptions>): Promise<void>;
abstract down(
key: KeyInput,
options?: Readonly<KeyDownOptions>
): Promise<void>;
}
```

Expand Down
Expand Up @@ -9,7 +9,7 @@ Keyboard provides an api for managing a virtual keyboard. The high level api is
#### Signature:

```typescript
export declare class Keyboard
export declare abstract class Keyboard
```

## Remarks
Expand Down
Expand Up @@ -10,7 +10,10 @@ Shortcut for [Keyboard.down()](./puppeteer.keyboard.down.md) and [Keyboard.up()]

```typescript
class Keyboard {
press(key: KeyInput, options?: Readonly<KeyPressOptions>): Promise<void>;
abstract press(
key: KeyInput,
options?: Readonly<KeyPressOptions>
): Promise<void>;
}
```

Expand Down
Expand Up @@ -10,7 +10,7 @@ Dispatches a `keypress` and `input` event. This does not send a `keydown` or `ke

```typescript
class Keyboard {
sendCharacter(char: string): Promise<void>;
abstract sendCharacter(char: string): Promise<void>;
}
```

Expand Down
Expand Up @@ -10,7 +10,10 @@ Sends a `keydown`, `keypress`/`input`, and `keyup` event for each character in t

```typescript
class Keyboard {
type(text: string, options?: Readonly<KeyboardTypeOptions>): Promise<void>;
abstract type(
text: string,
options?: Readonly<KeyboardTypeOptions>
): Promise<void>;
}
```

Expand Down
Expand Up @@ -10,7 +10,7 @@ Dispatches a `keyup` event.

```typescript
class Keyboard {
up(key: KeyInput): Promise<void>;
abstract up(key: KeyInput): Promise<void>;
}
```

Expand Down

0 comments on commit 50f07a8

Please sign in to comment.