Skip to content

Comments

chore(deps): bump the npm_and_yarn group across 7 directories with 3 updates#1

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/packages/ipfs-cli/npm_and_yarn-bddfeb8d20
Open

chore(deps): bump the npm_and_yarn group across 7 directories with 3 updates#1
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/packages/ipfs-cli/npm_and_yarn-bddfeb8d20

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Sep 12, 2025

Bumps the npm_and_yarn group with 3 updates in the /packages/ipfs-cli directory: jsondiffpatch, parse-duration and nanoid.
Bumps the npm_and_yarn group with 1 update in the /packages/ipfs-http-server directory: parse-duration.
Bumps the npm_and_yarn group with 1 update in the /packages/ipfs-http-client directory: parse-duration.
Bumps the npm_and_yarn group with 1 update in the /packages/ipfs-grpc-server directory: nanoid.
Bumps the npm_and_yarn group with 2 updates in the /packages/ipfs-core directory: parse-duration and nanoid.
Bumps the npm_and_yarn group with 2 updates in the /packages/ipfs-core-utils directory: parse-duration and nanoid.
Bumps the npm_and_yarn group with 1 update in the /packages/interface-ipfs-core directory: nanoid.

Updates jsondiffpatch from 0.4.1 to 0.7.3

Release notes

Sourced from jsondiffpatch's releases.

v0.6.0

