Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the example-dependencies group with 2 updates in the /examples/components/bundled-esbuild directory: fast-xml-parser and @types/node.
Bumps the example-dependencies group with 2 updates in the /examples/components/bundled-rsbuild directory: @types/node and @rslib/core.
Bumps the example-dependencies group with 2 updates in the /examples/components/http-axios directory: @types/node and rollup.
Bumps the example-dependencies group with 1 update in the /examples/components/http-hello-world directory: @types/node.
Bumps the example-dependencies group with 2 updates in the /examples/components/http-password-checker directory: @types/node and rollup.
Bumps the example-dependencies group with 3 updates in the /examples/components/http-server-with-hono directory: @types/node, rollup and hono.
Bumps the example-dependencies group with 1 update in the /examples/components/http-streaming directory: @types/node.

Updates fast-xml-parser from 5.3.2 to 5.3.3

Release notes

Sourced from fast-xml-parser's releases.

bug fix and performance improvements

  • fix #775: transformTagName with allowBooleanAttributes adds an unnecessary attribute
  • Performance improvement for stopNodes (By Maciek Lamberski)
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.

5.3.3 / 2025-12-12

  • fix #775: transformTagName with allowBooleanAttributes adds an unnecessary attribute

5.3.2 / 2025-11-14

  • fix for import statement for v6

5.3.1 / 2025-11-03

5.3.0 / 2025-10-03

  • Use Uint8Array in place of Buffer in Parser

5.2.5 / 2025-06-08

  • Inform user to use fxp-cli instead of in-built CLI feature
  • Export typings for direct use

