Skip to content

chore(deps): bump the fastify group across 1 directory with 6 updates - #33

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fastify-e47e43eb85
Open

chore(deps): bump the fastify group across 1 directory with 6 updates#33
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fastify-e47e43eb85

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown

Bumps the fastify group with 6 updates in the / directory:

Package From To
@fastify/compress 8.3.1 9.1.0
@fastify/static 8.3.0 10.1.0
@fastify/swagger 9.7.0 9.8.1
@fastify/swagger-ui 6.0.0 6.1.0
@fastify/websocket 11.2.0 11.3.0
fastify 5.8.5 5.10.0

Updates @fastify/compress from 8.3.1 to 9.1.0

Release notes

Sourced from @​fastify/compress's releases.

v9.1.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-compress@v9.0.0...v9.1.0

v9.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-compress@v8.3.1...v9.0.0

Commits
  • 06cb09f Bumped v9.1.0
  • 67d9e65 refactor: remove peek-stream and use readable-stream Transform (#412)
  • 9879d5c fix: suppress native pipeline premature close errors in onEnd (#411)
  • cf976a8 chore: bump @​types/node in the dev-dependencies-typescript group (#409)
  • fe80cfa docs: fix broken links
  • d4cb6ff chore(package.json): fix delvedor's personal url
  • 4b30d47 chore: bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#405)
  • 496e22a fix: skip compression for 206 and Content-Range responses (#402)
  • 054d796 chore: update depedabot setting (#400)
  • 83ee418 9.0.0
  • Additional commits viewable in compare view

Updates @fastify/static from 8.3.0 to 10.1.0

Release notes

Sourced from @​fastify/static's releases.

v10.1.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-static@v10.0.0...v10.1.0

v10.0.0

Breaking Changes

  • setHeaders now using FastifyReply instead of Response.

You should refactor your code to use the reply helpers. For example,

// Before
const fastify = require('fastify')({logger: true})
const path = require('node:path')
fastify.register(require('@​fastify/static'), {
root: path.join(__dirname, 'public'),
prefix: '/public/', // optional: default '/',
setHeaders(res) {
res.setHeader('X-Test', 'Foo')
}
})
// After
const fastify = require('fastify')({logger: true})
const path = require('node:path')
fastify.register(require('@​fastify/static'), {
root: path.join(__dirname, 'public'),
prefix: '/public/', // optional: default '/',
setHeaders(reply) {
reply.header('X-Test', 'Foo')
}
})

What's Changed

New Contributors

Full Changelog: fastify/fastify-static@v9.3.0...v10.0.0

... (truncated)

Commits
  • 36c939d Bumped v10.1.0
  • 7c1121a feat: use @fastify/error for errors and add option suppressWarning (#599)
  • c57d8bc fix: set Vary: Accept-Encoding for preCompressed responses (#586)
  • babf6df Bumped v10.0.0
  • 08ed461 fix!: allow setHeaders to override send headers (#598)
  • 99f0193 fix: ignore unsupported deflate for precompressed assets (#596)
  • a6e5f4d chore!: bump content-disposition fom 1.0.1 to 2.0.1 (#597)
  • ad05a27 Bumped v9.3.0
  • 58811db chore: update fastify-plugin dependency to version 6.0.0 (#594)
  • a343813 Bumped v9.2.0
  • Additional commits viewable in compare view

Updates @fastify/swagger from 9.7.0 to 9.8.1

Release notes

Sourced from @​fastify/swagger's releases.

v9.8.1

What's Changed

Full Changelog: fastify/fastify-swagger@v9.8.0...v9.8.1

v9.8.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-swagger@v9.7.0...v9.8.0

Commits
  • bdee614 Bumped v9.8.1
  • 64c617c fix: reduce the numbers of onReady hooks (#932)
  • f3c6940 Bumped v9.8.0
  • 91aac4e docs: fix broken links (#930)
  • a10dfde chore: bump @​types/node in the dev-dependencies-typescript group (#931)
  • dc0bf39 chore(package.json): fix delvedor's personal url
  • b3b056a chore: bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#928)
  • aa8d855 chore: update depedabot setting
  • e0424bc refactor(types): migrate from tsd to tstyche (#923)
  • 7c02ffc chore(.gitattributes): retain binary file eol style (#922)
  • Additional commits viewable in compare view

Updates @fastify/swagger-ui from 6.0.0 to 6.1.0

Release notes

Sourced from @​fastify/swagger-ui's releases.

v6.1.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-swagger-ui@v6.0.0...v6.1.0

Commits
  • cbeb98a Bumped v6.1.0
  • d792bba chore: bump @​types/node in the dev-dependencies-typescript group (#280)
  • 3895707 chore: bump actions/checkout from 6 to 7 (#279)
  • 4a621dd chore: bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#278)
  • aa8cbf8 chore: update depedabot setting (#275)
  • See full diff in compare view

Updates @fastify/websocket from 11.2.0 to 11.3.0

Release notes

Sourced from @​fastify/websocket's releases.

v11.3.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-websocket@v11.2.0...v11.3.0

Commits
  • e486057 Bumped v11.3.0
  • b18bf4f chore: Bump @​types/node in the dev-dependencies-typescript group (#370)
  • f965053 chore: Bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#369)
  • 9c47008 chore: update depedabot setting
  • 741e33a docs: clarify which hooks run for websocket routes (#366)
  • 684e591 refactor(types): migrate from tsd to tstyche (#365)
  • 614486a ci: add lock-threads workflow (#363)
  • 6883019 build(deps): Bump fastify/workflows/.github/workflows/plugins-ci.yml (#361)
  • 613c48c ci: remove stale.yml (#360)
  • ac03f1d build(deps-dev): Bump c8 from 10.1.3 to 11.0.0 (#358)
  • Additional commits viewable in compare view

Updates fastify from 5.8.5 to 5.10.0

Release notes

Sourced from fastify's releases.

v5.10.0

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.9.0...v5.10.0

v5.9.0

What's Changed

... (truncated)

Commits
  • 94bcbcc Bumped v5.10.0
  • c47975e docs: Update import for page consistency (#6771)
  • 82952b8 docs: Logging.md with per-route log level info (#6627)
  • 6ac2e95 fix: derive request.port from request.host (#6680)
  • 5f4871f perf: reduce per-request overhead in the request lifecycle (#6831)
  • ec4bc66 chore: Bump fast-json-stringify to v7 (#6800)
  • d0b649d docs: fix incorrect hook count in Hooks.md (eight -> ten) (#6825)
  • 826c807 docs: fix incorrect defaults and code examples in Server.md (#6805)
  • 6f63ce9 fix: use ContentType to detect json and charset in reply.send (#6830)
  • 75d74e1 feat: introduce log controller layer (#6580)
  • Additional commits viewable in compare view

@dependabot @github

dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/fastify-e47e43eb85 branch from b795dac to e807f3b Compare July 14, 2026 12:49
Bumps the fastify group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@fastify/compress](https://github.com/fastify/fastify-compress) | `8.3.1` | `9.1.0` |
| [@fastify/static](https://github.com/fastify/fastify-static) | `8.3.0` | `10.1.0` |
| [@fastify/swagger](https://github.com/fastify/fastify-swagger) | `9.7.0` | `9.8.1` |
| [@fastify/swagger-ui](https://github.com/fastify/fastify-swagger-ui) | `6.0.0` | `6.1.0` |
| [@fastify/websocket](https://github.com/fastify/fastify-websocket) | `11.2.0` | `11.3.0` |
| [fastify](https://github.com/fastify/fastify) | `5.8.5` | `5.10.0` |



Updates `@fastify/compress` from 8.3.1 to 9.1.0
- [Release notes](https://github.com/fastify/fastify-compress/releases)
- [Commits](fastify/fastify-compress@v8.3.1...v9.1.0)

Updates `@fastify/static` from 8.3.0 to 10.1.0
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](fastify/fastify-static@v8.3.0...v10.1.0)

Updates `@fastify/swagger` from 9.7.0 to 9.8.1
- [Release notes](https://github.com/fastify/fastify-swagger/releases)
- [Commits](fastify/fastify-swagger@v9.7.0...v9.8.1)

Updates `@fastify/swagger-ui` from 6.0.0 to 6.1.0
- [Release notes](https://github.com/fastify/fastify-swagger-ui/releases)
- [Commits](fastify/fastify-swagger-ui@v6.0.0...v6.1.0)

Updates `@fastify/websocket` from 11.2.0 to 11.3.0
- [Release notes](https://github.com/fastify/fastify-websocket/releases)
- [Commits](fastify/fastify-websocket@v11.2.0...v11.3.0)

Updates `fastify` from 5.8.5 to 5.10.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.8.5...v5.10.0)

---
updated-dependencies:
- dependency-name: "@fastify/compress"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fastify
- dependency-name: "@fastify/static"
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: fastify
- dependency-name: "@fastify/swagger"
  dependency-version: 9.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastify
- dependency-name: "@fastify/swagger-ui"
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastify
- dependency-name: "@fastify/websocket"
  dependency-version: 11.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastify
- dependency-name: fastify
  dependency-version: 5.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastify
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/fastify-e47e43eb85 branch from e807f3b to d1072bd Compare July 20, 2026 02:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants