diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6ed9c801..984e5f0f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.7.0" + ".": "2.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 70032659..1a8e78db 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.7.1](https://github.com/puppeteer/replay/compare/v2.7.0...v2.7.1) (2022-12-22) + + +### Bug Fixes + +* add parsing for `visible`, `attributes`, and `properties` ([#419](https://github.com/puppeteer/replay/issues/419)) ([856d6dd](https://github.com/puppeteer/replay/commit/856d6dd20a550dbaa3aa59cb2b15da0ba5c9f289)) + ## [2.7.0](https://github.com/puppeteer/replay/compare/v2.6.1...v2.7.0) (2022-12-16) diff --git a/docs/api/README.md b/docs/api/README.md index 88b18191..582c9d22 100644 --- a/docs/api/README.md +++ b/docs/api/README.md @@ -253,7 +253,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:529](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L529) +[SchemaUtils.ts:560](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L560) --- @@ -263,7 +263,7 @@ The format is [version, [lineNo, length], [lineNo, length] ... [lineNo, length]] #### Defined in -[SchemaUtils.ts:528](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L528) +[SchemaUtils.ts:559](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L559) --- @@ -447,7 +447,7 @@ therefore, SelectorType.CSS is the default type if other types didn't match. #### Defined in -[SchemaUtils.ts:581](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L581) +[SchemaUtils.ts:612](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L612) --- @@ -467,7 +467,7 @@ therefore, SelectorType.CSS is the default type if other types didn't match. #### Defined in -[SchemaUtils.ts:537](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L537) +[SchemaUtils.ts:568](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L568) --- @@ -510,7 +510,7 @@ Extracts a source map from a text. #### Defined in -[SchemaUtils.ts:461](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L461) +[SchemaUtils.ts:492](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L492) --- @@ -606,4 +606,4 @@ Stringifes a single step. Only the following hooks are invoked with the `flow` p #### Defined in -[SchemaUtils.ts:533](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L533) +[SchemaUtils.ts:564](https://github.com/puppeteer/replay/blob/main/src/SchemaUtils.ts#L564) diff --git a/package-lock.json b/package-lock.json index 2571808c..43804c7e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@puppeteer/replay", - "version": "2.7.0", + "version": "2.7.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@puppeteer/replay", - "version": "2.7.0", + "version": "2.7.1", "license": "Apache-2.0", "dependencies": { "cli-table3": "0.6.3", diff --git a/package.json b/package.json index d3321c19..af9eb5cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@puppeteer/replay", - "version": "2.7.0", + "version": "2.7.1", "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",