From a6d7ddcfce2dc44e66694b46e38ca1c64df7b961 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:50:13 -0400 Subject: [PATCH] Version Packages (#499) Co-authored-by: github-actions[bot] --- .changeset/fresh-kiwis-drop.md | 5 ----- .changeset/new-dogs-nail.md | 5 ----- .changeset/pink-mayflies-greet.md | 6 ------ .changeset/serious-coins-mate.md | 5 ----- .changeset/wicked-suits-cheat.md | 5 ----- packages/cypress/CHANGELOG.md | 7 +++++++ packages/cypress/package.json | 2 +- packages/playwright/CHANGELOG.md | 8 ++++++++ packages/playwright/package.json | 2 +- packages/replayio/CHANGELOG.md | 12 ++++++++++++ packages/replayio/package.json | 2 +- 11 files changed, 30 insertions(+), 29 deletions(-) delete mode 100644 .changeset/fresh-kiwis-drop.md delete mode 100644 .changeset/new-dogs-nail.md delete mode 100644 .changeset/pink-mayflies-greet.md delete mode 100644 .changeset/serious-coins-mate.md delete mode 100644 .changeset/wicked-suits-cheat.md create mode 100644 packages/cypress/CHANGELOG.md diff --git a/.changeset/fresh-kiwis-drop.md b/.changeset/fresh-kiwis-drop.md deleted file mode 100644 index 8c5be7b2..00000000 --- a/.changeset/fresh-kiwis-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"replayio": patch ---- - -Improved the way `recordings.log` gets processed. It should fix parsing issues when the log contains strings with `}{` inside them. diff --git a/.changeset/new-dogs-nail.md b/.changeset/new-dogs-nail.md deleted file mode 100644 index fc8c4f6a..00000000 --- a/.changeset/new-dogs-nail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"replayio": minor ---- - -For recordings of e2e tests, the test name will be shown as the recording title diff --git a/.changeset/pink-mayflies-greet.md b/.changeset/pink-mayflies-greet.md deleted file mode 100644 index b93dc813..00000000 --- a/.changeset/pink-mayflies-greet.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@replayio/playwright": patch -"@replayio/cypress": patch ---- - -Make `RECORD_REPLAY_ENABLE_ASSERTS` environment forwardable to the browser process diff --git a/.changeset/serious-coins-mate.md b/.changeset/serious-coins-mate.md deleted file mode 100644 index fdcf0ab2..00000000 --- a/.changeset/serious-coins-mate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"replayio": patch ---- - -The launched browser will now get correctly closed on Ctrl+C when recording diff --git a/.changeset/wicked-suits-cheat.md b/.changeset/wicked-suits-cheat.md deleted file mode 100644 index 145c2854..00000000 --- a/.changeset/wicked-suits-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@replayio/playwright": patch ---- - -Added a warning when the reporter gets used without the Replay browser diff --git a/packages/cypress/CHANGELOG.md b/packages/cypress/CHANGELOG.md new file mode 100644 index 00000000..bcc766ea --- /dev/null +++ b/packages/cypress/CHANGELOG.md @@ -0,0 +1,7 @@ +# @replayio/cypress + +## 2.1.2 + +### Patch Changes + +- [#501](https://github.com/replayio/replay-cli/pull/501) [`e7c637c`](https://github.com/replayio/replay-cli/commit/e7c637ca95fc1ba649fd8cc87fc15059250f8ae1) Thanks [@Andarist](https://github.com/Andarist)! - Make `RECORD_REPLAY_ENABLE_ASSERTS` environment forwardable to the browser process diff --git a/packages/cypress/package.json b/packages/cypress/package.json index adbce071..b4b95600 100644 --- a/packages/cypress/package.json +++ b/packages/cypress/package.json @@ -1,6 +1,6 @@ { "name": "@replayio/cypress", - "version": "2.1.1", + "version": "2.1.2", "description": "Plugin to record your Cypress tests with Replay", "main": "./dist/index.js", "bin": { diff --git a/packages/playwright/CHANGELOG.md b/packages/playwright/CHANGELOG.md index 7e0db233..a2ce59f8 100644 --- a/packages/playwright/CHANGELOG.md +++ b/packages/playwright/CHANGELOG.md @@ -1,5 +1,13 @@ # @replayio/playwright +## 3.0.2 + +### Patch Changes + +- [#501](https://github.com/replayio/replay-cli/pull/501) [`e7c637c`](https://github.com/replayio/replay-cli/commit/e7c637ca95fc1ba649fd8cc87fc15059250f8ae1) Thanks [@Andarist](https://github.com/Andarist)! - Make `RECORD_REPLAY_ENABLE_ASSERTS` environment forwardable to the browser process + +- [#502](https://github.com/replayio/replay-cli/pull/502) [`9122af4`](https://github.com/replayio/replay-cli/commit/9122af45618741cf2b222b461eddee016e38db43) Thanks [@Andarist](https://github.com/Andarist)! - Added a warning when the reporter gets used without the Replay browser + ## 3.0.1 ### Patch Changes diff --git a/packages/playwright/package.json b/packages/playwright/package.json index f9c9e2a5..b75c60ff 100644 --- a/packages/playwright/package.json +++ b/packages/playwright/package.json @@ -1,6 +1,6 @@ { "name": "@replayio/playwright", - "version": "3.0.1", + "version": "3.0.2", "description": "Configuration utilities for using the Replay browsers with playwright", "main": "./dist/index.js", "exports": { diff --git a/packages/replayio/CHANGELOG.md b/packages/replayio/CHANGELOG.md index eac38bea..60f82213 100644 --- a/packages/replayio/CHANGELOG.md +++ b/packages/replayio/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.3.0 + +### Minor Changes + +- [#505](https://github.com/replayio/replay-cli/pull/505) [`631352b`](https://github.com/replayio/replay-cli/commit/631352b3eca27a2b330972fec9f4d5b859b2fac3) Thanks [@bvaughn](https://github.com/bvaughn)! - For recordings of e2e tests, the test name will be shown as the recording title + +### Patch Changes + +- [#491](https://github.com/replayio/replay-cli/pull/491) [`a243633`](https://github.com/replayio/replay-cli/commit/a243633a99c32ad3d68055d8a3b8e33c1e9ab05f) Thanks [@Andarist](https://github.com/Andarist)! - Improved the way `recordings.log` gets processed. It should fix parsing issues when the log contains strings with `}{` inside them. + +- [#500](https://github.com/replayio/replay-cli/pull/500) [`1740c99`](https://github.com/replayio/replay-cli/commit/1740c99639c2ad0e941fa4d9bff8830ba9e16ae1) Thanks [@Andarist](https://github.com/Andarist)! - The launched browser will now get correctly closed on Ctrl+C when recording + ## 1.2.0 ### Minor Changes diff --git a/packages/replayio/package.json b/packages/replayio/package.json index b41ce932..41725a3f 100644 --- a/packages/replayio/package.json +++ b/packages/replayio/package.json @@ -1,6 +1,6 @@ { "name": "replayio", - "version": "1.2.0", + "version": "1.3.0", "description": "CLI tool for uploading and managing recordings", "bin": "./replayio.js", "exports": {