From 2e48a564dd3b720bce1fd8b7e791543b8014b03a Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Fri, 9 Aug 2024 11:31:30 +0200 Subject: [PATCH 1/5] fix: do not wait for navigation event in navigate steps (#859) page.goto() already does it --- .../LighthouseStringifyExtension.test.ts.js | 24 ------------------- src/PuppeteerStringifyExtension.ts | 11 ++++----- 2 files changed, 5 insertions(+), 30 deletions(-) diff --git a/__snapshots__/LighthouseStringifyExtension.test.ts.js b/__snapshots__/LighthouseStringifyExtension.test.ts.js index ad41c510..83692855 100644 --- a/__snapshots__/LighthouseStringifyExtension.test.ts.js +++ b/__snapshots__/LighthouseStringifyExtension.test.ts.js @@ -26,13 +26,7 @@ const puppeteer = require('puppeteer'); // v23.0.0 or later await lhFlow.startNavigation(); { const targetPage = page; - const promises = []; - const startWaitingForEvents = () => { - promises.push(targetPage.waitForNavigation()); - } - startWaitingForEvents(); await targetPage.goto('https://example.com'); - await Promise.all(promises); } await lhFlow.endNavigation(); await lhFlow.startTimespan(); @@ -84,13 +78,7 @@ const puppeteer = require('puppeteer'); // v23.0.0 or later await lhFlow.startNavigation(); { const targetPage = page; - const promises = []; - const startWaitingForEvents = () => { - promises.push(targetPage.waitForNavigation()); - } - startWaitingForEvents(); await targetPage.goto('https://example.com'); - await Promise.all(promises); } await lhFlow.endNavigation(); await lhFlow.startTimespan(); @@ -111,13 +99,7 @@ const puppeteer = require('puppeteer'); // v23.0.0 or later await lhFlow.startNavigation(); { const targetPage = page; - const promises = []; - const startWaitingForEvents = () => { - promises.push(targetPage.waitForNavigation()); - } - startWaitingForEvents(); await targetPage.goto('https://example.com/page/'); - await Promise.all(promises); } await lhFlow.endNavigation(); const lhFlowReport = await lhFlow.generateReport(); @@ -156,13 +138,7 @@ const puppeteer = require('puppeteer'); // v23.0.0 or later await lhFlow.startNavigation(); { const targetPage = page; - const promises = []; - const startWaitingForEvents = () => { - promises.push(targetPage.waitForNavigation()); - } - startWaitingForEvents(); await targetPage.goto('https://example.com'); - await Promise.all(promises); } await lhFlow.endNavigation(); await lhFlow.startNavigation(); diff --git a/src/PuppeteerStringifyExtension.ts b/src/PuppeteerStringifyExtension.ts index dbf473ca..82cf761d 100644 --- a/src/PuppeteerStringifyExtension.ts +++ b/src/PuppeteerStringifyExtension.ts @@ -96,10 +96,12 @@ export class PuppeteerStringifyExtension extends StringifyExtension { out.appendLine(`const timeout = ${step.timeout};`); } this.#appendContext(out, step); - if (step.assertedEvents) { + const waitForEvents = + step.assertedEvents && step.type !== StepType.Navigate; + if (waitForEvents) { out.appendLine('const promises = [];'); out.appendLine('const startWaitingForEvents = () => {').startBlock(); - for (const event of step.assertedEvents) { + for (const event of step.assertedEvents!) { switch (event.type) { case AssertedEventType.Navigation: { out.appendLine( @@ -118,7 +120,7 @@ export class PuppeteerStringifyExtension extends StringifyExtension { this.#appendStepType(out, step); - if (step.assertedEvents) { + if (waitForEvents) { out.appendLine('await Promise.all(promises);'); } @@ -326,9 +328,6 @@ export class PuppeteerStringifyExtension extends StringifyExtension { } #appendNavigationStep(out: LineWriter, step: NavigateStep): void { - if (step.assertedEvents?.length) { - out.appendLine(`startWaitingForEvents();`); - } out.appendLine( `await targetPage.goto(${formatJSONAsJS(step.url, out.getIndent())});` ); From 11a667e88c214328a5de36e7d177eb8d5a448c4d Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Fri, 9 Aug 2024 11:36:50 +0200 Subject: [PATCH 2/5] build: bump min pptr version (#860) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9de4c3f6..72259bba 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ }, "peerDependencies": { "lighthouse": ">=10.0.0", - "puppeteer": ">=22.0.0" + "puppeteer": ">=23.0.0" }, "peerDependenciesMeta": { "puppeteer": { From 4ec67d2291df5b11312eee8faddcf0c6897a5e21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2024 09:43:08 +0200 Subject: [PATCH 3/5] chore(deps-dev): Bump the dev-dependencies group across 1 directory with 2 updates (#870) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the dev-dependencies group with 2 updates in the / directory: [puppeteer](https://github.com/puppeteer/puppeteer) and [puppeteer-core](https://github.com/puppeteer/puppeteer). Updates `puppeteer` from 23.0.1 to 23.1.1
Release notes

Sourced from puppeteer's releases.

puppeteer-core: v23.1.1

23.1.1 (2024-08-21)

Bug Fixes

puppeteer: v23.1.1

23.1.1 (2024-08-21)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.1.0 to 23.1.1

puppeteer-core: v23.1.0

23.1.0 (2024-08-14)

Features

  • improve type inference for selectors by adopting "typed-query-selector" (#12950) (77b729e)
  • support signal in WaitFor functions (#12926) (67e3be8)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.3.0 to 2.3.1

puppeteer: v23.1.0

23.1.0 (2024-08-14)

... (truncated)

Commits
  • 2c4a57b chore: release main (#12976)
  • d934cf5 fix: roll to Firefox 129.0.2 (#12987)
  • 69f9bca chore(deps-dev): Bump the dev-dependencies group across 1 directory with 15 u...
  • 26d54e3 chore(deps): Bump the all group across 1 directory with 9 updates (#12970)
  • 615823e ci: add cache to job (#12980)
  • e2277fa build: abort clean.mjs if not in a git repository (#12981)
  • 6d55c99 chore(deps): Bump the all group with 2 updates (#12971)
  • bfdc758 ci(browsers): pin Firefox under test to stable (#12977)
  • c9c5f13 chore(deps): Bump node from 1ae9ba8 to d3c8aba in /docker in the all grou...
  • b2b93d8 build: resolveDownloadPath should respect channel for Firefox (#12978)
  • Additional commits viewable in compare view

Updates `puppeteer-core` from 23.0.1 to 23.1.1
Release notes

Sourced from puppeteer-core's releases.

puppeteer-core: v23.1.1

23.1.1 (2024-08-21)

Bug Fixes

puppeteer-core: v23.1.0

23.1.0 (2024-08-14)

Features

  • improve type inference for selectors by adopting "typed-query-selector" (#12950) (77b729e)
  • support signal in WaitFor functions (#12926) (67e3be8)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.3.0 to 2.3.1

puppeteer-core: v23.0.2

23.0.2 (2024-08-08)

Bug Fixes

Commits
  • 2c4a57b chore: release main (#12976)
  • d934cf5 fix: roll to Firefox 129.0.2 (#12987)
  • 69f9bca chore(deps-dev): Bump the dev-dependencies group across 1 directory with 15 u...
  • 26d54e3 chore(deps): Bump the all group across 1 directory with 9 updates (#12970)
  • 615823e ci: add cache to job (#12980)
  • e2277fa build: abort clean.mjs if not in a git repository (#12981)
  • 6d55c99 chore(deps): Bump the all group with 2 updates (#12971)
  • bfdc758 ci(browsers): pin Firefox under test to stable (#12977)
  • c9c5f13 chore(deps): Bump node from 1ae9ba8 to d3c8aba in /docker in the all grou...
  • b2b93d8 build: resolveDownloadPath should respect channel for Firefox (#12978)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 42 +++++++++++++++++++++++++----------------- package.json | 4 ++-- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/package-lock.json b/package-lock.json index dc3adbd6..41b9b00a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,8 +43,8 @@ "mime": "3.0.0", "mocha": "10.2.0", "prettier": "3.2.4", - "puppeteer": "23.0.1", - "puppeteer-core": "23.0.1", + "puppeteer": "23.1.1", + "puppeteer-core": "23.1.1", "rimraf": "5.0.5", "rollup": "4.9.6", "rollup-plugin-dts": "6.1.0", @@ -60,7 +60,7 @@ }, "peerDependencies": { "lighthouse": ">=10.0.0", - "puppeteer": ">=22.0.0" + "puppeteer": ">=23.0.0" }, "peerDependenciesMeta": { "lighthouse": { @@ -606,12 +606,12 @@ } }, "node_modules/@puppeteer/browsers": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.3.0.tgz", - "integrity": "sha512-ioXoq9gPxkss4MYhD+SFaU9p1IHFUX0ILAWFPyjGaBdjLsYAlZw6j1iLA0N/m12uVHLFDfSYNF7EQccjinIMDA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.3.1.tgz", + "integrity": "sha512-uK7o3hHkK+naEobMSJ+2ySYyXtQkBxIH8Gn4MK9ciePjNV+Pf+PgY/W7iPzn2MTjl3stcYB5AlcTmPYw7AXDwA==", "dev": true, "dependencies": { - "debug": "^4.3.5", + "debug": "^4.3.6", "extract-zip": "^2.0.1", "progress": "^2.0.3", "proxy-agent": "^6.4.0", @@ -4655,35 +4655,37 @@ } }, "node_modules/puppeteer": { - "version": "23.0.1", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.0.1.tgz", - "integrity": "sha512-i5P0MJcpLZ+lK66/B6TX9G347+Yh4D6b5KGyzaz8b7wYrNenN55GwRa1svKoZMUGjFHcmtQuniE7qZ8/k/YbQw==", + "version": "23.1.1", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.1.1.tgz", + "integrity": "sha512-giN4Ikwl5hkkouH/dVyxIPTPslWuqZ8fjALdSw5Cvt+r0LuDpLdfPxRADlB75YJ2UjPZhgok+xYBYk8ffzv4MA==", "dev": true, "hasInstallScript": true, "dependencies": { - "@puppeteer/browsers": "2.3.0", + "@puppeteer/browsers": "2.3.1", "chromium-bidi": "0.6.4", "cosmiconfig": "^9.0.0", "devtools-protocol": "0.0.1312386", - "puppeteer-core": "23.0.1" + "puppeteer-core": "23.1.1", + "typed-query-selector": "^2.12.0" }, "bin": { - "puppeteer": "lib/esm/puppeteer/node/cli.js" + "puppeteer": "lib/cjs/puppeteer/node/cli.js" }, "engines": { "node": ">=18" } }, "node_modules/puppeteer-core": { - "version": "23.0.1", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.0.1.tgz", - "integrity": "sha512-gZYLcZUkWHZW1vvKEdOZuAB++3qY96Uh4b7B22PI0802omN4Ghrjt9H1r64NVt+AmnaZ/6Q+OW60S/Q7y+BZgQ==", + "version": "23.1.1", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.1.1.tgz", + "integrity": "sha512-OeTqNiYGF9qZtwZU4Yc88DDqFJs4TJ4rnK81jkillh6MwDeQodyisM9xe5lBmPhwiDy92s5J5DQtQLjCKHFQ3g==", "dev": true, "dependencies": { - "@puppeteer/browsers": "2.3.0", + "@puppeteer/browsers": "2.3.1", "chromium-bidi": "0.6.4", "debug": "^4.3.6", "devtools-protocol": "0.0.1312386", + "typed-query-selector": "^2.12.0", "ws": "^8.18.0" }, "engines": { @@ -5625,6 +5627,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/typed-query-selector": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz", + "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==", + "dev": true + }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", diff --git a/package.json b/package.json index 72259bba..e3e0f93f 100644 --- a/package.json +++ b/package.json @@ -77,8 +77,8 @@ "mime": "3.0.0", "mocha": "10.2.0", "prettier": "3.2.4", - "puppeteer": "23.0.1", - "puppeteer-core": "23.0.1", + "puppeteer": "23.1.1", + "puppeteer-core": "23.1.1", "rimraf": "5.0.5", "rollup": "4.9.6", "rollup-plugin-dts": "6.1.0", From b80edcab893e450d93d2362a622e8b4fe33e991a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2024 07:58:19 +0000 Subject: [PATCH 4/5] chore(deps): Bump the all group across 1 directory with 2 updates (#871) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the all group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/upload-artifact` from 4.3.5 to 4.3.6
Release notes

Sourced from actions/upload-artifact's releases.

v4.3.6

What's Changed

Full Changelog: https://github.com/actions/upload-artifact/compare/v4...v4.3.6

Commits

Updates `github/codeql-action` from 3.25.15 to 3.26.5
Changelog

Sourced from github/codeql-action's changelog.

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

[UNRELEASED]

No user facing changes.

3.26.5 - 23 Aug 2024

  • Fix an issue where the csrutil system call used for telemetry would fail on MacOS ARM machines with System Integrity Protection disabled. #2441

3.26.4 - 21 Aug 2024

  • Deprecation: The add-snippets input on the analyze Action is deprecated and will be removed in the first release in August 2025. #2436
  • Fix an issue where the disk usage system call used for telemetry would fail on MacOS ARM machines with System Integrity Protection disabled, and then surface a warning. The system call is now disabled for these machines. #2434

3.26.3 - 19 Aug 2024

  • Fix an issue where the CodeQL Action could not write diagnostic messages on Windows. This issue did not impact analysis quality. #2430

3.26.2 - 14 Aug 2024

  • Update default CodeQL bundle version to 2.18.2. #2417

3.26.1 - 13 Aug 2024

No user facing changes.

3.26.0 - 06 Aug 2024

  • Deprecation: Swift analysis on Ubuntu runner images is no longer supported. Please migrate to a macOS runner if this affects you. #2403
  • Bump the minimum CodeQL bundle version to 2.13.5. #2408

3.25.15 - 26 Jul 2024

  • Update default CodeQL bundle version to 2.18.1. #2385

3.25.14 - 25 Jul 2024

  • Experimental: add a new start-proxy action which starts the same HTTP proxy as used by github/dependabot-action. Do not use this in production as it is part of an internal experiment and subject to change at any time. #2376

3.25.13 - 19 Jul 2024

  • Add codeql-version to outputs. #2368
  • Add a deprecation warning for customers using CodeQL version 2.13.4 and earlier. These versions of CodeQL were discontinued on 9 July 2024 alongside GitHub Enterprise Server 3.9, and will be unsupported by CodeQL Action versions 3.26.0 and later and versions 2.26.0 and later. #2375
    • If you are using one of these versions, please update to CodeQL CLI version 2.13.5 or later. For instance, if you have specified a custom version of the CLI using the 'tools' input to the 'init' Action, you can remove this input to use the default version.
    • Alternatively, if you want to continue using a version of the CodeQL CLI between 2.12.6 and 2.13.4, you can replace github/codeql-action/*@v3 by github/codeql-action/*@v3.25.13 and github/codeql-action/*@v2 by github/codeql-action/*@v2.25.13 in your code scanning workflow to ensure you continue using this version of the CodeQL Action.

... (truncated)

Commits
  • 2c779ab Merge main into releases/v3 (#2444)
  • 68cd1f9 Update changelog for v3.26.5
  • 7e27807 Only run check SIP enablement once in init step (#2441)
  • fd5fa13 Merge pull request #2438 from github/mergeback/v3.26.4-to-main-f0f3afee
  • 6f10eb0 Update checked-in dependencies
  • b15a247 Update changelog and version after v3.26.4
  • f0f3afe Merge main into releases/v3 (#2437)
  • e354359 Update changelog for v3.26.4
  • ae01f80 Merge pull request #2436 from rvermeulen/rvermeulen/deprecate-add-snippets
  • 72bc3f7 Address incorrect changelog location
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/scorecards-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scorecards-analysis.yml b/.github/workflows/scorecards-analysis.yml index d3a2d58b..cb3af783 100644 --- a/.github/workflows/scorecards-analysis.yml +++ b/.github/workflows/scorecards-analysis.yml @@ -40,7 +40,7 @@ jobs: # Upload the results as artifacts (optional). - name: 'Upload artifact' - uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5 + uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6 with: name: SARIF file path: results.sarif @@ -48,6 +48,6 @@ jobs: # Upload the results to GitHub’s code scanning dashboard. - name: 'Upload to code-scanning' - uses: github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a # v3.25.15 + uses: github/codeql-action/upload-sarif@2c779ab0d087cd7fe7b826087247c2c81f27bfa6 # v3.26.5 with: sarif_file: results.sarif From 947399996b167aa4648119054eb44608f96c8148 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2024 09:05:05 +0000 Subject: [PATCH 5/5] chore(main): release 3.1.1 (#861) :robot: I have created a release *beep* *boop* --- ## [3.1.1](https://github.com/puppeteer/replay/compare/v3.1.0...v3.1.1) (2024-08-25) ### Bug Fixes * do not wait for navigation event in navigate steps ([#859](https://github.com/puppeteer/replay/issues/859)) ([2e48a56](https://github.com/puppeteer/replay/commit/2e48a564dd3b720bce1fd8b7e791543b8014b03a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ada7355e..b4b8d0ff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.1.0" + ".": "3.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 23f668f9..876a17d7 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. +## [3.1.1](https://github.com/puppeteer/replay/compare/v3.1.0...v3.1.1) (2024-08-25) + + +### Bug Fixes + +* do not wait for navigation event in navigate steps ([#859](https://github.com/puppeteer/replay/issues/859)) ([2e48a56](https://github.com/puppeteer/replay/commit/2e48a564dd3b720bce1fd8b7e791543b8014b03a)) + ## [3.1.0](https://github.com/puppeteer/replay/compare/v3.0.0...v3.1.0) (2024-08-07) diff --git a/package-lock.json b/package-lock.json index 41b9b00a..81d356f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@puppeteer/replay", - "version": "3.1.0", + "version": "3.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@puppeteer/replay", - "version": "3.1.0", + "version": "3.1.1", "license": "Apache-2.0", "dependencies": { "cli-table3": "0.6.5", diff --git a/package.json b/package.json index e3e0f93f..ab34768b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@puppeteer/replay", - "version": "3.1.0", + "version": "3.1.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",