Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the typescript-dependencies group with 2 updates in the /parachain/scripts/ts-utils directory: ethers and prettier.
Bumps the typescript-dependencies group with 6 updates in the /parachain/ts-tests directory:

Package From To
ethers 6.15.0 6.16.0
prettier 3.6.2 3.7.4
solc 0.8.30 0.8.31
@vitest/ui 4.0.14 4.0.15
tsx 4.20.6 4.21.0
vitest 4.0.14 4.0.15

Bumps the typescript-dependencies group with 12 updates in the /tee-worker/omni-executor/client-sdk directory:

Package From To
prettier 3.6.2 3.7.4
@nx/devkit 22.1.1 22.1.3
@nx/eslint-plugin 22.1.1 22.1.3
@nx/jest 22.1.1 22.1.3
@nx/js 22.1.1 22.1.3
@nx/workspace 22.1.1 22.1.3
@typescript-eslint/eslint-plugin 8.48.0 8.49.0
@typescript-eslint/parser 8.48.0 8.49.0
nx 22.1.1 22.1.3
ts-jest 29.4.5 29.4.6
typedoc 0.28.14 0.28.15
verdaccio 6.2.2 6.2.4

Bumps the typescript-dependencies group with 1 update in the /tee-worker/omni-executor/contracts/accounting/solana directory: prettier.
Bumps the typescript-dependencies group with 7 updates in the /tee-worker/omni-executor/ts-tests directory:

Package From To
ethers 6.15.0 6.16.0
@typescript-eslint/eslint-plugin 8.48.0 8.49.0
@typescript-eslint/parser 8.48.0 8.49.0
viem 2.40.3 2.41.2
express 5.1.0 5.2.1
@types/express 5.0.5 5.0.6
systeminformation 5.27.11 5.27.12

Bumps the typescript-dependencies group with 3 updates in the /tee-worker/omni-executor/ts-tests/integration-tests directory: ethers, @typescript-eslint/eslint-plugin and @typescript-eslint/parser.

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 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 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 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 solc from 0.8.30 to 0.8.31

Commits
  • cff0952 Merge pull request #784 from argotorg/set-version-to-0-8-31
  • 7a309cc Set current version to 0.8.31
  • 422ac20 Merge pull request #783 from argotorg/pin-hardhat-v2
  • f36a264 Pin sample project to hardhat v2
  • ac8314d Merge pull request #782 from argotorg/ci-fix
  • 6a24eb1 Fix nodejs version to v24
  • 5cd4106 Merge pull request #763 from ethereum/bump-scorecards-action
  • 7db335d Bump versions of scorecards action
  • See full diff in compare view

Updates @vitest/ui from 4.0.14 to 4.0.15

Release notes

Sourced from @​vitest/ui's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates tsx from 4.20.6 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

Commits

Updates vitest from 4.0.14 to 4.0.15

Release notes

Sourced from vitest's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • eb1abf0 chore: release v4.0.15
  • a68f74e feat(cache): add opt-out on a plugin level, fix internal root cache (#9154)
  • 122ff32 feat(reporters): print import duration breakdown (#9105)
  • 0d2e7e3 fix(browser): run toMatchScreenshot only once when used with `expect.elemen...
  • d57d8bf fix(pool): terminate workers on CTRL+c forceful exits (#9140)
  • bb65e15 fix(reporters): show project in github reporter (#9138)
  • 52b242b chore(deps): update all non-major dependencies (#9133)
  • 4c75492 fix: fix external behavior with deps.optimizer (#9125)
  • a5d98fd refactor(vitest): get current test name from task property (#9120)
  • fd8bd6d fix: use optimizeDeps.rolldownOptions to fix depreated warning + fix `ssr.e...
  • Additional commits viewable in compare view

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 @nx/devkit from 22.1.1 to 22.1.3

Release notes

Sourced from @​nx/devkit's releases.

22.1.3 (2025-11-27)

🚀 Features

  • nextjs: add migration to add AI instructions for upgrading to Next 16 (#33608)

🩹 Fixes

  • bundling: replace rollup-plugin-copy with nx copy assets plugin (#33601, #32398)
  • core: kill child process tree in different running tasks (#33636, #32438, #33460)
  • linter: base eslint config should ignore out-tsc directories (#33639)
  • nextjs: make migration to next 16 optional (#33627)

❤️ Thank You

22.1.2 (2025-11-25)

🚀 Features

  • core: add multiple Nx version detection to nx report (#33599)

🩹 Fixes

  • core: filter out automated release commits in getCommitsRelevantToProjects (#33482)
  • core: make daemon socket path unique per process to prevent race condition (#33580, #33491)
  • core: use nx-mcp for older nx versions instead of nx mcp (#33553)
  • core: propagate continuous task failures to dependent tasks (#33492)
  • graph: surface task graph client error via error toast (#33600)
  • js: ensure copy-workspace-modules copies transitive workspace dependencies (#33570)
  • nest: set moduleResolution to node to prevent TS5095 error (#33607, #33589)
  • node: set generatePackageJson:false for TS Solution workspaces (#33606)
  • release: ensure emoji is not repeated in breaking changes summary (#33605)
  • storybook: remove upper bound of migration requires (#33613)
  • testing: remove declare global wrapper from cypress commands.ts template (#33573, #32930)

❤️ Thank You

... (truncated)

Commits

Updates @nx/eslint-plugin from 22.1.1 to 22.1.3

Release notes

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

22.1.3 (2025-11-27)

🚀 Features

  • nextjs: add migration to add AI instructions for upgrading to Next 16 (#33608)

🩹 Fixes

  • bundling: replace rollup-plugin-copy with nx copy assets plugin (#33601, #32398)
  • core: kill child process tree in different running tasks (#33636, #32438, #33460)
  • linter: base eslint config should ignore out-tsc directories (

…ies with 21 updates

Bumps the typescript-dependencies group with 2 updates in the /parachain/scripts/ts-utils directory: [ethers](https://github.com/ethers-io/ethers.js) and [prettier](https://github.com/prettier/prettier).
Bumps the typescript-dependencies group with 6 updates in the /parachain/ts-tests directory:

| Package | From | To |
| --- | --- | --- |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.15.0` | `6.16.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [solc](https://github.com/ethereum/solc-js) | `0.8.30` | `0.8.31` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.0.14` | `4.0.15` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.6` | `4.21.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.14` | `4.0.15` |

Bumps the typescript-dependencies group with 12 updates in the /tee-worker/omni-executor/client-sdk directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [@nx/devkit](https://github.com/nrwl/nx/tree/HEAD/packages/devkit) | `22.1.1` | `22.1.3` |
| [@nx/eslint-plugin](https://github.com/nrwl/nx/tree/HEAD/packages/eslint-plugin) | `22.1.1` | `22.1.3` |
| [@nx/jest](https://github.com/nrwl/nx/tree/HEAD/packages/jest) | `22.1.1` | `22.1.3` |
| [@nx/js](https://github.com/nrwl/nx/tree/HEAD/packages/js) | `22.1.1` | `22.1.3` |
| [@nx/workspace](https://github.com/nrwl/nx/tree/HEAD/packages/workspace) | `22.1.1` | `22.1.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.48.0` | `8.49.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.48.0` | `8.49.0` |
| [nx](https://github.com/nrwl/nx/tree/HEAD/packages/nx) | `22.1.1` | `22.1.3` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.5` | `29.4.6` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.14` | `0.28.15` |
| [verdaccio](https://github.com/verdaccio/verdaccio) | `6.2.2` | `6.2.4` |

Bumps the typescript-dependencies group with 1 update in the /tee-worker/omni-executor/contracts/accounting/solana directory: [prettier](https://github.com/prettier/prettier).
Bumps the typescript-dependencies group with 7 updates in the /tee-worker/omni-executor/ts-tests directory:

| Package | From | To |
| --- | --- | --- |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.15.0` | `6.16.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.48.0` | `8.49.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.48.0` | `8.49.0` |
| [viem](https://github.com/wevm/viem) | `2.40.3` | `2.41.2` |
| [express](https://github.com/expressjs/express) | `5.1.0` | `5.2.1` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `5.0.5` | `5.0.6` |
| [systeminformation](https://github.com/sebhildebrandt/systeminformation) | `5.27.11` | `5.27.12` |

Bumps the typescript-dependencies group with 3 updates in the /tee-worker/omni-executor/ts-tests/integration-tests directory: [ethers](https://github.com/ethers-io/ethers.js), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser).


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 `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 `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 `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 `solc` from 0.8.30 to 0.8.31
- [Commits](argotorg/solc-js@v0.8.30...v0.8.31)

Updates `@vitest/ui` from 4.0.14 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/ui)

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

Updates `vitest` from 4.0.14 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)

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 `@nx/devkit` from 22.1.1 to 22.1.3
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.1.3/packages/devkit)

Updates `@nx/eslint-plugin` from 22.1.1 to 22.1.3
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.1.3/packages/eslint-plugin)

Updates `@nx/jest` from 22.1.1 to 22.1.3
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.1.3/packages/jest)

Updates `@nx/js` from 22.1.1 to 22.1.3
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.1.3/packages/js)

Updates `@nx/workspace` from 22.1.1 to 22.1.3
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.1.3/packages/workspace)

Updates `@typescript-eslint/eslint-plugin` from 8.48.0 to 8.49.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.49.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.48.0 to 8.49.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.49.0/packages/parser)

Updates `nx` from 22.1.1 to 22.1.3
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/22.1.3/packages/nx)

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

Updates `typedoc` from 0.28.14 to 0.28.15
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.14...v0.28.15)

Updates `verdaccio` from 6.2.2 to 6.2.4
- [Release notes](https://github.com/verdaccio/verdaccio/releases)
- [Changelog](https://github.com/verdaccio/verdaccio/blob/v6.2.4/CHANGELOG.md)
- [Commits](verdaccio/verdaccio@v6.2.2...v6.2.4)

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 `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 `@typescript-eslint/eslint-plugin` from 8.48.0 to 8.49.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.49.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.48.0 to 8.49.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.49.0/packages/parser)

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

Updates `express` from 5.1.0 to 5.2.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@v5.1.0...v5.2.1)

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

Updates `systeminformation` from 5.27.11 to 5.27.12
- [Changelog](https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md)
- [Commits](sebhildebrandt/systeminformation@v5.27.11...v5.27.12)

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

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 `@typescript-eslint/eslint-plugin` from 8.48.0 to 8.49.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.49.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.48.0 to 8.49.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.49.0/packages/parser)

---
updated-dependencies:
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: solc
  dependency-version: 0.8.31
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@vitest/ui"
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: vitest
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@nx/devkit"
  dependency-version: 22.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@nx/eslint-plugin"
  dependency-version: 22.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@nx/jest"
  dependency-version: 22.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@nx/js"
  dependency-version: 22.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@nx/workspace"
  dependency-version: 22.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: nx
  dependency-version: 22.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: typedoc
  dependency-version: 0.28.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: verdaccio
  dependency-version: 6.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: viem
  dependency-version: 2.41.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: express
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@types/express"
  dependency-version: 5.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: systeminformation
  dependency-version: 5.27.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@types/express"
  dependency-version: 5.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
...

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

vercel bot commented Dec 8, 2025

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

1 Skipped Deployment
Project Deployment Preview Comments Updated (UTC)
heima-aa-demo-app Ignored Ignored Dec 8, 2025 8:42pm

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 15, 2025

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

@dependabot dependabot bot closed this Dec 15, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/parachain/scripts/ts-utils/typescript-dependencies-7cf1003307 branch December 15, 2025 20:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant