From 1a57f338bf057472f46e3bb03c5cc4b39778d5f4 Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Fri, 15 Nov 2024 12:08:40 +0100 Subject: [PATCH 1/7] Initialize Release 12.0.0 --- packages/keyring-api/CHANGELOG.md | 5 +++++ packages/keyring-eth-hd/CHANGELOG.md | 4 ++++ packages/keyring-eth-ledger-bridge/CHANGELOG.md | 4 ++++ packages/keyring-eth-simple/CHANGELOG.md | 5 +++++ packages/keyring-eth-trezor/CHANGELOG.md | 5 +++++ packages/keyring-snap-bridge/CHANGELOG.md | 6 ++++++ 6 files changed, 29 insertions(+) diff --git a/packages/keyring-api/CHANGELOG.md b/packages/keyring-api/CHANGELOG.md index af8e580..205456d 100644 --- a/packages/keyring-api/CHANGELOG.md +++ b/packages/keyring-api/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Uncategorized + +- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) +- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) + ## [10.1.0] ### Added diff --git a/packages/keyring-eth-hd/CHANGELOG.md b/packages/keyring-eth-hd/CHANGELOG.md index d3af138..c984074 100644 --- a/packages/keyring-eth-hd/CHANGELOG.md +++ b/packages/keyring-eth-hd/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Uncategorized + +- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) + ## [8.0.0] ### Changed diff --git a/packages/keyring-eth-ledger-bridge/CHANGELOG.md b/packages/keyring-eth-ledger-bridge/CHANGELOG.md index 3374acc..85569b0 100644 --- a/packages/keyring-eth-ledger-bridge/CHANGELOG.md +++ b/packages/keyring-eth-ledger-bridge/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Uncategorized + +- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) + ## [6.0.0] ### Changed diff --git a/packages/keyring-eth-simple/CHANGELOG.md b/packages/keyring-eth-simple/CHANGELOG.md index 91207fd..45b3f43 100644 --- a/packages/keyring-eth-simple/CHANGELOG.md +++ b/packages/keyring-eth-simple/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Uncategorized + +- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) +- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) + ## [7.0.0] ### Changed diff --git a/packages/keyring-eth-trezor/CHANGELOG.md b/packages/keyring-eth-trezor/CHANGELOG.md index 5c0cf50..d1722bf 100644 --- a/packages/keyring-eth-trezor/CHANGELOG.md +++ b/packages/keyring-eth-trezor/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Uncategorized + +- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) +- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) + ## [5.0.0] ### Changed diff --git a/packages/keyring-snap-bridge/CHANGELOG.md b/packages/keyring-snap-bridge/CHANGELOG.md index a76e258..cc2b6a0 100644 --- a/packages/keyring-snap-bridge/CHANGELOG.md +++ b/packages/keyring-snap-bridge/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Uncategorized + +- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) +- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- fix: export `JsonRpcRequest` + remove imports from `dist` folder ([#95](https://github.com/MetaMask/accounts/pull/95)) + ## [5.0.1] ### Fixed From cdbda57190dcd7051ecaf688fbe92cc969b82fe9 Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Fri, 15 Nov 2024 12:09:09 +0100 Subject: [PATCH 2/7] Update Release 12.0.0 --- package.json | 2 +- packages/keyring-api/CHANGELOG.md | 5 ++++- packages/keyring-api/package.json | 2 +- packages/keyring-eth-hd/CHANGELOG.md | 5 ++++- packages/keyring-eth-hd/package.json | 2 +- packages/keyring-eth-ledger-bridge/CHANGELOG.md | 5 ++++- packages/keyring-eth-ledger-bridge/package.json | 2 +- packages/keyring-eth-simple/CHANGELOG.md | 5 ++++- packages/keyring-eth-simple/package.json | 2 +- packages/keyring-eth-trezor/CHANGELOG.md | 5 ++++- packages/keyring-eth-trezor/package.json | 2 +- packages/keyring-snap-bridge/CHANGELOG.md | 5 ++++- packages/keyring-snap-bridge/package.json | 2 +- 13 files changed, 31 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index fe9f341..1dc47a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/accounts-monorepo", - "version": "11.0.0", + "version": "12.0.0", "private": true, "description": "Monorepo for MetaMask accounts related packages", "repository": { diff --git a/packages/keyring-api/CHANGELOG.md b/packages/keyring-api/CHANGELOG.md index 205456d..4dcef02 100644 --- a/packages/keyring-api/CHANGELOG.md +++ b/packages/keyring-api/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.0] + ### Uncategorized - chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) @@ -436,7 +438,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - SnapController keyring client. It is intended to be used by MetaMask to talk to the snap. - Helper functions to create keyring handler in the snap. -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@10.1.0...HEAD +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@11.0.0...HEAD +[11.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@10.1.0...@metamask/keyring-api@11.0.0 [10.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@10.0.0...@metamask/keyring-api@10.1.0 [10.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@9.0.0...@metamask/keyring-api@10.0.0 [9.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@8.1.3...@metamask/keyring-api@9.0.0 diff --git a/packages/keyring-api/package.json b/packages/keyring-api/package.json index 0e9fb50..50b3891 100644 --- a/packages/keyring-api/package.json +++ b/packages/keyring-api/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/keyring-api", - "version": "10.1.0", + "version": "11.0.0", "description": "MetaMask Keyring API", "keywords": [ "metamask", diff --git a/packages/keyring-eth-hd/CHANGELOG.md b/packages/keyring-eth-hd/CHANGELOG.md index c984074..749b5a0 100644 --- a/packages/keyring-eth-hd/CHANGELOG.md +++ b/packages/keyring-eth-hd/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [9.0.0] + ### Uncategorized - build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) @@ -141,7 +143,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Deserialize method (and `HdKeyring` constructor by extension) can no longer be passed an options object containing a value for `numberOfAccounts` if it is not also containing a value for `mnemonic`. - Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`. -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@8.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@9.0.0...HEAD +[9.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@8.0.0...@metamask/eth-hd-keyring@9.0.0 [8.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.4...@metamask/eth-hd-keyring@8.0.0 [7.0.4]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.3...@metamask/eth-hd-keyring@7.0.4 [7.0.3]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.2...@metamask/eth-hd-keyring@7.0.3 diff --git a/packages/keyring-eth-hd/package.json b/packages/keyring-eth-hd/package.json index 8761d19..61e4dce 100644 --- a/packages/keyring-eth-hd/package.json +++ b/packages/keyring-eth-hd/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/eth-hd-keyring", - "version": "8.0.0", + "version": "9.0.0", "description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.", "keywords": [ "ethereum", diff --git a/packages/keyring-eth-ledger-bridge/CHANGELOG.md b/packages/keyring-eth-ledger-bridge/CHANGELOG.md index 85569b0..48d2949 100644 --- a/packages/keyring-eth-ledger-bridge/CHANGELOG.md +++ b/packages/keyring-eth-ledger-bridge/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.0] + ### Uncategorized - build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) @@ -213,7 +215,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support new versions of ethereumjs/tx ([#68](https://github.com/MetaMask/eth-ledger-bridge-keyring/pull/68)) -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@6.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@7.0.0...HEAD +[7.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@6.0.0...@metamask/eth-ledger-bridge-keyring@7.0.0 [6.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@5.0.1...@metamask/eth-ledger-bridge-keyring@6.0.0 [5.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@5.0.0...@metamask/eth-ledger-bridge-keyring@5.0.1 [5.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@4.1.4...@metamask/eth-ledger-bridge-keyring@5.0.0 diff --git a/packages/keyring-eth-ledger-bridge/package.json b/packages/keyring-eth-ledger-bridge/package.json index 2ff2caf..fe41d42 100644 --- a/packages/keyring-eth-ledger-bridge/package.json +++ b/packages/keyring-eth-ledger-bridge/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/eth-ledger-bridge-keyring", - "version": "6.0.0", + "version": "7.0.0", "description": "A MetaMask compatible keyring, for ledger hardware wallets", "keywords": [ "ethereum", diff --git a/packages/keyring-eth-simple/CHANGELOG.md b/packages/keyring-eth-simple/CHANGELOG.md index 45b3f43..76011cd 100644 --- a/packages/keyring-eth-simple/CHANGELOG.md +++ b/packages/keyring-eth-simple/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [8.0.0] + ### Uncategorized - chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) @@ -98,7 +100,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **BREAKING:** Remove redundant `newGethSignMessage` method ([#72](https://github.com/MetaMask/eth-simple-keyring/pull/72)) - Consumers can use `signPersonalMessage` method as a replacement for `newGethSignMessage`. -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-simple-keyring@7.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-simple-keyring@8.0.0...HEAD +[8.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-simple-keyring@7.0.0...@metamask/eth-simple-keyring@8.0.0 [7.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-simple-keyring@6.0.5...@metamask/eth-simple-keyring@7.0.0 [6.0.5]: https://github.com/MetaMask/accounts/compare/@metamask/eth-simple-keyring@6.0.4...@metamask/eth-simple-keyring@6.0.5 [6.0.4]: https://github.com/MetaMask/accounts/compare/@metamask/eth-simple-keyring@6.0.3...@metamask/eth-simple-keyring@6.0.4 diff --git a/packages/keyring-eth-simple/package.json b/packages/keyring-eth-simple/package.json index 97d8840..a6b42f0 100644 --- a/packages/keyring-eth-simple/package.json +++ b/packages/keyring-eth-simple/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/eth-simple-keyring", - "version": "7.0.0", + "version": "8.0.0", "description": "A simple standard interface for a series of Ethereum private keys.", "keywords": [ "ethereum", diff --git a/packages/keyring-eth-trezor/CHANGELOG.md b/packages/keyring-eth-trezor/CHANGELOG.md index d1722bf..86817bf 100644 --- a/packages/keyring-eth-trezor/CHANGELOG.md +++ b/packages/keyring-eth-trezor/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.0] + ### Uncategorized - chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) @@ -139,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support new versions of ethereumjs/tx ([#88](https://github.com/metamask/eth-trezor-keyring/pull/88)) -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-trezor-keyring@5.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-trezor-keyring@6.0.0...HEAD +[6.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-trezor-keyring@5.0.0...@metamask/eth-trezor-keyring@6.0.0 [5.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-trezor-keyring@4.0.0...@metamask/eth-trezor-keyring@5.0.0 [4.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-trezor-keyring@3.1.3...@metamask/eth-trezor-keyring@4.0.0 [3.1.3]: https://github.com/MetaMask/accounts/compare/@metamask/eth-trezor-keyring@3.1.2...@metamask/eth-trezor-keyring@3.1.3 diff --git a/packages/keyring-eth-trezor/package.json b/packages/keyring-eth-trezor/package.json index e512b29..294dd8e 100644 --- a/packages/keyring-eth-trezor/package.json +++ b/packages/keyring-eth-trezor/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/eth-trezor-keyring", - "version": "5.0.0", + "version": "6.0.0", "description": "A MetaMask compatible keyring, for trezor hardware wallets", "keywords": [ "ethereum", diff --git a/packages/keyring-snap-bridge/CHANGELOG.md b/packages/keyring-snap-bridge/CHANGELOG.md index cc2b6a0..f223af8 100644 --- a/packages/keyring-snap-bridge/CHANGELOG.md +++ b/packages/keyring-snap-bridge/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.0] + ### Uncategorized - chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) @@ -373,7 +375,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@5.0.1...HEAD +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@6.0.0...HEAD +[6.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@5.0.1...@metamask/eth-snap-keyring@6.0.0 [5.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@5.0.0...@metamask/eth-snap-keyring@5.0.1 [5.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@4.4.0...@metamask/eth-snap-keyring@5.0.0 [4.4.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@4.3.6...@metamask/eth-snap-keyring@4.4.0 diff --git a/packages/keyring-snap-bridge/package.json b/packages/keyring-snap-bridge/package.json index e09a0ae..5e3a138 100644 --- a/packages/keyring-snap-bridge/package.json +++ b/packages/keyring-snap-bridge/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/eth-snap-keyring", - "version": "5.0.1", + "version": "6.0.0", "description": "Snaps keyring bridge.", "repository": { "type": "git", From 2839aab580e584f39c45b50dd4dc0d4ecf10da28 Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Fri, 15 Nov 2024 12:12:26 +0100 Subject: [PATCH 3/7] chore: update changelogs --- packages/keyring-api/CHANGELOG.md | 6 +++--- packages/keyring-eth-hd/CHANGELOG.md | 4 ++-- packages/keyring-eth-ledger-bridge/CHANGELOG.md | 4 ++-- packages/keyring-eth-simple/CHANGELOG.md | 6 +++--- packages/keyring-eth-trezor/CHANGELOG.md | 6 +++--- packages/keyring-snap-bridge/CHANGELOG.md | 8 ++++---- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/packages/keyring-api/CHANGELOG.md b/packages/keyring-api/CHANGELOG.md index 4dcef02..d494594 100644 --- a/packages/keyring-api/CHANGELOG.md +++ b/packages/keyring-api/CHANGELOG.md @@ -9,10 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [11.0.0] -### Uncategorized +### Changed -- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) -- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) ## [10.1.0] diff --git a/packages/keyring-eth-hd/CHANGELOG.md b/packages/keyring-eth-hd/CHANGELOG.md index 749b5a0..c235129 100644 --- a/packages/keyring-eth-hd/CHANGELOG.md +++ b/packages/keyring-eth-hd/CHANGELOG.md @@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [9.0.0] -### Uncategorized +### Changed -- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) ## [8.0.0] diff --git a/packages/keyring-eth-ledger-bridge/CHANGELOG.md b/packages/keyring-eth-ledger-bridge/CHANGELOG.md index 48d2949..bedb3ce 100644 --- a/packages/keyring-eth-ledger-bridge/CHANGELOG.md +++ b/packages/keyring-eth-ledger-bridge/CHANGELOG.md @@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [7.0.0] -### Uncategorized +### Changed -- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) ## [6.0.0] diff --git a/packages/keyring-eth-simple/CHANGELOG.md b/packages/keyring-eth-simple/CHANGELOG.md index 76011cd..8b883f0 100644 --- a/packages/keyring-eth-simple/CHANGELOG.md +++ b/packages/keyring-eth-simple/CHANGELOG.md @@ -9,10 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [8.0.0] -### Uncategorized +### Changed -- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) -- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) ## [7.0.0] diff --git a/packages/keyring-eth-trezor/CHANGELOG.md b/packages/keyring-eth-trezor/CHANGELOG.md index 86817bf..1b296a8 100644 --- a/packages/keyring-eth-trezor/CHANGELOG.md +++ b/packages/keyring-eth-trezor/CHANGELOG.md @@ -9,10 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [6.0.0] -### Uncategorized +### Changed -- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) -- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) ## [5.0.0] diff --git a/packages/keyring-snap-bridge/CHANGELOG.md b/packages/keyring-snap-bridge/CHANGELOG.md index f223af8..5749f99 100644 --- a/packages/keyring-snap-bridge/CHANGELOG.md +++ b/packages/keyring-snap-bridge/CHANGELOG.md @@ -9,11 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [6.0.0] -### Uncategorized +### Changed -- chore: bump typescript to version 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) -- build!: build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) -- fix: export `JsonRpcRequest` + remove imports from `dist` folder ([#95](https://github.com/MetaMask/accounts/pull/95)) +- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) +- Export type `JsonRpcRequest` ([#95](https://github.com/MetaMask/accounts/pull/95)) ## [5.0.1] From 71c163ab71ff23e151f4245f0c24a40628f0a269 Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Fri, 15 Nov 2024 12:23:07 +0100 Subject: [PATCH 4/7] chore: do not release `@metamask/eth-hd-keyring` --- packages/keyring-eth-hd/CHANGELOG.md | 9 +-------- packages/keyring-eth-hd/package.json | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/packages/keyring-eth-hd/CHANGELOG.md b/packages/keyring-eth-hd/CHANGELOG.md index c235129..d3af138 100644 --- a/packages/keyring-eth-hd/CHANGELOG.md +++ b/packages/keyring-eth-hd/CHANGELOG.md @@ -7,12 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [9.0.0] - -### Changed - -- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) - ## [8.0.0] ### Changed @@ -143,8 +137,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Deserialize method (and `HdKeyring` constructor by extension) can no longer be passed an options object containing a value for `numberOfAccounts` if it is not also containing a value for `mnemonic`. - Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`. -[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@9.0.0...HEAD -[9.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@8.0.0...@metamask/eth-hd-keyring@9.0.0 +[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@8.0.0...HEAD [8.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.4...@metamask/eth-hd-keyring@8.0.0 [7.0.4]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.3...@metamask/eth-hd-keyring@7.0.4 [7.0.3]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.2...@metamask/eth-hd-keyring@7.0.3 diff --git a/packages/keyring-eth-hd/package.json b/packages/keyring-eth-hd/package.json index 61e4dce..8761d19 100644 --- a/packages/keyring-eth-hd/package.json +++ b/packages/keyring-eth-hd/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/eth-hd-keyring", - "version": "9.0.0", + "version": "8.0.0", "description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.", "keywords": [ "ethereum", From 08ae04d34ce210a73ff308522d46b3ed14ed2e1a Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Fri, 15 Nov 2024 17:55:16 +0100 Subject: [PATCH 5/7] chore: remove TypeScript entry from changelogs --- packages/keyring-api/CHANGELOG.md | 1 - packages/keyring-eth-simple/CHANGELOG.md | 1 - packages/keyring-eth-trezor/CHANGELOG.md | 1 - packages/keyring-snap-bridge/CHANGELOG.md | 1 - 4 files changed, 4 deletions(-) diff --git a/packages/keyring-api/CHANGELOG.md b/packages/keyring-api/CHANGELOG.md index d494594..576bf7c 100644 --- a/packages/keyring-api/CHANGELOG.md +++ b/packages/keyring-api/CHANGELOG.md @@ -12,7 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) -- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) ## [10.1.0] diff --git a/packages/keyring-eth-simple/CHANGELOG.md b/packages/keyring-eth-simple/CHANGELOG.md index 8b883f0..11868c9 100644 --- a/packages/keyring-eth-simple/CHANGELOG.md +++ b/packages/keyring-eth-simple/CHANGELOG.md @@ -12,7 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) -- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) ## [7.0.0] diff --git a/packages/keyring-eth-trezor/CHANGELOG.md b/packages/keyring-eth-trezor/CHANGELOG.md index 1b296a8..4706687 100644 --- a/packages/keyring-eth-trezor/CHANGELOG.md +++ b/packages/keyring-eth-trezor/CHANGELOG.md @@ -12,7 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) -- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) ## [5.0.0] diff --git a/packages/keyring-snap-bridge/CHANGELOG.md b/packages/keyring-snap-bridge/CHANGELOG.md index 5749f99..966cb3d 100644 --- a/packages/keyring-snap-bridge/CHANGELOG.md +++ b/packages/keyring-snap-bridge/CHANGELOG.md @@ -12,7 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) -- Use TypeScript 5.6.3 ([#97](https://github.com/MetaMask/accounts/pull/97)) - Export type `JsonRpcRequest` ([#95](https://github.com/MetaMask/accounts/pull/95)) ## [5.0.1] From e0eda174f23072632df25ebecada2cc0e8ea3b4d Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Fri, 15 Nov 2024 17:55:51 +0100 Subject: [PATCH 6/7] chore: fix changelog --- packages/keyring-snap-bridge/CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/keyring-snap-bridge/CHANGELOG.md b/packages/keyring-snap-bridge/CHANGELOG.md index 966cb3d..b923d99 100644 --- a/packages/keyring-snap-bridge/CHANGELOG.md +++ b/packages/keyring-snap-bridge/CHANGELOG.md @@ -9,10 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [6.0.0] +### Added + +- Export type `JsonRpcRequest` ([#95](https://github.com/MetaMask/accounts/pull/95)) + ### Changed - **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) -- Export type `JsonRpcRequest` ([#95](https://github.com/MetaMask/accounts/pull/95)) ## [5.0.1] From 2c270979c668be0c68d0021c8766f8c21a5549a1 Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Tue, 19 Nov 2024 12:11:09 +0100 Subject: [PATCH 7/7] chore: update changelogs --- packages/keyring-api/CHANGELOG.md | 5 +++-- packages/keyring-eth-ledger-bridge/CHANGELOG.md | 5 +++-- packages/keyring-eth-simple/CHANGELOG.md | 5 +++-- packages/keyring-eth-trezor/CHANGELOG.md | 5 +++-- packages/keyring-snap-bridge/CHANGELOG.md | 6 ++---- 5 files changed, 14 insertions(+), 12 deletions(-) diff --git a/packages/keyring-api/CHANGELOG.md b/packages/keyring-api/CHANGELOG.md index 576bf7c..9c506ac 100644 --- a/packages/keyring-api/CHANGELOG.md +++ b/packages/keyring-api/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [11.0.0] -### Changed +### Added -- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Add ESM build ([#40](https://github.com/MetaMask/accounts/pull/40)) + - It's no longer possible to import files from `./dist` directly. ## [10.1.0] diff --git a/packages/keyring-eth-ledger-bridge/CHANGELOG.md b/packages/keyring-eth-ledger-bridge/CHANGELOG.md index bedb3ce..db22348 100644 --- a/packages/keyring-eth-ledger-bridge/CHANGELOG.md +++ b/packages/keyring-eth-ledger-bridge/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [7.0.0] -### Changed +### Added -- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Add ESM build ([#40](https://github.com/MetaMask/accounts/pull/40)) + - It's no longer possible to import files from `./dist` directly. ## [6.0.0] diff --git a/packages/keyring-eth-simple/CHANGELOG.md b/packages/keyring-eth-simple/CHANGELOG.md index 11868c9..aafce5b 100644 --- a/packages/keyring-eth-simple/CHANGELOG.md +++ b/packages/keyring-eth-simple/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [8.0.0] -### Changed +### Added -- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Add ESM build ([#40](https://github.com/MetaMask/accounts/pull/40)) + - It's no longer possible to import files from `./dist` directly. ## [7.0.0] diff --git a/packages/keyring-eth-trezor/CHANGELOG.md b/packages/keyring-eth-trezor/CHANGELOG.md index 4706687..47c8a97 100644 --- a/packages/keyring-eth-trezor/CHANGELOG.md +++ b/packages/keyring-eth-trezor/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [6.0.0] -### Changed +### Added -- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) +- **BREAKING:** Add ESM build ([#40](https://github.com/MetaMask/accounts/pull/40)) + - It's no longer possible to import files from `./dist` directly. ## [5.0.0] diff --git a/packages/keyring-snap-bridge/CHANGELOG.md b/packages/keyring-snap-bridge/CHANGELOG.md index b923d99..9e3e53b 100644 --- a/packages/keyring-snap-bridge/CHANGELOG.md +++ b/packages/keyring-snap-bridge/CHANGELOG.md @@ -11,12 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- **BREAKING:** Add ESM build ([#40](https://github.com/MetaMask/accounts/pull/40)) + - It's no longer possible to import files from `./dist` directly. - Export type `JsonRpcRequest` ([#95](https://github.com/MetaMask/accounts/pull/95)) -### Changed - -- **BREAKING:** Build packages with `ts-bridge` ([#40](https://github.com/MetaMask/accounts/pull/40)) - ## [5.0.1] ### Fixed