From fb9b4829553ad9878c2b9d7cdec28a686a403d6a Mon Sep 17 00:00:00 2001 From: drptbl Date: Sun, 12 May 2024 20:35:10 +0200 Subject: [PATCH] release: alpha.4 Signed-off-by: drptbl --- .changeset/pre.json | 6 ++++-- .changeset/warm-turtles-matter.md | 11 +++++++++++ examples/new-dawn/CHANGELOG.md | 8 ++++++++ examples/new-dawn/package.json | 4 ++-- packages/cache/CHANGELOG.md | 7 +++++++ packages/cache/package.json | 4 ++-- packages/core/CHANGELOG.md | 6 ++++++ packages/core/package.json | 4 ++-- packages/tsconfig/CHANGELOG.md | 6 ++++++ packages/tsconfig/package.json | 2 +- release/CHANGELOG.md | 11 +++++++++++ release/package.json | 12 ++++++------ wallets/ethereum-wallet-mock/CHANGELOG.md | 9 +++++++++ wallets/ethereum-wallet-mock/package.json | 6 +++--- wallets/metamask/CHANGELOG.md | 9 +++++++++ wallets/metamask/package.json | 8 ++++---- 16 files changed, 91 insertions(+), 22 deletions(-) create mode 100644 .changeset/warm-turtles-matter.md create mode 100644 packages/cache/CHANGELOG.md create mode 100644 wallets/ethereum-wallet-mock/CHANGELOG.md diff --git a/.changeset/pre.json b/.changeset/pre.json index 92065ef1b..b96eb0b0c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -8,12 +8,14 @@ "@synthetixio/synpress-core": "0.0.0", "@synthetixio/synpress-tsconfig": "0.0.0", "@synthetixio/synpress": "3.0.0", - "@synthetixio/synpress-metamask": "0.0.0" + "@synthetixio/synpress-metamask": "0.0.0", + "@synthetixio/ethereum-wallet-mock": "0.0.1-alpha.3" }, "changesets": [ "fluffy-hornets-tell", "fresh-walls-nail", "poor-pianos-thank", - "quick-cups-breathe" + "quick-cups-breathe", + "warm-turtles-matter" ] } diff --git a/.changeset/warm-turtles-matter.md b/.changeset/warm-turtles-matter.md new file mode 100644 index 000000000..a38e0d9fe --- /dev/null +++ b/.changeset/warm-turtles-matter.md @@ -0,0 +1,11 @@ +--- +"example-new-dawn": patch +"@synthetixio/synpress-cache": patch +"@synthetixio/synpress-core": patch +"@synthetixio/synpress-tsconfig": patch +"@synthetixio/synpress": patch +"@synthetixio/ethereum-wallet-mock": patch +"@synthetixio/synpress-metamask": patch +--- + +Alpha Release diff --git a/examples/new-dawn/CHANGELOG.md b/examples/new-dawn/CHANGELOG.md index cc116380c..692be8891 100644 --- a/examples/new-dawn/CHANGELOG.md +++ b/examples/new-dawn/CHANGELOG.md @@ -1,5 +1,13 @@ # example-new-dawn +## 0.0.1-alpha.4 + +### Patch Changes + +- Alpha Release +- Updated dependencies + - @synthetixio/synpress@4.0.0-alpha.4 + ## 0.0.1-alpha.2 ### Patch Changes diff --git a/examples/new-dawn/package.json b/examples/new-dawn/package.json index 4d85e9309..d292acba0 100644 --- a/examples/new-dawn/package.json +++ b/examples/new-dawn/package.json @@ -1,6 +1,6 @@ { "name": "example-new-dawn", - "version": "0.0.1-alpha.2", + "version": "0.0.1-alpha.4", "private": true, "type": "module", "scripts": { @@ -14,7 +14,7 @@ }, "dependencies": { "@playwright/test": "1.41.2", - "@synthetixio/synpress": "4.0.0-alpha.3", + "@synthetixio/synpress": "4.0.0-alpha.4", "dotenv": "16.4.2" }, "devDependencies": { diff --git a/packages/cache/CHANGELOG.md b/packages/cache/CHANGELOG.md new file mode 100644 index 000000000..3c5c94bf2 --- /dev/null +++ b/packages/cache/CHANGELOG.md @@ -0,0 +1,7 @@ +# @synthetixio/synpress-cache + +## 0.0.1-alpha.4 + +### Patch Changes + +- Alpha Release diff --git a/packages/cache/package.json b/packages/cache/package.json index ea31210a1..25fe11855 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@synthetixio/synpress-cache", - "version": "0.0.1-alpha.3", + "version": "0.0.1-alpha.4", "type": "module", "exports": { "types": "./types/index.d.ts", @@ -42,7 +42,7 @@ "zod": "3.22.4" }, "devDependencies": { - "@synthetixio/synpress-tsconfig": "0.0.1-alpha.3", + "@synthetixio/synpress-tsconfig": "0.0.1-alpha.4", "@types/archiver": "6.0.2", "@types/fs-extra": "11.0.4", "@types/gradient-string": "1.1.5", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d0aebfb29..4033d47dd 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @synthetixio/synpress-core +## 0.0.1-alpha.4 + +### Patch Changes + +- Alpha Release + ## 0.0.1-alpha.3 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 5645545c2..fcc597696 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@synthetixio/synpress-core", - "version": "0.0.1-alpha.3", + "version": "0.0.1-alpha.4", "type": "module", "exports": { "types": "./types/index.d.ts", @@ -25,7 +25,7 @@ "types:check": "tsc --noEmit" }, "devDependencies": { - "@synthetixio/synpress-tsconfig": "0.0.1-alpha.3", + "@synthetixio/synpress-tsconfig": "0.0.1-alpha.4", "@types/node": "20.11.17", "rimraf": "5.0.5", "tsup": "8.0.2", diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md index fafb6810a..df2f5dfd4 100644 --- a/packages/tsconfig/CHANGELOG.md +++ b/packages/tsconfig/CHANGELOG.md @@ -1,5 +1,11 @@ # @synthetixio/synpress-tsconfig +## 0.0.1-alpha.4 + +### Patch Changes + +- Alpha Release + ## 0.0.1-alpha.3 ### Patch Changes diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index cd9f0d70e..284c47897 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@synthetixio/synpress-tsconfig", - "version": "0.0.1-alpha.3", + "version": "0.0.1-alpha.4", "type": "module", "files": [ "base.json" diff --git a/release/CHANGELOG.md b/release/CHANGELOG.md index 29c8147a4..4aa6761e2 100644 --- a/release/CHANGELOG.md +++ b/release/CHANGELOG.md @@ -1,5 +1,16 @@ # @synthetixio/synpress +## 4.0.0-alpha.4 + +### Patch Changes + +- Alpha Release +- Updated dependencies + - @synthetixio/synpress-cache@0.0.1-alpha.4 + - @synthetixio/synpress-core@0.0.1-alpha.4 + - @synthetixio/ethereum-wallet-mock@0.0.1-alpha.4 + - @synthetixio/synpress-metamask@0.0.1-alpha.4 + ## 4.0.0-alpha.3 ### Patch Changes diff --git a/release/package.json b/release/package.json index 33049b703..f4f47926a 100644 --- a/release/package.json +++ b/release/package.json @@ -1,6 +1,6 @@ { "name": "@synthetixio/synpress", - "version": "4.0.0-alpha.3", + "version": "4.0.0-alpha.4", "type": "module", "exports": { "types": "./types/index.d.ts", @@ -26,13 +26,13 @@ "types:check": "tsc --noEmit" }, "dependencies": { - "@synthetixio/ethereum-wallet-mock": "0.0.1-alpha.3", - "@synthetixio/synpress-cache": "0.0.1-alpha.3", - "@synthetixio/synpress-core": "0.0.1-alpha.3", - "@synthetixio/synpress-metamask": "0.0.1-alpha.3" + "@synthetixio/ethereum-wallet-mock": "0.0.1-alpha.4", + "@synthetixio/synpress-cache": "0.0.1-alpha.4", + "@synthetixio/synpress-core": "0.0.1-alpha.4", + "@synthetixio/synpress-metamask": "0.0.1-alpha.4" }, "devDependencies": { - "@synthetixio/synpress-tsconfig": "0.0.1-alpha.3", + "@synthetixio/synpress-tsconfig": "0.0.1-alpha.4", "@types/node": "20.11.17", "rimraf": "5.0.5", "tsup": "8.0.2", diff --git a/wallets/ethereum-wallet-mock/CHANGELOG.md b/wallets/ethereum-wallet-mock/CHANGELOG.md new file mode 100644 index 000000000..6217b4a3f --- /dev/null +++ b/wallets/ethereum-wallet-mock/CHANGELOG.md @@ -0,0 +1,9 @@ +# @synthetixio/ethereum-wallet-mock + +## 0.0.1-alpha.4 + +### Patch Changes + +- Alpha Release +- Updated dependencies + - @synthetixio/synpress-core@0.0.1-alpha.4 diff --git a/wallets/ethereum-wallet-mock/package.json b/wallets/ethereum-wallet-mock/package.json index 5bdb47a67..014fabaaf 100644 --- a/wallets/ethereum-wallet-mock/package.json +++ b/wallets/ethereum-wallet-mock/package.json @@ -1,6 +1,6 @@ { "name": "@synthetixio/ethereum-wallet-mock", - "version": "0.0.1-alpha.3", + "version": "0.0.1-alpha.4", "type": "module", "exports": { "types": "./types/index.d.ts", @@ -26,12 +26,12 @@ }, "dependencies": { "@depay/web3-mock": "14.17.0", - "@synthetixio/synpress-core": "0.0.1-alpha.3", + "@synthetixio/synpress-core": "0.0.1-alpha.4", "viem": "2.9.9" }, "devDependencies": { "@depay/web3-mock": "14.17.0", - "@synthetixio/synpress-tsconfig": "0.0.1-alpha.3", + "@synthetixio/synpress-tsconfig": "0.0.1-alpha.4", "@types/node": "20.11.17", "@vitest/coverage-v8": "1.2.2", "rimraf": "5.0.5", diff --git a/wallets/metamask/CHANGELOG.md b/wallets/metamask/CHANGELOG.md index 807696b7e..f064a083d 100644 --- a/wallets/metamask/CHANGELOG.md +++ b/wallets/metamask/CHANGELOG.md @@ -1,5 +1,14 @@ # @synthetixio/synpress-metamask +## 0.0.1-alpha.4 + +### Patch Changes + +- Alpha Release +- Updated dependencies + - @synthetixio/synpress-cache@0.0.1-alpha.4 + - @synthetixio/synpress-core@0.0.1-alpha.4 + ## 0.0.1-alpha.3 ### Patch Changes diff --git a/wallets/metamask/package.json b/wallets/metamask/package.json index 679f1190f..d1393cd1a 100644 --- a/wallets/metamask/package.json +++ b/wallets/metamask/package.json @@ -1,6 +1,6 @@ { "name": "@synthetixio/synpress-metamask", - "version": "0.0.1-alpha.3", + "version": "0.0.1-alpha.4", "type": "module", "exports": { "types": "./types/index.d.ts", @@ -30,14 +30,14 @@ "types:check": "tsc --noEmit" }, "dependencies": { - "@synthetixio/synpress-cache": "0.0.1-alpha.3", - "@synthetixio/synpress-core": "0.0.1-alpha.3", + "@synthetixio/synpress-cache": "0.0.1-alpha.4", + "@synthetixio/synpress-core": "0.0.1-alpha.4", "@viem/anvil": "0.0.7", "fs-extra": "11.2.0", "zod": "3.22.4" }, "devDependencies": { - "@synthetixio/synpress-tsconfig": "0.0.1-alpha.3", + "@synthetixio/synpress-tsconfig": "0.0.1-alpha.4", "@types/fs-extra": "11.0.4", "@types/node": "20.11.17", "@vitest/coverage-v8": "1.2.2",