Skip to content

Version Packages - #8

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

Version Packages#8
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 15, 2026

Copy link
Copy Markdown

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

@solana/errors@7.1.0

Minor Changes

  • #1811 7022c26 Thanks @mcintyre94! - Add bridgeStoreToAsyncIterable to @solana/subscribable

    bridgeStoreToAsyncIterable adapts a ReactiveStreamStore into the pull-based AsyncIterable contract that consumers like TanStack Query's experimental_streamedQuery expect. It is now a public export of @solana/subscribable (and re-exported from @solana/kit). It was previously an internal helper of @solana/react, but it is not React- or TanStack-specific and is useful to any consumer that needs to drive a stream store by for await-ing it.

    The bridge only observes the store — consistent with the rest of the ecosystem, the caller owns the store's lifecycle (connect() it yourself, bound to the same signal, and reset() it when done). The bridge subscribes, seeds from the store's current snapshot, yields values, and unsubscribes when iteration ends.

    It throws the new SOLANA_ERROR__SUBSCRIBABLE__STREAM_CLOSED_WITHOUT_ERROR when a store closes in an error state with a nullish payload. This is the error useSubscriptionQuery and useTrackedDataQuery now surface in that case; the SWR bridge is unaffected.

  • #1888 14a3e5b Thanks @mcintyre94! - Add an assertOffchainMessageV1Equal helper that asserts that a version 1 offchain message you received from an untrusted signer (eg. a wallet) is the message you expected it to sign. Verifying a signature proves only that the signer produced it over the bytes it handed back, not that those bytes represent the message you asked for, so assert this before verifying signatures with verifyOffchainMessageEnvelope. The helper compares the content and the required signatories, and reports each kind of mismatch with its own error code: the new SOLANA_ERROR__OFFCHAIN_MESSAGE__CONTENT_DOES_NOT_MATCH_EXPECTED and SOLANA_ERROR__OFFCHAIN_MESSAGE__REQUIRED_SIGNATORIES_DO_NOT_MATCH_EXPECTED. Required signatories are compared without regard to order, since a decoded message lists them in the order the specification mandates while yours may be in any order. It accepts an OffchainMessageV1 rather than the OffchainMessage union that decoding produces, so narrow the decoded message to a version 1 message before calling it.

@solana/kit@7.1.0

Minor Changes

  • #1811 7022c26 Thanks @mcintyre94! - Add bridgeStoreToAsyncIterable to @solana/subscribable

    bridgeStoreToAsyncIterable adapts a ReactiveStreamStore into the pull-based AsyncIterable contract that consumers like TanStack Query's experimental_streamedQuery expect. It is now a public export of @solana/subscribable (and re-exported from @solana/kit). It was previously an internal helper of @solana/react, but it is not React- or TanStack-specific and is useful to any consumer that needs to drive a stream store by for await-ing it.

    The bridge only observes the store — consistent with the rest of the ecosystem, the caller owns the store's lifecycle (connect() it yourself, bound to the same signal, and reset() it when done). The bridge subscribes, seeds from the store's current snapshot, yields values, and unsubscribes when iteration ends.

    It throws the new SOLANA_ERROR__SUBSCRIBABLE__STREAM_CLOSED_WITHOUT_ERROR when a store closes in an error state with a nullish payload. This is the error useSubscriptionQuery and useTrackedDataQuery now surface in that case; the SWR bridge is unaffected.

  • #1898 4a5f717 Thanks @lorisleiva! - Add helpers to create client interfaces from a raw Rpc

    Add createClientWithGetMinimumBalanceFromRpc, createClientWithFetchAccountsFromRpc and createClientWithInterfacesFromRpc to @solana/kit. These convenience helpers let consumers that only have a raw Rpc object construct the corresponding client interfaces (ClientWithGetMinimumBalance and ClientWithFetchAccounts) without assembling a full Kit client. createClientWithInterfacesFromRpc fills in whichever interfaces the RPC supports and narrows its return type accordingly.

  • #1824 b47feb6 Thanks @mcintyre94! - Re-export @solana/promises from @solana/kit

    @solana/kit now re-exports the @solana/promises package, so its helpers — isAbortError, getAbortablePromise, and safeRace — are available directly from @solana/kit without a separate dependency. This is particularly useful alongside @solana/react's useAction, whose superseded or aborted dispatches reject with an AbortError that callers filter using isAbortError.

Patch Changes

  • #1883 a900eeb Thanks @mcintyre94! - Fix withCleanup throwing DisposableStack is not defined on Safari

    withCleanup constructed a DisposableStack unconditionally, but Safari has not shipped explicit resource management — as of Safari 27 it provides neither DisposableStack nor Symbol.dispose — so any plugin that registers a cleanup function threw ReferenceError: Can't find variable: DisposableStack while the client was being built.

    The runtime's own DisposableStack is still used whenever it exists. Only where it is missing does withCleanup fall back to an internal stack that reproduces the behaviour it depends on. The withCleanup test suite now runs twice, once against each stack, so the two cannot drift apart.

    Note that this fixes disposal on Safari but not using declarations in your own code, which additionally need a Symbol.dispose polyfill; disposing a client explicitly works either way.

  • Updated dependencies [7022c26, c45d5e0, c8235ca, 327760c, 82c4ceb, 14a3e5b, a900eeb, aa0b625]:

    • @solana/subscribable@7.1.0
    • @solana/errors@7.1.0
    • @solana/transaction-introspection@7.1.0
    • @solana/rpc-api@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/offchain-messages@7.1.0
    • @solana/plugin-core@7.1.0
    • @solana/plugin-interfaces@7.1.0
    • @solana/rpc-subscriptions@7.1.0
    • @solana/accounts@7.1.0
    • @solana/addresses@7.1.0
    • @solana/instruction-plans@7.1.0
    • @solana/instructions@7.1.0
    • @solana/keys@7.1.0
    • @solana/program-client-core@7.1.0
    • @solana/programs@7.1.0
    • @solana/rpc@7.1.0
    • @solana/rpc-spec-types@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/signers@7.1.0
    • @solana/sysvars@7.1.0
    • @solana/transaction-confirmation@7.1.0
    • @solana/transactions@7.1.0
    • @solana/codecs@7.1.0
    • @solana/rpc-parsed-types@7.1.0
    • @solana/functional@7.1.0
    • @solana/promises@7.1.0

@solana/offchain-messages@7.1.0

Minor Changes

  • #1888 14a3e5b Thanks @mcintyre94! - Add an assertOffchainMessageV1Equal helper that asserts that a version 1 offchain message you received from an untrusted signer (eg. a wallet) is the message you expected it to sign. Verifying a signature proves only that the signer produced it over the bytes it handed back, not that those bytes represent the message you asked for, so assert this before verifying signatures with verifyOffchainMessageEnvelope. The helper compares the content and the required signatories, and reports each kind of mismatch with its own error code: the new SOLANA_ERROR__OFFCHAIN_MESSAGE__CONTENT_DOES_NOT_MATCH_EXPECTED and SOLANA_ERROR__OFFCHAIN_MESSAGE__REQUIRED_SIGNATORIES_DO_NOT_MATCH_EXPECTED. Required signatories are compared without regard to order, since a decoded message lists them in the order the specification mandates while yours may be in any order. It accepts an OffchainMessageV1 rather than the OffchainMessage union that decoding produces, so narrow the decoded message to a version 1 message before calling it.

