From cca3846893c6f74a3bc17886cd5436ff42b283c1 Mon Sep 17 00:00:00 2001 From: jdabbech-ledger Date: Tue, 10 Dec 2024 15:52:34 +0100 Subject: [PATCH 1/3] :rocket: (chore): Set private package --- .changeset/config.json | 5 ++++- packages/device-management-kit/package.json | 1 + packages/mockserver-client/package.json | 1 + packages/signer/context-module/package.json | 2 +- packages/signer/signer-eth/package.json | 7 +++---- packages/signer/signer-solana/package.json | 1 + packages/signer/signer-utils/package.json | 3 +-- pnpm-lock.yaml | 6 +++--- 8 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 641058ad7..acd86e1d7 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -10,7 +10,10 @@ "fixed": [], "linked": [], "access": "public", + "privatePackages": { + "version": false + }, "baseBranch": "develop", - "updateInternalDependencies": "patch", + "updateInternalDependencies": "minor", "ignore": [] } diff --git a/packages/device-management-kit/package.json b/packages/device-management-kit/package.json index af82c61a8..b7a906017 100644 --- a/packages/device-management-kit/package.json +++ b/packages/device-management-kit/package.json @@ -1,6 +1,7 @@ { "name": "@ledgerhq/device-management-kit", "version": "0.5.1", + "private": true, "license": "Apache-2.0", "exports": { ".": { diff --git a/packages/mockserver-client/package.json b/packages/mockserver-client/package.json index 63c297942..f54a59d95 100644 --- a/packages/mockserver-client/package.json +++ b/packages/mockserver-client/package.json @@ -1,5 +1,6 @@ { "name": "@ledgerhq/device-mockserver-client", + "private": true, "version": "1.1.0", "license": "Apache-2.0", "main": "lib/index.js", diff --git a/packages/signer/context-module/package.json b/packages/signer/context-module/package.json index ae0af49e5..00fa4f51e 100644 --- a/packages/signer/context-module/package.json +++ b/packages/signer/context-module/package.json @@ -52,6 +52,6 @@ "reflect-metadata": "^0.2.2" }, "peerDependencies": { - "@ledgerhq/device-management-kit": "workspace:*" + "@ledgerhq/device-management-kit": "^0.5.1" } } diff --git a/packages/signer/signer-eth/package.json b/packages/signer/signer-eth/package.json index 8c1f29347..19a1fd0c1 100644 --- a/packages/signer/signer-eth/package.json +++ b/packages/signer/signer-eth/package.json @@ -2,7 +2,6 @@ "name": "@ledgerhq/device-signer-kit-ethereum", "version": "1.0.0", "license": "Apache-2.0", - "private": true, "exports": { ".": { "types": "./lib/types/index.d.ts", @@ -35,6 +34,7 @@ "test:coverage": "pnpm test -- --coverage" }, "dependencies": { + "@ledgerhq/signer-utils": "workspace:*", "ethers-v5": "npm:ethers@^5.7.2", "ethers-v6": "npm:ethers@6.13.4", "inversify": "^6.1.6", @@ -51,14 +51,13 @@ "@ledgerhq/eslint-config-dsdk": "workspace:*", "@ledgerhq/jest-config-dsdk": "workspace:*", "@ledgerhq/prettier-config-dsdk": "workspace:*", - "@ledgerhq/signer-utils": "workspace:*", "@ledgerhq/tsconfig-dsdk": "workspace:*", "@types/semver": "^7.5.8", "rxjs": "^7.8.1", "ts-node": "^10.9.2" }, "peerDependencies": { - "@ledgerhq/context-module": "workspace:*", - "@ledgerhq/device-management-kit": "workspace:*" + "@ledgerhq/context-module": "^1.0.0", + "@ledgerhq/device-management-kit": "^0.5.1" } } diff --git a/packages/signer/signer-solana/package.json b/packages/signer/signer-solana/package.json index 726f154e4..3e5c2e793 100644 --- a/packages/signer/signer-solana/package.json +++ b/packages/signer/signer-solana/package.json @@ -1,6 +1,7 @@ { "name": "@ledgerhq/device-signer-kit-solana", "version": "1.0.1", + "private": true, "license": "Apache-2.0", "exports": { ".": { diff --git a/packages/signer/signer-utils/package.json b/packages/signer/signer-utils/package.json index 9ae698e15..7f250438d 100644 --- a/packages/signer/signer-utils/package.json +++ b/packages/signer/signer-utils/package.json @@ -2,7 +2,6 @@ "name": "@ledgerhq/signer-utils", "version": "1.0.2", "license": "Apache-2.0", - "private": true, "exports": { ".": { "types": "./lib/types/index.d.ts", @@ -44,6 +43,6 @@ "ts-node": "^10.9.2" }, "peerDependencies": { - "@ledgerhq/device-management-kit": "workspace:*" + "@ledgerhq/device-management-kit": "^0.5.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fb28d3437..fa8f1d879 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -483,6 +483,9 @@ importers: packages/signer/signer-eth: dependencies: + '@ledgerhq/signer-utils': + specifier: workspace:* + version: link:../signer-utils ethers-v5: specifier: npm:ethers@^5.7.2 version: ethers@5.7.2 @@ -526,9 +529,6 @@ importers: '@ledgerhq/prettier-config-dsdk': specifier: workspace:* version: link:../../config/prettier - '@ledgerhq/signer-utils': - specifier: workspace:* - version: link:../signer-utils '@ledgerhq/tsconfig-dsdk': specifier: workspace:* version: link:../../config/typescript From 8f854451f0f059204a44dfcd0489a25c057f3132 Mon Sep 17 00:00:00 2001 From: jdabbech-ledger Date: Tue, 10 Dec 2024 18:42:52 +0100 Subject: [PATCH 2/3] :rocket: (chore): Split changesets for ignored packages --- .changeset/config.json | 3 ++- .changeset/cuddly-ducks-confessio0n.md | 1 - .changeset/gold-dots-accept.md | 1 - .changeset/lemon-suits-noticer.md | 1 - .changeset/moody-beds-smash.md | 5 +++++ .changeset/tasty-falcons-doubts.md | 1 - .changeset/tricky-olives-rest.md | 5 +++++ .changeset/wise-ducks-whisper.md | 5 +++++ .changeset/yellow-onions-lay.md | 5 +++++ 9 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 .changeset/moody-beds-smash.md create mode 100644 .changeset/tricky-olives-rest.md create mode 100644 .changeset/wise-ducks-whisper.md create mode 100644 .changeset/yellow-onions-lay.md diff --git a/.changeset/config.json b/.changeset/config.json index acd86e1d7..2611f7811 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -13,7 +13,8 @@ "privatePackages": { "version": false }, + "bumpVersionsWithWorkspaceProtocolOnly": true, "baseBranch": "develop", - "updateInternalDependencies": "minor", + "updateInternalDependencies": "patch", "ignore": [] } diff --git a/.changeset/cuddly-ducks-confessio0n.md b/.changeset/cuddly-ducks-confessio0n.md index d618d83d8..ddc951a95 100644 --- a/.changeset/cuddly-ducks-confessio0n.md +++ b/.changeset/cuddly-ducks-confessio0n.md @@ -1,6 +1,5 @@ --- "@ledgerhq/device-signer-kit-ethereum": patch -"@ledgerhq/device-management-kit-sample": patch --- Rename keyring to signer diff --git a/.changeset/gold-dots-accept.md b/.changeset/gold-dots-accept.md index 9f533e0dd..1f2a29847 100644 --- a/.changeset/gold-dots-accept.md +++ b/.changeset/gold-dots-accept.md @@ -1,6 +1,5 @@ --- "@ledgerhq/context-module": minor -"@ledgerhq/device-management-kit-sample": patch --- Rework context module builder diff --git a/.changeset/lemon-suits-noticer.md b/.changeset/lemon-suits-noticer.md index f39ba06c0..c9bad2236 100644 --- a/.changeset/lemon-suits-noticer.md +++ b/.changeset/lemon-suits-noticer.md @@ -1,6 +1,5 @@ --- "@ledgerhq/device-signer-kit-ethereum": patch -"@ledgerhq/device-management-kit-sample": patch --- Rename SDK to DMK diff --git a/.changeset/moody-beds-smash.md b/.changeset/moody-beds-smash.md new file mode 100644 index 000000000..ddf81c26f --- /dev/null +++ b/.changeset/moody-beds-smash.md @@ -0,0 +1,5 @@ +--- +"@ledgerhq/device-management-kit-sample": patch +--- + +Rename keyring to signer diff --git a/.changeset/tasty-falcons-doubts.md b/.changeset/tasty-falcons-doubts.md index b27d56d5a..b72fb04df 100644 --- a/.changeset/tasty-falcons-doubts.md +++ b/.changeset/tasty-falcons-doubts.md @@ -1,7 +1,6 @@ --- "@ledgerhq/context-module": patch "@ledgerhq/device-signer-kit-ethereum": patch -"@ledgerhq/device-management-kit-sample": patch --- Use type keyword when importing type diff --git a/.changeset/tricky-olives-rest.md b/.changeset/tricky-olives-rest.md new file mode 100644 index 000000000..f343fe1d9 --- /dev/null +++ b/.changeset/tricky-olives-rest.md @@ -0,0 +1,5 @@ +--- +"@ledgerhq/device-management-kit-sample": patch +--- + +Use type keyword when importing type diff --git a/.changeset/wise-ducks-whisper.md b/.changeset/wise-ducks-whisper.md new file mode 100644 index 000000000..49eb463c1 --- /dev/null +++ b/.changeset/wise-ducks-whisper.md @@ -0,0 +1,5 @@ +--- +"@ledgerhq/device-management-kit-sample": patch +--- + +Rework context module builder diff --git a/.changeset/yellow-onions-lay.md b/.changeset/yellow-onions-lay.md new file mode 100644 index 000000000..1d9288f12 --- /dev/null +++ b/.changeset/yellow-onions-lay.md @@ -0,0 +1,5 @@ +--- +"@ledgerhq/device-management-kit-sample": patch +--- + +Rename SDK to DMK From 65cedf3e22e6a76b06f4f8ae63e472a3b348d704 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 11 Dec 2024 10:32:25 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=94=96=20(release):=20Versioning=20pa?= =?UTF-8?q?ckages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/afraid-readers-swim.md | 5 -- .changeset/afraid-readers-swimmer.md | 5 -- .changeset/cool-dancers-coin.md | 6 --- .changeset/cuddly-ducks-confessio0n.md | 5 -- .changeset/eighty-houses-heal.md | 5 -- .changeset/eleven-spies-explainer.md | 6 --- .changeset/famous-stingrays-smash.md | 5 -- .changeset/fifty-taxis-kiss.md | 5 -- .changeset/fuzzy-cups-refuse.md | 5 -- .changeset/gold-dots-accept.md | 5 -- .changeset/great-hotels-boil.md | 5 -- .changeset/great-paws-sell.md | 5 -- .changeset/hip-ducks-study.md | 5 -- .changeset/large-olives-think.md | 5 -- .changeset/lemon-impalas-flash.md | 5 -- .changeset/lemon-suits-noticer.md | 5 -- .changeset/little-camels-approve.md | 5 -- .changeset/loud-balloons-poke.md | 5 -- .changeset/metal-wombats-relate.md | 5 -- .changeset/plenty-dingos-deny.md | 5 -- .changeset/plenty-snakes-agree.md | 5 -- .changeset/rich-pumpkins-laugh.md | 5 -- .changeset/slow-lies-float.md | 5 -- .changeset/strange-mayflies-repair.md | 5 -- .changeset/sweet-stingrays-give.md | 5 -- .changeset/tasty-falcons-doubts.md | 6 --- .changeset/ten-carrots-wait.md | 5 -- .changeset/twelve-stingrays-shake.md | 5 -- .changeset/witty-boats-lay.md | 5 -- packages/signer/context-module/CHANGELOG.md | 22 ++++++++ packages/signer/context-module/package.json | 2 +- packages/signer/signer-eth/CHANGELOG.md | 57 +++++++++++++++++++++ packages/signer/signer-eth/package.json | 2 +- 33 files changed, 81 insertions(+), 150 deletions(-) delete mode 100644 .changeset/afraid-readers-swim.md delete mode 100644 .changeset/afraid-readers-swimmer.md delete mode 100644 .changeset/cool-dancers-coin.md delete mode 100644 .changeset/cuddly-ducks-confessio0n.md delete mode 100644 .changeset/eighty-houses-heal.md delete mode 100644 .changeset/eleven-spies-explainer.md delete mode 100644 .changeset/famous-stingrays-smash.md delete mode 100644 .changeset/fifty-taxis-kiss.md delete mode 100644 .changeset/fuzzy-cups-refuse.md delete mode 100644 .changeset/gold-dots-accept.md delete mode 100644 .changeset/great-hotels-boil.md delete mode 100644 .changeset/great-paws-sell.md delete mode 100644 .changeset/hip-ducks-study.md delete mode 100644 .changeset/large-olives-think.md delete mode 100644 .changeset/lemon-impalas-flash.md delete mode 100644 .changeset/lemon-suits-noticer.md delete mode 100644 .changeset/little-camels-approve.md delete mode 100644 .changeset/loud-balloons-poke.md delete mode 100644 .changeset/metal-wombats-relate.md delete mode 100644 .changeset/plenty-dingos-deny.md delete mode 100644 .changeset/plenty-snakes-agree.md delete mode 100644 .changeset/rich-pumpkins-laugh.md delete mode 100644 .changeset/slow-lies-float.md delete mode 100644 .changeset/strange-mayflies-repair.md delete mode 100644 .changeset/sweet-stingrays-give.md delete mode 100644 .changeset/tasty-falcons-doubts.md delete mode 100644 .changeset/ten-carrots-wait.md delete mode 100644 .changeset/twelve-stingrays-shake.md delete mode 100644 .changeset/witty-boats-lay.md diff --git a/.changeset/afraid-readers-swim.md b/.changeset/afraid-readers-swim.md deleted file mode 100644 index f7828b608..000000000 --- a/.changeset/afraid-readers-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Add ProvideTransactionGenericContext Task diff --git a/.changeset/afraid-readers-swimmer.md b/.changeset/afraid-readers-swimmer.md deleted file mode 100644 index 817d38c8a..000000000 --- a/.changeset/afraid-readers-swimmer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/context-module": patch ---- - -Add ProvideTransactionGenericContext Task diff --git a/.changeset/cool-dancers-coin.md b/.changeset/cool-dancers-coin.md deleted file mode 100644 index 3aa3fa81d..000000000 --- a/.changeset/cool-dancers-coin.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch -"@ledgerhq/context-module": patch ---- - -Update license to Apache-2.0 diff --git a/.changeset/cuddly-ducks-confessio0n.md b/.changeset/cuddly-ducks-confessio0n.md deleted file mode 100644 index ddc951a95..000000000 --- a/.changeset/cuddly-ducks-confessio0n.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Rename keyring to signer diff --git a/.changeset/eighty-houses-heal.md b/.changeset/eighty-houses-heal.md deleted file mode 100644 index eaed314e4..000000000 --- a/.changeset/eighty-houses-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/context-module": minor ---- - -Implement generic transaction context loader diff --git a/.changeset/eleven-spies-explainer.md b/.changeset/eleven-spies-explainer.md deleted file mode 100644 index 1ba22779b..000000000 --- a/.changeset/eleven-spies-explainer.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ledgerhq/context-module": patch -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Use esbuild to build libraries diff --git a/.changeset/famous-stingrays-smash.md b/.changeset/famous-stingrays-smash.md deleted file mode 100644 index 21a7a881a..000000000 --- a/.changeset/famous-stingrays-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Return an error if StartTransaction cmd does not contain a signature diff --git a/.changeset/fifty-taxis-kiss.md b/.changeset/fifty-taxis-kiss.md deleted file mode 100644 index 12c64b576..000000000 --- a/.changeset/fifty-taxis-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/context-module": minor ---- - -Implement transaction fields loader diff --git a/.changeset/fuzzy-cups-refuse.md b/.changeset/fuzzy-cups-refuse.md deleted file mode 100644 index a098a0a4f..000000000 --- a/.changeset/fuzzy-cups-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Adapt SignTransactionCommand and add StoreTransaction to prepare for the new version of Ethereum app (1.13) diff --git a/.changeset/gold-dots-accept.md b/.changeset/gold-dots-accept.md deleted file mode 100644 index 1f2a29847..000000000 --- a/.changeset/gold-dots-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/context-module": minor ---- - -Rework context module builder diff --git a/.changeset/great-hotels-boil.md b/.changeset/great-hotels-boil.md deleted file mode 100644 index fae6b8ecf..000000000 --- a/.changeset/great-hotels-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Update error message for invalid chaincode diff --git a/.changeset/great-paws-sell.md b/.changeset/great-paws-sell.md deleted file mode 100644 index 33f798c32..000000000 --- a/.changeset/great-paws-sell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Add support for EIP712 filters with missing token diff --git a/.changeset/hip-ducks-study.md b/.changeset/hip-ducks-study.md deleted file mode 100644 index a0e629db4..000000000 --- a/.changeset/hip-ducks-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Fix clear signing of EIP712 messages with an empty array diff --git a/.changeset/large-olives-think.md b/.changeset/large-olives-think.md deleted file mode 100644 index 35ec8c627..000000000 --- a/.changeset/large-olives-think.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": minor ---- - -Implement parser of binary paths for transactions diff --git a/.changeset/lemon-impalas-flash.md b/.changeset/lemon-impalas-flash.md deleted file mode 100644 index 01d169da6..000000000 --- a/.changeset/lemon-impalas-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Allow signing a message as a byte array diff --git a/.changeset/lemon-suits-noticer.md b/.changeset/lemon-suits-noticer.md deleted file mode 100644 index c9bad2236..000000000 --- a/.changeset/lemon-suits-noticer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Rename SDK to DMK diff --git a/.changeset/little-camels-approve.md b/.changeset/little-camels-approve.md deleted file mode 100644 index deeba8581..000000000 --- a/.changeset/little-camels-approve.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": minor ---- - -Update SignTransaction device action with generic-parser support diff --git a/.changeset/loud-balloons-poke.md b/.changeset/loud-balloons-poke.md deleted file mode 100644 index 2dd25db3e..000000000 --- a/.changeset/loud-balloons-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Add support for V1 clear signing contexts diff --git a/.changeset/metal-wombats-relate.md b/.changeset/metal-wombats-relate.md deleted file mode 100644 index 3b6d9423c..000000000 --- a/.changeset/metal-wombats-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Reconstruct V full value for legacy transactions diff --git a/.changeset/plenty-dingos-deny.md b/.changeset/plenty-dingos-deny.md deleted file mode 100644 index 84c3fe503..000000000 --- a/.changeset/plenty-dingos-deny.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Improve provide generic context structure and tests diff --git a/.changeset/plenty-snakes-agree.md b/.changeset/plenty-snakes-agree.md deleted file mode 100644 index 1fafd2cf5..000000000 --- a/.changeset/plenty-snakes-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Add ProvideTransactionInformation command diff --git a/.changeset/rich-pumpkins-laugh.md b/.changeset/rich-pumpkins-laugh.md deleted file mode 100644 index 648f829c0..000000000 --- a/.changeset/rich-pumpkins-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Improve transaction v6 typeguard diff --git a/.changeset/slow-lies-float.md b/.changeset/slow-lies-float.md deleted file mode 100644 index 402e83483..000000000 --- a/.changeset/slow-lies-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Add ProvideTransactionFieldDescription command diff --git a/.changeset/strange-mayflies-repair.md b/.changeset/strange-mayflies-repair.md deleted file mode 100644 index 535652c80..000000000 --- a/.changeset/strange-mayflies-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/context-module": patch ---- - -Fix CAL test signatures for EIP712 diff --git a/.changeset/sweet-stingrays-give.md b/.changeset/sweet-stingrays-give.md deleted file mode 100644 index 08ef915a2..000000000 --- a/.changeset/sweet-stingrays-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Prevent chunking legacy transactions just before the EIP-155 marker diff --git a/.changeset/tasty-falcons-doubts.md b/.changeset/tasty-falcons-doubts.md deleted file mode 100644 index b72fb04df..000000000 --- a/.changeset/tasty-falcons-doubts.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ledgerhq/context-module": patch -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Use type keyword when importing type diff --git a/.changeset/ten-carrots-wait.md b/.changeset/ten-carrots-wait.md deleted file mode 100644 index 70ae7dd59..000000000 --- a/.changeset/ten-carrots-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Remove legacy parameter for internal sign transacion command diff --git a/.changeset/twelve-stingrays-shake.md b/.changeset/twelve-stingrays-shake.md deleted file mode 100644 index 403ba5994..000000000 --- a/.changeset/twelve-stingrays-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Early return when EIP712 Domain fails to be sent diff --git a/.changeset/witty-boats-lay.md b/.changeset/witty-boats-lay.md deleted file mode 100644 index 7d0bb6138..000000000 --- a/.changeset/witty-boats-lay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ledgerhq/device-signer-kit-ethereum": patch ---- - -Add ProvideEnum command diff --git a/packages/signer/context-module/CHANGELOG.md b/packages/signer/context-module/CHANGELOG.md index fd27b2e95..09f36b22a 100644 --- a/packages/signer/context-module/CHANGELOG.md +++ b/packages/signer/context-module/CHANGELOG.md @@ -1,5 +1,27 @@ # @ledgerhq/context-module +## 1.1.0 + +### Minor Changes + +- [#493](https://github.com/LedgerHQ/device-sdk-ts/pull/493) [`07c575d`](https://github.com/LedgerHQ/device-sdk-ts/commit/07c575d44361c53d4d6c0e73a1eb61a43d2ed8d4) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Implement generic transaction context loader + +- [#513](https://github.com/LedgerHQ/device-sdk-ts/pull/513) [`fa9c3d6`](https://github.com/LedgerHQ/device-sdk-ts/commit/fa9c3d61735f7c2aaf2d00a878eeba7ece16078a) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Implement transaction fields loader + +- [#526](https://github.com/LedgerHQ/device-sdk-ts/pull/526) [`3b69436`](https://github.com/LedgerHQ/device-sdk-ts/commit/3b6943633e8b076a998db39ed92b753a6e5d3309) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Rework context module builder + +### Patch Changes + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Add ProvideTransactionGenericContext Task + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Update license to Apache-2.0 + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Use esbuild to build libraries + +- [#397](https://github.com/LedgerHQ/device-sdk-ts/pull/397) [`637fe6c`](https://github.com/LedgerHQ/device-sdk-ts/commit/637fe6c3e8cee434925f4347a602648abd6aee69) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Fix CAL test signatures for EIP712 + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Use type keyword when importing type + ## 1.0.0 ### Minor Changes diff --git a/packages/signer/context-module/package.json b/packages/signer/context-module/package.json index 00fa4f51e..3a3b6b868 100644 --- a/packages/signer/context-module/package.json +++ b/packages/signer/context-module/package.json @@ -1,6 +1,6 @@ { "name": "@ledgerhq/context-module", - "version": "1.0.0", + "version": "1.1.0", "license": "Apache-2.0", "exports": { ".": { diff --git a/packages/signer/signer-eth/CHANGELOG.md b/packages/signer/signer-eth/CHANGELOG.md index 582caa547..8224de4f6 100644 --- a/packages/signer/signer-eth/CHANGELOG.md +++ b/packages/signer/signer-eth/CHANGELOG.md @@ -1,5 +1,62 @@ # @ledgerhq/device-signer-kit-ethereum +## 1.1.0 + +### Minor Changes + +- [#485](https://github.com/LedgerHQ/device-sdk-ts/pull/485) [`62acf6c`](https://github.com/LedgerHQ/device-sdk-ts/commit/62acf6c6e524de8ee77c48b07785f7fa06c041d4) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Implement parser of binary paths for transactions + +- [#518](https://github.com/LedgerHQ/device-sdk-ts/pull/518) [`773e620`](https://github.com/LedgerHQ/device-sdk-ts/commit/773e6204e710ca03d8ac5cc08b773826502c6392) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Update SignTransaction device action with generic-parser support + +### Patch Changes + +- [#423](https://github.com/LedgerHQ/device-sdk-ts/pull/423) [`91a9022`](https://github.com/LedgerHQ/device-sdk-ts/commit/91a9022f3407908411c5784453bb35fa9ef1527e) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Add ProvideTransactionGenericContext Task + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Update license to Apache-2.0 + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Rename keyring to signer + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Use esbuild to build libraries + +- [#531](https://github.com/LedgerHQ/device-sdk-ts/pull/531) [`ebd01e8`](https://github.com/LedgerHQ/device-sdk-ts/commit/ebd01e87731c8483d8ab934d8b591158644d25cf) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Return an error if StartTransaction cmd does not contain a signature + +- [#418](https://github.com/LedgerHQ/device-sdk-ts/pull/418) [`269f102`](https://github.com/LedgerHQ/device-sdk-ts/commit/269f102b43aca408ccecae2a135974e6dc6835df) Thanks [@valpinkman](https://github.com/valpinkman)! - Adapt SignTransactionCommand and add StoreTransaction to prepare for the new version of Ethereum app (1.13) + +- [#531](https://github.com/LedgerHQ/device-sdk-ts/pull/531) [`ebd01e8`](https://github.com/LedgerHQ/device-sdk-ts/commit/ebd01e87731c8483d8ab934d8b591158644d25cf) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Update error message for invalid chaincode + +- [#415](https://github.com/LedgerHQ/device-sdk-ts/pull/415) [`fbac50a`](https://github.com/LedgerHQ/device-sdk-ts/commit/fbac50a8448e89fa4196cbec78f967616e371874) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Add support for EIP712 filters with missing token + +- [#450](https://github.com/LedgerHQ/device-sdk-ts/pull/450) [`a747e4b`](https://github.com/LedgerHQ/device-sdk-ts/commit/a747e4b282f9d2a8f3f96a2fb22b5aefdf58b8ac) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Fix clear signing of EIP712 messages with an empty array + +- [#476](https://github.com/LedgerHQ/device-sdk-ts/pull/476) [`0dcccfc`](https://github.com/LedgerHQ/device-sdk-ts/commit/0dcccfcb7bdace8d34e5dcdd0d6be82c87e6b3db) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Allow signing a message as a byte array + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Rename SDK to DMK + +- [#411](https://github.com/LedgerHQ/device-sdk-ts/pull/411) [`d07a4f5`](https://github.com/LedgerHQ/device-sdk-ts/commit/d07a4f573bc30982750c861e5793a07d652db599) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Add support for V1 clear signing contexts + +- [#457](https://github.com/LedgerHQ/device-sdk-ts/pull/457) [`baa0206`](https://github.com/LedgerHQ/device-sdk-ts/commit/baa0206e525cc812436fb934cb79f49cc38eac11) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Reconstruct V full value for legacy transactions + +- [#539](https://github.com/LedgerHQ/device-sdk-ts/pull/539) [`b13a95a`](https://github.com/LedgerHQ/device-sdk-ts/commit/b13a95a95ceca9a251d2c27360b61a5d2dd559d4) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Improve provide generic context structure and tests + +- [#412](https://github.com/LedgerHQ/device-sdk-ts/pull/412) [`715ea1c`](https://github.com/LedgerHQ/device-sdk-ts/commit/715ea1c8db3641ed901e83305e11f7af463875f9) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Add ProvideTransactionInformation command + +- [#508](https://github.com/LedgerHQ/device-sdk-ts/pull/508) [`1fda407`](https://github.com/LedgerHQ/device-sdk-ts/commit/1fda407103792d265fe836deda99568335fdabd2) Thanks [@jdabbech-ledger](https://github.com/jdabbech-ledger)! - Improve transaction v6 typeguard + +- [#413](https://github.com/LedgerHQ/device-sdk-ts/pull/413) [`766d3fa`](https://github.com/LedgerHQ/device-sdk-ts/commit/766d3fa5645e86889d82e4dfff2ba838b30da683) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Add ProvideTransactionFieldDescription command + +- [#470](https://github.com/LedgerHQ/device-sdk-ts/pull/470) [`71c3eca`](https://github.com/LedgerHQ/device-sdk-ts/commit/71c3eca21e3243989cd981d67df2393a683ee147) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Prevent chunking legacy transactions just before the EIP-155 marker + +- [#506](https://github.com/LedgerHQ/device-sdk-ts/pull/506) [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40) Thanks [@valpinkman](https://github.com/valpinkman)! - Use type keyword when importing type + +- [#434](https://github.com/LedgerHQ/device-sdk-ts/pull/434) [`afbce1b`](https://github.com/LedgerHQ/device-sdk-ts/commit/afbce1b9e4b5d3347e7452bfe25828753e1bad43) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Remove legacy parameter for internal sign transacion command + +- [#384](https://github.com/LedgerHQ/device-sdk-ts/pull/384) [`2082f88`](https://github.com/LedgerHQ/device-sdk-ts/commit/2082f884b431cab9ca3e698d83ee08f1de6c5aa7) Thanks [@paoun-ledger](https://github.com/paoun-ledger)! - Early return when EIP712 Domain fails to be sent + +- [#414](https://github.com/LedgerHQ/device-sdk-ts/pull/414) [`120b56a`](https://github.com/LedgerHQ/device-sdk-ts/commit/120b56a6f0a464eb92f3aec99e91ad0ecf26f248) Thanks [@aussedatlo](https://github.com/aussedatlo)! - Add ProvideEnum command + +- Updated dependencies [[`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40), [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40), [`07c575d`](https://github.com/LedgerHQ/device-sdk-ts/commit/07c575d44361c53d4d6c0e73a1eb61a43d2ed8d4), [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40), [`fa9c3d6`](https://github.com/LedgerHQ/device-sdk-ts/commit/fa9c3d61735f7c2aaf2d00a878eeba7ece16078a), [`3b69436`](https://github.com/LedgerHQ/device-sdk-ts/commit/3b6943633e8b076a998db39ed92b753a6e5d3309), [`637fe6c`](https://github.com/LedgerHQ/device-sdk-ts/commit/637fe6c3e8cee434925f4347a602648abd6aee69), [`5085f6d`](https://github.com/LedgerHQ/device-sdk-ts/commit/5085f6dd397b5800849e34f593e71fd9c61c0e40)]: + - @ledgerhq/context-module@1.1.0 + ## 1.0.0 ### Minor Changes diff --git a/packages/signer/signer-eth/package.json b/packages/signer/signer-eth/package.json index 19a1fd0c1..e402f56fe 100644 --- a/packages/signer/signer-eth/package.json +++ b/packages/signer/signer-eth/package.json @@ -1,6 +1,6 @@ { "name": "@ledgerhq/device-signer-kit-ethereum", - "version": "1.0.0", + "version": "1.1.0", "license": "Apache-2.0", "exports": { ".": {