Skip to content

chore(deps): bump the typescript-dependencies group across 6 directories with 31 updates#3947

Open
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/npm_and_yarn/parachain/scripts/ts-utils/typescript-dependencies-d268ef1a29
Open

chore(deps): bump the typescript-dependencies group across 6 directories with 31 updates#3947
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/npm_and_yarn/parachain/scripts/ts-utils/typescript-dependencies-d268ef1a29

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the typescript-dependencies group with 5 updates in the /parachain/scripts/ts-utils directory:

Package From To
@polkadot/api 16.5.4 16.5.6
@polkadot/util 14.0.2 14.0.3
@polkadot/util-crypto 14.0.2 14.0.3
read-excel-file 6.0.3 8.0.2
typescript 5.9.3 6.0.2

Bumps the typescript-dependencies group with 10 updates in the /parachain/ts-tests directory:

Package From To
@polkadot/api 16.5.4 16.5.6
@polkadot/util 14.0.2 14.0.3
@polkadot/util-crypto 14.0.2 14.0.3
@types/node 25.0.3 25.5.0
typescript 5.9.3 6.0.2
@polkadot/api-augment 16.5.4 16.5.6
@polkadot/keyring 14.0.2 14.0.3
@polkadot/types 16.5.4 16.5.6
@vitest/ui 4.1.0 4.1.2
vitest 4.1.0 4.1.2

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

Package From To
typescript 5.9.3 6.0.2
@polkadot/keyring 14.0.2 14.0.3
ws 8.19.0 8.20.0
@nx/devkit 22.5.4 22.6.3
@nx/eslint-plugin 22.5.4 22.6.3
@nx/jest 22.5.4 22.6.3
@nx/js 22.5.4 22.6.3
@nx/workspace 22.5.4 22.6.3
@polkadot/api-base 16.5.4 16.5.6
@polkadot/rpc-core 16.5.4 16.5.6
@polkadot/rpc-provider 16.5.4 16.5.6
@swc/core 1.15.18 1.15.21
@typescript-eslint/eslint-plugin 8.57.1 8.58.0
@typescript-eslint/parser 8.57.1 8.58.0
eslint 10.0.3 10.1.0
nx 22.5.4 22.6.3
typedoc 0.28.17 0.28.18
typedoc-plugin-markdown 4.10.0 4.11.0

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

Package From To
ws 8.19.0 8.20.0
@typescript-eslint/eslint-plugin 8.57.1 8.58.0
@typescript-eslint/parser 8.57.1 8.58.0
eslint 10.0.3 10.1.0
ajv-formats 2.1.1 3.0.1
@noble/ed25519 3.0.0 3.0.1
viem 2.47.4 2.47.6
systeminformation 5.31.4 5.31.5

Bumps the typescript-dependencies group with 6 updates in the /tee-worker/omni-executor/ts-tests/integration-tests directory:

Package From To
ws 8.19.0 8.20.0
@typescript-eslint/eslint-plugin 8.57.1 8.58.0
@typescript-eslint/parser 8.57.1 8.58.0
eslint 10.0.3 10.1.0
ajv-formats 2.1.1 3.0.1
@noble/ed25519 3.0.0 3.0.1

Updates @polkadot/api from 16.5.4 to 16.5.6

Release notes

Sourced from @​polkadot/api's releases.

v16.5.6

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)
Changelog

Sourced from @​polkadot/api's changelog.

16.5.6 Mar 23, 2026

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)

16.5.5 Dec 16, 2025