Patch Changes

  • Updated dependencies [7022c26, da10c5a, 204ed6e, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-data-structures@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/keys@7.1.0
    • @solana/nominal-types@7.1.0

@solana/plugin-interfaces@7.1.0

Minor Changes

  • #1897 aa0b625 Thanks @lorisleiva! - Add a ClientWithFetchAccounts interface

    This new plugin interface represents a client that can fetch the encoded content of accounts from their addresses via a fetchAccounts(addresses, config?) method. Like the other @solana/plugin-interfaces capabilities, it lets plugins provide or require account-fetching without coupling to a concrete RPC. The returned array matches the provided addresses in length and order, using MaybeEncodedAccount to represent accounts that may not exist.

Patch Changes

  • Updated dependencies []:
    • @solana/rpc-spec@7.1.0
    • @solana/rpc-subscriptions-spec@7.1.0
    • @solana/accounts@7.1.0
    • @solana/addresses@7.1.0
    • @solana/instruction-plans@7.1.0
    • @solana/keys@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/signers@7.1.0

@solana/react@7.1.0

Minor Changes

  • #1811 7022c26 Thanks @mcintyre94! - Add bridgeStoreToAsyncIterable to @solana/subscribable

    bridgeStoreToAsyncIterable adapts a ReactiveStreamStore into the pull-based AsyncIterable contract that consumers like TanStack Query's experimental_streamedQuery expect. It is now a public export of @solana/subscribable (and re-exported from @solana/kit). It was previously an internal helper of @solana/react, but it is not React- or TanStack-specific and is useful to any consumer that needs to drive a stream store by for await-ing it.

    The bridge only observes the store — consistent with the rest of the ecosystem, the caller owns the store's lifecycle (connect() it yourself, bound to the same signal, and reset() it when done). The bridge subscribes, seeds from the store's current snapshot, yields values, and unsubscribes when iteration ends.

    It throws the new SOLANA_ERROR__SUBSCRIBABLE__STREAM_CLOSED_WITHOUT_ERROR when a store closes in an error state with a nullish payload. This is the error useSubscriptionQuery and useTrackedDataQuery now surface in that case; the SWR bridge is unaffected.

  • #1876 d6a1adb Thanks @mcintyre94! - Add usePayer and useIdentity React hooks. Each reads the corresponding value off the client and, when the client advertises subscribeToPayer/subscribeToIdentity, subscribes so the returned signer always reflects the latest payer/identity. Clients whose value is fixed fall back to a one-time read.

    If the plugin value throws (for example as the wallet plugin does when it owns payer/identity and a wallet is not connected), this is surfaced as undefined in the hooks.

  • #1841 94f49bb Thanks @mcintyre94! - Make the TClient type parameter of useClient required by removing its object default, matching useClientCapability. Callers should always pass their client's shape (typically an exported AppClient type) so installed capabilities are typed at the call site.

    - const client = useClient();
    + const client = useClient<AppClient>();
  • #1869 2193459 Thanks @mcintyre94! - Add usePlanTransaction, usePlanTransactions, useSendTransaction, and useSendTransactions hooks for driving a client's transaction-planning and -sending capabilities as reactive actions.

  • #1879 c27ce2f Thanks @mcintyre94! - Add a useAirdrop hook that wraps a client's airdrop capability (ClientWithAirdrop) as a tracked useAction. dispatch(address, amount) requests an airdrop with an injected AbortSignal, resolving with the transaction Signature (or undefined when the airdrop is applied without a transaction).

Patch Changes

  • #1907 9d6be07 Thanks @mcintyre94! - Widen the @solana/kit peer dependency of @solana/react from an exact version to a caret range. @solana/react previously declared "@solana/kit": "workspace:*", which publishes as an exact pin ("@solana/kit": "7.0.0"), so a consumer who advanced @solana/kit without advancing @solana/react in the same step hit an unsatisfiable peer range even though the two are compatible. It now declares workspace:^ and publishes as ^7.1.0. The two packages continue to be released in lockstep at identical versions, so this does not loosen which combinations are actually shipped — it only stops describing a compatible pair as incompatible.

  • #1825 d54b899 Thanks @mcintyre94! - Bump the @wallet-standard/ui and @wallet-standard/ui-registry dependencies to ^1.0.3 and ^1.1.1 respectively. The 1.1.x registry line is a backward-compatible superset that continues to export the names @solana/react relies on, and aligning with it lets consumers that also pull in @solana/kit-plugin-wallet resolve a single, shared copy of the wallet-standard UI registry (which is a runtime singleton) instead of splitting across two incompatible copies.

  • Updated dependencies [7022c26, 327760c]:

    • @solana/subscribable@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/signers@7.1.0
    • @solana/transactions@7.1.0
    • @solana/promises@7.1.0

@solana/rpc-api@7.1.0

Minor Changes

  • #1776 c8235ca Thanks @mcintyre94! - Add the getTransactionsForAddress RPC method type. This method combines address-history discovery and per-transaction fetching into a single query, with server-side filtering, bidirectional sorting, and cursor-based pagination. It will be part of the upcoming solana-rpc spec and is part of the solana-rpc/superbank project, and is already available from major RPC providers.

    It supports both signatures and full (json/jsonParsed/base58/base64) response modes. The shared transaction metadata types also gain an optional meta.costUnits field, which surfaces on getTransaction as well.

Patch Changes

  • #1917 82c4ceb Thanks @amilz! - Stop upcasting transaction version to bigint

    The response transformer upcasts every JSON integer to a bigint unless its keypath appears in an allow-list. version was missing from that allow-list on getTransaction, getBlock transactions, and getTransactionsForAddress, so it arrived at runtime as 0n while still typechecking as TransactionVersion ('legacy' | 0 | 1).

    A check like if (transaction.version === 0) therefore compiled cleanly and was always false, with no compiler error and no runtime error. The keypath is now allow-listed and version arrives as a number, matching its declared type.

  • Updated dependencies [7022c26, 327760c, 14a3e5b]:

    • @solana/errors@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/rpc-spec@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/keys@7.1.0
    • @solana/rpc-transformers@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/transactions@7.1.0
    • @solana/rpc-parsed-types@7.1.0

@solana/subscribable@7.1.0

Minor Changes

  • #1811 7022c26 Thanks @mcintyre94! - Add bridgeStoreToAsyncIterable to @solana/subscribable

    bridgeStoreToAsyncIterable adapts a ReactiveStreamStore into the pull-based AsyncIterable contract that consumers like TanStack Query's experimental_streamedQuery expect. It is now a public export of @solana/subscribable (and re-exported from @solana/kit). It was previously an internal helper of @solana/react, but it is not React- or TanStack-specific and is useful to any consumer that needs to drive a stream store by for await-ing it.

    The bridge only observes the store — consistent with the rest of the ecosystem, the caller owns the store's lifecycle (connect() it yourself, bound to the same signal, and reset() it when done). The bridge subscribes, seeds from the store's current snapshot, yields values, and unsubscribes when iteration ends.

    It throws the new SOLANA_ERROR__SUBSCRIBABLE__STREAM_CLOSED_WITHOUT_ERROR when a store closes in an error state with a nullish payload. This is the error useSubscriptionQuery and useTrackedDataQuery now surface in that case; the SWR bridge is unaffected.

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/promises@7.1.0

@solana/transaction-introspection@7.1.0

Minor Changes

  • #1814 c45d5e0 Thanks @mcintyre94! - decodeTransactionFromRpcResponse now accepts confirmed transactions from any RPC method that returns them, not just getTransaction. It reads only the shared transaction / meta / version envelope, so getTransactionsForAddress results (map over its data array) and getBlock results (map over its transactions array, with transactionDetails: 'full') decode identically, including legacy transactions fetched without maxSupportedTransactionVersion. The 'json' overload now types its omitted transaction as never rather than an optional Transaction, reflecting that the JSON path never yields re-encodable wire bytes.

Patch Changes

  • Updated dependencies [7022c26, 327760c, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/instructions@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/transactions@7.1.0

@solana/accounts@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/rpc-spec@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/rpc-types@7.1.0

@solana/addresses@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/assertions@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/nominal-types@7.1.0

@solana/assertions@7.1.0

Patch Changes

@solana/codecs@7.1.0

Patch Changes

  • Updated dependencies [da10c5a, 204ed6e]:
    • @solana/codecs-data-structures@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/fixed-points@7.1.0
    • @solana/options@7.1.0

@solana/codecs-core@7.1.0

Patch Changes

@solana/codecs-data-structures@7.1.0

Patch Changes

  • #1884 da10c5a Thanks @Swift42! - Avoid copying the remaining buffer in getArrayDecoder's emptiness check

    getArrayDecoder's read() tested for an empty byte array with bytes.slice(offset).length === 0, which allocates and copies every byte from offset to the end just to read .length off the result. On large accounts containing many prefixed arrays, maps, or sets this made decoding quadratic in account size. The check is now the equivalent O(1) comparison offset >= bytes.length. getMapDecoder and getSetDecoder delegate to getArrayDecoder and benefit as well.

  • #1809 204ed6e Thanks @mcintyre94! - Allow boolean predicates passed to getPatternMatchCodec and getPatternMatchEncoder to narrow to a subtype of the variant's value type. Previously, matching against codecs whose value type is a union — such as the number codecs, whose encode type is number | bigint — forced predicates to be typed against the full union (e.g. (value: number | bigint) => …). The predicate parameter is now checked bivariantly, so a narrower predicate like (value: number) => … is accepted, mirroring the ergonomics of getPredicateCodec and getPredicateEncoder.

  • Updated dependencies [7022c26, 14a3e5b]:

    • @solana/errors@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0

@solana/codecs-numbers@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-core@7.1.0

@solana/codecs-strings@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0

@solana/compat@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/instructions@7.1.0
    • @solana/keys@7.1.0
    • @solana/transactions@7.1.0

@solana/fixed-points@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-core@7.1.0

@solana/instruction-plans@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 327760c, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/instructions@7.1.0
    • @solana/keys@7.1.0
    • @solana/transactions@7.1.0
    • @solana/promises@7.1.0

@solana/instructions@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-core@7.1.0

@solana/keys@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/assertions@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/nominal-types@7.1.0
    • @solana/promises@7.1.0

@solana/options@7.1.0

Patch Changes

  • Updated dependencies [7022c26, da10c5a, 204ed6e, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-data-structures@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/codecs-strings@7.1.0

@solana/plugin-core@7.1.0

Patch Changes

  • #1883 a900eeb Thanks @mcintyre94! - Fix withCleanup throwing DisposableStack is not defined on Safari

    withCleanup constructed a DisposableStack unconditionally, but Safari has not shipped explicit resource management — as of Safari 27 it provides neither DisposableStack nor Symbol.dispose — so any plugin that registers a cleanup function threw ReferenceError: Can't find variable: DisposableStack while the client was being built.

    The runtime's own DisposableStack is still used whenever it exists. Only where it is missing does withCleanup fall back to an internal stack that reproduces the behaviour it depends on. The withCleanup test suite now runs twice, once against each stack, so the two cannot drift apart.

    Note that this fixes disposal on Safari but not using declarations in your own code, which additionally need a Symbol.dispose polyfill; disposing a client explicitly works either way.

@solana/program-client-core@7.1.0

Patch Changes

  • Updated dependencies [7022c26, c8235ca, 82c4ceb, 14a3e5b, aa0b625]:
    • @solana/errors@7.1.0
    • @solana/rpc-api@7.1.0
    • @solana/plugin-interfaces@7.1.0
    • @solana/accounts@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/instruction-plans@7.1.0
    • @solana/instructions@7.1.0
    • @solana/signers@7.1.0

@solana/programs@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/addresses@7.1.0

@solana/rpc@7.1.0

Patch Changes

  • Updated dependencies [7022c26, c8235ca, 82c4ceb, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/rpc-api@7.1.0
    • @solana/rpc-spec@7.1.0
    • @solana/rpc-spec-types@7.1.0
    • @solana/rpc-transformers@7.1.0
    • @solana/rpc-transport-http@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/fast-stable-stringify@7.1.0
    • @solana/functional@7.1.0

@solana/rpc-graphql@7.1.0

Patch Changes

  • Updated dependencies []:
    • @solana/codecs-strings@7.1.0
    • @solana/fast-stable-stringify@7.1.0

@solana/rpc-spec@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/subscribable@7.1.0
    • @solana/errors@7.1.0
    • @solana/rpc-spec-types@7.1.0

@solana/rpc-spec-types@7.1.0

Patch Changes

@solana/rpc-subscriptions@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/subscribable@7.1.0
    • @solana/errors@7.1.0
    • @solana/rpc-subscriptions-channel-websocket@7.1.0
    • @solana/rpc-subscriptions-spec@7.1.0
    • @solana/rpc-spec-types@7.1.0
    • @solana/rpc-transformers@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/rpc-subscriptions-api@7.1.0
    • @solana/fast-stable-stringify@7.1.0
    • @solana/functional@7.1.0
    • @solana/promises@7.1.0

@solana/rpc-subscriptions-api@7.1.0

Patch Changes

  • Updated dependencies [327760c]:
    • @solana/transaction-messages@7.1.0
    • @solana/rpc-subscriptions-spec@7.1.0
    • @solana/addresses@7.1.0
    • @solana/keys@7.1.0
    • @solana/rpc-transformers@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/transactions@7.1.0

@solana/rpc-subscriptions-channel-websocket@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/subscribable@7.1.0
    • @solana/errors@7.1.0
    • @solana/rpc-subscriptions-spec@7.1.0
    • @solana/functional@7.1.0

@solana/rpc-subscriptions-spec@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/subscribable@7.1.0
    • @solana/errors@7.1.0
    • @solana/rpc-spec-types@7.1.0
    • @solana/promises@7.1.0

@solana/rpc-transformers@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/rpc-spec-types@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/functional@7.1.0
    • @solana/nominal-types@7.1.0

@solana/rpc-transport-http@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/rpc-spec@7.1.0
    • @solana/rpc-spec-types@7.1.0

@solana/rpc-types@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/fixed-points@7.1.0
    • @solana/nominal-types@7.1.0

@solana/signers@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 327760c, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/offchain-messages@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/instructions@7.1.0
    • @solana/keys@7.1.0
    • @solana/transactions@7.1.0
    • @solana/nominal-types@7.1.0

@solana/sysvars@7.1.0

Patch Changes

  • Updated dependencies [7022c26, da10c5a, 204ed6e, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-data-structures@7.1.0
    • @solana/accounts@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/rpc-types@7.1.0

@solana/transaction-confirmation@7.1.0

Patch Changes

  • Updated dependencies [7022c26, 327760c, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/rpc-subscriptions@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/keys@7.1.0
    • @solana/rpc@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/transactions@7.1.0
    • @solana/promises@7.1.0

@solana/transaction-messages@7.1.0

Patch Changes

  • #1874 327760c Thanks @mcintyre94! - Update type of compressTransactionMessageUsingAddressLookupTables to reject v1 transactions

  • Updated dependencies [7022c26, da10c5a, 204ed6e, 14a3e5b]:

    • @solana/errors@7.1.0
    • @solana/codecs-data-structures@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/instructions@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/functional@7.1.0
    • @solana/nominal-types@7.1.0

@solana/transactions@7.1.0

Patch Changes

  • Updated dependencies [7022c26, da10c5a, 204ed6e, 327760c, 14a3e5b]:
    • @solana/errors@7.1.0
    • @solana/codecs-data-structures@7.1.0
    • @solana/transaction-messages@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/codecs-numbers@7.1.0
    • @solana/codecs-strings@7.1.0
    • @solana/instructions@7.1.0
    • @solana/keys@7.1.0
    • @solana/rpc-types@7.1.0
    • @solana/functional@7.1.0
    • @solana/nominal-types@7.1.0

@solana/wallet-account-signer@7.1.0

Patch Changes

  • Updated dependencies [327760c]:
    • @solana/transaction-messages@7.1.0
    • @solana/addresses@7.1.0
    • @solana/codecs-core@7.1.0
    • @solana/keys@7.1.0
    • @solana/signers@7.1.0
    • @solana/transactions@7.1.0
    • @solana/promises@7.1.0

@solana/fast-stable-stringify@7.1.0

@solana/functional@7.1.0

@solana/nominal-types@7.1.0

@solana/promises@7.1.0

@solana/rpc-parsed-types@7.1.0

@solana/webcrypto-ed25519-polyfill@7.1.0

@github-actions github-actions Bot added the stale label Jul 30, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 146e445 to 1cfe38d Compare July 30, 2026 20:38
@github-actions github-actions Bot removed the stale label Jul 31, 2026
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 1cfe38d to ed8985f Compare August 13, 2026 18:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants