Skip to content

Commit

Permalink
chore(main): release 2.11.0 (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
release-please[bot] authored Apr 20, 2023
1 parent 10babeb commit e5197f2
Show file tree
Hide file tree
Showing 39 changed files with 204 additions and 107 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.10.2"
".": "2.11.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

## [2.11.0](https://github.com/puppeteer/replay/compare/v2.10.2...v2.11.0) (2023-04-20)


### Features

* move `duration` to click attributes ([#507](https://github.com/puppeteer/replay/issues/507)) ([a87dbdd](https://github.com/puppeteer/replay/commit/a87dbdd1502e6c4196341fd38da86c38d25177b5))

## [2.10.2](https://github.com/puppeteer/replay/compare/v2.10.1...v2.10.2) (2023-03-07)


Expand Down
14 changes: 7 additions & 7 deletions docs/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

#### Defined in

[Schema.ts:295](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L295)
[Schema.ts:296](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L296)

---

Expand All @@ -122,7 +122,7 @@

#### Defined in

[Schema.ts:212](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L212)
[Schema.ts:213](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L213)

---

Expand All @@ -142,7 +142,7 @@

#### Defined in

[Schema.ts:317](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L317)
[Schema.ts:318](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L318)

---

Expand Down Expand Up @@ -182,7 +182,7 @@

#### Defined in

[Schema.ts:197](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L197)
[Schema.ts:198](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L198)

---

Expand All @@ -192,7 +192,7 @@

#### Defined in

[Schema.ts:199](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L199)
[Schema.ts:200](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L200)

---

Expand Down Expand Up @@ -224,7 +224,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]]

#### Defined in

[Schema.ts:297](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L297)
[Schema.ts:298](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L298)

---

Expand All @@ -244,7 +244,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]]

#### Defined in

[Schema.ts:216](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L216)
[Schema.ts:217](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L217)

## Variables

Expand Down
2 changes: 1 addition & 1 deletion docs/api/classes/PuppeteerRunnerOwningBrowserExtension.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

#### Defined in

[PuppeteerRunnerExtension.ts:372](https://github.com/puppeteer/replay/blob/main/src/PuppeteerRunnerExtension.ts#L372)
[PuppeteerRunnerExtension.ts:380](https://github.com/puppeteer/replay/blob/main/src/PuppeteerRunnerExtension.ts#L380)

---

Expand Down
4 changes: 2 additions & 2 deletions docs/api/interfaces/ChangeStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Defaults to main

#### Defined in

[Schema.ts:150](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L150)
[Schema.ts:151](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L151)

---

Expand All @@ -133,4 +133,4 @@ Defaults to main

#### Defined in

[Schema.ts:151](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L151)
[Schema.ts:152](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L152)
17 changes: 17 additions & 0 deletions docs/api/interfaces/ClickAttributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- [button](ClickAttributes.md#button)
- [deviceType](ClickAttributes.md#devicetype)
- [duration](ClickAttributes.md#duration)
- [offsetX](ClickAttributes.md#offsetx)
- [offsetY](ClickAttributes.md#offsety)

Expand Down Expand Up @@ -37,6 +38,22 @@ Pointer type for the event. Defaults to 'mouse'.

---

### duration

`Optional` **duration**: `number`

Delay (in ms) between the mouse up and mouse down of the click.

**`Default Value`**

`50`

#### Defined in

[Schema.ts:135](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L135)

---

### offsetX

**offsetX**: `number`
Expand Down
15 changes: 11 additions & 4 deletions docs/api/interfaces/ClickStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,19 @@ Pointer type for the event. Defaults to 'mouse'.

`Optional` **duration**: `number`

Delay (in ms) between the mouse up and mouse down of the click. Defaults to
50ms.
Delay (in ms) between the mouse up and mouse down of the click.

**`Default Value`**

`50`

#### Inherited from

[ClickAttributes](Schema.ClickAttributes.md).[duration](Schema.ClickAttributes.md#duration)

#### Defined in

[Schema.ts:142](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L142)
[Schema.ts:135](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L135)

---

Expand Down Expand Up @@ -208,4 +215,4 @@ Defaults to main

#### Defined in

[Schema.ts:137](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L137)
[Schema.ts:143](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L143)
2 changes: 1 addition & 1 deletion docs/api/interfaces/CloseStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ Defaults to main

#### Defined in

[Schema.ts:172](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L172)
[Schema.ts:173](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L173)
6 changes: 3 additions & 3 deletions docs/api/interfaces/CustomStepParams.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#### Defined in

[Schema.ts:208](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L208)
[Schema.ts:209](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L209)

---

Expand All @@ -28,7 +28,7 @@

#### Defined in

[Schema.ts:209](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L209)
[Schema.ts:210](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L210)

---

Expand All @@ -38,4 +38,4 @@

#### Defined in

[Schema.ts:207](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L207)
[Schema.ts:208](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L208)
23 changes: 22 additions & 1 deletion docs/api/interfaces/DoubleClickStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- [assertedEvents](DoubleClickStep.md#assertedevents)
- [button](DoubleClickStep.md#button)
- [deviceType](DoubleClickStep.md#devicetype)
- [duration](DoubleClickStep.md#duration)
- [frame](DoubleClickStep.md#frame)
- [offsetX](DoubleClickStep.md#offsetx)
- [offsetY](DoubleClickStep.md#offsety)
Expand Down Expand Up @@ -73,6 +74,26 @@ Pointer type for the event. Defaults to 'mouse'.

---

### duration

`Optional` **duration**: `number`

Delay (in ms) between the mouse up and mouse down of the click.

**`Default Value`**

`50`

#### Inherited from

[ClickAttributes](Schema.ClickAttributes.md).[duration](Schema.ClickAttributes.md#duration)

#### Defined in

[Schema.ts:135](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L135)

---

### frame

`Optional` **frame**: [`FrameSelector`](../modules/Schema.md#frameselector)
Expand Down Expand Up @@ -194,4 +215,4 @@ Defaults to main

#### Defined in

[Schema.ts:133](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L133)
[Schema.ts:139](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L139)
8 changes: 4 additions & 4 deletions docs/api/interfaces/EmulateNetworkConditionsStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#### Defined in

[Schema.ts:156](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L156)
[Schema.ts:157](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L157)

---

Expand All @@ -52,7 +52,7 @@

#### Defined in

[Schema.ts:158](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L158)
[Schema.ts:159](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L159)

---

Expand Down Expand Up @@ -96,7 +96,7 @@ Defaults to main

#### Defined in

[Schema.ts:155](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L155)
[Schema.ts:156](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L156)

---

Expand All @@ -106,4 +106,4 @@ Defaults to main

#### Defined in

[Schema.ts:157](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L157)
[Schema.ts:158](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L158)
2 changes: 1 addition & 1 deletion docs/api/interfaces/HoverStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ Defaults to main

#### Defined in

[Schema.ts:146](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L146)
[Schema.ts:147](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L147)
4 changes: 2 additions & 2 deletions docs/api/interfaces/KeyDownStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#### Defined in

[Schema.ts:163](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L163)
[Schema.ts:164](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L164)

---

Expand Down Expand Up @@ -84,4 +84,4 @@ Defaults to main

#### Defined in

[Schema.ts:162](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L162)
[Schema.ts:163](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L163)
4 changes: 2 additions & 2 deletions docs/api/interfaces/KeyUpStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

#### Defined in

[Schema.ts:168](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L168)
[Schema.ts:169](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L169)

---

Expand Down Expand Up @@ -84,4 +84,4 @@ Defaults to main

#### Defined in

[Schema.ts:167](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L167)
[Schema.ts:168](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L168)
4 changes: 2 additions & 2 deletions docs/api/interfaces/NavigateStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Defaults to main

#### Defined in

[Schema.ts:202](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L202)
[Schema.ts:203](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L203)

---

Expand All @@ -84,4 +84,4 @@ Defaults to main

#### Defined in

[Schema.ts:203](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L203)
[Schema.ts:204](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L204)
4 changes: 2 additions & 2 deletions docs/api/interfaces/Schema.ChangeStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Defaults to main

#### Defined in

[Schema.ts:150](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L150)
[Schema.ts:151](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L151)

---

Expand All @@ -135,4 +135,4 @@ Defaults to main

#### Defined in

[Schema.ts:151](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L151)
[Schema.ts:152](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L152)
17 changes: 17 additions & 0 deletions docs/api/interfaces/Schema.ClickAttributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

- [button](Schema.ClickAttributes.md#button)
- [deviceType](Schema.ClickAttributes.md#devicetype)
- [duration](Schema.ClickAttributes.md#duration)
- [offsetX](Schema.ClickAttributes.md#offsetx)
- [offsetY](Schema.ClickAttributes.md#offsety)

Expand Down Expand Up @@ -51,6 +52,22 @@ Pointer type for the event. Defaults to 'mouse'.

---

### duration

`Optional` **duration**: `number`

Delay (in ms) between the mouse up and mouse down of the click.

**`Default Value`**

`50`

#### Defined in

[Schema.ts:135](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L135)

---

### offsetX

**offsetX**: `number`
Expand Down
15 changes: 11 additions & 4 deletions docs/api/interfaces/Schema.ClickStep.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,19 @@ Pointer type for the event. Defaults to 'mouse'.

`Optional` **duration**: `number`

Delay (in ms) between the mouse up and mouse down of the click. Defaults to
50ms.
Delay (in ms) between the mouse up and mouse down of the click.

**`Default Value`**

`50`

#### Inherited from

[ClickAttributes](Schema.ClickAttributes.md).[duration](Schema.ClickAttributes.md#duration)

#### Defined in

[Schema.ts:142](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L142)
[Schema.ts:135](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L135)

---

Expand Down Expand Up @@ -210,4 +217,4 @@ Defaults to main

#### Defined in

[Schema.ts:137](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L137)
[Schema.ts:143](https://github.com/puppeteer/replay/blob/main/src/Schema.ts#L143)
Loading

0 comments on commit e5197f2

Please sign in to comment.