Skip to content

chore(deps): bump the client-parity-minor-patch group across 1 directory with 3 updates - #940

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b
Open

chore(deps): bump the client-parity-minor-patch group across 1 directory with 3 updates#940
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 24, 2026

Copy link
Copy Markdown
Contributor

Bumps the client-parity-minor-patch group with 3 updates in the /tests/client_parity_tests directory: @farcaster/core, jest and ts-jest.

Updates @farcaster/core from 0.18.10 to 0.19.0

Release notes

Sourced from @​farcaster/core's releases.

@​farcaster/core@​0.19.0

Minor Changes

  • ef52a8ef: Add LIVE_AT user data protobuf support and core validation helpers.

@​farcaster/core@​0.18.11

Patch Changes

  • af9bda87: feat: pull in snapchain V16 protos (signers and scopes / gasless signers)

    Regenerates protobuf bindings against snapchain e8e89a3, the client surface for engine version V16 (LATEST_PROTOCOL_VERSION 10 → 11; ProtocolFeature::GaslessSigners gate). V16 activates testnet 2026-04-28 20:00 UTC and mainnet 2026-05-07 17:00 UTC.

    • MESSAGE_TYPE_KEY_ADD (16) and MESSAGE_TYPE_KEY_REMOVE (17) on MessageType, plus KeyAddBody / KeyRemoveBody and corresponding KeyAddData / KeyAddMessage / KeyRemoveData / KeyRemoveMessage type narrowings and isKeyAdd* / isKeyRemove* typeguards in core.
    • Backfills the previously-missing isLendStorageData / isLendStorageMessage typeguards.
    • New unified signer surface in RPC: GetSigner and GetSignersByFid return both on-chain and off-chain (gasless) keys via SignerResponse and SignersByFidResponse. The pre-existing GetOnChainSigner and GetOnChainSignersByFid are now marked deprecated; existing callers are unaffected. The Signer proto message is re-exported from core as SignerInfo to disambiguate from the existing cryptographic Signer interface.
    • GetSignersByFid accepts a SignersByFidRequest so callers can request current per-FID nonce counters (current_user_nonce, requester_fid_nonces).
    • BlocksRequest.shard_id is removed (server already ignored it; field number 1 is reserved on the wire).

    Adds LendStorage*, KeyAdd*, and KeyRemove* factories plus runtime tests for the new typeguards.

Changelog

Sourced from @​farcaster/core's changelog.

0.19.0

Minor Changes

  • ef52a8ef: Add LIVE_AT user data protobuf support and core validation helpers.

0.18.11

Patch Changes

  • af9bda87: feat: pull in snapchain V16 protos (signers and scopes / gasless signers)

    Regenerates protobuf bindings against snapchain e8e89a3, the client surface for engine version V16 (LATEST_PROTOCOL_VERSION 10 → 11; ProtocolFeature::GaslessSigners gate). V16 activates testnet 2026-04-28 20:00 UTC and mainnet 2026-05-07 17:00 UTC.

    • MESSAGE_TYPE_KEY_ADD (16) and MESSAGE_TYPE_KEY_REMOVE (17) on MessageType, plus KeyAddBody / KeyRemoveBody and corresponding KeyAddData / KeyAddMessage / KeyRemoveData / KeyRemoveMessage type narrowings and isKeyAdd* / isKeyRemove* typeguards in core.
    • Backfills the previously-missing isLendStorageData / isLendStorageMessage typeguards.
    • New unified signer surface in RPC: GetSigner and GetSignersByFid return both on-chain and off-chain (gasless) keys via SignerResponse and SignersByFidResponse. The pre-existing GetOnChainSigner and GetOnChainSignersByFid are now marked deprecated; existing callers are unaffected. The Signer proto message is re-exported from core as SignerInfo to disambiguate from the existing cryptographic Signer interface.
    • GetSignersByFid accepts a SignersByFidRequest so callers can request current per-FID nonce counters (current_user_nonce, requester_fid_nonces).
    • BlocksRequest.shard_id is removed (server already ignored it; field number 1 is reserved on the wire).

    Adds LendStorage*, KeyAdd*, and KeyRemove* factories plus runtime tests for the new typeguards.

Commits

Updates jest from 30.3.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! 😀

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)

... (truncated)

Changelog

Sourced from jest's changelog.

30.4.2

Fixes

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

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)

... (truncated)

Commits

Updates ts-jest from 29.4.9 to 29.4.12

Release notes

Sourced from ts-jest's releases.

v29.4.12

