Skip to content

chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 12 updates - #80

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-6951a4cd0b
Open

chore(deps-dev): bump the dev-dependencies-minor-patch group across 1 directory with 12 updates#80
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-minor-patch-6951a4cd0b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies-minor-patch group with 12 updates in the / directory:

Package From To
@hono/node-server 2.1.0 2.1.1
@remix-run/node-fetch-server 0.14.0 0.14.1
@types/node 26.2.0 26.4.0
@vitest/coverage-v8 4.1.10 4.1.11
bumpp 12.2.0 12.2.2
changelogithub 15.0.4 15.0.5
fastify 5.11.3 5.12.1
lint-staged 17.3.0 17.4.1
pkg-pr-new 0.0.87 0.0.88
srvx 0.12.5 0.12.7
vitest 4.1.10 4.1.11
@types/bun 1.3.14 1.4.0

Updates @hono/node-server from 2.1.0 to 2.1.1

Release notes

Sourced from @​hono/node-server's releases.

v2.1.1

What's Changed

Full Changelog: honojs/node-server@v2.1.0...v2.1.1

Commits

Updates @remix-run/node-fetch-server from 0.14.0 to 0.14.1

Release notes

Sourced from @​remix-run/node-fetch-server's releases.

node-fetch-server v0.14.1

Patch Changes

  • Request handlers now receive native Request instances instead of lazy request objects that emulated native requests. This fixes compatibility with standard APIs like new Request(request, init) that rely on native Request internals.
Changelog

Sourced from @​remix-run/node-fetch-server's changelog.

v0.14.1

Patch Changes

  • Request handlers now receive native Request instances instead of lazy request objects that emulated native requests. This fixes compatibility with standard APIs like new Request(request, init) that rely on native Request internals.
Commits

Updates @types/node from 26.2.0 to 26.4.0

Commits

Updates @vitest/coverage-v8 from 4.1.10 to 4.1.11

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.11

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates bumpp from 12.2.0 to 12.2.2

Release notes

Sourced from bumpp's releases.

v12.2.2

   🐞 Bug Fixes

    View changes on GitHub

v12.2.1

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates changelogithub from 15.0.4 to 15.0.5

Release notes

Sourced from changelogithub's releases.

v15.0.5

No significant changes

    View changes on GitHub
Commits

Updates fastify from 5.11.3 to 5.12.1

Release notes

Sourced from fastify's releases.

v5.12.1

⚠️ Security release

What's Changed

Full Changelog: fastify/fastify@v5.12.0...v5.12.1

v5.12.0

What's Changed

Full Changelog: fastify/fastify@v5.11.3...v5.12.0

Commits

Updates lint-staged from 17.3.0 to 17.4.1

Release notes

Sourced from lint-staged's releases.

v17.4.1

17.4.1

Patch Changes

  • #1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.

17.4.0

Minor Changes

  • #1836 90ec282 - Added a new defineConfig helper for type-checking the lint-staged configuration:

    // lint-staged.config.ts
    import { defineConfig } from 'lint-staged/config'
    export default defineConfig({
    '*.js': ['prettier --check', 'eslint'],
    })

  • #1832 510a27c - Added a new flag --all to make lint-staged include all files tracked by Git, instead of only staged.

    By default lint-staged only runs tasks on files that include staged changes (hence the name). Use this flag to include all files tracked in Git version control (standard exclusions apply). Using this flag implies the --no-stash flag, disabling the automatic backup, and the --allow-empty flag so that lint-staged doesn't fail when there are no changes after running. This makes it easier to run npx lint-staged --all on a clean state, for example in CI.

Patch Changes

  • #1838 69bec99 - The behavior of the automatic backup stash has been improved when running lint-staged in multiple worktrees in parallel. You should still avoid running multiple instances of lint-staged in parallel in the same tree, because some of the Git operations are locking and might lead to data loss.

  • #1839 5e5bdd2 - Parsing of lint-staged CLI flags and Node.js API options has been rewritten to avoid inconsistent behavior between the two.

Changelog

Sourced from lint-staged's changelog.

17.4.1

Patch Changes

  • #1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.

17.4.0

Minor Changes

  • #1836 90ec282 - Added a new defineConfig helper for type-checking the lint-staged configuration:

    // lint-staged.config.ts
    import { defineConfig } from 'lint-staged/config'
    export default defineConfig({
    '*.js': ['prettier --check', 'eslint'],
    })

  • #1832 510a27c - Added a new flag --all to make lint-staged include all files tracked by Git, instead of only staged.

    By default lint-staged only runs tasks on files that include staged changes (hence the name). Use this flag to include all files tracked in Git version control (standard exclusions apply). Using this flag implies the --no-stash flag, disabling the automatic backup, and the --allow-empty flag so that lint-staged doesn't fail when there are no changes after running. This makes it easier to run npx lint-staged --all on a clean state, for example in CI.

Patch Changes

  • #1838 69bec99 - The behavior of the automatic backup stash has been improved when running lint-staged in multiple worktrees in parallel. You should still avoid running multiple instances of lint-staged in parallel in the same tree, because some of the Git operations are locking and might lead to data loss.

  • #1839 5e5bdd2 - Parsing of lint-staged CLI flags and Node.js API options has been rewritten to avoid inconsistent behavior between the two.

Commits
  • d0c1517 Merge pull request #1841 from lint-staged/changeset-release/main
  • f061335 chore(changeset): release
  • d2721af Merge pull request #1840 from lint-staged/updates
  • efe5b63 ci: update Changesets action because it failed to publish
  • cd76ce3 build: update dependencies
  • ea195e1 Merge pull request #1837 from lint-staged/changeset-release/main
  • a6a0d61 chore(changeset): release
  • 0a09098 Merge pull request #1832 from lint-staged/add-all-flag
  • 7fd685b fix: further fix parsing options logic
  • 510a27c feat: add --all flag for including all files tracked by Git instead of just...
  • Additional commits viewable in compare view

Updates pkg-pr-new from 0.0.87 to 0.0.88

Commits

Updates srvx from 0.12.5 to 0.12.7

Release notes

Sourced from srvx's releases.

v0.12.7

compare changes

🩹 Fixes

  • node/http2: Detect client disconnects on Node 26 (dfb0306)

v0.12.6

compare changes