5.2.4 / 2025-06-06

  • fix (#747): fix EMPTY and ANY with ELEMENT in DOCTYPE

5.2.3 / 2025-05-11

  • fix (#747): support EMPTY and ANY with ELEMENT in DOCTYPE

5.2.2 / 2025-05-05

  • fix (#746): update strnum to fix parsing issues related to enotations

5.2.1 / 2025-04-22

  • fix: read DOCTYPE entity value correctly
  • read DOCTYPE NOTATION, ELEMENT exp but not using read values

5.2.0 / 2025-04-03

5.1.0 / 2025-04-02

  • feat: declare package as side-effect free (#738) (By Thomas Bouffard)
  • fix cjs build mode
  • fix builder return type to string

5.0.9 / 2025-03-14

  • fix: support numeric entities with values over 0xFFFF (#726) (By Marc Durdin)
  • fix: update strnum to fix parsing 0 if skiplike option is used

5.0.8 / 2025-02-27

  • fix parsing 0 if skiplike option is used.
    • updating strnum dependency

5.0.7 / 2025-02-25

... (truncated)

Commits

Updates @types/node from 24.10.1 to 25.0.2

Commits

Updates @types/node from 24.10.1 to 25.0.2

Commits

Updates @rslib/core from 0.18.3 to 0.18.4

Release notes

Sourced from @​rslib/core's releases.

v0.18.4

What's Changed

New Features 🎉

Bug Fixes 🐞

Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.3...v0.18.4

Commits

Updates @types/node from 24.10.1 to 25.0.2

Commits

Updates rollup from 4.53.3 to 4.53.4

Release notes

Sourced from rollup's releases.

v4.53.4

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

Commits

Updates @types/node from 24.10.1 to 25.0.2

Commits

Updates @types/node from 24.10.1 to 25.0.2

Commits

Updates rollup from 4.53.3 to 4.53.4

Release notes

Sourced from rollup's releases.

v4.53.4

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

Commits

Updates @types/node from 24.10.1 to 25.0.2

Commits

Updates rollup from 4.53.3 to 4.53.4

Release notes

Sourced from rollup's releases.

v4.53.4

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

Commits

Updates hono from 4.10.7 to 4.11.1

Release notes

Sourced from hono's releases.

v4.11.1

What's Changed

Full Changelog: honojs/hono@v4.11.0...v4.11.1

v4.11.0

Release Notes

Hono v4.11.0 is now available!

This release includes new features for the Hono client, middleware improvements, and an important type system fix.

Type System Fix for Middleware

We've fixed a bug in the type system for middleware. Previously, app did not have the correct type with pathless handlers:

const app = new Hono()
  .use(async (c, next) => {
    await next()
  })
  .get('/a', async (c, next) => {
    await next()
  })
  .get((c) => {
    return c.text('Hello')
  })
// app's type was incorrect

This has now been fixed.

Thanks @​kosei28!

Typed URL for Hono Client

You can now pass the base URL as the second type parameter to hc to get more precise URL types:

const client = hc<typeof app, 'http://localhost:8787'>(
  'http://localhost:8787/'
)
const url = client.api.posts.$url()
// url is TypedURL with precise type information
// including protocol, host, and path

... (truncated)

Commits
  • 1fbe45b 4.11.1
  • 37c3809 fix(types): fix app.on method array type inference (#4578)
  • fe278e9 4.11.0
  • 0d739b6 Merge pull request #4574 from honojs/next
  • 3e12de6 fix(types): replace schema-based path tracking with CurrentPath parameter (#4...
  • 6d62638 feat(secure-headers): Add CSP report-to and report-uri directive support (#4555)
  • b694129 feat(client): add buildSearchParams option to customize query serialization (...
  • d94f4a4 feat(context-storage): Add optional tryGetContext helper to context-storage m...
  • 61f473b feat(pretty-json): support force option (#4531)
  • 44bb7bb feat(timing): add wrapTime to simplify usage (#4519)
  • Additional commits viewable in compare view

Updates @types/node from 24.10.1 to 25.0.2

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

… with 5 updates

Bumps the example-dependencies group with 2 updates in the /examples/components/bundled-esbuild directory: [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).
Bumps the example-dependencies group with 2 updates in the /examples/components/bundled-rsbuild directory: [@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 2 updates in the /examples/components/http-axios directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [rollup](https://github.com/rollup/rollup).
Bumps the example-dependencies group with 1 update in the /examples/components/http-hello-world directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).
Bumps the example-dependencies group with 2 updates in the /examples/components/http-password-checker directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [rollup](https://github.com/rollup/rollup).
Bumps the example-dependencies group with 3 updates in the /examples/components/http-server-with-hono directory: [@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 1 update in the /examples/components/http-streaming directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `fast-xml-parser` from 5.3.2 to 5.3.3
- [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.3.2...v5.3.3)

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

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

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

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

Updates `rollup` from 4.53.3 to 4.53.4
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.53.3...v4.53.4)

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

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

Updates `rollup` from 4.53.3 to 4.53.4
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.53.3...v4.53.4)

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

Updates `rollup` from 4.53.3 to 4.53.4
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.53.3...v4.53.4)

Updates `hono` from 4.10.7 to 4.11.1
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.10.7...v4.11.1)

Updates `@types/node` from 24.10.1 to 25.0.2
- [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.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
- dependency-name: "@rslib/core"
  dependency-version: 0.18.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
- dependency-name: rollup
  dependency-version: 4.53.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
- dependency-name: rollup
  dependency-version: 4.53.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
- dependency-name: rollup
  dependency-version: 4.53.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: example-dependencies
- dependency-name: hono
  dependency-version: 4.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: example-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: example-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 15, 2025
@dependabot dependabot bot requested review from a team as code owners December 15, 2025 14:18
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 15, 2025
@lachieh
Copy link
Contributor

lachieh commented Dec 16, 2025

@dependabot ignore @types/node major version

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 16, 2025

OK, I won't notify you about version 25.x.x of @types/node again, unless you unignore it.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 16, 2025

Superseded by #465.

@dependabot dependabot bot closed this Dec 16, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/examples/components/bundled-esbuild/example-dependencies-23a2445178 branch December 16, 2025 18:36
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.

2 participants