Skip to content

chore(deps): bump the major-deps-updates group across 1 directory with 11 updates#253

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/major-deps-updates-1553fa5594
Open

chore(deps): bump the major-deps-updates group across 1 directory with 11 updates#253
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/major-deps-updates-1553fa5594

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the major-deps-updates group with 11 updates in the / directory:

Package From To
@types/node 25.9.3 26.1.1
eslint-plugin-unicorn 64.0.0 71.1.0
typescript 6.0.3 7.0.2
yazl 2.5.1 3.3.1
@types/yazl 2.4.6 3.3.1
@fastify/rate-limit 10.3.0 11.1.0
@fastify/static 9.1.3 10.1.0
@babel/parser 7.29.7 8.0.4
@babel/traverse 7.29.7 8.0.4
@babel/types 7.29.7 8.0.4
chromedriver 148.0.4 150.0.3

Updates @types/node from 25.9.3 to 26.1.1

Commits

Updates eslint-plugin-unicorn from 64.0.0 to 71.1.0

Release notes

Sourced from eslint-plugin-unicorn's releases.

v71.1.0

  • consistent-boolean-name: Allow async boolean predicates (#3502) dafc7c9f
  • consistent-boolean-name: Allow boolean-like React refs with Ref suffix (#3501) 064d8901

sindresorhus/eslint-plugin-unicorn@v71.0.0...v71.1.0

v71.0.0

Improvements

  • consistent-boolean-name: Ignore destructured variables (#3485) 0de22c58
  • consistent-boolean-name: Skip React hooks by default (#3487) fab07e28
  • isolated-functions: Respect configured globals in isolated functions (#3495) 1af1d1a4
  • no-unnecessary-array-flat-map: Ignore conditional flatMap fixes in TypeScript (#3499) 5eb6d879
  • prefer-boolean-return: Ignore repeated boolean guard clauses (#3494) fdb3d894
  • prefer-top-level-await: Ignore Svelte files (#3489) 58670ffa
  • prefer-uint8array-base64: Remove from presets (#3493) 3f4c31e9

sindresorhus/eslint-plugin-unicorn@v70.0.0...v71.0.0

v70.0.0

New rules

Improvements

  • consistent-boolean-name: Add inverse boolean name support (#3478) d379e135
  • expiring-todo-comments: Report unsupported catalog versions (#3455) 26f11dab
  • isolated-functions: Add defaults for workerize and common evaluate APIs (#3467) 30c75707
  • isolated-functions: Support methods (#3470) c6155235
  • no-collection-bracket-access: Handle conditional member keys (#3462) cd01d0bc
  • no-manually-wrapped-comments: Handle more cases (#3460) c09d4c77
  • no-non-function-verb-prefix: Add ignore option (#3475) f9a422ec
  • no-return-array-push: Fix false-positives (#3448) 5f4dd3ac
  • no-useless-else: Recognize process.exit() as an exiting branch (#3482) 46714a64
  • prefer-continue: Ignore empty statements (#3473) df904a70
  • prefer-early-return: Ignore empty statements (#3473) df904a70

... (truncated)

Commits
  • 5373b9c 71.1.0
  • dafc7c9 consistent-boolean-name: Allow async boolean predicates (#3502)
  • 064d890 consistent-boolean-name: Allow boolean-like React refs with Ref suffix (#...
  • 950194b 71.0.0
  • 5eb6d87 no-unnecessary-array-flat-map: Ignore conditional flatMap fixes in TypeScri...
  • 87d1de4 Update dependencies (#3498)
  • 1af1d1a isolated-functions: Respect configured globals in isolated functions (#3495)
  • fdb3d89 prefer-boolean-return: Ignore repeated boolean guard clauses (#3494)
  • 3f4c31e prefer-uint8array-base64: Remove from presets (#3493)
  • 58670ff prefer-top-level-await: Ignore Svelte files (#3489)
  • Additional commits viewable in compare view

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.


Updates yazl from 2.5.1 to 3.3.1

Commits

Updates @types/yazl from 2.4.6 to 3.3.1

Commits

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 @babel/parser from 7.29.7 to 8.0.4

Release notes

Sourced from @​babel/parser's releases.

v8.0.4 (2026-07-09)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript

🐛 Bug Fix

🏠 Internal

  • babel-helper-validator-identifier

Committers: 4

v8.0.3 (2026-06-27)

🐛 Bug Fix

  • babel-core, babel-plugin-syntax-typescript
  • babel-standalone

Committers: 2

v8.0.2 (2026-06-18)

🐛 Bug Fix

  • Other
  • babel-helper-validator-identifier

🏠 Internal

  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env

Committers: 2

... (truncated)

Changelog

Sourced from @​babel/parser's changelog.

v8.0.4 (2026-07-09)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript

🐛 Bug Fix

🏠 Internal

  • babel-helper-validator-identifier

v8.0.3 (2026-06-27)

🐛 Bug Fix

  • babel-core, babel-plugin-syntax-typescript
  • babel-standalone

v8.0.2 (2026-06-18)

🐛 Bug Fix

  • Other
  • babel-helper-validator-identifier

🏠 Internal

  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env

v8.0.1 (2026-06-17)

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0 (2026-06-16)

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

... (truncated)

Commits

Updates @babel/traverse from 7.29.7 to 8.0.4

Release notes

Sourced from @​babel/traverse's releases.

v8.0.4 (2026-07-09)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript

🐛 Bug Fix

🏠 Internal

  • babel-helper-validator-identifier

Committers: 4

v8.0.3 (2026-06-27)

🐛 Bug Fix

  • babel-core, babel-plugin-syntax-typescript
  • babel-standalone

Committers: 2

v8.0.2 (2026-06-18)

🐛 Bug Fix

  • Other
  • babel-helper-validator-identifier

🏠 Internal

  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env

Committers: 2

... (truncated)

Changelog

Sourced from @​babel/traverse's changelog.

v8.0.4 (2026-07-09)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript

🐛 Bug Fix

🏠 Internal

  • babel-helper-validator-identifier

v8.0.3 (2026-06-27)

🐛 Bug Fix

  • babel-core, babel-plugin-syntax-typescript
  • babel-standalone

v8.0.2 (2026-06-18)

🐛 Bug Fix

  • Other
  • babel-helper-validator-identifier

🏠 Internal

  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env

v8.0.1 (2026-06-17)

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0 (2026-06-16)

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

... (truncated)

Commits

Updates @babel/types from 7.29.7 to 8.0.4

Release notes

Sourced from @​babel/types's releases.

v8.0.4 (2026-07-09)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript

🐛 Bug Fix

🏠 Internal

  • babel-helper-validator-identifier

Committers: 4

v8.0.3 (2026-06-27)

🐛 Bug Fix

  • babel-core, babel-plugin-syntax-typescript
  • babel-standalone

Committers: 2

v8.0.2 (2026-06-18)

🐛 Bug Fix

  • Other
  • babel-helper-validator-identifier

🏠 Internal

  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env

Committers: 2

... (truncated)

Changelog

Sourced from @​babel/types's changelog.

v8.0.4 (2026-07-09)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript

🐛 Bug Fix

🏠 Internal

  • babel-helper-validator-identifier

v8.0.3 (2026-06-27)

🐛 Bug Fix

  • babel-core, babel-plugin-syntax-typescript
  • babel-standalone

v8.0.2 (2026-06-18)

🐛 Bug Fix

  • Other
  • babel-helper-validator-identifier

🏠 Internal

  • babel-plugin-proposal-decorators, babel-plugin-transform-regenerator, babel-preset-env

v8.0.1 (2026-06-17)

💥 Breaking Change

  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0 (2026-06-16)

👓 Spec Compliance

💥 Breaking Change

  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser

... (truncated)

Commits

…h 11 updates

Bumps the major-deps-updates group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.3` | `26.1.1` |
| [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `64.0.0` | `71.1.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |
| [yazl](https://github.com/thejoshwolfe/yazl) | `2.5.1` | `3.3.1` |
| [@types/yazl](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/yazl) | `2.4.6` | `3.3.1` |
| [@fastify/rate-limit](https://github.com/fastify/fastify-rate-limit) | `10.3.0` | `11.1.0` |
| [@fastify/static](https://github.com/fastify/fastify-static) | `9.1.3` | `10.1.0` |
| [@babel/parser](https://github.com/babel/babel/tree/HEAD/packages/babel-parser) | `7.29.7` | `8.0.4` |
| [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) | `7.29.7` | `8.0.4` |
| [@babel/types](https://github.com/babel/babel/tree/HEAD/packages/babel-types) | `7.29.7` | `8.0.4` |
| [chromedriver](https://github.com/giggio/node-chromedriver) | `148.0.4` | `150.0.3` |



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

Updates `eslint-plugin-unicorn` from 64.0.0 to 71.1.0
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v64.0.0...v71.1.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)

Updates `yazl` from 2.5.1 to 3.3.1
- [Commits](thejoshwolfe/yazl@2.5.1...3.3.1)

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

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 `@babel/parser` from 7.29.7 to 8.0.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.4/packages/babel-parser)

Updates `@babel/traverse` from 7.29.7 to 8.0.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.4/packages/babel-traverse)

Updates `@babel/types` from 7.29.7 to 8.0.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.4/packages/babel-types)

Updates `chromedriver` from 148.0.4 to 150.0.3
- [Commits](giggio/node-chromedriver@148.0.4...150.0.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 26.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: eslint-plugin-unicorn
  dependency-version: 71.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: yazl
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: "@types/yazl"
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: "@fastify/rate-limit"
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: "@fastify/static"
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: "@babel/parser"
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: "@babel/traverse"
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: "@babel/types"
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
- dependency-name: chromedriver
  dependency-version: 150.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-deps-updates
...

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