🩹 Fixes

  • node: Make send-failure recovery unable to throw (474ac29)
  • node: Discard the body for HEAD requests to a Node stream response (e2fc775)
  • node: Destroy body stream when client aborts before first chunk (8d9c958)
  • node: Normalize absolute-form request targets instead of trusting them (a11765b)
  • aws-lambda: Prevent client path and Host header from overriding request.url origin (b1e440c)
  • cli: Honor NODE_ENV=production again (2e7a135)
  • cli: Forward tls/protocol/node from an intercepted serve() entry (2f5ff20)
  • body-limit: Serve _request over the size-limited body (6882f6d)
  • node/web: Honor writeHead headers when statusMessage is not a string (46336b3)
  • aws-lambda: Do not duplicate cookies from headers and cookies[] (#291)
  • node: Reject body reads with the abort reason after a client disconnect (3a5187e)
  • node/http2: Detect client disconnects before a body read (5f1ed2c)
  • node/web: Do not rely on Node's lazy IncomingMessage.headers accessor (0fbfb06)

📖 Documentation

  • node: Document that mutating response headers preserves the raw body (8f8f95b)

🌊 Types

  • bun: Derive HeadersInit from the ambient Headers (#288)

✅ Tests

  • bun: Actually run the node-compat suites under Bun (27a071c)

❤️ Contributors

Changelog

Sourced from srvx's changelog.

v0.12.7

compare changes

🩹 Fixes

  • node/http2: Detect client disconnects on Node 26 (dfb0306)

❤️ Contributors

v0.12.6

compare changes

🩹 Fixes

  • node: Make send-failure recovery unable to throw (474ac29)
  • node: Discard the body for HEAD requests to a Node stream response (e2fc775)
  • node: Destroy body stream when client aborts before first chunk (8d9c958)
  • node: Normalize absolute-form request targets instead of trusting them (a11765b)
  • aws-lambda: Prevent client path and Host header from overriding request.url origin (b1e440c)
  • cli: Honor NODE_ENV=production again (2e7a135)
  • cli: Forward tls/protocol/node from an intercepted serve() entry (2f5ff20)
  • body-limit: Serve _request over the size-limited body (6882f6d)
  • node/web: Honor writeHead headers when statusMessage is not a string (46336b3)
  • aws-lambda: Do not duplicate cookies from headers and cookies[] (#291)
  • node: Reject body reads with the abort reason after a client disconnect (3a5187e)
  • node/http2: Detect client disconnects before a body read (5f1ed2c)
  • node/web: Do not rely on Node's lazy IncomingMessage.headers accessor (0fbfb06)

📖 Documentation

  • node: Document that mutating response headers preserves the raw body (8f8f95b)

🌊 Types

  • bun: Derive HeadersInit from the ambient Headers (#288)

🏡 Chore

✅ Tests

... (truncated)

Commits
  • 053be62 chore(release): v0.12.7
  • dfb0306 fix(node/http2): detect client disconnects on Node 26
  • 0ba6e48 chore(release): v0.12.6
  • d265cb6 chore: update bench script
  • 27a071c test(bun): actually run the node-compat suites under Bun
  • 0fbfb06 fix(node/web): do not rely on Node's lazy IncomingMessage.headers accessor
  • 5f1ed2c fix(node/http2): detect client disconnects before a body read
  • 3a5187e fix(node): reject body reads with the abort reason after a client disconnect
  • d946356 fix(aws-lambda): do not duplicate cookies from headers and cookies[] (#291)
  • bf33115 chore: update deps
  • Additional commits viewable in compare view

Updates vitest from 4.1.10 to 4.1.11

Release notes

Sourced from vitest's releases.

v4.1.11

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 9bd8d46 chore: release v4.1.11 (#10995)
  • 9851dbc fix(browser): trigger playwright/chromium gc on lower disk availability [back...
  • See full diff in compare view

Updates @types/bun from 1.3.14 to 1.4.0

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 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

… directory with 12 updates

Bumps the dev-dependencies-minor-patch group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@hono/node-server](https://github.com/honojs/node-server) | `2.1.0` | `2.1.1` |
| [@remix-run/node-fetch-server](https://github.com/remix-run/remix/tree/HEAD/packages/node-fetch-server) | `0.14.0` | `0.14.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.2.0` | `26.4.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.10` | `4.1.11` |
| [bumpp](https://github.com/antfu-collective/bumpp) | `12.2.0` | `12.2.2` |
| [changelogithub](https://github.com/antfu-collective/changelogithub) | `15.0.4` | `15.0.5` |
| [fastify](https://github.com/fastify/fastify) | `5.11.3` | `5.12.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.3.0` | `17.4.1` |
| [pkg-pr-new](https://github.com/stackblitz-labs/pkg.pr.new/tree/HEAD/packages/cli) | `0.0.87` | `0.0.88` |
| [srvx](https://github.com/h3js/srvx) | `0.12.5` | `0.12.7` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.10` | `4.1.11` |
| [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun) | `1.3.14` | `1.4.0` |



Updates `@hono/node-server` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/honojs/node-server/releases)
- [Commits](honojs/node-server@v2.1.0...v2.1.1)

Updates `@remix-run/node-fetch-server` from 0.14.0 to 0.14.1
- [Release notes](https://github.com/remix-run/remix/releases)
- [Changelog](https://github.com/remix-run/remix/blob/main/packages/node-fetch-server/CHANGELOG.md)
- [Commits](https://github.com/remix-run/remix/commits/v0.14.1/packages/node-fetch-server)

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

Updates `@vitest/coverage-v8` from 4.1.10 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/coverage-v8)

Updates `bumpp` from 12.2.0 to 12.2.2
- [Release notes](https://github.com/antfu-collective/bumpp/releases)
- [Commits](antfu-collective/bumpp@v12.2.0...v12.2.2)

Updates `changelogithub` from 15.0.4 to 15.0.5
- [Release notes](https://github.com/antfu-collective/changelogithub/releases)
- [Commits](antfu-collective/changelogithub@v15.0.4...v15.0.5)

Updates `fastify` from 5.11.3 to 5.12.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.11.3...v5.12.1)

Updates `lint-staged` from 17.3.0 to 17.4.1
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.3.0...v17.4.1)

Updates `pkg-pr-new` from 0.0.87 to 0.0.88
- [Commits](https://github.com/stackblitz-labs/pkg.pr.new/commits/v0.0.88/packages/cli)

Updates `srvx` from 0.12.5 to 0.12.7
- [Release notes](https://github.com/h3js/srvx/releases)
- [Changelog](https://github.com/h3js/srvx/blob/main/CHANGELOG.md)
- [Commits](h3js/srvx@v0.12.5...v0.12.7)

Updates `vitest` from 4.1.10 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/vitest)

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

---
updated-dependencies:
- dependency-name: "@hono/node-server"
  dependency-version: 2.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@remix-run/node-fetch-server"
  dependency-version: 0.14.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: bumpp
  dependency-version: 12.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: changelogithub
  dependency-version: 15.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: fastify
  dependency-version: 5.12.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: lint-staged
  dependency-version: 17.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
- dependency-name: pkg-pr-new
  dependency-version: 0.0.88
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: srvx
  dependency-version: 0.12.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: vitest
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies-minor-patch
- dependency-name: "@types/bun"
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies-minor-patch
...

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 Aug 29, 2026
@pkg-pr-new

pkg-pr-new Bot commented Aug 29, 2026

Copy link
Copy Markdown
@standardserver/aws-lambda

npm i https://pkg.pr.new/@standardserver/aws-lambda@80

@standardserver/core

npm i https://pkg.pr.new/@standardserver/core@80

@standardserver/fastify

npm i https://pkg.pr.new/@standardserver/fastify@80

@standardserver/fetch

npm i https://pkg.pr.new/@standardserver/fetch@80

@standardserver/node

npm i https://pkg.pr.new/@standardserver/node@80

@standardserver/peer

npm i https://pkg.pr.new/@standardserver/peer@80

@standardserver/shared

npm i https://pkg.pr.new/@standardserver/shared@80

commit: e8d3e9d

@codspeed-hq

codspeed-hq Bot commented Aug 29, 2026

Copy link
Copy Markdown
Contributor

Merging this PR will not alter performance

✅ 26 untouched benchmarks
⏩ 108 skipped benchmarks1


Comparing dependabot/npm_and_yarn/dev-dependencies-minor-patch-6951a4cd0b (e8d3e9d) with main (afdb26d)2

Open in CodSpeed

Footnotes

  1. 108 benchmarks were skipped, so the baseline results were used instead. If they were deleted from the codebase, click here and archive them to remove them from the performance reports.

  2. No successful run was found on main (c03269a) during the generation of this report, so afdb26d was used instead as the comparison base. There might be some changes unrelated to this pull request in this report.

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