Please refer to CHANGELOG.md for details.

v29.4.11

Please refer to CHANGELOG.md for details.

v29.4.10

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.12 (2026-07-22)

Features

  • compiler: support TypeScript 7 projects through compatibility aliases (#5386)

29.4.11 (2026-05-21)

Bug Fixes

  • preserve Bundler on the CJS path under TypeScript >= 6 (3941818), closes #4198

29.4.10 (2026-05-18)

Bug Fixes

  • pass resolutionMode to ts.resolveModuleName for hybrid module support (b557a85)
  • rebuild Program when consecutive compiles need different module kinds (a82a2b3), closes #4774
  • respect tsconfig moduleResolution instead of forcing Node10 (1bffffc)
  • transformer: transpile mjs files from node_modules for CJS mode (96d025d)
  • transformer: use a consistent comparator in hoist-jest sortStatements (8a8fd2f)
Commits
  • 3f05625 chore(release): 29.4.12
  • df28b27 docs: clarify TypeScript version prerequisites
  • c8a614a docs: mention TypeScript 7 setup in README
  • 06c79d4 fix: address TypeScript 7 review feedback
  • f107460 docs: explain TypeScript 7 compatibility setup
  • 3388227 test(e2e): add TypeScript compatibility matrix
  • 891dc73 fix(compiler): support TypeScript 7 compatibility aliases
  • eb135eb build(deps-dev): bump shell-quote from 1.8.4 to 1.10.0 in /examples
  • d5d80a3 ci: pin google osv scan action at v2.3.5
  • 6bf293f build(deps): bump shell-quote from 1.8.4 to 1.10.0 in /website
  • Additional commits viewable in compare view


Note

Low Risk
Dependency-only changes in an isolated test package; no production code or auth paths modified. Risk is limited to CI/client-parity test behavior after the bumps.

Overview
Updates client parity test dependencies only (tests/client_parity_tests/package.json and lockfile)—no application or test source edits.

@farcaster/core 0.18.10 → 0.19.0 pulls in LIVE_AT user-data protobuf support and validation helpers, plus the 0.18.11 surface (V16 gasless signers, KeyAdd/KeyRemove, unified signer RPC types). Existing parity tests still use @farcaster/core for message decode/encode and factories; they do not yet exercise those new types.

jest 30.3.0 → 30.4.2 and ts-jest 29.4.9 → 29.4.12 are dev-only test runner upgrades (runtime ESM/CJS fixes, TypeScript 7 compatibility in ts-jest).

Reviewed by Cursor Bugbot for commit f94a6d6. Bugbot is set up for automated code reviews on this repo. Configure here.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 24, 2026
@vercel

vercel Bot commented Jun 24, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
snapchain-docs Ready Ready Preview, Comment Jul 29, 2026 9:15am

Request Review

@github-actions

Copy link
Copy Markdown

Diff Coverage

Diff: origin/main...HEAD, staged and unstaged changes

No lines with coverage information in this diff.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b branch from 399b272 to 55e9736 Compare July 1, 2026 09:21
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b branch from 55e9736 to 5b33fdf Compare July 8, 2026 09:14
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b branch from 5b33fdf to 46fba66 Compare July 15, 2026 09:14
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b branch from 46fba66 to fd143c8 Compare July 22, 2026 09:14
…ory with 3 updates

Bumps the client-parity-minor-patch group with 3 updates in the /tests/client_parity_tests directory: [@farcaster/core](https://github.com/farcasterxyz/hub-monorepo/tree/HEAD/packages/core), [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [ts-jest](https://github.com/kulshekhar/ts-jest).


Updates `@farcaster/core` from 0.18.10 to 0.19.0
- [Release notes](https://github.com/farcasterxyz/hub-monorepo/releases)
- [Changelog](https://github.com/farcasterxyz/hub-monorepo/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/farcasterxyz/hub-monorepo/commits/@farcaster/core@0.19.0/packages/core)

Updates `jest` from 30.3.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 `ts-jest` from 29.4.9 to 29.4.12
- [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.9...v29.4.12)

---
updated-dependencies:
- dependency-name: "@farcaster/core"
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: client-parity-minor-patch
- dependency-name: jest
  dependency-version: 30.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: client-parity-minor-patch
- dependency-name: ts-jest
  dependency-version: 29.4.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: client-parity-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/tests/client_parity_tests/client-parity-minor-patch-5f0476e73b branch from fd143c8 to f94a6d6 Compare July 29, 2026 09:14
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.

0 participants