Skip to content

Commit 79a10e2

Browse files
authored
release: 54.0.0 (#317)
# Description This is the release candidate for version 54.0.0. See the CHANGELOGs for more details.
1 parent d72be66 commit 79a10e2

17 files changed

Lines changed: 97 additions & 17 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/accounts-monorepo",
3-
"version": "53.0.0",
3+
"version": "54.0.0",
44
"private": true,
55
"description": "Monorepo for MetaMask accounts related packages",
66
"repository": {

packages/account-api/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0]
11+
12+
### Added
13+
14+
- Add multichain account/wallet support ([#315](https://github.com/MetaMask/accounts/pull/315))
15+
- This is only about "grouping" wallets and accounts together.
16+
17+
### Changed
18+
19+
- **BREAKING:** Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
20+
- The `KeyringAccount.options` field is now partially typed.
21+
1022
## [0.1.0]
1123

1224
### Added
1325

1426
- Add `AccountGroup` and `AccountWallet` ([#307](https://github.com/MetaMask/accounts/pull/307))
1527

16-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@0.1.0...HEAD
28+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@0.2.0...HEAD
29+
[0.2.0]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@0.1.0...@metamask/account-api@0.2.0
1730
[0.1.0]: https://github.com/MetaMask/accounts/releases/tag/@metamask/account-api@0.1.0

packages/account-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/account-api",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "MetaMask Account API",
55
"keywords": [
66
"metamask",

packages/keyring-api/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [19.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Add typed `KeyringAccount.options` ([#316](https://github.com/MetaMask/accounts/pull/316))
15+
- We still support the old `Record<string, Json>` type for `options`, however we now constrain 2 fields (`entropy` and `exportable`) and type their shapes to meet new requirements.
16+
1017
## [18.0.0]
1118

1219
### Changed
@@ -583,7 +590,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
583590
- SnapController keyring client. It is intended to be used by MetaMask to talk to the snap.
584591
- Helper functions to create keyring handler in the snap.
585592

586-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@18.0.0...HEAD
593+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@19.0.0...HEAD
594+
[19.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@18.0.0...@metamask/keyring-api@19.0.0
587595
[18.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@17.6.0...@metamask/keyring-api@18.0.0
588596
[17.6.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@17.5.0...@metamask/keyring-api@17.6.0
589597
[17.5.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@17.4.0...@metamask/keyring-api@17.5.0

packages/keyring-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/keyring-api",
3-
"version": "18.0.0",
3+
"version": "19.0.0",
44
"description": "MetaMask Keyring API",
55
"keywords": [
66
"metamask",

packages/keyring-internal-api/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [7.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
15+
- The `KeyringAccount.options` field is now partially typed.
16+
1017
## [6.2.0]
1118

1219
### Added
@@ -111,7 +118,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111118
- This new version fixes a bug with CJS re-exports.
112119
- Initial release ([#24](https://github.com/MetaMask/accounts/pull/24))
113120

114-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@6.2.0...HEAD
121+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@7.0.0...HEAD
122+
[7.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@6.2.0...@metamask/keyring-internal-api@7.0.0
115123
[6.2.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@6.1.0...@metamask/keyring-internal-api@6.2.0
116124
[6.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@6.0.1...@metamask/keyring-internal-api@6.1.0
117125
[6.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@6.0.0...@metamask/keyring-internal-api@6.0.1

packages/keyring-internal-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/keyring-internal-api",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "MetaMask Keyring Internal API",
55
"keywords": [
66
"metamask",

packages/keyring-internal-snap-client/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
15+
- The `KeyringAccount.options` field is now partially typed.
16+
- **BREAKING:** Bump `@metamask/keyring-snap-client` from `^5.0.0` to `^6.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
17+
- The `KeyringAccount.options` field is now partially typed.
18+
- **BREAKING:** Bump `@metamask/keyring-internal-api` from `^6.2.0` to `^7.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
19+
- The `InternalAccount.options` field is now partially typed.
20+
- Bump `@metamask/keyring-utils` from `^3.0.0` to `^3.1.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
21+
1022
## [4.1.0]
1123

1224
### Added
@@ -104,7 +116,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
104116
- This new version fixes a bug with CJS re-exports.
105117
- Initial release ([#24](https://github.com/MetaMask/accounts/pull/24))
106118

107-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-snap-client@4.1.0...HEAD
119+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-snap-client@5.0.0...HEAD
120+
[5.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-snap-client@4.1.0...@metamask/keyring-internal-snap-client@5.0.0
108121
[4.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-snap-client@4.0.2...@metamask/keyring-internal-snap-client@4.1.0
109122
[4.0.2]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-snap-client@4.0.1...@metamask/keyring-internal-snap-client@4.0.2
110123
[4.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-snap-client@4.0.0...@metamask/keyring-internal-snap-client@4.0.1

packages/keyring-internal-snap-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/keyring-internal-snap-client",
3-
"version": "4.1.0",
3+
"version": "5.0.0",
44
"description": "MetaMask Keyring Snap internal clients",
55
"keywords": [
66
"metamask",

packages/keyring-snap-bridge/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [14.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
15+
- The `KeyringAccount.options` field is now partially typed.
16+
- **BREAKING:** Bump `@metamask/keyring-internal-api` from `^6.2.0` to `^7.0.0` ([#317](https://github.com/MetaMask/accounts/pull/317))
17+
- The `InternalAccount.options` field is now partially typed.
18+
1019
## [13.0.0]
1120

1221
### Changed
@@ -522,7 +531,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
522531

523532
- Initial release.
524533

525-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@13.0.0...HEAD
534+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@14.0.0...HEAD
535+
[14.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@13.0.0...@metamask/eth-snap-keyring@14.0.0
526536
[13.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@12.2.0...@metamask/eth-snap-keyring@13.0.0
527537
[12.2.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@12.1.1...@metamask/eth-snap-keyring@12.2.0
528538
[12.1.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-snap-keyring@12.1.0...@metamask/eth-snap-keyring@12.1.1

0 commit comments

Comments
 (0)