Skip to content

Commit 5af1a21

Browse files
authored
release: 112.0.0 (#562)
<!-- CURSOR_SUMMARY --> > [!NOTE] > **Low Risk** > Release-only metadata and dependency alignment; no runtime code changes in this diff. > > **Overview** > This PR cuts **monorepo release 112.0.0** by bumping root `package.json` from `111.0.0` to `112.0.0` and aligning workspace **versions, changelogs, dependency ranges, and `yarn.lock`**—no application source changes in the diff. > > Published or version-tagged packages in this release include **`@metamask/keyring-api` 23.2.0**, **`@metamask/keyring-sdk` 2.2.0**, **`@metamask/eth-snap-keyring` 22.2.0**, and **`@metamask/keyring-snap-sdk` 9.0.2**. Downstream packages only record dependency bumps (mostly **`@metamask/keyring-api` ^23.2.0** and **`@metamask/keyring-sdk` ^2.2.0**). > > Changelog sections moved from `[Unreleased]` document capabilities already landed on main—for example Stellar **`signAuthEntry`**, **`EthBytesStrictStruct`**, **`EthKeyringV1Adapter`**, **`SnapKeyringV1Adapter`**, and snap **`KeyringRpc`** handling in `handleKeyringRequest`. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 1c7a70f. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 2aefc5d commit 5af1a21

30 files changed

Lines changed: 101 additions & 54 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": "111.0.0",
3+
"version": "112.0.0",
44
"private": true,
55
"description": "Monorepo for MetaMask accounts related packages",
66
"repository": {

packages/account-api/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Bump `@metamask/keyring-utils` from `^3.2.0` to `^3.3.1` ([#544](https://github.com/MetaMask/accounts/pull/544), [#546](https://github.com/MetaMask/accounts/pull/546))
13+
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
1314

1415
## [1.0.4]
1516

packages/account-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
6767
},
6868
"dependencies": {
69-
"@metamask/keyring-api": "^23.1.0",
69+
"@metamask/keyring-api": "^23.2.0",
7070
"@metamask/keyring-utils": "^3.3.1",
7171
"uuid": "^9.0.1"
7272
},

packages/keyring-api/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [23.2.0]
11+
1012
### Added
1113

1214
- Add Stellar method `signAuthEntry` to `XlmMethod` ([#548](https://github.com/MetaMask/accounts/pull/548))
@@ -758,7 +760,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
758760
- SnapController keyring client. It is intended to be used by MetaMask to talk to the snap.
759761
- Helper functions to create keyring handler in the snap.
760762

761-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.1.0...HEAD
763+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.2.0...HEAD
764+
[23.2.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.1.0...@metamask/keyring-api@23.2.0
762765
[23.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.0.1...@metamask/keyring-api@23.1.0
763766
[23.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@23.0.0...@metamask/keyring-api@23.0.1
764767
[23.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-api@22.0.0...@metamask/keyring-api@23.0.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": "23.1.0",
3+
"version": "23.2.0",
44
"description": "MetaMask Keyring API",
55
"keywords": [
66
"keyring",

packages/keyring-eth-hd/CHANGELOG.md

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

1010
### Changed
1111

12-
- Bump `@metamask/keyring-sdk` from `^2.0.2` to `^2.1.1` ([#544](https://github.com/MetaMask/accounts/pull/544), [#546](https://github.com/MetaMask/accounts/pull/546))
12+
- Bump `@metamask/keyring-sdk` from `^2.0.2` to `^2.2.0` ([#544](https://github.com/MetaMask/accounts/pull/544), [#546](https://github.com/MetaMask/accounts/pull/546), [#562](https://github.com/MetaMask/accounts/pull/562))
1313
- Bump `@metamask/keyring-utils` from `^3.2.0` to `^3.3.1` ([#544](https://github.com/MetaMask/accounts/pull/544), [#546](https://github.com/MetaMask/accounts/pull/546))
14+
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
1415

1516
## [14.1.1]
1617

packages/keyring-eth-hd/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
"@ethereumjs/util": "^9.1.0",
7171
"@metamask/eth-sig-util": "^8.2.0",
7272
"@metamask/key-tree": "^10.0.2",
73-
"@metamask/keyring-api": "^23.1.0",
74-
"@metamask/keyring-sdk": "^2.1.1",
73+
"@metamask/keyring-api": "^23.2.0",
74+
"@metamask/keyring-sdk": "^2.2.0",
7575
"@metamask/keyring-utils": "^3.3.1",
7676
"@metamask/scure-bip39": "^2.1.1",
7777
"@metamask/superstruct": "^3.1.0",

packages/keyring-eth-ledger-bridge/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
13+
- Bump `@metamask/keyring-sdk` from `^2.1.1` to `^2.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
14+
1015
## [12.1.0]
1116

1217
### Added

packages/keyring-eth-ledger-bridge/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
"@ledgerhq/hw-transport": "^6.31.3",
7676
"@metamask/eth-sig-util": "^8.2.0",
7777
"@metamask/hw-wallet-sdk": "^0.8.0",
78-
"@metamask/keyring-api": "^23.1.0",
79-
"@metamask/keyring-sdk": "^2.1.1",
78+
"@metamask/keyring-api": "^23.2.0",
79+
"@metamask/keyring-sdk": "^2.2.0",
8080
"hdkey": "^2.1.0"
8181
},
8282
"devDependencies": {

packages/keyring-eth-money/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
13+
- Bump `@metamask/keyring-sdk` from `^2.1.1` to `^2.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
14+
1015
## [3.0.0]
1116

1217
### Added

0 commit comments

Comments
 (0)