Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the everything-else group with 10 updates in the / directory:

Package From To
@cosmjs/amino 0.36.0 0.37.0
@cosmjs/crypto 0.36.0 0.37.0
@cosmjs/ledger-amino 0.36.0 0.37.0
axios 1.11.0 1.13.1
uuid 11.1.0 13.0.0
@eslint/js 9.33.0 9.39.0
globals 16.3.0 16.5.0
jest 30.0.4 30.2.0
ts-proto 2.7.5 2.8.3
typescript-eslint 8.39.1 8.46.2

Updates @cosmjs/amino from 0.36.0 to 0.37.0

Release notes

Sourced from @​cosmjs/amino'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/amino'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/crypto from 0.36.0 to 0.37.0

Release notes

Sourced from @​cosmjs/crypto'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/crypto'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/ledger-amino from 0.36.0 to 0.37.0

Release notes

Sourced from @​cosmjs/ledger-amino'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/ledger-amino'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 axios from 1.11.0 to 1.13.1

Release notes

Sourced from axios's releases.

Release v1.13.1

Release notes:

Bug Fixes

  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#7193) (bcd5581)

Contributors to this release

Release v1.13.0

Release notes:

Bug Fixes

  • fetch: prevent TypeError when config.env is undefined (#7155) (015faec)
  • resolve issue #7131 (added spacing in mergeConfig.js) (#7133) (9b9ec98)

Features

Contributors to this release

Release v1.12.2

Release notes:

Bug Fixes

  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#7030) (cf78825)

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.13.1 (2025-10-28)

Bug Fixes

  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#7193) (bcd5581)

Contributors to this release

1.13.0 (2025-10-27)

Bug Fixes

  • fetch: prevent TypeError when config.env is undefined (#7155) (015faec)
  • resolve issue #7131 (added spacing in mergeConfig.js) (#7133) (9b9ec98)

Features

Contributors to this release

1.12.2 (2025-09-14)

Bug Fixes

... (truncated)

Commits
  • 1ef8e72 chore(release): v1.13.1 (#7194)
  • bcd5581 fix(http): fixed a regression that caused the data stream to be interrupted f...
  • c9b3371 chore: enhance styling and responsiveness in client.html (#7173)
  • 9ead04d [Release] v1.13.0 (#7189)
  • d000fbf fix(http2): fix possible race condition when handling http2 stream on almost ...
  • 08db960 docs: added example for improved network error handling (with Wrapper/Middlew...
  • 46e1981 refactor: form data handling in index.html (#7170)
  • 889f8ef docs: fix mismatched return type (#7172)
  • 7b197ef fix: sandbox ui updated (#7175)
  • 6dff629 chore: fix typos in examples (#7166)
  • Additional commits viewable in compare view

Updates uuid from 11.1.0 to 13.0.0

Release notes

Sourced from uuid's releases.

v13.0.0

13.0.0 (2025-09-08)

⚠ BREAKING CHANGES

  • make browser exports the default (#901)

Bug Fixes

v12.0.0

12.0.0 (2025-09-05)

⚠ BREAKING CHANGES

Features

Bug Fixes

Changelog

Sourced from uuid's changelog.

13.0.0 (2025-09-08)

⚠ BREAKING CHANGES

  • make browser exports the default (#901)

Bug Fixes

12.0.0 (2025-09-05)

⚠ BREAKING CHANGES

Features

Bug Fixes

Commits

Updates @eslint/js from 9.33.0 to 9.39.0

Release notes

Sourced from @​eslint/js's releases.

v9.39.0

Features

  • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
  • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
  • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

Bug Fixes

  • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
  • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
  • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
  • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
  • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
  • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
  • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
  • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

Documentation

  • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
  • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
  • a3b1456 docs: Update README (GitHub Actions Bot)
  • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
  • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
  • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)
  • 637216b docs: update CLI flags migration instructions (#20238) (jaymarvelz)
  • e7cda3b docs: Update README (GitHub Actions Bot)
  • 7b9446f docs: handle empty flags sections on the feature flags page (#20222) (sethamus)

Chores

  • dfe3c1b chore: update @eslint/js version to 9.39.0 (#20270) (Francesco Trotta)
  • 2375a6d chore: package.json update for @​eslint/js release (Jenkins)
  • a1f4e52 chore: update @eslint dependencies (#20265) (Francesco Trotta)
  • c7d3229 chore: update dependency @​eslint/core to ^0.17.0 (#20256) (renovate[bot])
  • 27549bc chore: update fuzz testing to not error if code sample minimizer fails (#20252) (Milos Djermanovic)
  • a1370ee ci: bump actions/setup-node from 5 to 6 (#20230) (dependabot[bot])
  • 9e7fad4 chore: add script to auto-generate eslint:recommended configuration (#20208) (唯然)

v9.38.0

Features

  • ce40f74 feat: update complexity rule to only highlight function header (#20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#20187) (Francesco Trotta)

Bug Fixes

  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#20114) (Pixel998)

Documentation

  • 462675a docs: improve web accessibility by hiding non-semantic character (#20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#20190) (Percy Ma)

... (truncated)

Commits
  • 2375a6d chore: package.json update for @​eslint/js release
  • 9e7fad4 chore: add script to auto-generate eslint:recommended configuration (#20208)
  • 25d0e33 chore: package.json update for @​eslint/js release
  • abee4ca chore: package.json update for @​eslint/js release
  • 90a71bf docs: update README files to add badge and instructions (#20115)
  • 488cba6 chore: package.json update for @​eslint/js release
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116)
  • af2a087 chore: package.json update for @​eslint/js release
  • 84ffb96 chore: update @eslint-community/eslint-utils (#20069)
  • b48fa20 chore: package.json update for @​eslint/js release
  • See full diff in compare view

Updates globals from 16.3.0 to 16.5.0

Release notes

Sourced from globals's releases.

v16.5.0

  • Update globals (2025-11-01) (#316) 6d441ca
  • Add Vue, Svelte, and Astro globals (#314) ea31521

sindresorhus/globals@v16.4.0...v16.5.0

v16.4.0

  • Update globals (#309) 8b8a2d6

sindresorhus/globals@v16.3.0...v16.4.0

Commits

Updates jest from 30.0.4 to 30.2.0

Release notes

Sourced from jest's releases.

30.2.0

Chore & Maintenance

  • [*] Update example repo for testing React Native projects (#15832)
  • [*] Update jest-watch-typeahead to v3 (#15830)

Features

  • [jest-environment-jsdom-abstract] Add support for JSDOM v27 (#15834)

Fixes

  • [babel-jest] Export the TransformerConfig interface (#15820)
  • [jest-config] Fix jest.config.ts with TS loader specified in docblock pragma (#15839)

30.1.3

Fixes

  • Fix unstable_mockModule with node: prefixed core modules.

30.1.2

Fixes

  • [jest-snapshot-utils] Correct snapshot header regexp to work with newline across OSes (#15803)

30.1.1

Fixes

  • [jest-snapshot-utils] Fix deprecated goo.gl snapshot warning not handling Windows end-of-line sequences (#15800)

30.1.0

Features

  • [jest-leak-detector] Configurable GC aggressiveness regarding to V8 heap snapshot generation (#15793)
  • [jest-runtime] Reduce redundant ReferenceError messages
  • [jest-core] Include test modules that failed to load when --onlyFailures is active

Fixes

  • `[jest-snapshot-utils] Fix deprecated goo.gl snapshot guide link not getting replaced with fully canonical URL (#15787)
  • [jest-circus] Fix it.concurrent not working with describe.skip (#15765)
  • [jest-snapshot] Fix mangled inline snapshot updates when used with Prettier 3 and CRLF line endings
  • [jest-runtime] Importing from @jest/globals in more than one file no longer breaks relative paths (#15772)

Chore

  • [expect] Update docblock for toContain() to display info on substring check (#15789)
Changelog

Sourced from jest's changelog.

30.2.0

Chore & Maintenance

  • [*] Update example repo for testing React Native projects (#15832)
  • [*] Update jest-watch-typeahead to v3 (#15830)

Features

  • [jest-environment-jsdom-abstract] Add support for JSDOM v27 (#15834)

Fixes

  • [jest-matcher-utils] Fix infinite recursion with self-referential getters in deepCyclicCopyReplaceable (#15831)
  • [babel-jest] Export the TransformerConfig interface (#15820)
  • [jest-config] Fix jest.config.ts with TS loader specified in docblock pragma (#15839)

30.1.3

Fixes

  • Fix unstable_mockModule with node: prefixed core modules.

30.1.2

Fixes

  • [jest-snapshot-utils] Correct snapshot header regexp to work with newline across OSes (#15803)

30.1.1

Fixes

  • [jest-snapshot-utils] Fix deprecated goo.gl snapshot warning not handling Windows end-of-line sequences (#15800)
  • [jest-snapshot-utils] Improve messaging about goo.gl snapshot link change (#15821)

30.1.0

Features

  • [jest-leak-detector] Configurable GC aggressiveness regarding to V8 heap snapshot generation (#15793)
  • [jest-runtime] Reduce redundant ReferenceError messages
  • [jest-core] Include test modules that failed to load when --onlyFailures is active

Fixes

  • [jest-snapshot-utils] Fix deprecated goo.gl snapshot guide link not getting replaced with fully canonical URL (#15787)
  • [jest-circus] Fix it.concurrent not working with describe.skip (#15765)
  • [jest-snapshot] Fix mangled inline snapshot updates when used with Prettier 3 and CRLF line endings
  • [jest-runtime] Importing from @jest/globals in more than one file no longer breaks relative paths (#15772)

... (truncated)

Commits

Bumps the everything-else group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@cosmjs/amino](https://github.com/cosmos/cosmjs) | `0.36.0` | `0.37.0` |
| [@cosmjs/crypto](https://github.com/cosmos/cosmjs) | `0.36.0` | `0.37.0` |
| [@cosmjs/ledger-amino](https://github.com/CosmWasm/cosmjs) | `0.36.0` | `0.37.0` |
| [axios](https://github.com/axios/axios) | `1.11.0` | `1.13.1` |
| [uuid](https://github.com/uuidjs/uuid) | `11.1.0` | `13.0.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.33.0` | `9.39.0` |
| [globals](https://github.com/sindresorhus/globals) | `16.3.0` | `16.5.0` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.0.4` | `30.2.0` |
| [ts-proto](https://github.com/stephenh/ts-proto) | `2.7.5` | `2.8.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.46.2` |



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](cosmos/cosmjs@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](cosmos/cosmjs@v0.36.0...v0.37.0)

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

Updates `axios` from 1.11.0 to 1.13.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.13.1)

Updates `uuid` from 11.1.0 to 13.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.1.0...v13.0.0)

Updates `@eslint/js` from 9.33.0 to 9.39.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.39.0/packages/js)

Updates `globals` from 16.3.0 to 16.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v16.3.0...v16.5.0)

Updates `jest` from 30.0.4 to 30.2.0
- [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.2.0/packages/jest)

Updates `ts-proto` from 2.7.5 to 2.8.3
- [Release notes](https://github.com/stephenh/ts-proto/releases)
- [Changelog](https://github.com/stephenh/ts-proto/blob/main/CHANGELOG.md)
- [Commits](stephenh/ts-proto@v2.7.5...v2.8.3)

Updates `typescript-eslint` from 8.39.1 to 8.46.2
- [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.46.2/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@cosmjs/amino"
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: "@cosmjs/crypto"
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: "@cosmjs/ledger-amino"
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: axios
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: everything-else
- dependency-name: "@eslint/js"
  dependency-version: 9.39.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: globals
  dependency-version: 16.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: jest
  dependency-version: 30.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: ts-proto
  dependency-version: 2.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: everything-else
- dependency-name: typescript-eslint
  dependency-version: 8.46.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: everything-else
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 3, 2025
@dependabot dependabot bot requested a review from zivkovicmilos as a code owner November 3, 2025 05:12
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 3, 2025
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