Skip to content

chore(deps): bump the minor-patch group with 3 updates - #110

Merged
vvillait88 merged 1 commit into
mainfrom
dependabot/bun/minor-patch-bc19b5850c
Sep 14, 2026
Merged

vvillait88 merged 1 commit into
mainfrom
dependabot/bun/minor-patch-bc19b5850c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-patch group with 3 updates: @solana/kit, @types/node and knip.

Updates @solana/kit from 8.2.0 to 8.3.0

Release notes

Sourced from @​solana/kit's releases.

v8.3.0

@​solana/kit

v8.3.0 (2026-09-09)

Minor Changes

  • [@solana/addresses, @solana/transaction-messages] #2025 7a14614 Thanks @​lorisleiva! - Add a new HasAddress type representing any object exposing a Solana address through an address property — e.g. a TransactionSigner, an AccountMeta or a framework's address wrapper class. The fee payer of a transaction message is now typed using HasAddress (a structurally identical change).

  • [@solana/codecs-core] #2030 a5267b3 Thanks @​lorisleiva! - Add tap codec helpers for observing values and bytes without modifying them. The value family (tapEncoder/tapDecoder/tapCodec) observes the input value before encoding and the decoded value after decoding, whilst the bytes family (tapEncoderBytes/tapDecoderBytes/tapCodecBytes) observes the raw bytes after encoding and before decoding. Any tap may throw to abort the operation, making these helpers ideal for adding validation guards to existing codecs without an identity transformEncoder. For example, tapDecoderBytes(getBooleanDecoder(), (bytes, offset) => { if (bytes[offset] > 1) throw new Error('Expected a 0 or a 1 for booleans'); }).

  • [@solana/codecs-data-structures] #2042 cd2776e Thanks @​lorisleiva! - Add a requireSizePrefix option to the array, map and set codecs. By default, decoding an exhausted byte array yields an empty collection so that collections can be appended to existing data layouts; with requireSizePrefix: true, a missing size prefix throws instead.

  • [@solana/codecs-numbers] #2029 3206678 Thanks @​lorisleiva! - Add u256 and i256 number codecs (getU256Codec/getU256Encoder/getU256Decoder and getI256Codec/getI256Encoder/getI256Decoder), extending the number codecs beyond 128-bit integers. Both support little- and big-endian serialization via the endian option and, as with the other large-integer codecs, always decode to a bigint.

  • [@solana/codecs-strings, @solana/errors] #2041 cae725c Thanks @​lorisleiva! - Add fatal, ignoreBOM and removeNullCharacters options to the UTF-8 codec. With fatal, lone surrogates when encoding and malformed byte sequences when decoding throw a SolanaError instead of being replaced with U+FFFD. With ignoreBOM: true, a leading byte order mark is preserved instead of being stripped. With removeNullCharacters: false, null characters are preserved in decoded strings instead of being stripped as padding. On React Native, a leading byte order mark is now stripped by default, consistent with other platforms.

  • [@solana/errors, @solana/program-client-core] #2025 7a14614 Thanks @​lorisleiva! - Widen the accepted inputs of instruction accounts in generated program clients. The new InstructionAccountInput type accepts an Address, any address-bearing object (HasAddress) — including framework wrapper classes — a ProgramDerivedAddress or an AccountNonSignerMeta used to override the role declared by the program's IDL. Similarly, the new InstructionSignerInput type accepts a TransactionSigner or an AccountSignerMeta role override. In addition, ResolvedInstructionAccount now carries an optional isSigner flag describing the IDL's signer requirement: when set to false, TransactionSigner values act as plain address carriers instead of being upgraded to signers, and when set to true, a missing signer throws a helpful error pointing at createNoopSigner. Finally, new ResolvedInstructionAccountMeta and InstructionAccountInputAddress type helpers mirror this runtime logic at the type level so that generated instruction builders can accurately type the account metas they return.

  • [@solana/instructions] #2025 7a14614 Thanks @​lorisleiva! - Add a new AccountNonSignerMeta type representing an AccountMeta whose role is guaranteed not to be a signer role — i.e. ReadonlyAccount | WritableAccount. It is the counterpart of the AccountSignerMeta type from @solana/signers. Additionally, the role member of WritableAccount, ReadonlySignerAccount and WritableSignerAccount is now marked readonly, consistently with ReadonlyAccount and AccountMeta. Note that code mutating the role of these types will now fail to compile — which was already contrary to AccountMeta's contract and would throw at runtime on frozen account metas.

  • [@solana/rpc-api, @solana/rpc-transport-http] #2016 1dd83c6 Thanks @​mcintyre94! - Added support for the getAgGenesisCert RPC method, which returns the Alpenglow genesis certificate from nodes that have one

  • [@solana/signers] #2031 8af3229 Thanks @​lorisleiva! - Add createLazyKeyPairSignerFromBytes, a synchronous counterpart to createKeyPairSignerFromBytes. It derives the signer's address directly from the public key half of the 64-byte secret key and defers the asynchronous CryptoKey import until the first message or transaction is signed (memoising the result). This is useful when a signer must be created in a synchronous context whilst signing can remain asynchronous. Because the key import is deferred, the returned signer implements both MessagePartialSigner and TransactionPartialSigner but does not expose a keyPair property, and the cryptographic validation of the secret key happens on the first signing attempt rather than at creation time. The internal copy of the secret key is zeroed once the import succeeds, and a failed import is not cached so signing can be retried.

Patch Changes

  • [@solana/rpc-transport-http] #2016 1dd83c6 Thanks @​mcintyre94! - Fixed a bug where responses to getTransactionsForAddress requests were parsed without bigint support, risking precision loss on large integer values
Commits
  • 7dfaf88 Version Packages (#2021)
  • 7a14614 Add HasAddress and account meta overrides to program client inputs (#2025)
  • cae725c Add fatal, ignoreBOM and removeNullCharacters options to the UTF-8 codec (#2041)
  • 8af3229 Add createLazyKeyPairSignerFromBytes to @​solana/signers (#2031)
  • a5267b3 Add tap codec helpers for observing values and bytes (#2030)
  • cd2776e Add a requireSizePrefix option to the array, map and set codecs (#2042)
  • 15ef7fd docs: use number predicates in getPatternMatchCodec example (#2032)
  • c5f10fb Bump next from 16.3.1 to 16.3.3 in /docs (#2044)
  • 3206678 Add u256/i256 number codecs and extract shared word-combining helpers (#2029)
  • b7c8aea Bump the undici group with 2 updates (#2043)
  • Additional commits viewable in compare view

Updates @types/node from 26.5.0 to 26.5.1

Commits

Updates knip from 6.35.0 to 6.35.1

Release notes

Sourced from knip's releases.

Release 6.35.1

  • Exit with code 2 when a plugin config file fails to load (#1947) (37b26426694380ef70ee45f63358faf63355a58d) - thanks @​WooWan!
  • Fix sponsorship income calculations (0d9cf344b8cc0104c06d11e2c78f3f01b1df548b)
  • Update sponsors page (2659063d87f558b4fc18369a4b143849eaa7543e)
  • Fix npm alias attribution under Yarn PnP (resolve #2024) (7be11aa4fd50b8a3d6e276f03efb450d6d142c26)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-patch group with 3 updates: [@solana/kit](https://github.com/anza-xyz/kit), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip).


Updates `@solana/kit` from 8.2.0 to 8.3.0
- [Release notes](https://github.com/anza-xyz/kit/releases)
- [Commits](anza-xyz/kit@v8.2.0...v8.3.0)

Updates `@types/node` from 26.5.0 to 26.5.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `knip` from 6.35.0 to 6.35.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.35.1/packages/knip)

---
updated-dependencies:
- dependency-name: "@solana/kit"
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@types/node"
  dependency-version: 26.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: knip
  dependency-version: 6.35.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 14, 2026
@vvillait88
vvillait88 merged commit c203721 into main Sep 14, 2026
3 checks passed
@vvillait88
vvillait88 deleted the dependabot/bun/minor-patch-bc19b5850c branch September 14, 2026 17:00
vvillait88 added a commit that referenced this pull request Sep 14, 2026
## Summary

Dependency sweep for pay, plus the release bump to 0.5.6.

- `@agent-score/sdk` floor `^2.7.10` to `^2.7.11` (published earlier in
this sweep) and `@clack/prompts` 1.8.0 to 1.8.1.
- Coupled-set pins: `mppx` 0.9.2 to 0.9.3 and `viem` 2.56.3 to 2.56.5,
in both the dependency and the single-version `viem` override, matching
node-commerce 2.12.1 (released today). pay constructs only `tempo({
account })` from `mppx/client`; in 0.9.3 the Tempo proof EIP-712 domain
in `dist/tempo/internal/proof.js` is still version `'3'`, and the only
Tempo client file that changed is `Subscription.js`, which pay does not
use. mppx's `viem >=2.54.0` peer is satisfied and the lock holds one
viem copy.
- The osv-scanner binary the Dependency Scan job downloads moves from
v2.5.1 to v2.6.0.
- #110 (merged before this) already took `@solana/kit` 8.3.0 and dev
tooling.

Override drill, each removed alone from a clean install: `esbuild
^0.28.1` is load-bearing (0.27.7 returns), `viem` resolves identically
without it and stays as the coupled set's single-version discipline. The
`incur@0.5.1` patch is still needed (upstream 0.5.1 still routes the MCP
transport through the `importModule` indirection), still applies, and
carries no local paths.

Checked and found current: the exact pins `bun outdated` cannot show
(`@x402/core`/`evm`/`fetch` 2.25.0, `incur` 0.5.1, `@solana/mpp` 0.7.0,
`@solana-program/system` 0.14.1, `@solana-program/token` 0.16.1) and the
remaining caret deps; every Action on its latest release-tag major;
`sigstore/cosign-installer` v4.1.2 is upstream latest; bun 1.4.2;
dependabot config; hook/CI parity.

Not taken: eslint 10 and TypeScript 7 (org-wide holds), lefthook 2.1.14
(inside the 24h release-age soak).

## Type of change

- [ ] Bug fix (no breaking change)
- [ ] New feature (no breaking change)
- [ ] Breaking change (existing callers must update)
- [x] Docs, tests, or internal maintenance only

## Public API

None. No command, flag, or output envelope changed.

## Test plan

Gates, from a clean install: `bun run lint`, `typecheck`, `knip`,
`build`, `test -- --coverage` (57 files, 577 passed, 2 skipped), all
exit 0. `osv-scanner` 2.6.0 over `bun.lock`: 682 packages, no issues.

Compiled binary (the incur serveCli protocol):
`build:binary:darwin-arm64` builds, `--version` reports the injected
`0.5.6`, and an MCP `initialize` plus `tools/list` handshake over stdio
against the binary returns `serverInfo agentscore-pay 0.5.6` and the
discovery tools (`search_tools`, `get_tool_details`, `call_read_tool`,
`call_write_tool`).

Live settles with this branch's build against the fullenrich storefront
(which still runs the previous node-commerce), smoke wallet:

| Rail | Ungated `/company/lookup` | Gated `/person/enrich/work-email`
(KYC) |
|---|---|---|
| Base (x402) | 200, charged $0.02, completed | 200, charged $0.07,
completed |
| Tempo (MPP) | 200, charged $0.02, completed | 200, charged $0.07,
completed |
| Solana (MPP) | 402 `payment_proof_invalid` | not attempted |

Solana is not exercised: the smoke wallet holds 0 USDC on Solana. The
released 0.5.5 returns the identical `payment_proof_invalid` for the
same request, so the failure is the unfunded wallet, not this change. A
Solana settle is still owed once the wallet is funded.

## Checklist

- [x] Tests cover the new behavior, and the suite passes locally
- [x] Lint, format, and type checks pass
- [x] Docs and README examples updated if the public surface changed
- [x] No secrets, credentials, or personal data in the diff or the tests

Worked with Varun. The tag follows the merge; the release also updates
the Homebrew tap, and the fleet's pinned pay version moves in the
hivemind afterwards.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant