Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the all-dependencies group with 11 updates in the / directory:

Package From To
@types/node 24.10.0 24.10.1
lint-staged 16.2.6 16.2.7
vitest 4.0.7 4.0.13
@cosmjs/tendermint-rpc 0.36.0 0.37.0
cosmjs-types 0.10.1 0.11.0
fastify 5.6.1 5.6.2
@stylistic/eslint-plugin 5.5.0 5.6.1
tsdown 0.16.0 0.16.6
typescript-eslint 8.46.3 8.47.0
@cosmjs/encoding 0.36.0 0.37.0
@cosmjs/proto-signing 0.36.0 0.37.0

Updates @types/node from 24.10.0 to 24.10.1

Commits

Updates lint-staged from 16.2.6 to 16.2.7

Release notes

Sourced from lint-staged's releases.

v16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.
Changelog

Sourced from lint-staged's changelog.

16.2.7

Patch Changes

  • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.
Commits
  • 0c1b000 chore(changeset): release
  • 595b202 build(deps): update dependencies
  • ef74c8d fix: do display "failed to spawn" message when task fails normally
  • 5cf2a1e style: do not autofix when running lint-staged
  • ba40012 chore: drop npx from commit-msg hook
  • d67de9a chore: fix pre-push hook usage with changeset
  • 8017d1d build(deps): update dependencies
  • 922d7f4 ci: remove dependabot integration, it's not useful
  • 6aeeef1 docs: add PR template
  • a5728b5 docs: add AGENTS.md
  • Additional commits viewable in compare view

Updates vitest from 4.0.7 to 4.0.13

Release notes

Sourced from vitest's releases.

v4.0.13

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.12

   🐞 Bug Fixes

    View changes on GitHub

v4.0.11

   🚀 Experimental Features

   🏎 Performance

    View changes on GitHub

v4.0.10

   🐞 Bug Fixes

... (truncated)

Commits
  • 73b54ce chore: release v4.0.13
  • b27e002 perf: avoid fetchModule roundtrip if the module is cached (#9075)
  • 6b9a1b5 perf(experimental): if fsCacheModule is enabled, read from the memory when ...
  • 332afa0 fix(types): don't import node.js dependent types in vitest/browser (#9068)
  • 6356b1d fix(types): don't use type from Vite 7.1 (#9071)
  • 5aa84d5 chore: release v4.0.12
  • e944a37 fix: don't import from @opentelemetry/api in public types (#9066)
  • 9a8bc78 fix: inherit fsModuleCachePath by default (#9063)
  • c3befb0 chore: release v4.0.11
  • 1b14737 perf(experimental): add file system cache (#9026)
  • Additional commits viewable in compare view

Updates @cosmjs/tendermint-rpc from 0.36.0 to 0.37.0

Release notes

Sourced from @​cosmjs/tendermint-rpc's releases.

v0.37.0

Highlights in this release

  • Add client for CometBFT 1.x (Comet1Client)
  • Modernize dependencies to reduce bundle size and reliability
  • Set exports field to all packages. This prevents users from importing non-public interfaces and prepares for and ESM world.
  • Deprecate executeKdf from both @​cosmjs/amino and @​cosmjs/proto-signing as wallet encryption will be removed (cosmos/cosmjs#1796).

Changelog: https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md#0370---2025-10-29 All changes: cosmos/cosmjs@v0.36.1...v0.37.0

Changelog

Sourced from @​cosmjs/tendermint-rpc's changelog.

[0.37.0] - 2025-10-29

Added

  • @​cosmjs/tendermint-rpc: Add dedicated Comet1Client for compatibility with CometBFT 1.x RPC. The module comet1 contains all CometBFT 1.x specific types. connectComet now uses this client automatically when connecting to a 1.x RPC backend. Before CosmJS 0.37 the Comet38Client was used for both 0.38 and 1.0 backends. However it turned out that there are breaking API changes between those versions. (#1787)

#1787: cosmos/cosmjs#1787

Changed

  • all: The package.jsons now all use the modern exports field instead of the classic main/types to define the entry points. This ensures only symbols from the top level module can be imported (like import { toBech32 } from "@cosmjs/encoding"). Other import paths like import { toBech32 } from "@cosmjs/encoding/src/bech32" are not allowed anymore. As all public interfaces used to be exported from the top level for a long time, this should not affect most users. However, if you accidentally imported a subpath before you will get an error now. This can typically be resolved like this:

    -import { toBech32 } from "@cosmjs/encoding/src/bech32"
    +import { toBech32 } from "@cosmjs/encoding"

    (#1819)

  • Replace bech32 implementation by @​scure/base. This changes a bunch of error messages but is otherwise not breaking user code. (#1825)

  • Replace bip39 implementation by @​scure/bip39. This changes a bunch of error messages but is otherwise not breaking user code. (#1843)

  • @​cosmjs/tendermint-rpc: connectComet now returns a Comet1Client when a CometBFT 1.x RPC is found. CometClient now includes Comet1Client. (#1827)

  • @​cosmjs/cosmwasm-stargate: use native compression APIs instead of pako for gzip. (#1764)

#1764: cosmos/cosmjs#1764 #1819: cosmos/cosmjs#1819 #1825: cosmos/cosmjs#1825 #1827: cosmos/cosmjs#1827 #1843: cosmos/cosmjs#1843

Deprecated

... (truncated)

Commits

Updates cosmjs-types from 0.10.1 to 0.11.0

Changelog

Sourced from cosmjs-types's changelog.

[0.11.0] - 2025-11-22

  • Migrate from @​cosmology/telescope to @​hyperweb/telescope.

  • Set exports field in package.json. This disallows importing paths with are not explicitly exported. In case you used the import style with file extension, you need to convert to the extension-less style:

    -import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx.js"
    +import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx"
  • The TypeScript build target and lib is now ES2022, analogue to CosmJS 0.35.

  • Upgrade types

    • Cosmos SDK to 0.53.4
    • ibc-go to 0.10.3
    • wasmd 0.61.6
Commits
  • e84d3cc Set version 0.11.0
  • b86e0f3 Merge pull request #113 from dynst/exports-block-js
  • 7ede971 Merge pull request #115 from dynst/node-minimum
  • ca7716d document minimum supported nodejs version
  • 0dd0a7b explicitly forbid .js exports
  • 617cd6a Set version 0.11.0-rc.0
  • 90c3895 Merge pull request #111 from cosmos/update-deps
  • 946e505 Use autoFixUndefinedEnumDefault to fix utf8Validation default
  • b54d8f0 Automatically remove stray semicolons
  • f43e2ea Re-generate
  • Additional commits viewable in compare view

Updates fastify from 5.6.1 to 5.6.2

Release notes

Sourced from fastify's releases.

v5.6.2

What's Changed

New Contributors

... (truncated)

Commits
  • f15d4ea Bumped v5.6.2
  • d338dca fix: consistent error handling for custom validators in async validation cont...
  • e1aee4b fix: parse ipv6 hostname (#6373)
  • b5958b3 chore: Bump borp from 0.20.2 to 0.21.0 (#6379)
  • 3120cde chore: Bump actions/setup-node from 5 to 6 (#6376)
  • dd02e42 fix: handle web stream payload in HEAD route (#6372)
  • 810e3d5 chore: Bump lycheeverse/lychee-action from 2.6.1 to 2.7.0 (#6377)
  • 5ebe327 chore: Bump tsd in the dev-dependencies-typescript group (#6346)
  • 106bb6b chore: Bump pnpm/action-setup from 4.1.0 to 4.2.0 (#6375)
  • 55653d6 chore: Bump pino from 9.14.0 to 10.1.0 in the dependencies-major group (#6378)
  • Additional commits viewable in compare view

Updates @stylistic/eslint-plugin from 5.5.0 to 5.6.1

Release notes

Sourced from @​stylistic/eslint-plugin's releases.

v5.6.1

5.6.1 (2025-11-19)

Bug Fixes

  • computed-property-spacing: guard with node.type instead of computed check (#1054) (c486861)

v5.6.0

5.6.0 (2025-11-18)

Features

  • arrow-spacing: support TSFunctionType and TSConstructorType (#1036) (a5380d2)
  • computed-property-spacing: support TSIndexedAccessType (#1047) (d6e7437)
  • no-whitespace-before-property: support TS nodes (#1046) (684ff76)
  • type-annotation-spacing: deprecate overrides.arrow in favor of arrow-spacing (#1037) (598bbb0)
  • update deps (#1052) (29d09cc)

Bug Fixes

  • type-generic-spacing: ignore spaces after new in TSConstructorType (#1044) (aa0c6ac)

Documentation

  • no-extra-parens: add missing ] in various examples. (#1048) (88248cf)
  • quotes: update deprecated options to latest and add tips (#1026) (dc949f8)

Build Related

  • deps: bump actions/download-artifact from 5 to 6 (#1033) (8845342)
  • deps: bump actions/setup-node from 5 to 6 (#1029) (aa2f991)
  • deps: bump actions/upload-artifact from 4 to 5 (#1034) (657e8ce)

Chores

  • indent: cleanup TestCaseError#nodeType (#1043) (3fcec3e)
  • indent: simplify logic in JSXText (#1027) (d83c5b0)
  • space-infix-ops: simplify logic (#1022) (6d57a7d)
  • type-annotation-spacing: simplify type definitions (#1031) (aa6a0a3)
  • type-annotation-spacing: use unindent for better collapse (#1032) (839502a)
  • type-generic-spacing: remove logic duplicated with comma-spacing (#1024) (361cfc8)
  • upgrade to vitest v4 (#1040) (c9d684b)
Changelog

Sourced from @​stylistic/eslint-plugin's changelog.

5.6.1 (2025-11-19)

Bug Fixes

  • computed-property-spacing: guard with node.type instead of computed check (#1054) (c486861)

5.6.0 (2025-11-18)

Features

  • arrow-spacing: support TSFunctionType and TSConstructorType (#1036) (a5380d2)
  • computed-property-spacing: support TSIndexedAccessType (#1047) (d6e7437)
  • no-whitespace-before-property: support TS nodes (#1046) (684ff76)
  • type-annotation-spacing: deprecate overrides.arrow in favor of arrow-spacing (#1037) (598bbb0)
  • update deps (#1052) (29d09cc)

Bug Fixes

  • type-generic-spacing: ignore spaces after new in TSConstructorType (#1044) (aa0c6ac)

Documentation

  • no-extra-parens: add missing ] in various examples. (#1048) (88248cf)
  • quotes: update deprecated options to latest and add tips (#1026) (dc949f8)

Build Related

  • deps: bump actions/download-artifact from 5 to 6 (#1033) (8845342)
  • deps: bump actions/setup-node from 5 to 6 (#1029) (aa2f991)
  • deps: bump actions/upload-artifact from 4 to 5 (#1034) (657e8ce)

Chores

  • indent: cleanup TestCaseError#nodeType (#1043) (3fcec3e)
  • indent: simplify logic in JSXText (#1027) (d83c5b0)
  • space-infix-ops: simplify logic (#1022) (6d57a7d)
  • type-annotation-spacing: simplify type definitions (#1031) (aa6a0a3)
  • type-annotation-spacing: use unindent for better collapse (#1032) (839502a)
  • type-generic-spacing: remove logic duplicated with comma-spacing (#1024) (361cfc8)
  • upgrade to vitest v4 (#1040) (c9d684b)
Commits
  • 52b2b2e chore: release v5.6.1 (main) (#1055)
  • c486861 fix(computed-property-spacing): guard with node.type instead of computed ...
  • 1f5526a chore: release v5.6.0 (main) (#1023)
  • 684ff76 feat(no-whitespace-before-property): support TS nodes (#1046)
  • d6e7437 feat(computed-property-spacing): support TSIndexedAccessType (#1047)
  • 88248cf docs(no-extra-parens): add missing ] in various examples. (#1048)
  • aa0c6ac fix(type-generic-spacing): ignore spaces after new in TSConstructorType ...
  • 3fcec3e test(indent): cleanup TestCaseError#nodeType (#1043)
  • 598bbb0 feat(type-annotation-spacing): deprecate overrides.arrow in favor of `arrow...
  • a5380d2 feat(arrow-spacing): support TSFunctionType and TSConstructorType (#1036)
  • Additional commits viewable in compare view

Updates tsdown from 0.16.0 to 0.16.6

Release notes

Sourced from tsdown's releases.

v0.16.6

   🚀 Features

    View changes on GitHub

v0.16.5

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.16.4

   🚀 Features

    View changes on GitHub

v0.16.3

   🏎 Performance

    View changes on GitHub

v0.16.2

   🚀 Features

  • Upgrade rolldown to v1.0.0-beta.49  -  by @​sxzz (48181)
  • entry: Auto enable glob, support infer entry extension  -  by @​sxzz and jinghaihan (2c525)
    View changes on GitHub

v0.16.1

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Commits
  • c4bef91 chore: release v0.16.6
  • f502bc1 feat: upgrade rolldown to beta 51
  • e177a66 chore: release v0.16.5
  • 45229b1 feat(create-tsdown): add react-compiler template (#604)
  • 40ae07e chore: fix homepage link
  • d9a4e4e chore: upgrade deps
  • 52077fe chore: upgrade deps
  • 4de7074 fix(exports): use correct indentation for output (#599)
  • ca0d210 docs: add documentation for skipNodeModulesBundle
  • 8467b0e refactor: migrate to obug v2
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.46.3 to 8.47.0

Release notes

Sourced from typescript-eslint's releases.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.46.4

8.46.4 (2025-11-10)

🩹 Fixes

  • eslint-plugin: [no-deprecated] fix double-report on computed literal identifiers (#11006, #10958)
  • eslint-plugin: handle override modifier in promise-function-async fixer (#11730)
  • parser: error when both projectService and project are set (#11333)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.47.0 (2025-11-17)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.46.4 (2025-11-10)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @cosmjs/encoding from 0.36.0 to 0.37.0

Release notes

Sourced from @​cosmjs/encoding's releases.

v0.37.0

Highlights in this release

  • Add client for CometBFT 1.x (Comet1Client)
  • Modernize dependencies to reduce bundle size and reliability
  • Set exports field to all packages. This prevents users from importing non-public interfaces and prepares for and ESM world.
  • Deprecate executeKdf from both @​cosmjs/amino and @​cosmjs/proto-signing as wallet encryption will be removed (cosmos/cosmjs#1796).

Changelog: https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md#0370---2025-10-29 All changes: cosmos/cosmjs@v0.36.1...v0.37.0

...

Description has been truncated

… with 120 updates

Bumps the all-dependencies group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.0` | `24.10.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.6` | `16.2.7` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.7` | `4.0.13` |
| [@cosmjs/tendermint-rpc](https://github.com/cosmos/cosmjs) | `0.36.0` | `0.37.0` |
| [cosmjs-types](https://github.com/confio/cosmjs-types) | `0.10.1` | `0.11.0` |
| [fastify](https://github.com/fastify/fastify) | `5.6.1` | `5.6.2` |
| [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) | `5.5.0` | `5.6.1` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.16.0` | `0.16.6` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.3` | `8.47.0` |
| [@cosmjs/encoding](https://github.com/cosmos/cosmjs) | `0.36.0` | `0.37.0` |
| [@cosmjs/proto-signing](https://github.com/cosmos/cosmjs) | `0.36.0` | `0.37.0` |



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

Updates `lint-staged` from 16.2.6 to 16.2.7
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lint-staged/lint-staged/compare/v16.2.6...v16.2.7)

Updates `vitest` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/vitest)

Updates `@cosmjs/tendermint-rpc` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `cosmjs-types` from 0.10.1 to 0.11.0
- [Changelog](https://github.com/cosmos/cosmjs-types/blob/main/CHANGELOG.md)
- [Commits](https://github.com/confio/cosmjs-types/compare/v0.10.1...v0.11.0)

Updates `fastify` from 5.6.1 to 5.6.2
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](https://github.com/fastify/fastify/compare/v5.6.1...v5.6.2)

Updates `@stylistic/eslint-plugin` from 5.5.0 to 5.6.1
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v5.6.1/packages/eslint-plugin)

Updates `tsdown` from 0.16.0 to 0.16.6
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](https://github.com/rolldown/tsdown/compare/v0.16.0...v0.16.6)

Updates `typescript-eslint` from 8.46.3 to 8.47.0
- [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.47.0/packages/typescript-eslint)

Updates `@cosmjs/encoding` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/proto-signing` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/amino` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/crypto` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/json-rpc` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/math` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/socket` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/stream` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@cosmjs/utils` from 0.36.0 to 0.37.0
- [Release notes](https://github.com/cosmos/cosmjs/releases)
- [Changelog](https://github.com/cosmos/cosmjs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmos/cosmjs/compare/v0.36.0...v0.37.0)

Updates `@emnapi/core` from 1.5.0 to 1.7.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](https://github.com/toyobayashi/emnapi/compare/v1.5.0...v1.7.1)

Updates `@emnapi/runtime` from 1.5.0 to 1.7.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](https://github.com/toyobayashi/emnapi/compare/v1.5.0...v1.7.1)

Updates `@esbuild/aix-ppc64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/android-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/android-arm` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/android-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/darwin-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/darwin-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/freebsd-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/freebsd-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-arm` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-ia32` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-loong64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-mips64el` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-ppc64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-riscv64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-s390x` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/linux-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/netbsd-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/netbsd-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/openbsd-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/openbsd-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/openharmony-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/sunos-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/win32-arm64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/win32-ia32` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@esbuild/win32-x64` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `@fastify/ajv-compiler` from 4.0.2 to 4.0.5
- [Release notes](https://github.com/fastify/ajv-compiler/releases)
- [Commits](https://github.com/fastify/ajv-compiler/compare/v4.0.2...v4.0.5)

Updates `@fastify/forwarded` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/fastify/forwarded/releases)
- [Commits](https://github.com/fastify/forwarded/compare/v3.0.0...v3.0.1)

Updates `@fastify/proxy-addr` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/fastify/proxy-addr/releases)
- [Commits](https://github.com/fastify/proxy-addr/compare/v5.0.0...v5.1.0)

Updates `@oxc-project/types` from 0.96.0 to 0.98.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxc-types/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/crates_v0.98.0/npm/oxc-types)

Updates `@rolldown/binding-android-arm64` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-darwin-arm64` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-darwin-x64` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-freebsd-x64` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-linux-arm-gnueabihf` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-linux-arm64-gnu` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-linux-arm64-musl` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-linux-x64-gnu` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-linux-x64-musl` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-openharmony-arm64` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-wasm32-wasi` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-win32-arm64-msvc` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-win32-ia32-msvc` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/binding-win32-x64-msvc` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `@rolldown/pluginutils` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/pluginutils)

Updates `@rollup/rollup-android-arm-eabi` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-android-arm64` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-darwin-arm64` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-darwin-x64` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-freebsd-arm64` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-freebsd-x64` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-arm-gnueabihf` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-arm-musleabihf` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-arm64-gnu` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-arm64-musl` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-loong64-gnu` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-ppc64-gnu` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-riscv64-gnu` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-riscv64-musl` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-s390x-gnu` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-x64-gnu` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-linux-x64-musl` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-openharmony-arm64` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-win32-arm64-msvc` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-win32-ia32-msvc` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `@rollup/rollup-win32-x64-msvc` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

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

Updates `@typescript-eslint/eslint-plugin` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/parser)

Updates `@typescript-eslint/project-service` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/project-service/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/project-service)

Updates `@typescript-eslint/scope-manager` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/scope-manager/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/scope-manager)

Updates `@typescript-eslint/tsconfig-utils` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/tsconfig-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/tsconfig-utils)

Updates `@typescript-eslint/type-utils` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/type-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/type-utils)

Updates `@typescript-eslint/types` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/types)

Updates `@typescript-eslint/typescript-estree` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-estree/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-estree)

Updates `@typescript-eslint/utils` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/utils)

Updates `@typescript-eslint/visitor-keys` from 8.46.3 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/visitor-keys/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/visitor-keys)

Updates `@vitest/expect` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/expect)

Updates `@vitest/mocker` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/mocker)

Updates `@vitest/pretty-format` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/pretty-format)

Updates `@vitest/runner` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/runner)

Updates `@vitest/snapshot` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/snapshot)

Updates `@vitest/spy` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/spy)

Updates `@vitest/utils` from 4.0.7 to 4.0.13
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.13/packages/utils)

Updates `ast-kit` from 2.1.3 to 2.2.0
- [Release notes](https://github.com/sxzz/ast-kit/releases)
- [Commits](https://github.com/sxzz/ast-kit/compare/v2.1.3...v2.2.0)

Updates `birpc` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/antfu-collective/birpc/releases)
- [Commits](https://github.com/antfu-collective/birpc/compare/v2.7.0...v2.8.0)

Updates `chai` from 6.2.0 to 6.2.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](https://github.com/chaijs/chai/compare/v6.2.0...v6.2.1)

Updates `dts-resolver` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/sxzz/dts-resolver/releases)
- [Commits](https://github.com/sxzz/dts-resolver/compare/v2.1.2...v2.1.3)

Updates `esbuild` from 0.25.10 to 0.25.12
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.12)

Updates `fast-json-stringify` from 6.0.1 to 6.1.1
- [Release notes](https://github.com/fastify/fast-json-stringify/releases)
- [Commits](https://github.com/fastify/fast-json-stringify/compare/v6.0.1...v6.1.1)

Updates `json-schema-ref-resolver` from 2.0.1 to 3.0.0
- [Release notes](https://github.com/fastify/json-schema-ref-resolver/releases)
- [Commits](https://github.com/fastify/json-schema-ref-resolver/compare/v2.0.1...v3.0.0)

Updates `magic-string` from 0.30.19 to 0.30.21
- [Release notes](https://github.com/Rich-Harris/magic-string/releases)
- [Changelog](https://github.com/Rich-Harris/magic-string/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Rich-Harris/magic-string/compare/v0.30.19...v0.30.21)

Updates `pino` from 9.10.0 to 10.1.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](https://github.com/pinojs/pino/compare/v9.10.0...v10.1.0)

Updates `rolldown-plugin-dts` from 0.17.3 to 0.18.0
- [Release notes](https://github.com/sxzz/rolldown-plugin-dts/releases)
- [Commits](https://github.com/sxzz/rolldown-plugin-dts/compare/v0.17.3...v0.18.0)

Updates `rolldown` from 1.0.0-beta.46 to 1.0.0-beta.51
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.51/packages/rolldown)

Updates `rollup` from 4.50.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.53.3)

Updates `secure-json-parse` from 4.0.0 to 4.1.0
- [Release notes](https://github.com/fastify/secure-json-parse/releases)
- [Commits](https://github.com/fastify/secure-json-parse/compare/v4.0.0...v4.1.0)

Updates `set-cookie-parser` from 2.7.1 to 2.7.2
- [Changelog](https://github.com/nfriedly/set-cookie-parser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nfriedly/set-cookie-parser/compare/v2.7.1...v2.7.2)

Updates `std-env` from 3.9.0 to 3.10.0
- [Release notes](https://github.com/unjs/std-env/releases)
- [Changelog](https://github.com/unjs/std-env/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unjs/std-env/compare/v3.9.0...v3.10.0)

Updates `vite` from 7.1.6 to 7.2.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.4/packages/vite)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: lint-staged
  dependency-version: 16.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: vitest
  dependency-version: 4.0.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/tendermint-rpc"
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: cosmjs-types
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: fastify
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@stylistic/eslint-plugin"
  dependency-version: 5.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tsdown
  dependency-version: 0.16.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.47.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/encoding"
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/proto-signing"
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/amino"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/crypto"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/json-rpc"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/math"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/socket"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/stream"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@cosmjs/utils"
  dependency-version: 0.37.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@emnapi/core"
  dependency-version: 1.7.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@emnapi/runtime"
  dependency-version: 1.7.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@esbuild/aix-ppc64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/android-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/android-arm"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/android-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/darwin-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/darwin-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/freebsd-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/freebsd-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-arm"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-ia32"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-loong64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-mips64el"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-ppc64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-riscv64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-s390x"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/linux-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/netbsd-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/netbsd-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/openbsd-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/openbsd-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/openharmony-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/sunos-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/win32-arm64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/win32-ia32"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@esbuild/win32-x64"
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@fastify/ajv-compiler"
  dependency-version: 4.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@fastify/forwarded"
  dependency-version: 3.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@fastify/proxy-addr"
  dependency-version: 5.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@oxc-project/types"
  dependency-version: 0.98.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-android-arm64"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-darwin-arm64"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-darwin-x64"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-freebsd-x64"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-linux-arm-gnueabihf"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-linux-arm64-gnu"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-linux-arm64-musl"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-linux-x64-gnu"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-linux-x64-musl"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-openharmony-arm64"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-wasm32-wasi"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-win32-arm64-msvc"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-win32-ia32-msvc"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/binding-win32-x64-msvc"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rolldown/pluginutils"
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-android-arm-eabi"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-android-arm64"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-darwin-arm64"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-darwin-x64"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-freebsd-arm64"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-freebsd-x64"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-arm-gnueabihf"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-arm-musleabihf"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-arm64-musl"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-loong64-gnu"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-ppc64-gnu"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-riscv64-gnu"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-riscv64-musl"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-s390x-gnu"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-x64-gnu"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-linux-x64-musl"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-openharmony-arm64"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-win32-arm64-msvc"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-win32-ia32-msvc"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/rollup-win32-x64-msvc"
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/chai"
  dependency-version: 5.2.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/project-service"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/scope-manager"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/tsconfig-utils"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/type-utils"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/types"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/typescript-estree"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/utils"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/visitor-keys"
  dependency-version: 8.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@vitest/expect"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitest/mocker"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitest/pretty-format"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitest/runner"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitest/snapshot"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitest/spy"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitest/utils"
  dependency-version: 4.0.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ast-kit
  dependency-version: 2.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: birpc
  dependency-version: 2.8.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: chai
  dependency-version: 6.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: dts-resolver
  dependency-version: 2.1.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: fast-json-stringify
  dependency-version: 6.1.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: json-schema-ref-resolver
  dependency-version: 3.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: magic-string
  dependency-version: 0.30.21
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: pino
  dependency-version: 10.1.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: rolldown-plugin-dts
  dependency-version: 0.18.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: rolldown
  dependency-version: 1.0.0-beta.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: rollup
  dependency-version: 4.53.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: secure-json-parse
  dependency-version: 4.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: set-cookie-parser
  dependency-version: 2.7.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: std-env
  dependency-version: 3.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: vite
  dependency-version: 7.2.4
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 24, 2025

Assignees

The following users could not be added as assignees: allinbits/eclesia-maintainers. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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.

1 participant