Changes:

  • Improve subscriptions for observable handling (#6236)
Commits
Maintainer changes

This version was pushed to npm by paritytech-ci, a new releaser for @​polkadot/api since your current version.


Updates @polkadot/util from 14.0.2 to 14.0.3

Release notes

Sourced from @​polkadot/util's releases.

v14.0.3

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Changelog

Sourced from @​polkadot/util's changelog.

14.0.3 Mar 23, 2026

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Commits

Updates @polkadot/util-crypto from 14.0.2 to 14.0.3

Release notes

Sourced from @​polkadot/util-crypto's releases.

v14.0.3

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Changelog

Sourced from @​polkadot/util-crypto's changelog.

14.0.3 Mar 23, 2026

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Commits

Updates read-excel-file from 6.0.3 to 8.0.2

Changelog

Sourced from read-excel-file's changelog.

8.0.0 / 11.03.2026

  • Renamed the default exported function to a named exported function readSheet.
    • Old: import readExcelFile from "read-excel-file/browser"
    • New: import { readSheet } from "read-excel-file/browser"
    • And same for other exports like "read-excel-file/node", etc.
  • The default exported function now returns all sheets in a form of an array of objects: [{ name: "Sheet 1", rows: [['a','b','c'],['d','e','f']] }, ...].
  • Removed getSheets: true parameter. The default exported function now returns all sheets.
  • Removed exported readSheetNames() function. The default exported function now returns all sheets.
  • Removed schema parameter. Instead, use exported function parseData(data, schema) to map data to an array of objects.
    • Old: import readExcelFile from "read-excel-file" and then const { rows, errors } = await readExcelFile(..., { schema })
    • New: import { readSheet, parseData } from "read-excel-file/browser" and then const result = parseData(await readSheet(...), schema)
      • The result of the function is an array where each element represents a "data row" and has shape { object, errors }.
        • Depending on whether there were any errors when parsing a given "data row", either object or errors property will be undefined.
        • The errors don't have a row property anymore because it could be derived from "data row" number.
  • Removed transformData parameter because schema parameter was removed. A developer could transform the data themself and then pass it to parseData() function.
  • Removed isColumnOriented parameter.
  • Removed ignoreEmptyRows parameter. Empty rows somewhere in the middle are not ignored now.
  • Renamed some options that're used when parsing using a schema:
    • schemaPropertyValueForMissingColumnpropertyValueWhenColumnIsMissing
    • schemaPropertyValueForMissingValuepropertyValueWhenCellIsEmpty
    • schemaPropertyShouldSkipRequiredValidationForMissingColumn → (removed)
    • getEmptyObjectValue → transformEmptyObject
      • The leading . character is now removed from the path parameter.
    • getEmptyArrayValue → transformEmptyArray
      • The leading . character is now removed from the path parameter.
  • Previously, when parsing comma-separated values, it used to ignore any commas that're surrounded by quotes, similar to how it's done in .csv files. Now it no longer does that.
  • Previously, when parsing using a schema, it used to force-convert all type: Date schema properties from any numeric cell value to a Date with a given timestamp. Now it demands the cell values for all such type: Date schema properties to already be correctly recognized as Dates when they're returned from readSheet() or readExcelFile() function. And I'd personally assume that in any sane (non-contrived) real-world usage scenario that would be the case, so it doesn't really seem like a "breaking change". And if, for some strange reason, that happens not to be the case, parseData() function will throw an error: not_a_date.
  • Previously, when parsing using a schema, it used to skip required validation for completely-empty rows. It no longer does that.
  • Removed exported function parseExcelDate() because there seems to be no need to have it exported.
  • (TypeScript) Renamed exported types:
    • TypeParseDataValueType
    • Error or SchemaParseCellValueErrorParseDataError
    • CellValueRequiredErrorParseDataValueRequiredError
    • ParsedObjectsResultParseDataResult

7.0.1 / 04.03.2026

  • Fixed CellValue TypeScript type (it didn't include null value).

  • (TypeScript minor breaking change) Renamed exported Error TypeScript interface to SchemaParseCellValueError, and removed CellValue generic from it.

7.0.0 / 23.02.2026

  • Refactored the code.
  • (breaking change) The minimum required Node.js version is now >= 18.
    • Nothing really changed in that regard, it's just that the minimum required Node.js version wasn't specified previously, and I just randomly assumed that now it's gonna be >= 18.

... (truncated)

Commits

Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates @polkadot/api from 16.5.4 to 16.5.6

Release notes

Sourced from @​polkadot/api's releases.

v16.5.6

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)
Changelog

Sourced from @​polkadot/api's changelog.

16.5.6 Mar 23, 2026

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)

16.5.5 Dec 16, 2025

Changes:

  • Improve subscriptions for observable handling (#6236)
Commits
Maintainer changes

This version was pushed to npm by paritytech-ci, a new releaser for @​polkadot/api since your current version.


Updates @polkadot/util from 14.0.2 to 14.0.3

Release notes

Sourced from @​polkadot/util's releases.

v14.0.3

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Changelog

Sourced from @​polkadot/util's changelog.

14.0.3 Mar 23, 2026

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Commits

Updates @polkadot/util-crypto from 14.0.2 to 14.0.3

Release notes

Sourced from @​polkadot/util-crypto's releases.

v14.0.3

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Changelog

Sourced from @​polkadot/util-crypto's changelog.

14.0.3 Mar 23, 2026

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Commits

Updates @types/node from 25.0.3 to 25.5.0

Commits

Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates @polkadot/api-augment from 16.5.4 to 16.5.6

Release notes

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

v16.5.6

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)
Changelog

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

