Version Packages#544
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
411b60d to
278951d
Compare
278951d to
ef88f2f
Compare
ef88f2f to
91799e0
Compare
91799e0 to
e88d9fe
Compare
e88d9fe to
d89172e
Compare
d89172e to
39a7796
Compare
39a7796 to
0706022
Compare
0706022 to
b0a0a41
Compare
b0a0a41 to
38a333e
Compare
38a333e to
462b8ea
Compare
462b8ea to
1d148cd
Compare
1d148cd to
c153e74
Compare
c153e74 to
a7dcd4e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@ledgerhq/wallet-api-client@1.14.3
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.Updated dependencies [
24131d2,98caac2]:@ledgerhq/wallet-api-client-react@1.4.28
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#574
abf28deThanks @Justkant! - fix(client-react): create WalletAPIClient once in WalletAPIProviderWalletAPIProvidercreated its client inside auseStateinitializer. Becausethe
WalletAPIClientconstructor has a side effect — it registers itself ontransport.onMessage— React strict mode's double-invocation constructed asecond, discarded client whose constructor hijacked the transport. Responses
were then routed to a client with no pending requests, throwing
no ongoingRequest.The client is now instantiated exactly once via the ref "create once" pattern,
so a single instance owns the transport even under strict mode.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.Updated dependencies [
24131d2,98caac2]:@ledgerhq/wallet-api-core@1.31.1
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.@ledgerhq/wallet-api-manifest-validator@0.7.29
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.#550
e1950ceThanks @Justkant! - chore(deps): bump ajv to 8.20 and ajv-formats to 3Updated dependencies [
24131d2,98caac2]:@ledgerhq/wallet-api-manifest-validator-cli@0.1.65
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.Updated dependencies [
24131d2,98caac2,e1950ce]:@ledgerhq/wallet-api-server@3.3.3
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.Updated dependencies [
24131d2,98caac2]:@ledgerhq/wallet-api-simulator@2.2.5
Patch Changes
#569
24131d2Thanks @Justkant! - chore(deps): upgrade core to zod 4, drop uuid, bump TypeScript to 6Bumps
zodin@ledgerhq/wallet-api-corefrom^3.22.4to^4.4.3(latestv4). zod 4's type definitions require TypeScript >= 5.4, and because core
re-exports zod schemas as part of its public API, every package that
type-checks against core is bumped from TypeScript
^5.3.3to^6.0.3. Eachlibrary
tsconfig.jsongainsignoreDeprecations: "6.0"(Node10 moduleresolution / baseUrl stay for now) and the build configs set an explicit
rootDir.The previous repo-wide
zod@>=4.4.0 -> 4.3.6override (added becausenextra-theme-docs broke on zod 4.4.x) is removed in favour of a small
pnpm patchthat fixes the two underlying nextra schema bugs, so the wholemonorepo now resolves a single zod 4.4.3.
Also replaces the single
uuidv4 usage inRpcNodewith the nativecrypto.randomUUID(), removing theuuidand@types/uuiddependencies(uuid v14 is ESM-only and incompatible with the package's CommonJS build).
Note:
crypto.randomUUID()requires a secure context in browsers (HTTPS orlocalhost);RpcNode.requestwill throw if called over plain HTTP. This isconsistent with wallet-api's dapp/wallet usage, which always runs over HTTPS.
#543
98caac2Thanks @Justkant! - Refresh package dependencies across the published wallet API packages.Updated dependencies [
24131d2,98caac2]:@ledgerhq/wallet-api-tools@0.7.5
Patch Changes
24131d2,98caac2]:@ledgerhq/client-nextjs@0.1.50
Patch Changes
24131d2,abf28de,98caac2]: