diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ddfb5d57..10d7e57d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.12.2" + ".": "2.12.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 390adf7c..7374d383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.12.3](https://github.com/puppeteer/replay/compare/v2.12.2...v2.12.3) (2023-07-07) + + +### Bug Fixes + +* remove overescaping ([#598](https://github.com/puppeteer/replay/issues/598)) ([f3a96ac](https://github.com/puppeteer/replay/commit/f3a96ac3fed0300778cc39885b6fc87728921261)) + ## [2.12.2](https://github.com/puppeteer/replay/compare/v2.12.1...v2.12.2) (2023-07-07) diff --git a/docs/api/README.md b/docs/api/README.md index 21d7b172..c9f28aa1 100644 --- a/docs/api/README.md +++ b/docs/api/README.md @@ -255,7 +255,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:564](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L564) +[SchemaUtils.ts:563](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L563) --- @@ -265,7 +265,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:563](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L563) +[SchemaUtils.ts:562](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L562) --- @@ -275,7 +275,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:71](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L71) +[SchemaUtils.ts:70](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L70) --- @@ -285,7 +285,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:65](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L65) +[SchemaUtils.ts:64](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L64) --- @@ -295,7 +295,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:54](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L54) +[SchemaUtils.ts:53](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L53) ## Functions @@ -315,7 +315,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:49](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L49) +[SchemaUtils.ts:48](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L48) --- @@ -449,7 +449,7 @@ therefore, SelectorType.CSS is the default type if other types didn't match. #### Defined in -[SchemaUtils.ts:616](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L616) +[SchemaUtils.ts:615](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L615) --- @@ -469,7 +469,7 @@ therefore, SelectorType.CSS is the default type if other types didn't match. #### Defined in -[SchemaUtils.ts:572](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L572) +[SchemaUtils.ts:571](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L571) --- @@ -512,7 +512,7 @@ Extracts a source map from a text. #### Defined in -[SchemaUtils.ts:496](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L496) +[SchemaUtils.ts:495](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L495) --- @@ -538,7 +538,7 @@ https://pptr.dev/guides/query-selectors#p-elements #### Defined in -[SchemaUtils.ts:630](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L630) +[SchemaUtils.ts:629](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L629) --- @@ -634,4 +634,4 @@ Stringifes a single step. Only the following hooks are invoked with the `flow` p #### Defined in -[SchemaUtils.ts:568](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L568) +[SchemaUtils.ts:567](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L567) diff --git a/package-lock.json b/package-lock.json index 94594062..895dd730 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@puppeteer/replay", - "version": "2.12.2", + "version": "2.12.3", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 78ec4475..43d91fff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@puppeteer/replay", - "version": "2.12.2", + "version": "2.12.3", "description": "Replay is a library which provides an API to replay and stringify recordings created using Chrome DevTools Recorder](https://developer.chrome.com/docs/devtools/recorder/)", "main": "lib/cjs/main.cjs", "types": "lib/main.d.ts",