Skip to content

build(deps): bump the formatting group across 1 directory with 6 updates - #97

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/formatting-8e0f24a97d
Open

build(deps): bump the formatting group across 1 directory with 6 updates#97
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/formatting-8e0f24a97d

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
eslint 8.57.1 10.9.0
eslint-plugin-boundaries 6.0.2 7.2.0
eslint-config-next 16.2.7 16.3.2
eslint-config-prettier 9.1.2 10.1.8
prettier 3.8.3 3.9.6
eslint-plugin-react 7.34.0 7.37.5

Updates eslint from 8.57.1 to 10.9.0

Release notes

Sourced from eslint's releases.

v10.9.0

Features

  • 08de88e feat: handle underflow in no-loss-of-precision (#21218) (Rithish S)
  • 55db479 feat: add checkConditionalExpressions to no-unmodified-loop-condition (#21175) (sethamus)

Bug Fixes

  • 2ba3025 fix: prevent unsafe no-var autofix with hoisted functions (#21213) (sethamus)
  • 8e69622 fix: Prevent no-var autofix when var is shadowed by catch parameter (#21204) (Yang Hyeonjong)
  • 684b579 fix: prefer-template invalid autofix creates a tagged template call (#21207) (김채영)

Documentation

  • 9ef407a docs: use eslint.config.* wherever config file names are listed (#21216) (Marry (Subin Yang))
  • 87f66f4 docs: Update README (GitHub Actions Bot)
  • 585ef37 docs: update architecture documentation (#21112) (Francesco Trotta)
  • f3993b0 docs: Update README (GitHub Actions Bot)
  • ffc87d6 docs: fix broken links in Further Reading sections (#21203) (Minsu)
  • 1a761e1 docs: update moved JSX specification links (#21198) (Imran Mustafa)
  • 4d00ca4 docs: update ESLint peer dependency to ^10.0.0 in shareable configs (#21202) (lumir)
  • 510d1a2 docs: Update README (GitHub Actions Bot)

Chores

  • 899dbf1 chore: update github/codeql-action action to v4.37.7 (#21243) (renovate[bot])
  • 9aa3873 chore: update ecosystem plugins (#21235) (ESLint Bot)
  • dc1e7a8 chore: update ecosystem plugins (#21208) (ESLint Bot)
  • f878d21 ci: bump pnpm/action-setup from 6.0.9 to 6.0.10 (#21200) (dependabot[bot])
  • 4891e50 ci: bump github/codeql-action from 4.37.4 to 4.37.6 (#21199) (dependabot[bot])

v10.8.1

Bug Fixes

  • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#21173) (dongkyu lee)
  • 151ba3f fix: false positives in getter-return and accessor-pairs (#21163) (Grit)
  • 6898df9 fix: ignore meta-property names in id-denylist (#21166) (Pixel)
  • 4d7db66 fix: ignore meta-property names in id-match (#21167) (Pixel)
  • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)

Documentation

  • 7d0cbf8 docs: Update README (GitHub Actions Bot)
  • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#21183) (Lee Daeun)
  • 678c90b docs: Update README (GitHub Actions Bot)
  • 8a10424 docs: Update README (GitHub Actions Bot)
  • 69bb948 docs: Update README (GitHub Actions Bot)

Chores

  • 0a14800 chore: update github/codeql-action action to v4.37.4 (#21196) (renovate[bot])
  • 05adcb1 test: fix failing ecosystem test for eslint-plugin-unicorn (#21191) (Lazizbek Ergashev)
  • 5611035 test: add error locations info to no-void (#21185) (Lee Daeun)
  • ee47333 ci: bump github/codeql-action from 4 to 4.37.3 (#21176) (dependabot[bot])
  • f131c03 chore: improve ecosystem test failure reporting (#20937) (crimsonjay0)
  • 1f6edde chore: update ecosystem plugins (#21182) (ESLint Bot)
  • d3266fb chore: unpin webpack dependency (#21172) (Francesco Trotta)

... (truncated)

Commits
Maintainer changes

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


Updates eslint-plugin-boundaries from 6.0.2 to 7.2.0

Release notes

Sourced from eslint-plugin-boundaries's releases.

Improve deprecation warnings

eslint-plugin v7.2.0

Added

  • feat(#477): boundaries/dependencies and boundaries/element-types now warn when an allow/disallow entry omits the from/to wrapper (e.g. allow: [{ element: { type: "helper" } }] instead of allow: [{ to: { element: { type: "helper" } } }]). The bare form keeps working; the warning is suppressible via boundaries/legacy-warnings: false. Note that v5-style configs using a legacy allow/disallow selector (e.g. allow: ["helper"]) now emit this warning in addition to the legacy-selector warning they already emitted.

Changed

  • refactor(#477): Legacy selector deprecation warnings are now reported per detected syntax form — legacy string selectors, legacy tuple selectors, and element selectors used directly as entity selectors each get their own message with a concrete before/after example. Warnings also say "policy"/"policies" instead of "rule(s)", matching v7 terminology.
  • refactor(#477): The "unrecognized selector shape" warning now names only the specific properties (from, to, dependency, allow, disallow) that failed validation, instead of always listing all five.

Fixed

  • fix(#479): Upgrade @boundaries/elements. A boundaries/files descriptor without capture no longer resets file.captured when it matches after a capturing descriptor. Captured values are now merged from every matching file descriptor regardless of declaration order, matching the boundaries/elements descriptor behavior. exclusive descriptors still reset captured values.
  • fix(#477): Legacy selector deprecation warnings now link to the migration guide that actually deprecated the detected syntax. Element selectors used directly as entity selectors (e.g. { type: "component" }) link to the v6-to-v7 entity selectors section instead of the v5-to-v6 guide. The mode deprecation warning links to its own section of the v6-to-v7 guide.
  • fix: boundaries/dependencies/boundaries/element-types policies with a bare (unwrapped) allow/disallow entry and neither from nor to at the policy level (e.g. { allow: { element: { type: "helper" } } }) no longer invert the policy's meaning or crash the linter on every matched dependency. The bare entry now consistently fills to, matching the documented allow/disallow semantics.

elements v3.1.1

Fixed

  • fix(#479): A matching file descriptor without capture no longer resets file.captured. Captured values are now merged from every matching file descriptor regardless of declaration order, matching the element descriptor behavior. exclusive descriptors still reset captured values.

chore

Added

  • chore: Add review-pr agents skill

Changed

  • chore: Improve agents docs
  • chore: Upgrade nx version to v22.7.7
  • chore: Pin dependencies in github workflows

Descriptors accumulation options

eslint-plugin v7.1.0

Added

  • feat(#466): Add per-descriptor stopMatching and exclusive options, available on both boundaries/elements and boundaries/files descriptors. When a stopMatching descriptor matches, previously accumulated types/categories at that path level are kept and no further descriptors are evaluated for that level. exclusive additionally discards any previously accumulated matches at that level, keeping only its own match, and takes precedence over stopMatching when both are set on the same descriptor. Both options apply independently at each path level, so for elements they affect parent elements the same way they affect the main element.
  • feat(#466): Add boundaries/files-single-match setting. When true, only the first matching boundaries/files descriptor's category is used and matching stops; default false preserves the current accumulation behavior.
  • feat(#466): Add boundaries/elements-single-match setting, sharing vocabulary with the new boundaries/files-single-match. It is the canonical replacement for boundaries/elements-single-type and takes precedence over it when both are set.

Changed

  • refactor(#466): boundaries/elements-single-type is now deprecated in favor of boundaries/elements-single-match. It is kept as a backward-compatible alias, with a deprecation warning, and no behavior change.

Fixed

... (truncated)

Commits
  • 50f2d31 Release v7.2.0 (#485)
  • cc66c04 Merge branch 'master' into release
  • 23b2278 chore(release): Release eslint-plugin v7.2.0 and elements v3.1.1 (#484)
  • 4c39dd4 chore: Add review-pr skill (#483)
  • 5c48549 fix: Point legacy selector warnings to the correct migration guide, with clea...
  • 1bd202f chore(deps): update dependency nx to v22.7.7 [security] (#478)
  • 704358c fix: Do not reset file captured values when a matching descriptor has no capt...
  • 8f195dd docs: Improve agents docs (#480)
  • 13795eb chore(deps): pin dependencies (#474)
  • 9484b4d Release v7.1.0 (#437)
  • Additional commits viewable in compare view

Updates eslint-config-next from 16.2.7 to 16.3.2

Release notes

Sourced from eslint-config-next's releases.

v16.3.2

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • [backport] Scope app-entry export validation to files inside the app directory (#97357)
  • [backport] Fix catch-all index page being served for every other slug (#97416)
  • [16.3] Turbopack: don't trace embedded WASM loader helpers (#97353) (#97463)
  • [16.3] Turbopack: retain conditions when replacing resolve request keys (#97453)
  • [16.3.x] Fix Turbopack worker chunk loading with asset prefix (#97419)
  • [16.3.x] Authenticate Turborepo remote caching with OIDC instead of a static PAT (#97603)

Credits

Huge thanks to @​lubieowoce, @​unstubbable, @​timneutkens, @​mischnic, and @​eps1lon for helping!

v16.3.1

What's Changed

Full Changelog: vercel/next.js@v16.3.0...v16.3.1

v16.3.1-canary.26

Misc Changes

  • docs: document deploymentId build ID override and Pages Router skew in 16.2: #97645
  • Upgrade React from eb8feb71-20260814 to eafeac09-20260819: #97636
  • Turbopack: rename to use turbopack: no side effects: #94427
  • refactor: move useDynamic{Route,Search}Params to reduce snapshot churn: #97360

... (truncated)

Commits

Updates eslint-config-prettier from 9.1.2 to 10.1.8

Release notes

Sourced from eslint-config-prettier's releases.

v10.1.8

republish latest version

Full Changelog: prettier/eslint-config-prettier@v10.1.5...v10.1.8

v10.1.5

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.4...v10.1.5

v10.1.4

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.3...v10.1.4

v10.1.3

Patch Changes

New Contributors

Full Changelog: prettier/eslint-config-prettier@v10.1.2...v10.1.3

v10.1.2

Patch Changes

v10.1.1

Patch Changes

  • #309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also prettier/eslint-config-prettier#308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

... (truncated)

Changelog

Sourced from eslint-config-prettier's changelog.

eslint-config-prettier

10.1.5

Patch Changes

10.1.4

Patch Changes

10.1.3

Patch Changes

10.1.2

Patch Changes

10.1.1

Patch Changes

  • #309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also prettier/eslint-config-prettier#308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

10.1.0

Minor Changes

... (truncated)

Commits

Updates prettier from 3.8.3 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

3.8.4

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates eslint-plugin-react from 7.34.0 to 7.37.5

Release notes

Sourced from eslint-plugin-react's releases.

v7.37.5

Fixed

  • [no-unknown-property]: allow shadow root attrs on \<template> (#3912[] @​ljharb)
  • [prop-types]: support ComponentPropsWithRef from a namespace import (#3651[] @​corydeppen)
  • [jsx-no-constructed-context-values]: detect constructed context values in React 19 <Context> usage (#3910[] @​TildaDares)
  • [no-unknown-property]: allow transform-origin on rect (#3914[] @​ljharb)

Changed

#3651: jsx-eslint/eslint-plugin-react#3651 #3909: jsx-eslint/eslint-plugin-react#3909 #3910: jsx-eslint/eslint-plugin-react#3910 #3912: jsx-eslint/eslint-plugin-react#3912 #3914: jsx-eslint/eslint-plugin-react#3914 [button-has-type]: docs/rules/button-has-type.md [jsx-no-constructed-context-values]: docs/rules/jsx-no-constructed-context-values.md [no-unknown-property]: docs/rules/no-unknown-property.md [prop-types]: docs/rules/prop-types.md

v7.37.4

Fixed

  • [no-unknown-property]: support onBeforeToggle, popoverTarget, popoverTargetAction attributes (#3865[] @​acusti)
  • [types] fix types of flat configs (#3874[] @​ljharb)

#3865: jsx-eslint/eslint-plugin-react#3865 #3874: jsx-eslint/eslint-plugin-react#3874 [no-unknown-property]: docs/rules/no-unknown-property.md

v7.37.3

Fixed

  • [no-danger]: avoid a crash on a nested component name (#3833[] @​ljharb)
  • [Fix] types: correct generated type declaration (#3840[] @​ocavue)
  • [no-unknown-property]: support precedence prop in react 19 (#3829[] @​acusti)
  • [prop-types]: props missing in validation when using generic types from a namespace import (#3859[] @​rbondoc96)

Changed

  • [Tests] [jsx-no-script-url]: Improve tests (#3849[] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types], [jsx-boolean-value], [jsx-curly-brace-presence], [jsx-no-bind], [no-array-index-key], [no-is-mounted], [no-render-return-value], [require-default-props] (#3841[] @​bastiendmt)

#3829: jsx-eslint/eslint-plugin-react#3829 #3833: jsx-eslint/eslint-plugin-react#3833 #3840: jsx-eslint/eslint-plugin-react#3840 #3841: jsx-eslint/eslint-plugin-react#3841 #3849: jsx-eslint/eslint-plugin-react#3849 #3859: jsx-eslint/eslint-plugin-react#3859 [default-props-match-prop-types]: docs/rules/default-props-match-prop-types.md [jsx-boolean-value]: docs/rules/jsx-boolean-value.md [jsx-curly-brace-presence]: docs/rules/jsx-curly-brace-presence.md [jsx-no-bind]: docs/rules/jsx-no-bind.md

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.37.5 - 2025.04.03

Fixed

  • [no-unknown-property]: allow shadow root attrs on \<template> (#3912[] @​ljharb)
  • [prop-types]: support ComponentPropsWithRef from a namespace import (#3651[] @​corydeppen)
  • [jsx-no-constructed-context-values]: detect constructed context values in React 19 <Context> usage (#3910[] @​TildaDares)
  • [no-unknown-property]: allow transform-origin on rect (#3914[] @​ljharb)

Changed

#3914: jsx-eslint/eslint-plugin-react#3914 #3912: jsx-eslint/eslint-plugin-react#3912 #3910: jsx-eslint/eslint-plugin-react#3910 #3909: jsx-eslint/eslint-plugin-react#3909 #3651: jsx-eslint/eslint-plugin-react#3651

7.37.4 - 2025.01.12

Fixed

  • [no-unknown-property]: support onBeforeToggle, popoverTarget, popoverTargetAction attributes (#3865[] @​acusti)
  • [types] fix types of flat configs (#3874[] @​ljharb)

#3874: jsx-eslint/eslint-plugin-react#3874 #3865: jsx-eslint/eslint-plugin-react#3865

7.37.3 - 2024.12.23

Fixed

  • [no-danger]: avoid a crash on a nested component name (#3833[] @​ljharb)
  • [Fix] types: correct generated type declaration (#3840[] @​ocavue)
  • [no-unknown-property]: support precedence prop in react 19 (#3829[] @​acusti)
  • [prop-types]: props missing in validation when using generic types from a namespace import (#3859[] @​rbondoc96)

Changed

  • [Tests] [jsx-no-script-url]: Improve tests (#3849[] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types], [jsx-boolean-value], [jsx-curly-brace-presence], [jsx-no-bind], [no-array-index-key], [no-is-mounted], [no-render-return-value], [require-default-props] (#3841[] @​bastiendmt)

#3859: jsx-eslint/eslint-plugin-react#3859 #3849: jsx-eslint/eslint-plugin-react#3849 #3841: jsx-eslint/eslint-plugin-react#3841 #3840: jsx-eslint/eslint-plugin-react#3840 #3833: jsx-eslint/eslint-plugin-react#3833 #3829: jsx-eslint/eslint-plugin-react#3829

[7.37.2] - 2024.10.22

... (truncated)

Commits
  • 2c98b83 Update CHANGELOG and bump version
  • 2f64dea [Fix] no-unknown-property: allow transform-origin on rect
  • 2428618 [Fix] jsx-no-constructed-context-values: detect constructed context values ...
  • 60b7316 [Tests] prop-types: use proper spacing/semis, button type
  • 90a00b9 [Fix] prop-types: support ComponentPropsWithRef from a namespace import
  • 3fd9b92 [Fix] no-unknown-property: allow shadow root attrs on \<template>
  • addad46 [Deps] update object.entries
  • 98a31f8 [Dev Deps] update @babel/core, @babel/eslint-parser
  • 7eb6ca9 [Docs] button-has-type: clean up phrasing
  • e6b5b41 Update CHANGELOG and bump version
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 7, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/formatting-8e0f24a97d branch 2 times, most recently from 203d00c to 24b8c6a Compare July 14, 2026 00:36
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/formatting-8e0f24a97d branch from 24b8c6a to e6356bd Compare August 25, 2026 00:29
Bumps the formatting group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `10.9.0` |
| [eslint-plugin-boundaries](https://github.com/javierbrea/eslint-plugin-boundaries) | `6.0.2` | `7.2.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.7` | `16.3.2` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.2` | `10.1.8` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.6` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.0` | `7.37.5` |



Updates `eslint` from 8.57.1 to 10.9.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.1...v10.9.0)

Updates `eslint-plugin-boundaries` from 6.0.2 to 7.2.0
- [Release notes](https://github.com/javierbrea/eslint-plugin-boundaries/releases)
- [Commits](javierbrea/eslint-plugin-boundaries@v6.0.2...v7.2.0)

Updates `eslint-config-next` from 16.2.7 to 16.3.2
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v16.3.2/packages/eslint-config-next)

Updates `eslint-config-prettier` from 9.1.2 to 10.1.8
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/eslint-config-prettier/commits/v10.1.8)

Updates `prettier` from 3.8.3 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.3...3.9.6)

Updates `eslint-plugin-react` from 7.34.0 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.34.0...v7.37.5)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: formatting
- dependency-name: eslint-config-next
  dependency-version: 16.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: formatting
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: formatting
- dependency-name: eslint-plugin-boundaries
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: formatting
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: formatting
- dependency-name: prettier
  dependency-version: 3.9.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: formatting
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/formatting-8e0f24a97d branch from e6356bd to 1ba098c Compare August 25, 2026 00:37
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