Skip to content

chore(deps): bump the npm-non-major group across 1 directory with 24 updates#56

Merged
dev-jodee merged 2 commits into
mainfrom
dependabot/npm_and_yarn/npm-non-major-a66bf5070d
May 18, 2026
Merged

chore(deps): bump the npm-non-major group across 1 directory with 24 updates#56
dev-jodee merged 2 commits into
mainfrom
dependabot/npm_and_yarn/npm-non-major-a66bf5070d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Bumps the npm-non-major group with 24 updates in the / directory:

Package From To
@codama/nodes-from-anchor 1.3.8 1.4.1
@jest/globals 30.2.0 30.4.1
@solana-program/system 0.11.0 0.12.0
@solana-program/token 0.10.0 0.13.0
@solana/kit 6.0.1 6.9.0
codama 1.5.0 1.6.0
eslint-plugin-jest 29.12.1 29.15.2
eslint-plugin-react-hooks 7.0.1 7.1.1
jest 30.2.0 30.4.2
prettier 3.7.4 3.8.3
ts-jest 29.4.6 29.4.9
tsx 4.21.0 4.21.1
typescript-eslint 8.54.0 8.59.3
@base-ui/react 1.3.0 1.4.1
@solana/design-system 1.0.0 1.0.1
@solana/wallet-adapter-wallets 0.19.37 0.19.38
motion 12.36.0 12.38.0
react 19.2.4 19.2.6
react-dom 19.2.4 19.2.6
@playwright/test 1.58.2 1.59.1
@tailwindcss/postcss 4.2.1 4.3.0
tailwindcss 4.2.1 4.3.0
@solana-program/compute-budget 0.13.0 0.15.0
@solana/kit-plugins 0.3.0 0.11.1

Updates @codama/nodes-from-anchor from 1.3.8 to 1.4.1

Release notes

Sourced from @​codama/nodes-from-anchor's releases.

@​codama/nodes-from-anchor@​1.4.1

Patch Changes

@​codama/nodes-from-anchor@​1.4.0

Minor Changes

  • #984 a644f59 Thanks @​amilz! - Auto-extract inline PDAs from v01 Anchor instruction accounts into program-level PdaNodes
Commits

Updates @jest/globals from 30.2.0 to 30.4.1

Release notes

Sourced from @​jest/globals's releases.

v30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

Full Changelog: jestjs/jest@v30.4.0...v30.4.1

v30.4.0

Big release! 😀

Main feature is a rewrite of our custom runtime in preparation for stabilisation of native support of ESM. As part of that work require(esm) module is now supported on Node 24.9+ (still requires --experimental-vm-modules like before).

In addition we now support fake timers for the recently released Temporal API in Node v26.

React 19 is also supported properly in pretty-format, meaning snapshots of React components now work like they should.

Due to all the changes, there might be regressions that snuck in. Please report them!

Full list of changes below

Features

  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#16062)
  • [jest-util] Add isError helper (#16076)
  • [pretty-format] Support React 19 (#16123)

Fixes

  • [expect-utils] Fix toStrictEqual failing on structuredClone results due to cross-realm constructor mismatch (#15959)
  • [@jest/expect-utils] Prevent toMatchObject/subset matching from throwing when encountering exotic iterables (#15952)
  • [fake-timers] Convert Date to milliseconds before passing to @sinonjs/fake-timers (#16029)
  • [jest] Export GlobalConfig and ProjectConfig TypeScript types (#16132)

... (truncated)

Changelog

Sourced from @​jest/globals's changelog.

30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

30.4.0

Features

  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#16062)
  • [jest-util] Add isError helper (#16076)
  • [pretty-format] Support React 19 (#16123)

Fixes

  • [expect-utils] Fix toStrictEqual failing on structuredClone results due to cross-realm constructor mismatch (#15959)
  • [@jest/expect-utils] Prevent toMatchObject/subset matching from throwing when encountering exotic iterables (#15952)
  • [fake-timers] Convert Date to milliseconds before passing to @sinonjs/fake-timers (#16029)
  • [jest] Export GlobalConfig and ProjectConfig TypeScript types (#16132)
  • [jest-circus] Prevent crash when asyncError is undefined for non-Error throws (#16003)
  • [jest-circus, jest-jasmine2] Include Error.cause in JSON failureMessages output (#15967)
  • [jest-config] Fix preset path resolution on Windows when the preset uses subpath exports (#15961)
  • [jest-config] Allow collectCoverage and coverageProvider in project config without a validation warning (#16132)
  • [jest-config] Project config validator now emits "is not supported in an individual project configuration" instead of "probably a typing mistake" for known global-only options (#16132)
  • [jest-environment-node] Fix --localstorage-file warning on Node 25+ (#16086)
  • [jest-reporters] Apply global coverage threshold to unmatched pattern files in addition to glob/path thresholds (#16137)
  • [jest-reporters, jest-runner, jest-runtime, jest-transform] Fix coverage report not showing correct code coverage when using projects config option (#16140)
  • [jest-runtime] Resolve expect and @jest/expect from the internal module registry so test-file imports share the same JestAssertionError as the global expect (#16130)
  • [jest-runtime] Improve CJS-from-ESM interop: __esModule/Babel default unwrap, broader named-export coverage, and shared CJS singleton across importers (#16050)
  • [jest-runtime] Load .js files with ESM syntax but no "type":"module" marker as native ESM (#16050)
  • [jest-runtime] Extend the .js-with-ESM-syntax fallback to require() on Node v24.9+ - falls back to require(esm) when the CJS parser rejects ESM syntax (#16078)
  • [jest-runtime] Fix deadlocks and double-evaluation in concurrent ESM and wasm imports (#16050)

... (truncated)

Commits

Updates @solana-program/system from 0.11.0 to 0.12.0

Commits

Updates @solana-program/token from 0.10.0 to 0.13.0

Release notes

Sourced from @​solana-program/token's releases.

js@v0.13.0

What's new

js@v0.12.0

What's new

js@v0.11.0

No release notes provided.

Commits
  • a17df15 Publish js@v0.13.0
  • 5615307 Add batch instruction helpers to JS client (#147)
  • 1eb2762 pinocchio/program: Add program IDL (#145)
  • 876ef4d pinocchio/interface: Improve docs for WithdrawExcessLamports (#146)
  • 109c4c9 interface: Fix thaw instruction docs (#144)
  • ac14e9f pinocchio/interface: Add sealed trait to Transmute (#143)
  • f4ecc98 Bump mollusk to get newer rustls-webpki (#142)
  • dae0830 js: Add tests for BurnChecked instruction (#119)
  • be42014 fix: include source files in published package for IDE navigation (#141)
  • a94dd19 p-token: Bump pinocchio version (#140)
  • Additional commits viewable in compare view

Updates @solana/kit from 6.0.1 to 6.9.0

Release notes

Sourced from @​solana/kit's releases.

v6.9.0

@​solana/kit

v6.9.0 (2026-05-06)

Minor Changes

  • [@solana/accounts, @solana/addresses, @solana/assertions, @solana/codecs, @solana/codecs-core, @solana/codecs-data-structures, @solana/codecs-numbers, @solana/codecs-strings, @solana/compat, @solana/errors, @solana/fast-stable-stringify, @solana/fixed-points, @solana/functional, @solana/instruction-plans, @solana/instructions, @solana/keys, @solana/kit, @solana/nominal-types, @solana/offchain-messages, @solana/options, @solana/plugin-core, @solana/plugin-interfaces, @solana/program-client-core, @solana/programs, @solana/promises, @solana/rpc, @solana/rpc-api, @solana/rpc-graphql, @solana/rpc-parsed-types, @solana/rpc-spec, @solana/rpc-spec-types, @solana/rpc-subscriptions, @solana/rpc-subscriptions-api, @solana/rpc-subscriptions-channel-websocket, @solana/rpc-subscriptions-spec, @solana/rpc-transformers, @solana/rpc-transport-http, @solana/rpc-types, @solana/signers, @solana/subscribable, @solana/sysvars, @solana/transaction-confirmation, @solana/transaction-messages, @solana/transactions, @solana/wallet-account-signer, @solana/webcrypto-ed25519-polyfill] #1562 096c48e Thanks @​lorisleiva! - Bump the TypeScript peer dependency floor from >=5.0.0 to >=5.4.0.

  • [@solana/codecs, @solana/fixed-points, @solana/kit] #1570 c5e0e14 Thanks @​lorisleiva! - Add a new @solana/fixed-points package providing precise fixed-point number types for Solana, both decimal (power-of-10 scale) and binary (power-of-2 scale), in signed and unsigned flavors with arbitrary bit widths. The package includes factories, guards, arithmetic, comparisons, signedness conversions, rescaling, string/number formatting, and byte-level codecs. Also re-exported from @solana/codecs and @solana/kit.

  • [@solana/errors] #1542 92126f4 Thanks @​mcintyre94! - Add SOLANA_ERROR__WALLET__NO_SIGNER_CONNECTED and SOLANA_ERROR__WALLET__SIGNER_NOT_AVAILABLE error codes for wallet-signer availability checks.

  • [@solana/errors] #1559 a5ef97b Thanks @​lorisleiva! - Add 13 new error codes in the [8090000, 8090999] range for the upcoming @solana/fixed-points package: INVALID_TOTAL_BITS, INVALID_FRACTIONAL_BITS, INVALID_DECIMALS, FRACTIONAL_BITS_EXCEED_TOTAL_BITS, VALUE_OUT_OF_RANGE, INVALID_STRING, INVALID_ZERO_DENOMINATOR_RATIO, ARITHMETIC_OVERFLOW, SHAPE_MISMATCH, DIVISION_BY_ZERO, STRICT_MODE_PRECISION_LOSS, MALFORMED_RAW_VALUE, and TOTAL_BITS_NOT_BYTE_ALIGNED.

  • [@solana/errors, @solana/kit, @solana/rpc-api, @solana/rpc-parsed-types] #1544 e82e03e Thanks @​mcintyre94! - Update RPC types for Agave v3.x validator compatibility.

    @solana/rpc-parsed-types: JsonParsedVoteAccount now includes blockRevenueCollector, blockRevenueCommissionBps, blsPubkeyCompressed, inflationRewardsCollector, inflationRewardsCommissionBps, pendingDelegatorRewards, and a latency field on each vote entry.

    @solana/rpc-api: SimulateTransactionApiResponseBase now includes fee, loadedAddresses, preBalances, postBalances, preTokenBalances, and postTokenBalances.

    @solana/errors: RpcSimulateTransactionResult updated with the same new fields.

    Note on replacementBlockhash: Agave v3.x validators now always return replacementBlockhash in simulateTransaction responses (as null when replaceRecentBlockhash is not set). Kit's types still model this field as conditionally present based on config. A future breaking change will move it to the base response type as TransactionBlockhashLifetime | null to match v3.x behavior. Consumers using v3.x validators may see this field at runtime even when Kit's types don't surface it.

    Note on Agave v3.x validator behavior: Validators running Agave v3.x no longer return a dedicated TRANSACTION_SIGNATURE_VERIFICATION_FAILURE RPC error for invalid signatures in simulateTransaction or sendTransaction. Instead, simulateTransaction returns a result with err: "SignatureFailure", and sendTransaction returns a preflight failure with the signature error as the cause. This is a validator-level change and does not affect Kit's API surface.

  • [@solana/kit, @solana/plugin-interfaces] #1551 d24f908 Thanks @​mcintyre94! - Add ClientWithSubscribeToPayer and ClientWithSubscribeToIdentity interfaces. These are a framework-agnostic convention for plugins that mutate client.payer / client.identity reactively — they install a sibling subscribeToPayer / subscribeToIdentity function so consumers can observe changes without naming the specific plugin that provides them.

  • [@solana/kit, @solana/rpc-types] #1578 0e8fd3f Thanks @​lorisleiva! - Add Sol, sol(), solToLamports, and lamportsToSol helpers for converting between SOL amounts expressed as @solana/fixed-points values and Lamports branded bigints. Also add getSolEncoder, getSolDecoder, and getSolCodec for serializing SOL amounts to bytes (the encoder accepts both Sol and Lamports inputs; the decoder always returns Sol). Finally, update getLamportsEncoder/getDefaultLamportsEncoder and their codec counterparts to also accept Sol as input.

  • [@solana/promises] #1549 8d73de5 Thanks @​mcintyre94! - Added isAbortError(err) — returns true if err is an Error whose name is 'AbortError'. Use it to distinguish abort rejections from other failures without having to instanceof-check every platform-specific error class.

Patch Changes

  • [@solana/plugin-core] #1569 b1ae82b Thanks @​lorisleiva! - Fix extendClient so that a later plugin can override a key previously set by an earlier plugin. Previously, chaining two plugins that set the same key threw TypeError: Cannot redefine property because the frozen client's non-configurable property descriptors were copied verbatim onto the intermediate object.

  • [@solana/wallet-account-signer] #1548 f9bf4ef Thanks @​mcintyre94! - Widen the chain parameter on createSignerFromWalletAccount, createTransactionSignerFromWalletAccount, and createTransactionSendingSignerFromWalletAccount from SolanaChain to SolanaChain | (IdentifierString & {}). The known Solana chain identifiers continue to autocomplete, but any Wallet Standard ${namespace}:${reference} value is now also accepted, matching the underlying solana:signTransaction and solana:signAndSendTransaction feature inputs.

v6.8.0

@​solana/kit

v6.8.0 (2026-04-10)

Minor Changes

  • [@solana/errors, @solana/keys, @solana/signers] #1534 43bc570 Thanks @​lorisleiva! - Add grindKeyPair, grindKeyPairs, grindKeyPairSigner, and grindKeyPairSigners for mining vanity key pairs whose base58-encoded public key matches a RegExp or a custom predicate. Supports amount for mining multiple key pairs, extractable for forwarding to the underlying generateKeyPair call, concurrency (defaulting to 32) for batched parallel key generation, and abortSignal for cancellation. Regex matchers are statically checked for base58-alphabet violations at runtime (after stripping escapes, character classes, quantifiers, and groups) to catch common typos like /^sol0/.

  • [@solana/errors] #1526 ffb7665 Thanks @​mcintyre94! - Add SOLANA_ERROR__WALLET__NOT_CONNECTED error code for when a wallet operation is attempted without a connected wallet.

... (truncated)

Commits

Updates codama from 1.5.0 to 1.6.0

Release notes

Sourced from codama's releases.

codama@1.6.0

Patch Changes

codama@1.5.1

Patch Changes

  • Updated dependencies [af76a71]:
    • @​codama/cli@​1.5.0
    • @​codama/errors@​1.5.1
    • @​codama/nodes@​1.5.1
    • @​codama/validators@​1.5.1
    • @​codama/visitors@​1.5.1
Commits

Updates eslint-plugin-jest from 29.12.1 to 29.15.2

Release notes

Sourced from eslint-plugin-jest's releases.

v29.15.2

29.15.2 (2026-04-09)

Bug Fixes

  • valid-mock-module-path: don't report virtual mocks (#1946) (a1916d1)

v29.15.1

29.15.1 (2026-03-24)

Bug Fixes

v29.15.0

29.15.0 (2026-02-15)

Features

  • no-conditional-in-test: only report optional chaining when allowOptionalChaining is false (#1934) (3f5751e)

v29.14.0

29.14.0 (2026-02-12)

Features

  • no-conditional-in-test: ban optional chaining (#1933) (6406493)

v29.13.0

29.13.0 (2026-02-08)

Features

v29.12.2

29.12.2 (2026-02-03)

Bug Fixes

  • add optional peer dependency on TypeScript (#1926) (82e3b04)
Changelog

Sourced from eslint-plugin-jest's changelog.

29.15.2 (2026-04-09)

Bug Fixes

  • valid-mock-module-path: don't report virtual mocks (#1946) (a1916d1)

29.15.1 (2026-03-24)

Bug Fixes

29.15.0 (2026-02-15)

Features

  • no-conditional-in-test: only report optional chaining when allowOptionalChaining is false (#1934) (3f5751e)

29.14.0 (2026-02-12)

Features

  • no-conditional-in-test: ban optional chaining (#1933) (6406493)

29.13.0 (2026-02-08)

Features

29.12.2 (2026-02-03)

Bug Fixes

  • add optional peer dependency on TypeScript (#1926) (82e3b04)
Commits
  • f14a941 chore(release): 29.15.2 [skip ci]
  • a1916d1 fix(valid-mock-module-path): don't report virtual mocks (#1946)
  • 4a52787 chore(deps): lock file maintenance (#1958)
  • 285c6f6 ci: don't run smoketest on tannerlinsley/react-table (#1959)
  • 1da0928 chore(deps): lock file maintenance (#1956)
  • 8532d0e docs(valid-expect): use valid alert syntax (#1954)
  • 03405ae chore(deps): update dependency @​schemastore/package to v1 (#1942)
  • de0e154 chore(deps): update codecov/codecov-action action to v6 (#1952)
  • d50f50c chore: add node v25 to CI (#1950)
  • d5192df chore(release): 29.15.1 [skip ci]
  • Additional commits viewable in compare view

Updates eslint-plugin-react-hooks from 7.0.1 to 7.1.1

Release notes

Sourced from eslint-plugin-react-hooks's releases.

eslint-plugin-react-hooks@7.1.1 (April 17, 2026)

Note: 7.1.0 accidentally removed the component-hook-factories rule, causing errors for users who referenced it in their ESLint config. This is now fixed.

  • Add deprecated no-op component-hook-factories rule for backwards compatibility. (@​mofeiZ in #36307)

eslint-plugin-react-hooks@7.1.0 (April 16, 2026)

This release adds ESLint v10 support, improves performance by skipping compilation for non-React files, and includes compiler lint improvements including better set-state-in-effect detection, improved ref validation, and more helpful error reporting.

Changelog

Sourced from eslint-plugin-react-hooks's changelog.

7.1.1

Note: 7.1.0 accidentally removed the component-hook-factories rule, causing errors for users who referenced it in their ESLint config. This is now fixed.

  • Add deprecated no-op component-hook-factories rule for backwards compatibility. (@​mofeiZ in #36307)

7.1.0

This release adds ESLint v10 support, improves performance by skipping compilation for non-React files, and includes compiler lint improvements including better set-state-in-effect detection, improved ref validation, and more helpful error reporting.

Commits

Updates jest from 30.2.0 to 30.4.2

Release notes

Sourced from jest's releases.

v30.4.2

Fixes

  • [jest-runtime] Fix named imports from CJS modules whose module.exports is a function with own-property exports (#16150)

Full Changelog: jestjs/jest@v30.4.1...v30.4.2

v30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

Full Changelog: jestjs/jest@v30.4.0...v30.4.1

v30.4.0

Big release!...

Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 18, 2026
@dependabot dependabot Bot requested a review from dev-jodee as a code owner May 18, 2026 17:42
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 18, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the npm-non-major group with 24 updates chore(deps): bump the npm-non-major group across 1 directory with 24 updates May 18, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-non-major-a66bf5070d branch 2 times, most recently from 6ac9b13 to 782a3ce Compare May 18, 2026 18:46
dev-jodee added a commit that referenced this pull request May 18, 2026
…r group)

Replaces dependabot PRs:
- #45 cargo-non-major group (borsh, solana-security-txt, solana-pubkey,
  solana-address, solana-account-info, solana-program-error,
  solana-system-interface)
- #49 litesvm 0.9.0 -> 0.11.0
- #53 codama 0.7.4 -> 0.9.2 (IDL regen adds "events": [])

Also bumps spl-token-2022 10.0.0 -> 11.0.0 to match updated
solana-nullable types pulled by transitive solana-* deps.

Pinocchio bumps (#46, #50, #52, #54, #55) and solana-account 4.0
(#48) excluded: pinocchio 0.10 -> 0.11 needs AccountView API
migration across program/* and tests, solana-account 4.0 conflicts
with solana-client 3.x (only available at 4.0.0-rc).

codama renderer JS/Rust majors (#60, #61) and npm-non-major (#56)
excluded: require kit-plugin client migration + codegen script
updates beyond a dep bump.
dev-jodee added a commit that referenced this pull request May 18, 2026
…r group)

Replaces dependabot PRs:
- #45 cargo-non-major group (borsh, solana-security-txt, solana-pubkey,
  solana-address, solana-account-info, solana-program-error,
  solana-system-interface)
- #49 litesvm 0.9.0 -> 0.11.0
- #53 codama 0.7.4 -> 0.9.2 (IDL regen adds "events": [])

Also bumps spl-token-2022 10.0.0 -> 11.0.0 to match updated
solana-nullable types pulled by transitive solana-* deps.

Pinocchio bumps (#46, #50, #52, #54, #55) and solana-account 4.0
(#48) excluded: pinocchio 0.10 -> 0.11 needs AccountView API
migration across program/* and tests, solana-account 4.0 conflicts
with solana-client 3.x (only available at 4.0.0-rc).

codama renderer JS/Rust majors (#60, #61) and npm-non-major (#56)
excluded: require kit-plugin client migration + codegen script
updates beyond a dep bump.
dev-jodee added a commit that referenced this pull request May 18, 2026
…r group) (#62)

Replaces dependabot PRs:
- #45 cargo-non-major group (borsh, solana-security-txt, solana-pubkey,
  solana-address, solana-account-info, solana-program-error,
  solana-system-interface)
- #49 litesvm 0.9.0 -> 0.11.0
- #53 codama 0.7.4 -> 0.9.2 (IDL regen adds "events": [])

Also bumps spl-token-2022 10.0.0 -> 11.0.0 to match updated
solana-nullable types pulled by transitive solana-* deps.

Pinocchio bumps (#46, #50, #52, #54, #55) and solana-account 4.0
(#48) excluded: pinocchio 0.10 -> 0.11 needs AccountView API
migration across program/* and tests, solana-account 4.0 conflicts
with solana-client 3.x (only available at 4.0.0-rc).

codama renderer JS/Rust majors (#60, #61) and npm-non-major (#56)
excluded: require kit-plugin client migration + codegen script
updates beyond a dep bump.

Co-authored-by: Jo D <dev-jodee@users.noreply.github.com>
@dev-jodee dev-jodee force-pushed the dependabot/npm_and_yarn/npm-non-major-a66bf5070d branch from 88d0053 to 6d4194b Compare May 18, 2026 19:49
dependabot Bot and others added 2 commits May 18, 2026 15:58
…updates

Bumps the npm-non-major group with 24 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@codama/nodes-from-anchor](https://github.com/codama-idl/codama) | `1.3.8` | `1.4.1` |
| [@jest/globals](https://github.com/jestjs/jest/tree/HEAD/packages/jest-globals) | `30.2.0` | `30.4.1` |
| [@solana-program/system](https://github.com/solana-program/system) | `0.11.0` | `0.12.0` |
| [@solana-program/token](https://github.com/solana-program/token) | `0.10.0` | `0.13.0` |
| [@solana/kit](https://github.com/anza-xyz/kit) | `6.0.1` | `6.9.0` |
| [codama](https://github.com/codama-idl/codama) | `1.5.0` | `1.6.0` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `29.12.1` | `29.15.2` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `7.0.1` | `7.1.1` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.2.0` | `30.4.2` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.3` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.6` | `29.4.9` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.21.1` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.54.0` | `8.59.3` |
| [@base-ui/react](https://github.com/mui/base-ui/tree/HEAD/packages/react) | `1.3.0` | `1.4.1` |
| [@solana/design-system](https://github.com/solana-foundation/design-system/tree/HEAD/packages/design-system) | `1.0.0` | `1.0.1` |
| [@solana/wallet-adapter-wallets](https://github.com/anza-xyz/wallet-adapter) | `0.19.37` | `0.19.38` |
| [motion](https://github.com/motiondivision/motion) | `12.36.0` | `12.38.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.6` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.6` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.1` | `4.3.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.1` | `4.3.0` |
| [@solana-program/compute-budget](https://github.com/solana-program/compute-budget) | `0.13.0` | `0.15.0` |
| [@solana/kit-plugins](https://github.com/anza-xyz/kit-plugins) | `0.3.0` | `0.11.1` |

Updates `@codama/nodes-from-anchor` from 1.3.8 to 1.4.1
- [Release notes](https://github.com/codama-idl/codama/releases)
- [Commits](https://github.com/codama-idl/codama/compare/@codama/nodes-from-anchor@1.3.8...@codama/nodes-from-anchor@1.4.1)

Updates `@jest/globals` from 30.2.0 to 30.4.1
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.4.1/packages/jest-globals)

Updates `@solana-program/system` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/solana-program/system/releases)
- [Commits](https://github.com/solana-program/system/compare/js@v0.11.0...js@v0.12.0)

Updates `@solana-program/token` from 0.10.0 to 0.13.0
- [Release notes](https://github.com/solana-program/token/releases)
- [Commits](https://github.com/solana-program/token/compare/js@v0.10.0...js@v0.13.0)

Updates `@solana/kit` from 6.0.1 to 6.9.0
- [Release notes](https://github.com/anza-xyz/kit/releases)
- [Commits](anza-xyz/kit@v6.0.1...v6.9.0)

Updates `codama` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/codama-idl/codama/releases)
- [Commits](https://github.com/codama-idl/codama/compare/codama@1.5.0...codama@1.6.0)

Updates `eslint-plugin-jest` from 29.12.1 to 29.15.2
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v29.12.1...v29.15.2)

Updates `eslint-plugin-react-hooks` from 7.0.1 to 7.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/eslint-plugin-react-hooks@7.1.1/packages/eslint-plugin-react-hooks)

Updates `jest` from 30.2.0 to 30.4.2
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.4.2/packages/jest)

Updates `prettier` from 3.7.4 to 3.8.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.7.4...3.8.3)

Updates `ts-jest` from 29.4.6 to 29.4.9
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.6...v29.4.9)

Updates `tsx` from 4.21.0 to 4.21.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.21.0...v4.21.1)

Updates `typescript-eslint` from 8.54.0 to 8.59.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.3/packages/typescript-eslint)

Updates `@base-ui/react` from 1.3.0 to 1.4.1
- [Release notes](https://github.com/mui/base-ui/releases)
- [Changelog](https://github.com/mui/base-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/base-ui/commits/v1.4.1/packages/react)

Updates `@solana/design-system` from 1.0.0 to 1.0.1
- [Changelog](https://github.com/solana-foundation/design-system/blob/main/packages/design-system/CHANGELOG.md)
- [Commits](https://github.com/solana-foundation/design-system/commits/HEAD/packages/design-system)

Updates `@solana/wallet-adapter-wallets` from 0.19.37 to 0.19.38
- [Release notes](https://github.com/anza-xyz/wallet-adapter/releases)
- [Commits](https://github.com/anza-xyz/wallet-adapter/compare/@solana/wallet-adapter-wallets@0.19.37...@solana/wallet-adapter-wallets@0.19.38)

Updates `motion` from 12.36.0 to 12.38.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.36.0...v12.38.0)

Updates `react` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react-dom)

Updates `@playwright/test` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `@tailwindcss/postcss` from 4.2.1 to 4.3.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-postcss)

Updates `tailwindcss` from 4.2.1 to 4.3.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss)

Updates `@solana-program/compute-budget` from 0.13.0 to 0.15.0
- [Release notes](https://github.com/solana-program/compute-budget/releases)
- [Commits](https://github.com/solana-program/compute-budget/compare/js@v0.13.0...js@v0.15.0)

Updates `@solana/kit-plugins` from 0.3.0 to 0.11.1
- [Commits](https://github.com/anza-xyz/kit-plugins/compare/@solana/kit-plugins@0.3.0...@solana/kit-plugins@0.11.1)

---
updated-dependencies:
- dependency-name: "@base-ui/react"
  dependency-version: 1.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@codama/nodes-from-anchor"
  dependency-version: 1.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@jest/globals"
  dependency-version: 30.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@solana-program/compute-budget"
  dependency-version: 0.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@solana-program/system"
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@solana-program/token"
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@solana/design-system"
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@solana/kit"
  dependency-version: 6.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@solana/kit-plugins"
  dependency-version: 0.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@solana/wallet-adapter-wallets"
  dependency-version: 0.19.38
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: codama
  dependency-version: 1.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: eslint-plugin-jest
  dependency-version: 29.15.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: jest
  dependency-version: 30.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: tailwindcss
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: ts-jest
  dependency-version: 29.4.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: tsx
  dependency-version: 4.21.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: typescript-eslint
  dependency-version: 8.59.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dev-jodee dev-jodee force-pushed the dependabot/npm_and_yarn/npm-non-major-a66bf5070d branch from 6d4194b to dfb01d2 Compare May 18, 2026 19:58
@dev-jodee dev-jodee merged commit befc780 into main May 18, 2026
6 checks passed
@dev-jodee dev-jodee deleted the dependabot/npm_and_yarn/npm-non-major-a66bf5070d branch May 18, 2026 20:06
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