Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 26, 2025

Bumps the dependencies group with 16 updates:

Package From To
@dfinity/agent 2.1.3 3.2.2
@dfinity/candid 2.1.3 3.2.2
@dfinity/identity 2.1.3 3.2.2
@dfinity/ledger-icp 2.6.2 4.1.0
@dfinity/principal 2.1.3 3.2.2
@types/node 17.0.45 24.3.0
chai 4.3.6 6.0.1
chai-http 4.4.0 5.1.2
csv-parse 5.5.6 6.1.0
esbuild 0.14.43 0.25.9
ethers 5.7.2 6.15.0
mocha 9.2.2 11.7.1
ts-node 10.9.1 10.9.2
tsconfig-paths 4.0.0 4.2.0
typescript 4.7.4 5.9.2
sharp 0.33.5 0.34.3

Updates @dfinity/agent from 2.1.3 to 3.2.2

Release notes

Sourced from @​dfinity/agent's releases.

v3.2.2

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.1...v3.2.2

v3.2.1

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.0...v3.2.1

v3.2.0

What's Changed

Full Changelog: dfinity/icp-js-core@v3.1.0...v3.2.0

v3.1.0

What's Changed

... (truncated)

Changelog

Sourced from @​dfinity/agent's changelog.

[3.2.2] - 2025-08-21

  • fix: add bigint to the JsonValue types in @dfinity/candid.

[3.2.1] - 2025-08-12

  • fix: export the GenericIdlFuncArgs, GenericIdlFuncRets, and GenericIdlServiceFields types from @dfinity/candid.

[3.2.0] - 2025-08-07

  • fix: do not subtract the replica permitted clock drift when calculating the ingress expiry.
  • fix: pick the expiry rounding strategy based on the delta, without adding the clock drift to the delta.
  • feat: adds a clockDriftMs optional parameter to Expiry.fromDeltaInMilliseconds to add to the current time, typically used to specify the clock drift between the IC network clock and the client's clock.
  • fix: add declaration maps and typescript source code to published packages.
  • feat: enables type inference for the arguments and return types of FuncClass.
  • feat: enables type inference for the fields of ServiceClass.
  • fix: perform the canister range checks unconditionally for delegations when constructing a Certificate instance.
  • fix: account for clock drift when verifying the certificate freshness, and syncs time with the IC network if the certificate fails the freshness check and the agent's time is not already synced.
  • feat: adds the agent optional field to the CreateCertificateOptions interface, which is used to sync time with the IC network if the certificate fails the freshness check, if provided.
  • feat: adds the getTimeDiffMsecs method to the HttpAgent class, which returns the time difference in milliseconds between the IC network clock and the client's clock.
  • feat: adds the hasSyncedTime method to the HttpAgent class, which returns true if the time has been synced at least once with the IC network, false otherwise.
  • fix: use the effective canister id to delete the node keys from the local cache.
  • docs: add DFINITY Starlight theme to the docs
  • feat: adds the disableCertificateTimeVerification optional field to the CanisterStatus.request function argument, which allows you to control the disableTimeVerification option for the internal Certificate.create call.
  • fix: avoid bigint overflow when decoding the time from the certificate.
  • fix: enable certificate freshness checks for delegation certificates.
  • feat: adds the UncertifiedRejectUpdateErrorCode error code.
  • fix: changes error code to UncertifiedRejectUpdateErrorCode when throwing an error in v2 responses.
  • fix: avoid syncing time indefinitely in case of an ingress expiry error.
  • fix: throw an error with code UncertifiedRejectUpdateErrorCode if the reply from the update call was returned undefined and the method has no return type.

[3.1.0] - 2025-07-24

  • feat: export the getCrc32 function from @dfinity/principal

[3.0.2] - 2025-07-23

  • fix: canonicalizes record and variant labels during subtype checking

[3.0.1] - 2025-07-22

  • fix: override instanceof in Candid IDL types to avoid issues when importing IDL from multiple locations.

[3.0.0] - 2025-07-17

[3.0.0-beta.4] - 2025-07-17

Changed

  • chore: replaces ts-node with pnpm dlx tsx for version management scripts

... (truncated)

Commits
  • 451977b chore: release 3.2.2 (#1114)
  • fe633fe docs: update links to js.icp.build (#1112)
  • 8ccdda9 chore: release 3.2.1 (#1100)
  • 55dff19 chore: release 3.2.0 (#1097)
  • e3e6500 fix: error handling of call responses (#1092)
  • a47a7f4 fix: enable certificate freshness checks for delegation certificates (#1094)
  • 4d3e2ff fix: avoid bigint overflow when decoding the time from the certificate (#1093)
  • aa1dea6 fix: enable certificate freshness check in canister status request (#1082)
  • b4fd8d1 fix: use effective canister id to delete the node keys from the local map (#1...
  • 84a6116 fix: account for clock drift in certificate freshness check (#1081)
  • Additional commits viewable in compare view

Updates @dfinity/candid from 2.1.3 to 3.2.2

Release notes

Sourced from @​dfinity/candid's releases.

v3.2.2

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.1...v3.2.2

v3.2.1

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.0...v3.2.1

v3.2.0

What's Changed

Full Changelog: dfinity/icp-js-core@v3.1.0...v3.2.0

v3.1.0

What's Changed

... (truncated)

Changelog

Sourced from @​dfinity/candid's changelog.

[3.2.2] - 2025-08-21

  • fix: add bigint to the JsonValue types in @dfinity/candid.

[3.2.1] - 2025-08-12

  • fix: export the GenericIdlFuncArgs, GenericIdlFuncRets, and GenericIdlServiceFields types from @dfinity/candid.

[3.2.0] - 2025-08-07

  • fix: do not subtract the replica permitted clock drift when calculating the ingress expiry.
  • fix: pick the expiry rounding strategy based on the delta, without adding the clock drift to the delta.
  • feat: adds a clockDriftMs optional parameter to Expiry.fromDeltaInMilliseconds to add to the current time, typically used to specify the clock drift between the IC network clock and the client's clock.
  • fix: add declaration maps and typescript source code to published packages.
  • feat: enables type inference for the arguments and return types of FuncClass.
  • feat: enables type inference for the fields of ServiceClass.
  • fix: perform the canister range checks unconditionally for delegations when constructing a Certificate instance.
  • fix: account for clock drift when verifying the certificate freshness, and syncs time with the IC network if the certificate fails the freshness check and the agent's time is not already synced.
  • feat: adds the agent optional field to the CreateCertificateOptions interface, which is used to sync time with the IC network if the certificate fails the freshness check, if provided.
  • feat: adds the getTimeDiffMsecs method to the HttpAgent class, which returns the time difference in milliseconds between the IC network clock and the client's clock.
  • feat: adds the hasSyncedTime method to the HttpAgent class, which returns true if the time has been synced at least once with the IC network, false otherwise.
  • fix: use the effective canister id to delete the node keys from the local cache.
  • docs: add DFINITY Starlight theme to the docs
  • feat: adds the disableCertificateTimeVerification optional field to the CanisterStatus.request function argument, which allows you to control the disableTimeVerification option for the internal Certificate.create call.
  • fix: avoid bigint overflow when decoding the time from the certificate.
  • fix: enable certificate freshness checks for delegation certificates.
  • feat: adds the UncertifiedRejectUpdateErrorCode error code.
  • fix: changes error code to UncertifiedRejectUpdateErrorCode when throwing an error in v2 responses.
  • fix: avoid syncing time indefinitely in case of an ingress expiry error.
  • fix: throw an error with code UncertifiedRejectUpdateErrorCode if the reply from the update call was returned undefined and the method has no return type.

[3.1.0] - 2025-07-24

  • feat: export the getCrc32 function from @dfinity/principal

[3.0.2] - 2025-07-23

  • fix: canonicalizes record and variant labels during subtype checking

[3.0.1] - 2025-07-22

  • fix: override instanceof in Candid IDL types to avoid issues when importing IDL from multiple locations.

[3.0.0] - 2025-07-17

[3.0.0-beta.4] - 2025-07-17

Changed

  • chore: replaces ts-node with pnpm dlx tsx for version management scripts

... (truncated)

Commits

Updates @dfinity/identity from 2.1.3 to 3.2.2

Release notes

Sourced from @​dfinity/identity's releases.

v3.2.2

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.1...v3.2.2

v3.2.1

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.0...v3.2.1

v3.2.0

What's Changed

Full Changelog: dfinity/icp-js-core@v3.1.0...v3.2.0

v3.1.0

What's Changed

... (truncated)

Changelog

Sourced from @​dfinity/identity's changelog.

[3.2.2] - 2025-08-21

  • fix: add bigint to the JsonValue types in @dfinity/candid.

[3.2.1] - 2025-08-12

  • fix: export the GenericIdlFuncArgs, GenericIdlFuncRets, and GenericIdlServiceFields types from @dfinity/candid.

[3.2.0] - 2025-08-07

  • fix: do not subtract the replica permitted clock drift when calculating the ingress expiry.
  • fix: pick the expiry rounding strategy based on the delta, without adding the clock drift to the delta.
  • feat: adds a clockDriftMs optional parameter to Expiry.fromDeltaInMilliseconds to add to the current time, typically used to specify the clock drift between the IC network clock and the client's clock.
  • fix: add declaration maps and typescript source code to published packages.
  • feat: enables type inference for the arguments and return types of FuncClass.
  • feat: enables type inference for the fields of ServiceClass.
  • fix: perform the canister range checks unconditionally for delegations when constructing a Certificate instance.
  • fix: account for clock drift when verifying the certificate freshness, and syncs time with the IC network if the certificate fails the freshness check and the agent's time is not already synced.
  • feat: adds the agent optional field to the CreateCertificateOptions interface, which is used to sync time with the IC network if the certificate fails the freshness check, if provided.
  • feat: adds the getTimeDiffMsecs method to the HttpAgent class, which returns the time difference in milliseconds between the IC network clock and the client's clock.
  • feat: adds the hasSyncedTime method to the HttpAgent class, which returns true if the time has been synced at least once with the IC network, false otherwise.
  • fix: use the effective canister id to delete the node keys from the local cache.
  • docs: add DFINITY Starlight theme to the docs
  • feat: adds the disableCertificateTimeVerification optional field to the CanisterStatus.request function argument, which allows you to control the disableTimeVerification option for the internal Certificate.create call.
  • fix: avoid bigint overflow when decoding the time from the certificate.
  • fix: enable certificate freshness checks for delegation certificates.
  • feat: adds the UncertifiedRejectUpdateErrorCode error code.
  • fix: changes error code to UncertifiedRejectUpdateErrorCode when throwing an error in v2 responses.
  • fix: avoid syncing time indefinitely in case of an ingress expiry error.
  • fix: throw an error with code UncertifiedRejectUpdateErrorCode if the reply from the update call was returned undefined and the method has no return type.

[3.1.0] - 2025-07-24

  • feat: export the getCrc32 function from @dfinity/principal

[3.0.2] - 2025-07-23

  • fix: canonicalizes record and variant labels during subtype checking

[3.0.1] - 2025-07-22

  • fix: override instanceof in Candid IDL types to avoid issues when importing IDL from multiple locations.

[3.0.0] - 2025-07-17

[3.0.0-beta.4] - 2025-07-17

Changed

  • chore: replaces ts-node with pnpm dlx tsx for version management scripts

... (truncated)

Commits

Updates @dfinity/ledger-icp from 2.6.2 to 4.1.0

Changelog

Sourced from @​dfinity/ledger-icp's changelog.

v73

Overview

Library Version Status
@dfinity/ckbtc v4.0.0 Enhanced 🔧️
@dfinity/cketh v4.0.0 Enhanced 🔧️
@dfinity/cmc v6.0.0 Enhanced 🔧️
@dfinity/ic-management v7.0.0 Enhanced 🔧️
@dfinity/ledger-icp v5.0.0 Enhanced 🔧️
@dfinity/ledger-icrc v3.0.0 Enhanced 🔧️
@dfinity/nns v10.0.0 Enhanced 🔧️
@dfinity/nns-proto v2.0.2 Unchanged️
@dfinity/sns v4.0.0 Enhanced 🔧️
@dfinity/utils v3.0.0 Enhanced 🔧️
@dfinity/zod-schemas v2.1.0 Enhanced 🔧️️

Build

  • Migrate to AgentJS v3. For upgrade guidelines, check out its release notes.
  • Accept any version of @dfinity/principal for zod-schemas.

[!NOTE]
The libraries are published using major versioning to highlight the update to this important peer dependency.
However, there are no other changes in this release, so no functional changes should be expected.

v72

Overview

Library Version Status
@dfinity/ckbtc v3.2.0 Enhanced 🔧️
@dfinity/cketh v3.4.12 Maintained ⚙️
@dfinity/cmc v5.0.8 Maintained ⚙️
@dfinity/ic-management v6.2.2 Maintained ⚙️
@dfinity/ledger-icp v4.1.0 Enhanced 🔧️
@dfinity/ledger-icrc v2.10.0 Enhanced 🔧️
@dfinity/nns v9.1.0 Enhanced 🔧️
@dfinity/nns-proto v2.0.2 Unchanged️
@dfinity/sns v3.8.0 Enhanced 🔧️
@dfinity/utils v2.14.0 Enhanced 🔧️
@dfinity/zod-schemas v2.0.0 Unchanged️

Features

  • New utility uint8ArraysEqual to compare two Uint8Arrays for byte-level equality.
  • Replace usage of Buffer with Uint8Array in checkAccountId of @dfinity/ledger-icp.
  • Expose the icrc1_supported_standards and icrc10_supported_standards methods in the IcrcLedgerCanister class.

... (truncated)

Commits

Updates @dfinity/principal from 2.1.3 to 3.2.2

Release notes

Sourced from @​dfinity/principal's releases.

v3.2.2

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.1...v3.2.2

v3.2.1

What's Changed

Full Changelog: dfinity/icp-js-core@v3.2.0...v3.2.1

v3.2.0

What's Changed

Full Changelog: dfinity/icp-js-core@v3.1.0...v3.2.0

v3.1.0

What's Changed

... (truncated)

Changelog

Sourced from @​dfinity/principal's changelog.

[3.2.2] - 2025-08-21

  • fix: add bigint to the JsonValue types in @dfinity/candid.

[3.2.1] - 2025-08-12

  • fix: export the GenericIdlFuncArgs, GenericIdlFuncRets, and GenericIdlServiceFields types from @dfinity/candid.

[3.2.0] - 2025-08-07

  • fix: do not subtract the replica permitted clock drift when calculating the ingress expiry.
  • fix: pick the expiry rounding strategy based on the delta, without adding the clock drift to the delta.
  • feat: adds a clockDriftMs optional parameter to Expiry.fromDeltaInMilliseconds to add to the current time, typically used to specify the clock drift between the IC network clock and the client's clock.
  • fix: add declaration maps and typescript source code to published packages.
  • feat: enables type inference for the arguments and return types of FuncClass.
  • feat: enables type inference for the fields of ServiceClass.
  • fix: perform the canister range checks unconditionally for delegations when constructing a Certificate instance.
  • fix: account for clock drift when verifying the certificate freshness, and syncs time with the IC network if the certificate fails the freshness check and the agent's time is not already synced.
  • feat: adds the agent optional field to the CreateCertificateOptions interface, which is used to sync time with the IC network if the certificate fails the freshness check, if provided.
  • feat: adds the getTimeDiffMsecs method to the HttpAgent class, which returns the time difference in milliseconds between the IC network clock and the client's clock.
  • feat: adds the hasSyncedTime method to the HttpAgent class, which returns true if the time has been synced at least once with the IC network, false otherwise.
  • fix: use the effective canister id to delete the node keys from the local cache.
  • docs: add DFINITY Starlight theme to the docs
  • feat: adds the disableCertificateTimeVerification optional field to the CanisterStatus.request function argument, which allows you to control the disableTimeVerification option for the internal Certificate.create call.
  • fix: avoid bigint overflow when decoding the time from the certificate.
  • fix: enable certificate freshness checks for delegation certificates.
  • feat: adds the UncertifiedRejectUpdateErrorCode error code.
  • fix: changes error code to UncertifiedRejectUpdateErrorCode when throwing an error in v2 responses.
  • fix: avoid syncing time indefinitely in case of an ingress expiry error.
  • fix: throw an error with code UncertifiedRejectUpdateErrorCode if the reply from the update call was returned undefined and the method has no return type.

[3.1.0] - 2025-07-24

  • feat: export the getCrc32 function from @dfinity/principal

[3.0.2] - 2025-07-23

  • fix: canonicalizes record and variant labels during subtype checking

[3.0.1] - 2025-07-22

  • fix: override instanceof in Candid IDL types to avoid issues when importing IDL from multiple locations.

[3.0.0] - 2025-07-17

[3.0.0-beta.4] - 2025-07-17

Changed

  • chore: replaces ts-node with pnpm dlx tsx for version management scripts

... (truncated)

Commits

Updates @types/node from 17.0.45 to 24.3.0

Commits

Updates chai from 4.3.6 to 6.0.1

Release notes

Sourced from chai's releases.

v6.0.1

What's Changed

Full Changelog: chaijs/chai@v6.0.0...v6.0.1

v6.0.0

BREAKING CHANGES

Chai is now bundled into a single file. The lib/*.js files are no longer present, and so any code that imports those files directly will need to change. The only file that can be imported now is ./index.js.

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v6.0.0

v5.3.3

What's Changed

Full Changelog: chaijs/chai@v5.3.2...v5.3.3

v5.3.2

Reverts the removal of the bundled version of chai in 5.3.1

What's Changed

Full Changelog: chaijs/chai@v5.3.1...v5.3.2

v5.3.1

What's Changed

Full Changelog: chaijs/chai@v5.3.0...v5.3.1

v5.3.0

What's Changed

Full Changelog: chaijs/chai@v5.2.2...v5.3.0

... (truncated)

Commits

@dependabot dependabot bot requested a review from olsemeno as a code owner August 26, 2025 03:15
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 26, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 26, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/main/dependencies-0a1c378f6f branch 3 times, most recently from dc36c86 to 892385e Compare September 4, 2025 01:33
Bumps the dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@dfinity/agent](https://github.com/dfinity/agent-js/tree/HEAD/packages/agent) | `2.1.3` | `3.2.2` |
| [@dfinity/candid](https://github.com/dfinity/agent-js/tree/HEAD/packages/candid) | `2.1.3` | `3.2.2` |
| [@dfinity/identity](https://github.com/dfinity/agent-js/tree/HEAD/packages/identity) | `2.1.3` | `3.2.2` |
| [@dfinity/ledger-icp](https://github.com/dfinity/ic-js/tree/HEAD/packages/ledger-icp) | `2.6.2` | `4.1.0` |
| [@dfinity/principal](https://github.com/dfinity/agent-js/tree/HEAD/packages/principal) | `2.1.3` | `3.2.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `17.0.45` | `24.3.0` |
| [chai](https://github.com/chaijs/chai) | `4.3.6` | `6.0.1` |
| [chai-http](https://github.com/chaijs/chai-http) | `4.4.0` | `5.1.2` |
| [csv-parse](https://github.com/adaltas/node-csv/tree/HEAD/packages/csv-parse) | `5.5.6` | `6.1.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.14.43` | `0.25.9` |
| [ethers](https://github.com/ethers-io/ethers.js) | `5.7.2` | `6.15.0` |
| [mocha](https://github.com/mochajs/mocha) | `9.2.2` | `11.7.1` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.9.1` | `10.9.2` |
| [tsconfig-paths](https://github.com/dividab/tsconfig-paths) | `4.0.0` | `4.2.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.7.4` | `5.9.2` |
| [sharp](https://github.com/lovell/sharp) | `0.33.5` | `0.34.3` |


Updates `@dfinity/agent` from 2.1.3 to 3.2.2
- [Release notes](https://github.com/dfinity/agent-js/releases)
- [Changelog](https://github.com/dfinity/agent-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dfinity/agent-js/commits/v3.2.2/packages/agent)

Updates `@dfinity/candid` from 2.1.3 to 3.2.2
- [Release notes](https://github.com/dfinity/agent-js/releases)
- [Changelog](https://github.com/dfinity/agent-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dfinity/agent-js/commits/v3.2.2/packages/candid)

Updates `@dfinity/identity` from 2.1.3 to 3.2.2
- [Release notes](https://github.com/dfinity/agent-js/releases)
- [Changelog](https://github.com/dfinity/agent-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dfinity/agent-js/commits/v3.2.2/packages/identity)

Updates `@dfinity/ledger-icp` from 2.6.2 to 4.1.0
- [Release notes](https://github.com/dfinity/ic-js/releases)
- [Changelog](https://github.com/dfinity/ic-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dfinity/ic-js/commits/HEAD/packages/ledger-icp)

Updates `@dfinity/principal` from 2.1.3 to 3.2.2
- [Release notes](https://github.com/dfinity/agent-js/releases)
- [Changelog](https://github.com/dfinity/agent-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dfinity/agent-js/commits/v3.2.2/packages/principal)

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

Updates `chai` from 4.3.6 to 6.0.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v4.3.6...v6.0.1)

Updates `chai-http` from 4.4.0 to 5.1.2
- [Release notes](https://github.com/chaijs/chai-http/releases)
- [Changelog](https://github.com/chaijs/chai-http/blob/main/History.md)
- [Commits](chaijs/chai-http@4.4.0...5.1.2)

Updates `csv-parse` from 5.5.6 to 6.1.0
- [Changelog](https://github.com/adaltas/node-csv/blob/master/packages/csv-parse/CHANGELOG.md)
- [Commits](https://github.com/adaltas/node-csv/commits/csv-parse@6.1.0/packages/csv-parse)

Updates `esbuild` from 0.14.43 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2022.md)
- [Commits](evanw/esbuild@v0.14.43...v0.25.9)

Updates `ethers` from 5.7.2 to 6.15.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@v5.7.2...v6.15.0)

Updates `mocha` from 9.2.2 to 11.7.1
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.2.2...v11.7.1)

Updates `ts-node` from 10.9.1 to 10.9.2
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md)
- [Commits](TypeStrong/ts-node@v10.9.1...v10.9.2)

Updates `tsconfig-paths` from 4.0.0 to 4.2.0
- [Changelog](https://github.com/jonaskello/tsconfig-paths/blob/master/CHANGELOG.md)
- [Commits](jonaskello/tsconfig-paths@v4.0.0...v4.2.0)

Updates `typescript` from 4.7.4 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v4.7.4...v5.9.2)

Updates `sharp` from 0.33.5 to 0.34.3
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](lovell/sharp@v0.33.5...v0.34.3)

---
updated-dependencies:
- dependency-name: "@dfinity/agent"
  dependency-version: 3.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@dfinity/candid"
  dependency-version: 3.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@dfinity/identity"
  dependency-version: 3.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@dfinity/ledger-icp"
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@dfinity/principal"
  dependency-version: 3.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 24.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: chai
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: chai-http
  dependency-version: 5.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: csv-parse
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ethers
  dependency-version: 6.15.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: mocha
  dependency-version: 11.7.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: ts-node
  dependency-version: 10.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsconfig-paths
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: sharp
  dependency-version: 0.34.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/main/dependencies-0a1c378f6f branch from 892385e to dc00c67 Compare September 4, 2025 10:15
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.

3 participants