Open
Conversation
Contributor
Author
Branch automerge failureThis PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.
|
Contributor
|
Hey there and thank you for opening this pull request! 👋🏼 We require pull request titles to follow the Conventional Commits specification and it looks like your proposed title needs to be adjusted. Details: |
BREAKING CHANGE: updated dependencies to major versions
5e75b8e to
a2df7c7
Compare
Contributor
Author
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.1.4→^3.0.22.21.1→3.1.2^2.10.0→^3.1.0^1.19.1→^3.3.1Release Notes
antfu/eslint-flat-config-utils (eslint-flat-config-utils)
v3.0.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v3.0.1Compare Source
No significant changes
View changes on GitHub
v3.0.0Compare Source
🚨 Breaking Changes
extendswith@eslint/config-helpers- by @antfu (e77db)🐞 Bug Fixes
View changes on GitHub
ota-meshi/eslint-plugin-jsonc (eslint-plugin-jsonc)
v3.1.2Compare Source
Patch Changes
d97b2bcThanks @ota-meshi! - fix: update eslint-json-compat-utils to 0.2.3 and fixed compatibility with@eslint/jsonv3.1.1Compare Source
Patch Changes
36960d6Thanks @FloEdelmann! - Addmainfield to package.jsonv3.1.0Compare Source
Minor Changes
8a1f4b9Thanks @ota-meshi! - feat(object-curly-spacing): addemptyObjectsoption to control spacing in empty objectsv3.0.1Compare Source
Patch Changes
8bef6fcThanks @ota-meshi! - update@ota-meshi/ast-token-storeto v0.3.0v3.0.0Compare Source
Major Changes
#471
d30112bThanks @copilot-swe-agent! - Add ESLint language plugin support. The plugin now exports alanguagesobject that provides language implementations forjson,jsonc,json5, andx. The shared configurations (base,recommended-with-json, etc.) now use thejsonc-based language implementation by default (vialanguage: "jsonc/x"in ESLint flat config) and have been updated to use the new language plugin approach instead of the parser approach.#468
8c87c6cThanks @copilot-swe-agent! - Drop support for legacy config. The plugin now exports flat configs as the main configuration format. The previousflat/*namespace is kept for backward compatibility.#465
62b2127Thanks @copilot-swe-agent! - Drop support for older ESLint versions. The new minimum supported version is ESLint 9.38.0 or later.#460
cc949e3Thanks @copilot-swe-agent! - Drop support for older Node.js versions. The new minimum supported versions are: ^20.19.0 || ^22.13.0 || >=24#469
ee27486Thanks @copilot-swe-agent! - Convert to ESM-only package. The plugin now uses tsdown for bundling and is distributed as pure ESM. The package no longer supports CommonJSrequire()syntax. Users need to useimportstatements or dynamicimport()to load the plugin.#466
29e47c4Thanks @renovate! - Update dependency jsonc-eslint-parser to v3#473
0f6d480Thanks @ota-meshi! - feat: include "no-irregular-whitespace" rule in recommended configs#477
75304cfThanks @ota-meshi! - Removed re-export from jsonc-eslint-parserMinor Changes
#474
90c0d61Thanks @ota-meshi! - fix: replace espree with jsonc-eslint-parser for tokenization#476
633b7d1Thanks @ota-meshi! - The JSONCSourceCode, JSONCToken, and JSONCComment types are now provided. Using these types, you can define a RuleContext type that is useful for creating JSON rules.e.g.
ota-meshi/eslint-plugin-regexp (eslint-plugin-regexp)
v3.1.0Compare Source
Minor Changes
v3.0.0Compare Source
Major Changes
Drop support for ESLint v8. The minimum supported ESLint version is now v9.38.0 and above. (#917)
Drop support for ESLint Legacy Config (
.eslintrc). Only Flat Config (eslint.config.js) is now supported. Therecommendedandallconfig exports now provide Flat Config. Theflat/recommendedandflat/allexports are kept for backwards compatibility. (#917)Drop support for Node.js 18. The minimum supported Node.js version is now 20.19.0, 22.13.0, or 24.0.0 and above. (#915)
Change to ESM package (#913)
Minor Changes
feat: update jsdoc-type-pratt-parser (#919)
feat: enhance jsdoc type parsing (#919)
ota-meshi/eslint-plugin-yml (eslint-plugin-yml)
v3.3.1Compare Source
Patch Changes
98ed3bbThanks @ota-meshi! - fix(yaml-language): crash when parsing errorv3.3.0Compare Source
Minor Changes
ef8de6eThanks @ota-meshi! - feat(flow-mapping-curly-spacing): addemptyObjectsoption to control spacing in empty flow-mappingv3.2.2Compare Source
Patch Changes
276e3aaThanks @ota-meshi! - update@ota-meshi/ast-token-storeto v0.3.0v3.2.1Compare Source
Patch Changes
c09b986Thanks @ota-meshi! - fix: update@ota-meshi/ast-token-storeto 0.2.1v3.2.0Compare Source
Minor Changes
099cb89Thanks @ota-meshi! - feat: use@ota-meshi/ast-token-storev3.1.2Compare Source
Patch Changes
21904d6Thanks @ota-meshi! - fix: type bug with eslint v10v3.1.1Compare Source
Patch Changes
5235c42Thanks @ota-meshi! - fix: some bug with eslint v10v3.1.0Compare Source
Minor Changes
c8ff016Thanks @antfu! - Add ESLint v10 compatibility while maintaining v9 supportisSpaceBetweenTokens()toisSpaceBetween()APIv3.0.0Compare Source
Major Changes
12df7f4Thanks @copilot-swe-agent! - Use language config in shareable configs. The shareable configs now use the new ESLint v9 language config API (language: "yml/yaml") instead of the legacy parser approach (languageOptions: { parser }). This is a breaking change that aligns with ESLint's language plugin architecture.v2.0.2Compare Source
Patch Changes
0fc8d41Thanks @ota-meshi! - fix: add fake scopeManager for SourceCode API compatibilityv2.0.1Compare Source
Patch Changes
c7a45cdThanks @luxass! - fix: handle diff-sequences import issuev2.0.0Compare Source
Major Changes
#532
40eb4beThanks @copilot-swe-agent! - feat: add ESLint language plugin support#528
c4e74d0Thanks @copilot-swe-agent! - Convert package to ESM-only. The package now uses"type": "module"and only exports ESM modules. CommonJSrequire()is no longer supported. Users must use ES modules (import) to load this plugin.#527
4059169Thanks @copilot-swe-agent! - Drop support for legacy ESLint config format. The plugin now exports flat configuration as the main configuration format. The previousflat/*namespace is kept for backward compatibility.#524
2260263Thanks @copilot-swe-agent! - Drop support for ESLint versions older than 9.38.0. The new supported version is>=9.38.0.#522
dc5028eThanks @copilot-swe-agent! - Drop support for Node.js versions older than 20.19.0. The new supported version is^20.19.0 || ^22.13.0 || >=24.#526
3e7cb79Thanks @ota-meshi! - feat: updatestandardconfig#523
50a96f8Thanks @renovate! - Update dependency yaml-eslint-parser to v2Configuration
📅 Schedule: Branch creation - "after 1am and before 5am every weekend" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.