Breaking changes

  • This package is now pure ESM. For more info, please read Sindre Sorhus's FAQ (#350).
  • Supported Node versions are ^18.0.0 || >=20.0.0 (#350).
  • Requires ES6 support (#350).
  • There is no longer a default export. Import this package by using import * as jsondiffpatch from 'jsondiffpatch' or by importing individual methods (#350).
  • Formatters are no longer exported from the main entry-point and must be imported from subpaths (#350):
    • import * as annotatedFormatter from 'jsondiffpatch/formatters/annotated'
    • import * as baseFormatter from 'jsondiffpatch/formatters/base'
    • import * as consoleFormatter from 'jsondiffpatch/formatters/console'
    • import * as htmlFormatter from 'jsondiffpatch/formatters/html'
    • import * as jsonpatchFormatter from 'jsondiffpatch/formatters/jsonpatch'
  • Updated CSS imports (#350):
    • import 'jsondiffpatch/formatters/styles/html.css'
    • import 'jsondiffpatch/formatters/styles/annotated.css'
  • The main entry-point no longer includes text diffing by default. Either pass in the diff-match-patch library via the textDiff.diffMatchPatch option, or use the jsondiffpatch/with-text-diffs entry point that is included for convenience (#352).
  • Context.switchTo() has been removed (#345).
  • BaseFormatter.typeFormattterErrorFormatter() now throws an error instead of returning a string (#345).
  • The UMD browser bundle has been removed. If you were using a script tag to include jsondiffpatch in your project, you can now import it inside of your main script tag as show below. For a more complete example, see the Visual Diff example before and after this change.
<!doctype html>
<html>
  <head>
    <link
      rel="stylesheet"
      href="https://esm.sh/jsondiffpatch@0.6.0/lib/formatters/styles/html.css"
      type="text/css"
    />
    <link
      rel="stylesheet"
      href="https://esm.sh/jsondiffpatch@0.6.0/lib/formatters/styles/annotated.css"
      type="text/css"
    />
  </head>
  <body>
    <script type="module">
      import * as jsondiffpatch from 'https://esm.sh/jsondiffpatch@0.6.0';
      import * as annotatedFormatter from 'https://esm.sh/jsondiffpatch@0.6.0/formatters/annotated';
      import * as htmlFormatter from 'https://esm.sh/jsondiffpatch@0.6.0/formatters/html';
  ...
&lt;/script&gt;

</body>
</html>

Other changes

... (truncated)

Commits

Updates parse-duration from 1.1.2 to 2.1.4

Release notes

Sourced from parse-duration's releases.

v2.1.3

What's Changed

  • Better performance / memory #61
  • Safer RE #61
  • Customizable placeholders
  • Type declaraion for rewriting units #62

Full Changelog: jkroso/parse-duration@v2.1.2...v2.1.3

v2.1.2

What's Changed

  • Fixed type definitions
  • Added abbrs mo, mth, microsec, nanosec
  • Removed b abbr
  • Removed μ as greek mu in favor of &micro; left in default set

Full Changelog: jkroso/parse-duration@v2.1.1...v2.1.2

v2.0.0

  • Introduces locales
  • Moves units into parse.unit object #56
  • Abandons CJS format in favour of ESM
  • Adds locale-dependent group/decimal separator #35
Commits

Updates nanoid from 4.0.2 to 5.1.5

Release notes

Sourced from nanoid's releases.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.
Changelog

Sourced from nanoid's changelog.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.

5.0.5

  • Make browser’s version faster by increasing size a little (by Samuel Elgozi).

5.0.4

5.0.3

  • Fixed CLI docs (by Chris Schmich).

5.0.2

  • Fixed webcrypto import (by Divyansh Singh).

5.0.1

  • Fixed Node.js 18 support.

5.0

  • Moved Node.js version to Web Crypto API.
  • Removed async API since Web Crypto API has only sync version.
  • Removed Node.js 14 and 16 support.
Commits

Updates parse-duration from 1.1.2 to 2.1.4

Release notes

Sourced from parse-duration's releases.

v2.1.3

What's Changed

  • Better performance / memory #61
  • Safer RE #61
  • Customizable placeholders
  • Type declaraion for rewriting units #62

Full Changelog: jkroso/parse-duration@v2.1.2...v2.1.3

v2.1.2

What's Changed

  • Fixed type definitions
  • Added abbrs mo, mth, microsec, nanosec
  • Removed b abbr
  • Removed μ as greek mu in favor of &micro; left in default set

Full Changelog: jkroso/parse-duration@v2.1.1...v2.1.2

v2.0.0

  • Introduces locales
  • Moves units into parse.unit object #56
  • Abandons CJS format in favour of ESM
  • Adds locale-dependent group/decimal separator #35
Commits

Updates parse-duration from 1.1.2 to 2.1.4

Release notes

Sourced from parse-duration's releases.

v2.1.3

What's Changed

  • Better performance / memory #61
  • Safer RE #61
  • Customizable placeholders
  • Type declaraion for rewriting units #62

Full Changelog: jkroso/parse-duration@v2.1.2...v2.1.3

v2.1.2

What's Changed

  • Fixed type definitions
  • Added abbrs mo, mth, microsec, nanosec
  • Removed b abbr
  • Removed μ as greek mu in favor of &micro; left in default set

Full Changelog: jkroso/parse-duration@v2.1.1...v2.1.2

v2.0.0

  • Introduces locales
  • Moves units into parse.unit object #56
  • Abandons CJS format in favour of ESM
  • Adds locale-dependent group/decimal separator #35
Commits

Updates nanoid from 4.0.2 to 5.1.5

Release notes

Sourced from nanoid's releases.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.
Changelog

Sourced from nanoid's changelog.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.

5.0.5

  • Make browser’s version faster by increasing size a little (by Samuel Elgozi).

5.0.4

5.0.3

  • Fixed CLI docs (by Chris Schmich).

5.0.2

  • Fixed webcrypto import (by Divyansh Singh).

5.0.1

  • Fixed Node.js 18 support.

5.0

  • Moved Node.js version to Web Crypto API.
  • Removed async API since Web Crypto API has only sync version.
  • Removed Node.js 14 and 16 support.
Commits

Updates parse-duration from 1.1.2 to 2.1.4

Release notes

Sourced from parse-duration's releases.

v2.1.3

What's Changed

  • Better performance / memory #61
  • Safer RE #61
  • Customizable placeholders
  • Type declaraion for rewriting units #62

Full Changelog: jkroso/parse-duration@v2.1.2...v2.1.3

v2.1.2

What's Changed

  • Fixed type definitions
  • Added abbrs mo, mth, microsec, nanosec
  • Removed b abbr
  • Removed μ as greek mu in favor of &micro; left in default set

Full Changelog: jkroso/parse-duration@v2.1.1...v2.1.2

v2.0.0

  • Introduces locales
  • Moves units into parse.unit object #56
  • Abandons CJS format in favour of ESM
  • Adds locale-dependent group/decimal separator #35
Commits

Updates nanoid from 4.0.2 to 5.1.5

Release notes

Sourced from nanoid's releases.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.
Changelog

Sourced from nanoid's changelog.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.

5.0.5

  • Make browser’s version faster by increasing size a little (by Samuel Elgozi).

5.0.4

5.0.3

  • Fixed CLI docs (by Chris Schmich).

5.0.2

  • Fixed webcrypto import (by Divyansh Singh).

5.0.1

  • Fixed Node.js 18 support.

5.0

  • Moved Node.js version to Web Crypto API.
  • Removed async API since Web Crypto API has only sync version.
  • Removed Node.js 14 and 16 support.
Commits

Updates parse-duration from 1.1.2 to 2.1.4

Release notes

Sourced from parse-duration's releases.

v2.1.3

What's Changed

  • Better performance / memory #61
  • Safer RE #61
  • Customizable placeholders
  • Type declaraion for rewriting units #62

Full Changelog: jkroso/parse-duration@v2.1.2...v2.1.3

v2.1.2

What's Changed

  • Fixed type definitions
  • Added abbrs mo, mth, microsec, nanosec
  • Removed b abbr
  • Removed μ as greek mu in favor of &micro; left in default set

Full Changelog: jkroso/parse-duration@v2.1.1...v2.1.2

v2.0.0

  • Introduces locales
  • Moves units into parse.unit object #56
  • Abandons CJS format in favour of ESM
  • Adds locale-dependent group/decimal separator #35
Commits

Updates nanoid from 4.0.2 to 5.1.5

Release notes

Sourced from nanoid's releases.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.
Changelog

Sourced from nanoid's changelog.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.

5.0.5

  • Make browser’s version faster by increasing size a little (by Samuel Elgozi).

5.0.4

5.0.3

  • Fixed CLI docs (by Chris Schmich).

5.0.2

  • Fixed webcrypto import (by Divyansh Singh).

5.0.1

  • Fixed Node.js 18 support.

5.0

  • Moved Node.js version to Web Crypto API.
  • Removed async API since Web Crypto API has only sync version.
  • Removed Node.js 14 and 16 support.
Commits

Updates nanoid from 4.0.2 to 5.1.5

Release notes

Sourced from nanoid's releases.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.
Changelog

Sourced from nanoid's changelog.

5.1.5

  • Fixed latest version on npm after 3.x release.

5.1.4

  • Fixed latest version on npm after 3.x release.

5.1.3

5.1.2

  • Fixed module docs.

5.1.1

  • Fixed opaque types support for non-secure generator.
  • Added JSR support.

5.1.0

5.0.9

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).

5.0.8

5.0.7

5.0.6

  • Fixed React Native support.

5.0.5

  • Make browser’s version faster by increasing size a little (by Samuel Elgozi).

5.0.4

5.0.3

  • Fixed CLI docs (by Chris Schmich).

5.0.2

  • Fixed webcrypto import (by Divyansh Singh).

5.0.1

  • Fixed Node.js 18 support.

5.0

  • Moved Node.js version to Web Crypto API.
  • Removed async API since Web Crypto API has only sync version.
  • Removed Node.js 14 and 16 support.
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…updates

Bumps the npm_and_yarn group with 3 updates in the /packages/ipfs-cli directory: [jsondiffpatch](https://github.com/benjamine/jsondiffpatch), [parse-duration](https://github.com/jkroso/parse-duration) and [nanoid](https://github.com/ai/nanoid).
Bumps the npm_and_yarn group with 1 update in the /packages/ipfs-http-server directory: [parse-duration](https://github.com/jkroso/parse-duration).
Bumps the npm_and_yarn group with 1 update in the /packages/ipfs-http-client directory: [parse-duration](https://github.com/jkroso/parse-duration).
Bumps the npm_and_yarn group with 1 update in the /packages/ipfs-grpc-server directory: [nanoid](https://github.com/ai/nanoid).
Bumps the npm_and_yarn group with 2 updates in the /packages/ipfs-core directory: [parse-duration](https://github.com/jkroso/parse-duration) and [nanoid](https://github.com/ai/nanoid).
Bumps the npm_and_yarn group with 2 updates in the /packages/ipfs-core-utils directory: [parse-duration](https://github.com/jkroso/parse-duration) and [nanoid](https://github.com/ai/nanoid).
Bumps the npm_and_yarn group with 1 update in the /packages/interface-ipfs-core directory: [nanoid](https://github.com/ai/nanoid).


Updates `jsondiffpatch` from 0.4.1 to 0.7.3
- [Release notes](https://github.com/benjamine/jsondiffpatch/releases)
- [Commits](https://github.com/benjamine/jsondiffpatch/commits)

Updates `parse-duration` from 1.1.2 to 2.1.4
- [Release notes](https://github.com/jkroso/parse-duration/releases)
- [Commits](https://github.com/jkroso/parse-duration/commits)

Updates `nanoid` from 4.0.2 to 5.1.5
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@4.0.2...5.1.5)

Updates `parse-duration` from 1.1.2 to 2.1.4
- [Release notes](https://github.com/jkroso/parse-duration/releases)
- [Commits](https://github.com/jkroso/parse-duration/commits)

Updates `parse-duration` from 1.1.2 to 2.1.4
- [Release notes](https://github.com/jkroso/parse-duration/releases)
- [Commits](https://github.com/jkroso/parse-duration/commits)

Updates `nanoid` from 4.0.2 to 5.1.5
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@4.0.2...5.1.5)

Updates `parse-duration` from 1.1.2 to 2.1.4
- [Release notes](https://github.com/jkroso/parse-duration/releases)
- [Commits](https://github.com/jkroso/parse-duration/commits)

Updates `nanoid` from 4.0.2 to 5.1.5
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@4.0.2...5.1.5)

Updates `parse-duration` from 1.1.2 to 2.1.4
- [Release notes](https://github.com/jkroso/parse-duration/releases)
- [Commits](https://github.com/jkroso/parse-duration/commits)

Updates `nanoid` from 4.0.2 to 5.1.5
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@4.0.2...5.1.5)

Updates `nanoid` from 4.0.2 to 5.1.5
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@4.0.2...5.1.5)

---
updated-dependencies:
- dependency-name: jsondiffpatch
  dependency-version: 0.7.3
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: parse-duration
  dependency-version: 2.1.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: nanoid
  dependency-version: 5.1.5
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: parse-duration
  dependency-version: 2.1.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: parse-duration
  dependency-version: 2.1.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: nanoid
  dependency-version: 5.1.5
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: parse-duration
  dependency-version: 2.1.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: nanoid
  dependency-version: 5.1.5
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: parse-duration
  dependency-version: 2.1.4
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: nanoid
  dependency-version: 5.1.5
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: nanoid
  dependency-version: 5.1.5
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 12, 2025
@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

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.

0 participants