Skip to content

Commit

Permalink
chore: release main (#11331)
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 Nov 9, 2023
1 parent d2480b0 commit 245f382
Show file tree
Hide file tree
Showing 583 changed files with 70 additions and 48 deletions.
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/puppeteer": "21.5.0",
"packages/puppeteer-core": "21.5.0",
"packages/puppeteer": "21.5.1",
"packages/puppeteer-core": "21.5.1",
"packages/testserver": "0.6.0",
"packages/ng-schematics": "0.5.0",
"packages/browsers": "1.8.0"
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
Original file line number Diff line number Diff line change
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.5.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v21.5.0...puppeteer-core-v21.5.1) (2023-11-09)


### Bug Fixes

* better debugging for WaitTask ([#11330](https://github.com/puppeteer/puppeteer/issues/11330)) ([d2480b0](https://github.com/puppeteer/puppeteer/commit/d2480b022d74b7071b515408a31c6e82448e3c9e))

## [21.5.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-core-v21.4.1...puppeteer-core-v21.5.0) (2023-11-02)


Expand Down
2 changes: 1 addition & 1 deletion packages/puppeteer-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppeteer-core",
"version": "21.5.0",
"version": "21.5.1",
"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
Original file line number Diff line number Diff line change
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.5.1](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.0...puppeteer-v21.5.1) (2023-11-09)


### Miscellaneous Chores

* **puppeteer:** Synchronize puppeteer versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* puppeteer-core bumped from 21.5.0 to 21.5.1

## [21.5.0](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.4.1...puppeteer-v21.5.0) (2023-11-02)


Expand Down
4 changes: 2 additions & 2 deletions packages/puppeteer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppeteer",
"version": "21.5.0",
"version": "21.5.1",
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
"keywords": [
"puppeteer",
Expand Down Expand Up @@ -123,7 +123,7 @@
"license": "Apache-2.0",
"dependencies": {
"cosmiconfig": "8.3.6",
"puppeteer-core": "21.5.0",
"puppeteer-core": "21.5.1",
"@puppeteer/browsers": "1.8.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Aborts a request.

```typescript
class HTTPRequest {
abort(errorCode?: ErrorCode, priority?: number): Promise<void>;
abstract abort(errorCode?: ErrorCode, priority?: number): Promise<void>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The most recent reason for aborting the request

```typescript
class HTTPRequest {
abortErrorReason(): Protocol.Network.ErrorReason | null;
abstract abortErrorReason(): Protocol.Network.ErrorReason | null;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Continues request with optional request overrides.

```typescript
class HTTPRequest {
continue(
abstract continue(
overrides?: ContinueRequestOverrides,
priority?: number
): Promise<void>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The `ContinueRequestOverrides` that will be used if the interception is allowed

```typescript
class HTTPRequest {
continueRequestOverrides(): ContinueRequestOverrides;
abstract continueRequestOverrides(): ContinueRequestOverrides;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Adds an async request handler to the processing queue. Deferred handlers are not

```typescript
class HTTPRequest {
enqueueInterceptAction(
abstract enqueueInterceptAction(
pendingHandler: () => void | PromiseLike<unknown>
): void;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Access information about the request's failure.

```typescript
class HTTPRequest {
failure(): {
abstract failure(): {
errorText: string;
} | null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Awaits pending interception handlers and then decides how to fulfill the request

```typescript
class HTTPRequest {
finalizeInterceptions(): Promise<void>;
abstract finalizeInterceptions(): Promise<void>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The frame that initiated the request, or null if navigating to error pages.

```typescript
class HTTPRequest {
frame(): Frame | null;
abstract frame(): Frame | null;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ An object with HTTP headers associated with the request. All header names are lo

```typescript
class HTTPRequest {
headers(): Record<string, string>;
abstract headers(): Record<string, string>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The initiator of the request.

```typescript
class HTTPRequest {
initiator(): Protocol.Network.Initiator | undefined;
abstract initiator(): Protocol.Network.Initiator | undefined;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ InterceptResolutionAction is one of: `abort`, `respond`, `continue`, `disabled`,

```typescript
class HTTPRequest {
interceptResolutionState(): InterceptResolutionState;
abstract interceptResolutionState(): InterceptResolutionState;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Is `true` if the intercept resolution has already been handled, `false` otherwis

```typescript
class HTTPRequest {
isInterceptResolutionHandled(): boolean;
abstract isInterceptResolutionHandled(): boolean;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ True if the request is the driver of the current frame's navigation.

```typescript
class HTTPRequest {
isNavigationRequest(): boolean;
abstract isNavigationRequest(): boolean;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Represents an HTTP request sent by a page.
#### Signature:

```typescript
export declare class HTTPRequest
export declare abstract class HTTPRequest
```

## Remarks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The method used (`GET`, `POST`, etc.)

```typescript
class HTTPRequest {
method(): string;
abstract method(): string;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The request's post body, if any.

```typescript
class HTTPRequest {
postData(): string | undefined;
abstract postData(): string | undefined;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A `redirectChain` is a chain of requests initiated to fetch a resource.

```typescript
class HTTPRequest {
redirectChain(): HTTPRequest[];
abstract redirectChain(): HTTPRequest[];
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Contains the request's resource type as it was perceived by the rendering engine

```typescript
class HTTPRequest {
resourceType(): ResourceType;
abstract resourceType(): ResourceType;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Fulfills a request with the given response.

```typescript
class HTTPRequest {
respond(
abstract respond(
response: Partial<ResponseForRequest>,
priority?: number
): Promise<void>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A matching `HTTPResponse` object, or null if the response has not been received

```typescript
class HTTPRequest {
response(): HTTPResponse | null;
abstract response(): HTTPResponse | null;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The `ResponseForRequest` that gets used if the interception is allowed to respon

```typescript
class HTTPRequest {
responseForRequest(): Partial<ResponseForRequest> | null;
abstract responseForRequest(): Partial<ResponseForRequest> | null;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The URL of the request

```typescript
class HTTPRequest {
url(): string;
abstract url(): string;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Promise which resolves to a buffer with response body.

```typescript
class HTTPResponse {
buffer(): Promise<Buffer>;
abstract buffer(): Promise<Buffer>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A [Frame](./puppeteer.frame.md) that initiated this response, or `null` if navig

```typescript
class HTTPResponse {
frame(): Frame | null;
abstract frame(): Frame | null;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ True if the response was served from either the browser's disk cache or memory c

```typescript
class HTTPResponse {
fromCache(): boolean;
abstract fromCache(): boolean;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ True if the response was served by a service worker.

```typescript
class HTTPResponse {
fromServiceWorker(): boolean;
abstract fromServiceWorker(): boolean;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ An object with HTTP headers associated with the response. All header names are l

```typescript
class HTTPResponse {
headers(): Record<string, string>;
abstract headers(): Record<string, string>;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The HTTPResponse class represents responses which are received by the [Page](./p
#### Signature:

```typescript
export declare class HTTPResponse
export declare abstract class HTTPResponse
```

## Remarks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The IP address and port number used to connect to the remote server.

```typescript
class HTTPResponse {
remoteAddress(): RemoteAddress;
abstract remoteAddress(): RemoteAddress;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A matching [HTTPRequest](./puppeteer.httprequest.md) object.

```typescript
class HTTPResponse {
request(): HTTPRequest;
abstract request(): HTTPRequest;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sidebar_label: HTTPResponse.securityDetails

```typescript
class HTTPResponse {
securityDetails(): SecurityDetails | null;
abstract securityDetails(): SecurityDetails | null;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The status code of the response (e.g., 200 for a success).

```typescript
class HTTPResponse {
status(): number;
abstract status(): number;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The status text of the response (e.g. usually an "OK" for a success).

```typescript
class HTTPResponse {
statusText(): string;
abstract statusText(): string;
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Timing information related to the response.

```typescript
class HTTPResponse {
timing(): Protocol.Network.ResourceTiming | null;
abstract timing(): Protocol.Network.ResourceTiming | null;
}
```

Expand Down

0 comments on commit 245f382

Please sign in to comment.