Skip to content

chore(deps): bump the npm-major group across 1 directory with 4 updates - #109

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-major-0c35effc80
Open

chore(deps): bump the npm-major group across 1 directory with 4 updates#109
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-major-0c35effc80

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-major group with 4 updates in the / directory: @fastify/rate-limit, @fastify/static, fastify-plugin and typescript.

Updates @fastify/rate-limit from 10.3.0 to 11.1.0

Release notes

Sourced from @​fastify/rate-limit's releases.

v11.1.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-rate-limit@v11.0.0...v11.1.0

v11.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-rate-limit@v10.3.0...v11.0.0

Commits
  • d7d6086 Bumped v11.1.0
  • c76be97 feat: add increment option to createRateLimit (#449)
  • f65adef chore(package.json): fix delvedor's personal url
  • fd252f0 chore: Bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#450)
  • 0ab984d chore: update depedabot setting (#447)
  • 40537e6 11.0.0
  • a7115c4 Fix Unsafe SQL Queries in Knex Example Files (#446)
  • 5905f11 chore: removed types deprecated
  • 65053cb chore(.gitattributes): retain binary file eol style (#442)
  • 1020c25 refactor(types): migrate from tsd to tstyche (#443)
  • Additional commits viewable in compare view

Updates @fastify/static from 9.1.3 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-plugin from 5.1.0 to 6.0.0

Release notes

Sourced from fastify-plugin's releases.

v6.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-plugin@v5.1.0...v6.0.0

Commits
  • 05c1c32 6.0.0
  • a309399 chore: update depedabot setting (#292)
  • 3d43488 chore: removed interface deprecated
  • 629292b refactor: standardize entry points and project structure
  • 68ddddb refactor(types): migrate from tsd to tstyche (#288)
  • 12c07a4 ci: add lock-threads workflow (#286)
  • 8a4d1a2 build(deps-dev): bump neostandard from 0.12.2 to 0.13.0 (#285)
  • 8e9e035 build(deps): bump fastify/workflows/.github/workflows/plugins-ci.yml (#283)
  • 41b480e chore: remove stale workflow and node reference type declaration (#281)
  • 1f378b1 chore(license): standardise license notice (#278)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by fdawgs, a new releaser for fastify-plugin since your current version.


Updates typescript from 6.0.3 to 7.0.2

Commits
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


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

Bumps the npm-major group with 4 updates in the / directory: [@fastify/rate-limit](https://github.com/fastify/fastify-rate-limit), [@fastify/static](https://github.com/fastify/fastify-static), [fastify-plugin](https://github.com/fastify/fastify-plugin) and [typescript](https://github.com/microsoft/TypeScript).


Updates `@fastify/rate-limit` from 10.3.0 to 11.1.0
- [Release notes](https://github.com/fastify/fastify-rate-limit/releases)
- [Commits](fastify/fastify-rate-limit@v10.3.0...v11.1.0)

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

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

Updates `typescript` from 6.0.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: "@fastify/rate-limit"
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: "@fastify/static"
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: fastify-plugin
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-major
...

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 Jul 12, 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