Skip to content

Commit eacfb38

Browse files
montelaidevccharly
andauthored
release: 115.0.0 (#572)
<!-- Thanks for your contribution! Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes: * What is the current state of things and why does it need to change? * What is the solution your changes offer and how does it work? Are there any issues or other links reviewers should consult to understand this pull request better? For instance: * Fixes #12345 * See: #67890 --> This PR introduces the Ledger DMK bridge for the `@metamask/eth-ledger-bridge-keyring` <!-- Are there any examples of this change being used in another repository? When considering changes to the MetaMask module template, it's strongly preferred that the change be experimented with in another repository first. This gives reviewers a better sense of how the change works, making it less likely the change will need to be reverted or adjusted later. --> <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > Releases a Ledger hardware keyring version that documents DMK transport and EIP-7702 signing changes; the diff is metadata-only but consumers pick up prior signing/transport work. > > **Overview** > **Release cut** for the accounts monorepo: root version **114.0.0 → 115.0.0** and `@metamask/eth-ledger-bridge-keyring` **12.1.0 → 12.2.0**, with changelog entries moved out of `[Unreleased]` into **`[12.2.0]`** (compare links updated). > > The published **12.2.0** notes cover Ledger **DMK** (`LedgerDmkBridge`, transport middleware, error translation, session monitoring), **EIP-7702** authorization signing on the Ledger keyring (still throws on iframe/mobile until DMK lands), hex **`v`** parsing fixes for `personal_sign` / typed data, and bumps to `@metamask/keyring-api` and `@metamask/keyring-sdk`. This PR does not change implementation files—only versions and release documentation. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 340eeba. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Charly Chevalier <charly.chevalier@consensys.net>
1 parent 80b6dea commit eacfb38

3 files changed

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

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

Lines changed: 5 additions & 5 deletions
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+
## [12.2.0]
11+
1012
### Added
1113

1214
- Add `LedgerDmkBridge` and `LedgerDmkTransportMiddleware` for Ledger Device Management Kit (DMK) support ([#473](https://github.com/MetaMask/accounts/pull/473))
@@ -15,15 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- DMK error translation utilities (`translateDmkError`, `isDeviceExchangeError`) mapping to `TransportStatusError`.
1618
- Custom `EthGetAppConfigurationCommand` for retrieving Ethereum app config via DMK.
1719
- Session state monitoring with `onSessionStateChange` observable and `isDeviceConnected` getter.
18-
- Exports `LedgerDmkBridge`, `LedgerDmkBridgeOptions`, `LedgerDmkTransportMiddleware`, and DMK error utilities from the package root.
19-
- Add EIP-7702 authorization signing to the Ledger keyring ([#564](https://github.com/MetaMask/accounts/pull/564))
20+
- Add EIP-7702 authorization signing to the Ledger keyring ([#564](https://github.com/MetaMask/accounts/pull/564))
2021
- Not yet functional: both iframe and mobile bridges throw until DMK support lands.
2122
- Fixes hex `v` parsing (`'1b'`) for personal_sign and typed data.
2223

2324
### Changed
2425

25-
- Widen `SignTransactionPayload` type from `LedgerIframeBridgeOptions` to `LedgerBridgeOptions` for bridge compatibility ([#473](https://github.com/MetaMask/accounts/pull/473))
26-
- Remove unused `LedgerIframeBridgeOptions` import from `ledger-keyring.ts` ([#473](https://github.com/MetaMask/accounts/pull/473))
2726
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.3.0` ([#562](https://github.com/MetaMask/accounts/pull/562), [#569](https://github.com/MetaMask/accounts/pull/569))
2827
- Bump `@metamask/keyring-sdk` from `^2.1.1` to `^2.2.0` ([#562](https://github.com/MetaMask/accounts/pull/562))
2928

@@ -460,7 +459,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
460459

461460
- Support new versions of ethereumjs/tx ([#68](https://github.com/MetaMask/eth-ledger-bridge-keyring/pull/68))
462461

463-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.1.0...HEAD
462+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.2.0...HEAD
463+
[12.2.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.1.0...@metamask/eth-ledger-bridge-keyring@12.2.0
464464
[12.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.0.3...@metamask/eth-ledger-bridge-keyring@12.1.0
465465
[12.0.3]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.0.2...@metamask/eth-ledger-bridge-keyring@12.0.3
466466
[12.0.2]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.0.1...@metamask/eth-ledger-bridge-keyring@12.0.2

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eth-ledger-bridge-keyring",
3-
"version": "12.1.0",
3+
"version": "12.2.0",
44
"description": "A MetaMask compatible keyring, for ledger hardware wallets",
55
"keywords": [
66
"ethereum",

0 commit comments

Comments
 (0)