Skip to content

chore(deps): bump the example-dependencies group across 7 directories with 10 updates#588

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/examples/components/bundled-esbuild/example-dependencies-30768f7fed
Open

chore(deps): bump the example-dependencies group across 7 directories with 10 updates#588
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/examples/components/bundled-esbuild/example-dependencies-30768f7fed

Conversation

@dependabot
Copy link
Contributor

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

Bumps the example-dependencies group with 4 updates in the /examples/components/bundled-esbuild directory: fast-xml-parser, @bytecodealliance/jco, @types/node and esbuild.
Bumps the example-dependencies group with 3 updates in the /examples/components/bundled-rsbuild directory: @bytecodealliance/jco, @types/node and @rslib/core.
Bumps the example-dependencies group with 5 updates in the /examples/components/http-axios directory:

Package From To
@bytecodealliance/jco 1.17.0 1.17.3
@types/node 24.10.13 24.12.0
axios 1.13.5 1.13.6
@rollup/plugin-commonjs 29.0.0 29.0.2
rollup 4.59.0 4.60.0

Bumps the example-dependencies group with 2 updates in the /examples/components/http-hello-world directory: @bytecodealliance/jco and @types/node.
Bumps the example-dependencies group with 4 updates in the /examples/components/http-password-checker directory: @bytecodealliance/jco, @types/node, rollup and valibot.
Bumps the example-dependencies group with 4 updates in the /examples/components/http-server-with-hono directory: @bytecodealliance/jco, @types/node, rollup and hono.
Bumps the example-dependencies group with 2 updates in the /examples/components/http-streaming directory: @bytecodealliance/jco and @types/node.

Updates fast-xml-parser from 5.5.7 to 5.5.8

Changelog

Sourced from fast-xml-parser's changelog.

Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.

Note: Due to some last quick changes on v4, detail of v4.5.3 & v4.5.4 are not updated here. v4.5.4x is the last tag of v4 in github repository. I'm extremely sorry for the confusion

4.5.5 / 2026-03-22

apply fixes from v5 (legacy maintenance branch v4-maintenance)

  • support maxEntityCount
  • support onDangerousProperty
  • support maxNestedTags
  • handle prototype pollution
  • fix incorrect entity name replacement
  • fix incorrect condition for entity expansion

5.5.8 / 2026-03-20

  • pass read only matcher in callback

5.5.7 / 2026-03-19

  • fix: entity expansion limits
  • update strnum package to 2.2.0

5.5.6 / 2026-03-16

  • update builder dependency
  • fix incorrect regex to replace . in entity name
  • fix check for entitiy expansion for lastEntities and html entities too

5.5.5 / 2026-03-13

  • sanitize dangerous tag or attribute name
  • error on critical property name
  • support onDangerousProperty option

5.5.4 / 2026-03-13

  • declare Matcher & Expression as unknown so user is not forced to install path-expression-matcher

5.5.3 / 2026-03-11

  • upgrade builder

5.5.2 / 2026-03-11

  • update dependency to fix typings

5.5.1 / 2026-03-10

  • fix dependency

5.5.0 / 2026-03-10

  • support path-expression-matcher
  • fix: stopNode should not be parsed
  • performance improvement for stopNode checking

... (truncated)

Commits

Updates @bytecodealliance/jco from 1.17.0 to 1.17.3

Release notes

Sourced from @​bytecodealliance/jco's releases.

jco-v1.17.3

Changelog

[1.17.3] - 2026-03-19

🧪 Testing

jco-v1.17.2

Changelog

[1.17.2] - 2026-03-18

🧪 Testing

jco-v1.17.1

Changelog

[1.17.1] - 2026-03-17

🧪 Testing

⚙️ Miscellaneous Tasks

Commits
  • ce13069 release: jco v1.17.3
  • bb4783c release: js-component-bindgen v1.16.2
  • 272ebb7 fix(bindgen): make all bindings const
  • 6ed62d6 feat(bindgen): implement fixed length lists
  • f3f0add test(jco): add tests for fixed length lists
  • 7c5d746 release: jco v1.17.2
  • 6824249 release: js-component-bindgen v1.16.1
  • 3749962 fix(bindgen): variant lifting impl, update code for lowering
  • 1d7b8be test(jco): reverse expeted/actual values for stream testing helper
  • 51ec6a3 fix(bindgen): record lift implementation
  • Additional commits viewable in compare view

Updates @types/node from 24.10.13 to 24.12.0

Commits

Updates esbuild from 0.27.3 to 0.27.4

Release notes

Sourced from esbuild's releases.

v0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.4

  • Fix a regression with CSS media queries (#4395, #4405, #4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    /* Old output (incorrect) */
    @​media only screen and (min-width: 10px) or (min-height: 10px) {
    a {
    color: red;
    }
    }
    /* New output (correct) */
    @​media only screen and ((min-width: 10px) or (min-height: 10px)) {
    a {
    color: red;
    }
    }

  • Fix an edge case with the inject feature (#4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#4329, #4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

... (truncated)

Commits

Updates @bytecodealliance/jco from 1.17.0 to 1.17.3

Release notes

Sourced from @​bytecodealliance/jco's releases.

jco-v1.17.3

Changelog

[1.17.3] - 2026-03-19

🧪 Testing

jco-v1.17.2

Changelog

[1.17.2] - 2026-03-18

🧪 Testing

jco-v1.17.1

Changelog

[1.17.1] - 2026-03-17

🧪 Testing

⚙️ Miscellaneous Tasks

Commits
  • ce13069 release: jco v1.17.3
  • bb4783c release: js-component-bindgen v1.16.2
  • 272ebb7 fix(bindgen): make all bindings const
  • 6ed62d6 feat(bindgen): implement fixed length lists
  • f3f0add test(jco): add tests for fixed length lists
  • 7c5d746 release: jco v1.17.2
  • 6824249 release: js-component-bindgen v1.16.1
  • 3749962 fix(bindgen): variant lifting impl, update code for lowering
  • 1d7b8be test(jco): reverse expeted/actual values for stream testing helper
  • 51ec6a3 fix(bindgen): record lift implementation
  • Additional commits viewable in compare view

Updates @types/node from 24.10.13 to 24.12.0

Commits

Updates @rslib/core from 0.19.2 to 0.20.0

Release notes

Sourced from @​rslib/core's releases.

v0.20.0

Breaking changes 🚨

Drop Node.js 18 support

Rslib v0.20 requires Node.js 20.19+ or 22.12+, Node.js 18 is no longer supported.

Rsbuild / Rspack v2

Rslib v0.20 now depends on beta version of @​rsbuild/core v2 and @​rspack/core v2. If you use custom Rsbuild / Rspack configurations or plugins, you may need to make corresponding adjustments.

See the Rsbuild v2 upgrade guide for all breaking changes.

Deprecate experiments.advancedEsm

experiments.advancedEsm is now deprecated and effectively ignored. Advanced ESM behavior is the default in both bundle and bundleless mode.

What you need to do:

  • Remove experiments.advancedEsm from your config
  • Verify the output behaviour

Rename type StartServerResult

The exported type StartServerResult has been renamed to StartDevServerResult.

What's Changed

New Features 🎉

Bug Fixes 🐞

Document 📖

Other Changes

... (truncated)

Commits
  • 7b85274 Release v0.20.0 (#1526)
  • 78b1330 chore(deps): update @​rsbuild/core to 2.0.0-beta.8 (#1525)
  • 2970e55 chore(deps): upgrade latest Rslib/Rsbuild canary version (#1517)
  • df3fada fix(core): allow preserve jsx in bundleless mode to coexist with bundle mode ...
  • d6fe22c chore(deps): update all non-major dependencies (#1521)
  • 57f1fcc feat: updates the default contenthash length in filenames from 8 to 10 (#1515)
  • 74f4e5e feat!: upgrade Rsbuild to v2 and deprecate experiments.advancedEsm (#1513)
  • 8ac6625 fix: validate glob entry correctness in bundle mode (#1512)
  • ea6d911 chore(deps): update dependency cac to v7 (#1502)
  • 342d8d7 refactor!: drop support for Node 18 (#1509)
  • Additional commits viewable in compare view

Updates @bytecodealliance/jco from 1.17.0 to 1.17.3

Release notes

Sourced from @​bytecodealliance/jco's releases.

jco-v1.17.3

Changelog

[1.17.3] - 2026-03-19

🧪 Testing

jco-v1.17.2

Changelog

[1.17.2] - 2026-03-18

🧪 Testing

jco-v1.17.1

Changelog

[1.17.1] - 2026-03-17

🧪 Testing

⚙️ Miscellaneous Tasks

Commits
  • ce13069 release: jco v1.17.3
  • bb4783c release: js-component-bindgen v1.16.2
  • 272ebb7 fix(bindgen): make all bindings const
  • 6ed62d6 feat(bindgen): implement fixed length lists
  • f3f0add test(jco): add tests for fixed length lists
  • 7c5d746 release: jco v1.17.2
  • 6824249 release: js-component-bindgen v1.16.1
  • 3749962 fix(bindgen): variant lifting impl, update code for lowering
  • 1d7b8be test(jco): reverse expeted/actual values for stream testing helper
  • 51ec6a3 fix(bindgen): record lift implementation
  • Additional commits viewable in compare view

Updates @types/node from 24.10.13 to 24.12.0

Commits

Updates axios from 1.13.5 to 1.13.6

Release notes

Sourced from axios's releases.

v1.13.6

This release focuses on platform compatibility, error handling improvements, and code quality maintenance.

⚠️ Important Changes

  • Breaking Changes: None identified in this release.
  • Action Required: Users targeting React Native should verify their integration, particularly if relying on specific Blob or FormData behaviours, as improvements have been made to support these objects.

🚀 New Features

  • React Native Blob Support: Axios now includes support for React Native Blob objects. Thanks to @​moh3n9595 for the initial implementation. (#5764)
  • Code Quality: Implemented prettier across the codebase and resolved associated formatting issues. (#7385)

🐛 Bug Fixes

  • Environment Compatibility:

    • Fixed module exports for React Native and Browserify environments. (#7386)
    • Added safe FormData detection for the WeChat Mini Program environment. (#7324)
  • Error Handling:

    • AxiosError.message is now correctly enumerable. (#7392)
    • AxiosError.from now correctly copies the status property from the source error, ensuring better error propagation. (#7403)

🔧 Maintenance & Chores

  • Dependencies: Updated the development_dependencies group (5 updates). (#7432)
  • Infrastructure: Migrated @​rollup/plugin-babel from v5.3.1 to v6.1.0. (#7424)
  • Documentation: Added missing JSDoc comments to utilities. (#7427)

🌟 New Contributors

We are thrilled to welcome our new contributors! Thank you for helping improve the project:

Full Changelog: v1.13.5...v1.13.6

Commits
  • 7108c88 chore(release): prepare release 1.13.6 (#7446)
  • 20a0ba3 refactor(deps): migrate @​rollup/plugin-babel from v5.3.1 to v6.1.0 (#7424)
  • 885b4af feat: support react native blob objects (#5764)
  • 00d97b9 docs(utils): add missing JSDoc comments (#7427)
  • 9712548 chore(deps-dev): bump the development_dependencies group across 1 directory w...
  • d51accb fix(core): copy status from source error in AxiosError.from (#7403)
  • 3e30bbf chore: fix publish to only run on v1 tags
  • 672491d fix: safe FormData detection for WeChat Mini Program (#7306) (#7324)
  • 822e3e4 fix: make AxiosError.message property enumerable (#7392)
  • ef3711d feat: implement prettier and fix all issues (#7385)
  • Additional commits viewable in compare view

Updates @rollup/plugin-commonjs from 29.0.0 to 29.0.2

Changelog

Sourced from @​rollup/plugin-commonjs's changelog.

v29.0.2

2026-03-06

Bugfixes

  • commonjs: conditional exports (#1952)

v29.0.1

2026-03-05

Bugfixes

  • commonjs: correctly replaces shorthand "global" property in object (#1957)
Commits
  • 2de0d62 chore(release): commonjs v29.0.2
  • ab65325 fix(commonjs): conditional exports (#1952)
  • 7d22981 chore(repo): add rollup-plugin keyword in package.json (#1955)
  • a79ae55 chore(release): commonjs v29.0.1
  • bb41cfd chore(release): commonjs v29.0.1
  • 14ae186 fix(commonjs): correctly replaces shorthand "global" property in object (#1957)
  • See full diff in compare view
Maintainer changes

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


Updates rollup from 4.59.0 to 4.60.0

Release notes

Sourced from rollup's releases.

v4.60.0

4.60.0

2026-03-22

Features

  • Support source phase imports as long as they are external (#6279)

Pull Requests

v4.59.1

4.59.1

2026-03-21

Bug Fixes

  • Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.60.0

2026-03-22

Features

  • Support source phase imports as long as they are external (#6279)

Pull Requests

4.59.1

2026-03-21

Bug Fixes

  • Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)

Pull Requests

Commits

Updates @bytecodealliance/jco from 1.17.0 to 1.17.3

Release notes

Sourced from @​bytecodealliance/jco's releases.

jco-v1.17.3

Changelog

[1.17.3] - 2026-03-19

🧪 Testing

jco-v1.17.2

Changelog

[1.17.2] - 2026-03-18

🧪 Testing

jco-v1.17.1

Changelog

[1.17.1] - 2026-03-17

🧪 Testing

⚙️ Miscellaneous Tasks

Commits
  • ce13069 release: jco v1.17.3
  • bb4783c release: js-component-bindgen v1.16.2
  • 272ebb7 fix(bindgen): make all bindings const
  • 6ed62d6 feat(bindgen): implement fixed length lists
  • f3f0add test(jco): add tests for fixed length lists
  • 7c5d746 release: jco v1.17.2
  • 6824249 release: js-component-bindgen v1.16.1
  • 3749962 fix(bindgen): variant lifting impl, update code for lowering
  • 1d7b8be test(jco): reverse expeted/actual values for stream testing helper
  • 51ec6a3 fix(bindgen): record lift implementation
  • Additional commits viewable in compare view

Updates @types/node from 24.10.13 to 24.12.0

Commits

Updates @bytecodealliance/jco from 1.17.0 to 1.17.3

Release notes

Sourced from @​bytecodealliance/jco's releases.

jco-v1.17.3

Changelog

[1.17.3] - 2026-03-19

🧪 Testing

jco-v1.17.2

Changelog

[1.17.2] - 2026-03-18

🧪 Testing

jco-v1.17.1

Changelog

[1.17.1] - 2026-03-17

🧪 Testing

… with 10 updates

Bumps the example-dependencies group with 4 updates in the /examples/components/bundled-esbuild directory: [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser), [@bytecodealliance/jco](https://github.com/bytecodealliance/jco), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [esbuild](https://github.com/evanw/esbuild).
Bumps the example-dependencies group with 3 updates in the /examples/components/bundled-rsbuild directory: [@bytecodealliance/jco](https://github.com/bytecodealliance/jco), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [@rslib/core](https://github.com/web-infra-dev/rslib/tree/HEAD/packages/core).
Bumps the example-dependencies group with 5 updates in the /examples/components/http-axios directory:

| Package | From | To |
| --- | --- | --- |
| [@bytecodealliance/jco](https://github.com/bytecodealliance/jco) | `1.17.0` | `1.17.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.13` | `24.12.0` |
| [axios](https://github.com/axios/axios) | `1.13.5` | `1.13.6` |
| [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `29.0.0` | `29.0.2` |
| [rollup](https://github.com/rollup/rollup) | `4.59.0` | `4.60.0` |

Bumps the example-dependencies group with 2 updates in the /examples/components/http-hello-world directory: [@bytecodealliance/jco](https://github.com/bytecodealliance/jco) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).
Bumps the example-dependencies group with 4 updates in the /examples/components/http-password-checker directory: [@bytecodealliance/jco](https://github.com/bytecodealliance/jco), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [rollup](https://github.com/rollup/rollup) and [valibot](https://github.com/open-circle/valibot).
Bumps the example-dependencies group with 4 updates in the /examples/components/http-server-with-hono directory: [@bytecodealliance/jco](https://github.com/bytecodealliance/jco), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [rollup](https://github.com/rollup/rollup) and [hono](https://github.com/honojs/hono).
Bumps the example-dependencies group with 2 updates in the /examples/components/http-streaming directory: [@bytecodealliance/jco](https://github.com/bytecodealliance/jco) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `fast-xml-parser` from 5.5.7 to 5.5.8
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v5.5.7...v5.5.8)

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

Updates `esbuild` from 0.27.3 to 0.27.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.3...v0.27.4)

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

Updates `@rslib/core` from 0.19.2 to 0.20.0
- [Release notes](https://github.com/web-infra-dev/rslib/releases)
- [Commits](https://github.com/web-infra-dev/rslib/commits/v0.20.0/packages/core)

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

Updates `axios` from 1.13.5 to 1.13.6
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.13.5...v1.13.6)

Updates `@rollup/plugin-commonjs` from 29.0.0 to 29.0.2
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v29.0.2/packages/commonjs)

Updates `rollup` from 4.59.0 to 4.60.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.59.0...v4.60.0)

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

Updates `rollup` from 4.59.0 to 4.60.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.59.0...v4.60.0)

Updates `valibot` from 1.2.0 to 1.3.1
- [Release notes](https://github.com/open-circle/valibot/releases)
- [Commits](open-circle/valibot@v1.2.0...v1.3.1)

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

Updates `rollup` from 4.59.0 to 4.60.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.59.0...v4.60.0)

Updates `hono` from 4.12.7 to 4.12.9
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.12.7...v4.12.9)

Updates `@bytecodealliance/jco` from 1.17.0 to 1.17.3
- [Release notes](https://github.com/bytecodealliance/jco/releases)
- [Commits](bytecodealliance/jco@jco-v1.17.0...jco-v1.17.3)

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

---
updated-dependencies:
- dependency-name: fast-xml-parser
  dependency-version: 5.5.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: "@rslib/core"
  dependency-version: 0.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: axios
  dependency-version: 1.13.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@rollup/plugin-commonjs"
  dependency-version: 29.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: rollup
  dependency-version: 4.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: rollup
  dependency-version: 4.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: valibot
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: rollup
  dependency-version: 4.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: hono
  dependency-version: 4.12.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@bytecodealliance/jco"
  dependency-version: 1.17.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
...

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 Mar 23, 2026
@dependabot dependabot bot requested review from a team as code owners March 23, 2026 13:12
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 23, 2026
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