Skip to content

Bump the yarn group across 1 directory with 9 updates#1651

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/yarn-575456c783
Closed

Bump the yarn group across 1 directory with 9 updates#1651
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/yarn-575456c783

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps the yarn group with 9 updates in the / directory:

Package From To
prettier 3.6.2 3.7.4
@polkadot/api-cli 0.63.16 0.63.19
@polkadot/api 16.4.9 16.5.3
@types/node 24.8.1 24.10.1
@vitest/expect 3.2.4 4.0.15
axios 1.12.2 1.13.2
ethers 6.15.0 6.16.0
viem 2.38.3 2.41.2
vitest 3.2.4 4.0.15

Updates prettier from 3.6.2 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates @polkadot/api-cli from 0.63.16 to 0.63.19

Release notes

Sourced from @​polkadot/api-cli's releases.

v0.63.19

Changes:

  • Bump polkadot-js dependencies(#636)

v0.63.18

Changes:

  • Bump polkadot-js dependencies(#634)

v0.63.17

Changes:

  • Bump polkadot-js dependencies(#632)
Changelog

Sourced from @​polkadot/api-cli's changelog.

0.63.19 Nov 26, 2025

Changes:

  • Bump polkadot-js dependencies(#636)

0.63.18 Nov 12, 2025

Changes:

  • Bump polkadot-js dependencies(#634)

0.63.17 Oct 22, 2025

Changes:

  • Bump polkadot-js dependencies(#632)
Commits

Updates @polkadot/api from 16.4.9 to 16.5.3

Release notes

Sourced from @​polkadot/api's releases.

v16.5.3

Changes:

  • Bump polkadot dependencies (#6232)
  • fix: resolve incorrect author caused by multiple preRuntime logs (#6230)
  • fix: filter contract events by address before decoding (#6224)

v16.5.2

Changes:

  • Bump @​polkadot dependencies (#6222)
  • Fix: add phantom export to prevent empty types.ts compilation error (#6221)

v16.5.1

Changes:

  • Upgrade Polkadot and Polkadot Asset Hub types for 2000000 (#6219)
  • Upgrade Kusama and Kusama Asset Hub types for 1009003 (#6218)
Changelog

Sourced from @​polkadot/api's changelog.

16.5.3 Nov 25, 2025

Changes:

  • Bump polkadot dependencies (#6232)
  • fix: resolve incorrect author caused by multiple preRuntime logs (#6230)
  • fix: filter contract events by address before decoding (#6224)

16.5.2 Nov 11, 2025

Changes:

  • Bump @​polkadot dependencies (#6222)
  • Fix: add phantom export to prevent empty types.ts compilation error (#6221)

16.5.1 Nov 6, 2025

Changes:

  • Upgrade Polkadot and Polkadot Asset Hub types for 2000000 (#6219)
  • Upgrade Kusama and Kusama Asset Hub types for 1009003 (#6218)
Commits

Updates @types/node from 24.8.1 to 24.10.1

Commits

Updates @vitest/expect from 3.2.4 to 4.0.15

Release notes

Sourced from @​vitest/expect's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.0.14

   🚀 Experimental Features

   🐞 Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitest/expect since your current version.


Updates axios from 1.12.2 to 1.13.2

Release notes

Sourced from axios's releases.

Release v1.13.2

Release notes:

Bug Fixes

  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#7196) (0588880)

Performance Improvements

Contributors to this release

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

... (truncated)

Changelog

Sourced from axios's changelog.

1.13.2 (2025-11-04)

Bug Fixes

  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#7196) (0588880)

Performance Improvements

Contributors to this release

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

... (truncated)

Commits
  • 08b84b5 chore(release): v1.13.2 (#7207)
  • 8d37233 fix(http): fix 'socket hang up' bug for keep-alive requests when using timeou...
  • 12c314b perf(http): fix early loop exit; (#7202)
  • f6d79e7 chore(sponsor): update sponsor block (#7203)
  • 0588880 fix(http): use default export for http2 module to support stubs; (#7196)
  • 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 ...
  • Additional commits viewable in compare view

Updates ethers from 6.15.0 to 6.16.0

Release notes

Sourced from ethers's releases.

ethers/v6.16.0 (2025-12-02 19:47)

  • Added utility method to split EIP-7594 BLOb proofs into its cells (88dfe96).
  • Update Alchemy URL endpoint for mainnet (#5052; 719b01d).
  • Fail on unsupported Etherscan networks immediately to better support the default provider (94b333b).
  • Added Filecoin network and Ankr endpoints (#5038; 986e827).
  • Moved to better API for EIP-7594 PeerDAS (#5062; 452b422).
  • Added initial EIP-7594 PeerDAS support (#5054, #5062; 6d64889).
  • Support RegExp engines with string length limitations (#4967; f0dfbe1).
  • Added Transaction and Signature support for non-canonical S values (#4223, #5013; 855d727).
  • Allow zero-width big-endian data for toBeHex and allow widths fo toBeArray (#5025; 540f30c).
Changelog

Sourced from ethers's changelog.

ethers/v6.16.0 (2025-12-02 19:47)

  • Added utility method to split EIP-7594 BLOb proofs into its cells (88dfe96).
  • Update Alchemy URL endpoint for mainnet (#5052; 719b01d).
  • Fail on unsupported Etherscan networks immediately to better support the default provider (94b333b).
  • Added Filecoin network and Ankr endpoints (#5038; 986e827).
  • Moved to better API for EIP-7594 PeerDAS (#5062; 452b422).
  • Added initial EIP-7594 PeerDAS support (#5054, #5062; 6d64889).
  • Support RegExp engines with string length limitations (#4967; f0dfbe1).
  • Added Transaction and Signature support for non-canonical S values (#4223, #5013; 855d727).
  • Allow zero-width big-endian data for toBeHex and allow widths fo toBeArray (#5025; 540f30c).
Commits
  • 98c49d0 admin: updated dist files
  • c4e840e tests: disable Blockscout temporaily
  • 88dfe96 Added utility method to split EIP-7594 BLOb proofs into its cells.
  • 7c5faf8 admin: updated dist files
  • 8192f5b docs: add link for EIP-7594
  • 10a912b docs: fixed typos (#5039)
  • 719b01d Update Alchemy URL endpoint for mainnet (#5052).
  • 94b333b Fail on unsupported Etherscan networks immediately to better support the defa...
  • 986e827 Added Filecoin network and Ankr endpoints (#5038).
  • 452b422 Moved to better API for EIP-7594 PeerDAS (#5062).
  • Additional commits viewable in compare view

Updates viem from 2.38.3 to 2.41.2

Release notes

Sourced from viem's releases.

viem@2.41.2

Patch Changes

viem@2.41.1

Minor Changes

Patch Changes

viem@2.40.4

Patch Changes

viem@2.40.3

Patch Changes

viem@2.40.2

Patch Changes

viem@2.40.1

Patch Changes

viem@2.40.0

Minor Changes

Patch Changes

... (truncated)

Commits

Updates vitest from 3.2.4 to 4.0.15

Release notes

Sourced from vitest's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.0.14

   🚀 Experimental Features

   🐞 Bug Fixes

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 8, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/yarn-575456c783 branch from f14027b to ccfcfaf Compare December 22, 2025 14:07
Bumps the yarn group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [@polkadot/api-cli](https://github.com/polkadot-js/tools/tree/HEAD/packages/api-cli) | `0.63.16` | `0.63.19` |
| [@polkadot/api](https://github.com/polkadot-js/api/tree/HEAD/packages/api) | `16.4.9` | `16.5.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.8.1` | `24.10.1` |
| [@vitest/expect](https://github.com/vitest-dev/vitest/tree/HEAD/packages/expect) | `3.2.4` | `4.0.15` |
| [axios](https://github.com/axios/axios) | `1.12.2` | `1.13.2` |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.15.0` | `6.16.0` |
| [viem](https://github.com/wevm/viem) | `2.38.3` | `2.41.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.15` |



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

Updates `@polkadot/api-cli` from 0.63.16 to 0.63.19
- [Release notes](https://github.com/polkadot-js/tools/releases)
- [Changelog](https://github.com/polkadot-js/tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/tools/commits/v0.63.19/packages/api-cli)

Updates `@polkadot/api` from 16.4.9 to 16.5.3
- [Release notes](https://github.com/polkadot-js/api/releases)
- [Changelog](https://github.com/polkadot-js/api/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/api/commits/v16.5.3/packages/api)

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

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

Updates `axios` from 1.12.2 to 1.13.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.12.2...v1.13.2)

Updates `ethers` from 6.15.0 to 6.16.0
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/main/CHANGELOG.md)
- [Commits](ethers-io/ethers.js@v6.15.0...v6.16.0)

Updates `viem` from 2.38.3 to 2.41.2
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.38.3...viem@2.41.2)

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

---
updated-dependencies:
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: "@polkadot/api-cli"
  dependency-version: 0.63.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: "@polkadot/api"
  dependency-version: 16.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: "@vitest/expect"
  dependency-version: 4.0.15
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: viem
  dependency-version: 2.41.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: vitest
  dependency-version: 4.0.15
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/yarn-575456c783 branch from ccfcfaf to bdaca3e Compare January 12, 2026 18:12
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 30, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Mar 30, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/yarn-575456c783 branch March 30, 2026 15:52
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

Development

Successfully merging this pull request may close these issues.

0 participants