Skip to content

Bump the eslint group across 1 directory with 5 updates - #73488

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/eslint-5c0cd3bb85
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/eslint-5c0cd3bb85

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the eslint group with 5 updates in the /airflow-core/src/airflow/ui directory:

Package From To
@eslint/compat 2.1.0 2.1.1
eslint 10.9.1 10.10.0
eslint-plugin-perfectionist 5.11.0 5.11.1
eslint-plugin-react-refresh 0.5.6 0.5.7
eslint-plugin-unicorn 73.0.0 75.0.0

Updates @eslint/compat from 2.1.0 to 2.1.1

Release notes

Sourced from @​eslint/compat's releases.

compat: v2.1.1

2.1.1 (2026-09-01)

Bug Fixes

  • preserve markVariableAsUsed return value in compat context (#503) (66d9790)
Changelog

Sourced from @​eslint/compat's changelog.

2.1.1 (2026-09-01)

Bug Fixes

  • preserve markVariableAsUsed return value in compat context (#503) (66d9790)
Commits
  • a4466ca chore: release main (#504)
  • 714ffde docs: Update README sponsors
  • 66d9790 fix: preserve markVariableAsUsed return value in compat context (#503)
  • caffae7 docs: Update README sponsors
  • ae1ba25 docs: Update README sponsors
  • 50051c6 docs: Update README sponsors
  • ea83524 docs: Update README sponsors
  • 29956ae docs: Update README sponsors
  • f6d5bdf docs: Update README sponsors
  • 8b71ed3 chore: restore eslint-plugin-jsdoc rules (#316)
  • Additional commits viewable in compare view

Updates eslint from 10.9.1 to 10.10.0

Release notes

Sourced from eslint's releases.

v10.10.0

Features

  • 264b434 feat: add d and v flags to no-unexpected-multiline (#21305) (Gihyeon Jeong / 정기현)
  • c6cc6c5 feat: check Object.prototype property names in new-cap (#21269) (crimsonjay0)
  • 5661fa6 feat: no-extra-bind false negatives with class fields and static blocks (#21260) (synthex-byte)

Bug Fixes

  • bb47dc6 fix: update dependency file-entry-cache to v11 (#20801) (Milos Djermanovic)
  • 427ac0a fix: use format strings in debug calls (#21247) (Francesco Trotta)
  • 9d81532 fix: support __proto__ in /* exported */ comments (#21261) (sethamus)
  • 87e0a08 fix: prefer-object-has-own autofix breaks when Object is shadowed (#21282) (김채영)
  • 8e2cb14 fix: new-cap false positive for UTC calls with properties: false (#21275) (Pixel)
  • 9f4a364 fix: Ignore static imports in no-unreachable (#21276) (Taha Kotil)

Documentation

  • 2417cad docs: Update README (GitHub Actions Bot)
  • 9cecb8a docs: document \c control letter escapes in no-control-regex (#21286) (한국)
  • 8724829 docs: update compat table links (#21263) (fnx)
  • 5634542 docs: Clarify eqeqeq suggestion behavior (#21256) (Müslüm Yılmaz)

Chores

  • b3d876b chore: disable npm audit in ecosystem tests (#21306) (Francesco Trotta)
  • 1696682 ci: restore EMFILE test on Node.js 26 (#21297) (Marry (Subin Yang))
  • 2c7f5d6 chore: update github/codeql-action action to v4.37.9 (#21296) (renovate[bot])
  • 3c753f1 chore: update eslint (#21289) (renovate[bot])
  • 1c73469 chore: update ecosystem plugins (#21280) (ESLint Bot)
  • 08a02be test: add error locations to no-extra-boolean-cast (#21266) (lumir)
  • 77bb1db chore: update github/codeql-action action to v4.37.8 (#21270) (renovate[bot])
  • 007e81a ci: skip EMFILE test on Node.js 26 (#21265) (lumir)
  • 0430280 chore: improve ecosystem tests compatibility on Windows (#21178) (crimsonjay0)
Commits

Updates eslint-plugin-perfectionist from 5.11.0 to 5.11.1

Release notes

Sourced from eslint-plugin-perfectionist's releases.

v5.11.1

   🐞 Bug Fixes

  • Add safety semicolon when the next element continues an expression  -  by @​azat-io (bbb4d)
  • sort-modules: Detect decorator metadata dependencies without tsconfig  -  by @​azat-io (be18b)

   🏎 Performance

    View changes on GitHub
Changelog

Sourced from eslint-plugin-perfectionist's changelog.

v5.11.1

compare changes

🏎 Performance Improvements

  • Build a sortable list's fix once instead of once per report (784725a)

🐞 Bug Fixes

  • sort-modules: Detect decorator metadata dependencies without tsconfig (be18b94)
  • Add safety semicolon when the next element continues an expression (bbb4db2)

❤️ Contributors

Commits
  • 3e100d2 build: publish v5.11.1
  • ef12a53 chore: update dependencies
  • 7788b8c chore: disable top-level var rewriting in build
  • f20889b test: fix invalid syntax and cwd dependency in rule tests
  • 784725a perf: build a sortable list's fix once instead of once per report
  • bbb4db2 fix: add safety semicolon when the next element continues an expression
  • c0b3b8e ci: move to pnpm v12
  • 5c35518 chore: fix vite native config loader warning
  • be18b94 fix(sort-modules): detect decorator metadata dependencies without tsconfig
  • 4a57d49 docs: fix dead legacy config links
  • See full diff in compare view

Updates eslint-plugin-react-refresh from 0.5.6 to 0.5.7

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.5.7

Add allowCompoundComponents option (#117)

Default: false (true in vite config)

Don't warn when components are exported as an object gathering them. Every member of the object must be a component, and a member holding an anonymous function requires a component name as key.

This should be enabled if the fast refresh implementation correctly handles this case. Vite supports it since @vitejs/plugin-react 4.7.0, @vitejs/plugin-react-swc 3.11.0.

{
  "react-refresh/only-export-components": [
    "error",
    { "allowCompoundComponents": true }
  ]
}

Enabling this option allows code such as the following:

const Root = () => <></>;
const Label = () => <></>;
export const Tag = { Root, Label };
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.5.7

Add allowCompoundComponents option (#117)

Default: false (true in vite config)

Don't warn when components are exported as an object gathering them. Every member of the object must be a component, and a member holding an anonymous function requires a component name as key.

This should be enabled if the fast refresh implementation correctly handles this case. Vite supports it since @vitejs/plugin-react 4.7.0, @vitejs/plugin-react-swc 3.11.0.

{
  "react-refresh/only-export-components": [
    "error",
    { "allowCompoundComponents": true }
  ]
}

Enabling this option allows code such as the following:

const Root = () => <></>;
const Label = () => <></>;
export const Tag = { Root, Label };
Commits

Updates eslint-plugin-unicorn from 73.0.0 to 75.0.0

Release notes

Sourced from eslint-plugin-unicorn's releases.

v75.0.0

New rules

Improvements

  • Add TOML support (#3687) f61393aa
  • Improve performance 3cfa32ce
  • prefer-continue: Add checkShortBodies option (#3699) 274d5815
  • filename-case: Add directoryRoots option (#3647) d2d6cc3e
  • custom-error-definition: Allow flexible options placement (#3698) 2f8e2e5d
  • prefer-smaller-scope: Check initialized declarations (#3697) 960b3745
  • no-unsafe-string-replacement: Allow safe repeated strings (#3696) 742bdcee
  • no-array-fill-with-reference-type: Recognize function return types (#3695) 60f00ffa
  • prefer-continue: Support trailing conditionals (#3694) bf480f6f
  • no-immediate-mutation: Support conditionals (#3688) 73235b9a
  • prefer-set-methods: Extend supported methods (#3674) 3459a293
  • prefer-minimal-ternary: Check property reads with checkComputedMemberAccess (#3673) 37d76148
  • prefer-array-from-async: Recognize ordinary serial mapping loops (#3671) 65ad1bb5
  • prefer-uint8array-base64: Prefer native encoding options (#3665) 6ecc9121
  • prefer-group-by: Recognize accumulation loops (#3664) a8e7d0e2
  • no-negated-condition: Preserve comments in autofixes (#3662) 8f407a73
  • prefer-minimal-ternary: Support objects, arrays, and constructors (#3658) 40c860a1
  • prefer-ternary: Handle flat return statements (#3657) 2edc1587
  • no-useless-else: Prevent unsafe combined fixes (#3654) 7beaf7df
  • no-useless-length-check: Check for…of loops (#3652) fdf47c59
  • no-unknown-css-annotations: Fix identifier lookup across @eslint/css-tree versions 9b6f37bc
  • prefer-dom-node-replace-children: Combine consecutive mutations (#3648) 52dd1cec

... (truncated)

Commits
  • 80939f9 75.0.0
  • 274d581 prefer-continue: Add checkShortBodies option (#3699)
  • 2f8e2e5 custom-error-definition: Allow flexible options placement (#3698)
  • 960b374 prefer-smaller-scope: Check initialized declarations (#3697)
  • 742bdce no-unsafe-string-replacement: Allow safe repeated strings (#3696)
  • 60f00ff no-array-fill-with-reference-type: Recognize function return types (#3695)
  • bf480f6 prefer-continue: Support trailing conditionals (#3694)
  • 73235b9 no-immediate-mutation: Support conditionals (#3688)
  • f61393a Add TOML support (#3687)
  • 05fd60e prefer-single-call: Document argument-count limitation (#3686)
  • Additional commits viewable in compare view

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 eslint group with 5 updates in the /airflow-core/src/airflow/ui directory:

| Package | From | To |
| --- | --- | --- |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `2.1.0` | `2.1.1` |
| [eslint](https://github.com/eslint/eslint) | `10.9.1` | `10.10.0` |
| [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) | `5.11.0` | `5.11.1` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.5.6` | `0.5.7` |
| [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `73.0.0` | `75.0.0` |



Updates `@eslint/compat` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/compat-v2.1.1/packages/compat)

Updates `eslint` from 10.9.1 to 10.10.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.9.1...v10.10.0)

Updates `eslint-plugin-perfectionist` from 5.11.0 to 5.11.1
- [Release notes](https://github.com/azat-io/eslint-plugin-perfectionist/releases)
- [Changelog](https://github.com/azat-io/eslint-plugin-perfectionist/blob/main/changelog.md)
- [Commits](azat-io/eslint-plugin-perfectionist@v5.11.0...v5.11.1)

Updates `eslint-plugin-react-refresh` from 0.5.6 to 0.5.7
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.5.6...v0.5.7)

Updates `eslint-plugin-unicorn` from 73.0.0 to 75.0.0
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v73.0.0...v75.0.0)

---
updated-dependencies:
- dependency-name: "@eslint/compat"
  dependency-version: 2.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: eslint
- dependency-name: eslint
  dependency-version: 10.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
- dependency-name: eslint-plugin-perfectionist
  dependency-version: 5.11.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: eslint
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: eslint
- dependency-name: eslint-plugin-unicorn
  dependency-version: 75.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: eslint
...

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 Sep 21, 2026
@boring-cyborg boring-cyborg Bot added the area:UI Related to UI/UX. For Frontend Developers. label Sep 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:UI Related to UI/UX. For Frontend Developers. 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