16.5.6 Mar 23, 2026

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)

16.5.5 Dec 16, 2025

Changes:

  • Improve subscriptions for observable handling (#6236)
Commits
Maintainer changes

This version was pushed to npm by paritytech-ci, a new releaser for @​polkadot/api-augment since your current version.


Updates @polkadot/keyring from 14.0.2 to 14.0.3

Release notes

Sourced from @​polkadot/keyring's releases.

v14.0.3

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Changelog

Sourced from @​polkadot/keyring's changelog.

14.0.3 Mar 23, 2026

Changes:

  • Fix(hw-ledger): reset transport on operation errors and add explicit disconnect API (#2024)
Commits

Updates @polkadot/types from 16.5.4 to 16.5.6

Release notes

Sourced from @​polkadot/types's releases.

v16.5.6

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)
Changelog

Sourced from @​polkadot/types's changelog.

16.5.6 Mar 23, 2026

Changes:

  • Bump common to 14.0.3 (#6250)
  • Set headers to 2026 (#6249)

16.5.5 Dec 16, 2025

Changes:

  • Improve subscriptions for observable handling (#6236)
Commits
Maintainer changes

This version was pushed to npm by paritytech-ci, a new releaser for @​polkadot/types since your current version.


Updates @vitest/ui from 4.1.0 to 4.1.2

Release notes

Sourced from @​vitest/ui's releases.

v4.1.2

This release bumps Vitest's flatted version and removes version pinning to resolve flatted's CVE related issues (vitest-dev/vitest#9975).

   🐞 Bug Fixes

    View changes on GitHub

v4.1.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates vitest from 4.1.0 to 4.1.2

Release notes

Sourced from vitest's releases.

v4.1.2

This release bumps Vitest's flatted version and removes version pinning to resolve flatted's CVE related issues (vitest-dev/vitest#9975).

   🐞 Bug Fixes

    View changes on GitHub

v4.1.1

   🚀 Features

   🐞 Bug Fixes

…ies with 31 updates

Bumps the typescript-dependencies group with 5 updates in the /parachain/scripts/ts-utils directory:

| Package | From | To |
| --- | --- | --- |
| [@polkadot/api](https://github.com/polkadot-js/api/tree/HEAD/packages/api) | `16.5.4` | `16.5.6` |
| [@polkadot/util](https://github.com/polkadot-js/common/tree/HEAD/packages/util) | `14.0.2` | `14.0.3` |
| [@polkadot/util-crypto](https://github.com/polkadot-js/common/tree/HEAD/packages/util-crypto) | `14.0.2` | `14.0.3` |
| [read-excel-file](https://gitlab.com/catamphetamine/read-excel-file) | `6.0.3` | `8.0.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |

Bumps the typescript-dependencies group with 10 updates in the /parachain/ts-tests directory:

| Package | From | To |
| --- | --- | --- |
| [@polkadot/api](https://github.com/polkadot-js/api/tree/HEAD/packages/api) | `16.5.4` | `16.5.6` |
| [@polkadot/util](https://github.com/polkadot-js/common/tree/HEAD/packages/util) | `14.0.2` | `14.0.3` |
| [@polkadot/util-crypto](https://github.com/polkadot-js/common/tree/HEAD/packages/util-crypto) | `14.0.2` | `14.0.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.3` | `25.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [@polkadot/api-augment](https://github.com/polkadot-js/api/tree/HEAD/packages/api-augment) | `16.5.4` | `16.5.6` |
| [@polkadot/keyring](https://github.com/polkadot-js/common/tree/HEAD/packages/keyring) | `14.0.2` | `14.0.3` |
| [@polkadot/types](https://github.com/polkadot-js/api/tree/HEAD/packages/types) | `16.5.4` | `16.5.6` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.1.0` | `4.1.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.0` | `4.1.2` |

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

| Package | From | To |
| --- | --- | --- |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [@polkadot/keyring](https://github.com/polkadot-js/common/tree/HEAD/packages/keyring) | `14.0.2` | `14.0.3` |
| [ws](https://github.com/websockets/ws) | `8.19.0` | `8.20.0` |
| [@nx/devkit](https://github.com/nrwl/nx/tree/HEAD/packages/devkit) | `22.5.4` | `22.6.3` |
| [@nx/eslint-plugin](https://github.com/nrwl/nx/tree/HEAD/packages/eslint-plugin) | `22.5.4` | `22.6.3` |
| [@nx/jest](https://github.com/nrwl/nx/tree/HEAD/packages/jest) | `22.5.4` | `22.6.3` |
| [@nx/js](https://github.com/nrwl/nx/tree/HEAD/packages/js) | `22.5.4` | `22.6.3` |
| [@nx/workspace](https://github.com/nrwl/nx/tree/HEAD/packages/workspace) | `22.5.4` | `22.6.3` |
| [@polkadot/api-base](https://github.com/polkadot-js/api/tree/HEAD/packages/api-base) | `16.5.4` | `16.5.6` |
| [@polkadot/rpc-core](https://github.com/polkadot-js/api/tree/HEAD/packages/rpc-core) | `16.5.4` | `16.5.6` |
| [@polkadot/rpc-provider](https://github.com/polkadot-js/api/tree/HEAD/packages/rpc-provider) | `16.5.4` | `16.5.6` |
| [@swc/core](https://github.com/swc-project/swc/tree/HEAD/packages/core) | `1.15.18` | `1.15.21` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.57.1` | `8.58.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.57.1` | `8.58.0` |
| [eslint](https://github.com/eslint/eslint) | `10.0.3` | `10.1.0` |
| [nx](https://github.com/nrwl/nx/tree/HEAD/packages/nx) | `22.5.4` | `22.6.3` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.17` | `0.28.18` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.10.0` | `4.11.0` |

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

| Package | From | To |
| --- | --- | --- |
| [ws](https://github.com/websockets/ws) | `8.19.0` | `8.20.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.57.1` | `8.58.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.57.1` | `8.58.0` |
| [eslint](https://github.com/eslint/eslint) | `10.0.3` | `10.1.0` |
| [ajv-formats](https://github.com/ajv-validator/ajv-formats) | `2.1.1` | `3.0.1` |
| [@noble/ed25519](https://github.com/paulmillr/noble-ed25519) | `3.0.0` | `3.0.1` |
| [viem](https://github.com/wevm/viem) | `2.47.4` | `2.47.6` |
| [systeminformation](https://github.com/sebhildebrandt/systeminformation) | `5.31.4` | `5.31.5` |

Bumps the typescript-dependencies group with 6 updates in the /tee-worker/omni-executor/ts-tests/integration-tests directory:

| Package | From | To |
| --- | --- | --- |
| [ws](https://github.com/websockets/ws) | `8.19.0` | `8.20.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.57.1` | `8.58.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.57.1` | `8.58.0` |
| [eslint](https://github.com/eslint/eslint) | `10.0.3` | `10.1.0` |
| [ajv-formats](https://github.com/ajv-validator/ajv-formats) | `2.1.1` | `3.0.1` |
| [@noble/ed25519](https://github.com/paulmillr/noble-ed25519) | `3.0.0` | `3.0.1` |



Updates `@polkadot/api` from 16.5.4 to 16.5.6
- [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.6/packages/api)

Updates `@polkadot/util` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/util)

Updates `@polkadot/util-crypto` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/util-crypto)

Updates `read-excel-file` from 6.0.3 to 8.0.2
- [Changelog](https://gitlab.com/catamphetamine/read-excel-file/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/catamphetamine/read-excel-file/compare/v6.0.3...v8.0.2)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `@polkadot/api` from 16.5.4 to 16.5.6
- [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.6/packages/api)

Updates `@polkadot/util` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/util)

Updates `@polkadot/util-crypto` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/util-crypto)

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

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `@polkadot/api-augment` from 16.5.4 to 16.5.6
- [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.6/packages/api-augment)

Updates `@polkadot/keyring` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/keyring)

Updates `@polkadot/types` from 16.5.4 to 16.5.6
- [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.6/packages/types)

Updates `@vitest/ui` from 4.1.0 to 4.1.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.2/packages/ui)

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

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `@polkadot/keyring` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/keyring)

Updates `ws` from 8.19.0 to 8.20.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.19.0...8.20.0)

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

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

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

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

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

Updates `@polkadot/api-base` from 16.5.4 to 16.5.6
- [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.6/packages/api-base)

Updates `@polkadot/rpc-core` from 16.5.4 to 16.5.6
- [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.6/packages/rpc-core)

Updates `@polkadot/rpc-provider` from 16.5.4 to 16.5.6
- [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.6/packages/rpc-provider)

Updates `@swc/core` from 1.15.18 to 1.15.21
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](https://github.com/swc-project/swc/commits/v1.15.21/packages/core)

Updates `@typescript-eslint/eslint-plugin` from 8.57.1 to 8.58.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.58.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.57.1 to 8.58.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.58.0/packages/parser)

Updates `eslint` from 10.0.3 to 10.1.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.0.3...v10.1.0)

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

Updates `typedoc` from 0.28.17 to 0.28.18
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.17...v0.28.18)

Updates `typedoc-plugin-markdown` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.11.0/packages/typedoc-plugin-markdown)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `ws` from 8.19.0 to 8.20.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.19.0...8.20.0)

Updates `@typescript-eslint/eslint-plugin` from 8.57.1 to 8.58.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.58.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.57.1 to 8.58.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.58.0/packages/parser)

Updates `eslint` from 10.0.3 to 10.1.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.0.3...v10.1.0)

Updates `ajv-formats` from 2.1.1 to 3.0.1
- [Release notes](https://github.com/ajv-validator/ajv-formats/releases)
- [Commits](ajv-validator/ajv-formats@v2.1.1...v3.0.1)

Updates `@noble/ed25519` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/paulmillr/noble-ed25519/releases)
- [Commits](paulmillr/noble-ed25519@3.0.0...3.0.1)

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

Updates `systeminformation` from 5.31.4 to 5.31.5
- [Release notes](https://github.com/sebhildebrandt/systeminformation/releases)
- [Changelog](https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md)
- [Commits](sebhildebrandt/systeminformation@v5.31.4...v5.31.5)

Updates `ws` from 8.19.0 to 8.20.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.19.0...8.20.0)

Updates `@typescript-eslint/eslint-plugin` from 8.57.1 to 8.58.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.58.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.57.1 to 8.58.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.58.0/packages/parser)

Updates `eslint` from 10.0.3 to 10.1.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.0.3...v10.1.0)

Updates `ajv-formats` from 2.1.1 to 3.0.1
- [Release notes](https://github.com/ajv-validator/ajv-formats/releases)
- [Commits](ajv-validator/ajv-formats@v2.1.1...v3.0.1)

Updates `@noble/ed25519` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/paulmillr/noble-ed25519/releases)
- [Commits](paulmillr/noble-ed25519@3.0.0...3.0.1)

---
updated-dependencies:
- dependency-name: "@polkadot/api"
  dependency-version: 16.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/util"
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/util-crypto"
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: read-excel-file
  dependency-version: 8.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/api"
  dependency-version: 16.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/util"
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/util-crypto"
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/api-augment"
  dependency-version: 16.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/keyring"
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/types"
  dependency-version: 16.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: vitest
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/keyring"
  dependency-version: 14.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: ws
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@nx/devkit"
  dependency-version: 22.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@nx/eslint-plugin"
  dependency-version: 22.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@nx/jest"
  dependency-version: 22.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@nx/js"
  dependency-version: 22.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@nx/workspace"
  dependency-version: 22.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/api-base"
  dependency-version: 16.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/rpc-core"
  dependency-version: 16.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@polkadot/rpc-provider"
  dependency-version: 16.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.15.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: nx
  dependency-version: 22.6.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: typedoc
  dependency-version: 0.28.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: ws
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: ajv-formats
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: "@noble/ed25519"
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: viem
  dependency-version: 2.47.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: systeminformation
  dependency-version: 5.31.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
- dependency-name: ws
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript-dependencies
- dependency-name: ajv-formats
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: typescript-dependencies
- dependency-name: "@noble/ed25519"
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: typescript-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@vercel
Copy link
Copy Markdown

vercel bot commented Mar 30, 2026

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

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
heima-aa-demo-app Ignored Ignored Mar 30, 2026 10:02pm

Request Review

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.

0 participants