From b2ad43630d724440a3af4ef1d630d2e22242570d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 04:55:40 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20release=200.11.0=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .release-please-manifest.json | 2 +- CHANGELOG.md | 27 +++++++++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 31 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d9b009d..78e7f271 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dbc0e766..b1f3f296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [0.11.0](https://github.com/eslint/css/compare/css-v0.10.0...css-v0.11.0) (2025-08-11) + + +### Features + +* add [@namespace](https://github.com/namespace) validation to no-invalid-at-rule-placement rule ([#183](https://github.com/eslint/css/issues/183)) ([26b902c](https://github.com/eslint/css/commit/26b902c4f42cccb33d7f8119a3376773e0ad91bd)) +* add `font-family-fallbacks` rule ([#174](https://github.com/eslint/css/issues/174)) ([5678024](https://github.com/eslint/css/commit/5678024802af61fff74e71172a3732c5deec7afe)) +* add autofix to no-duplicate-imports rule ([#216](https://github.com/eslint/css/issues/216)) ([0aa7b97](https://github.com/eslint/css/commit/0aa7b977a1ab829698ab40de906be5a2935945a5)) +* add new rule `no-duplicate-keyframe-selectors` ([#143](https://github.com/eslint/css/issues/143)) ([dfe9c05](https://github.com/eslint/css/commit/dfe9c051907a49ccf58cf4c7b14fea1324fc5ab5)) +* add suggestion to no-important rule to remove !important flag ([#217](https://github.com/eslint/css/issues/217)) ([47e26b3](https://github.com/eslint/css/commit/47e26b3a83d18390dc87df718359225b20bd65d9)) +* allow relative-size and global values in relative-font-units ([#214](https://github.com/eslint/css/issues/214)) ([933d71c](https://github.com/eslint/css/commit/933d71c61ca3ae5eb97474df8cc9f94a13a9a273)) + + +### Bug Fixes + +* allow any type for `meta.docs.recommended` in custom rules ([#231](https://github.com/eslint/css/issues/231)) ([6ea61a5](https://github.com/eslint/css/commit/6ea61a5aef4582c9ae64f7428b50d9722a717acb)) +* bump `plugin-kit` to latest to resolve security vulnerabilities ([#209](https://github.com/eslint/css/issues/209)) ([32e02d6](https://github.com/eslint/css/commit/32e02d6c1425caefa83a98ef868364b734339241)) +* disallow extra properties in rule options ([#197](https://github.com/eslint/css/issues/197)) ([8fd755d](https://github.com/eslint/css/commit/8fd755d132b08105838ac032654a3be906fe44ca)) +* make no-invalid-properties var() case-insensitive ([#232](https://github.com/eslint/css/issues/232)) ([ad0cbdb](https://github.com/eslint/css/commit/ad0cbdbde5bc9e3558789d7b47d70df93cd9964e)) +* make relative-font-units unit matching case-insensitive ([#222](https://github.com/eslint/css/issues/222)) ([7a2ecad](https://github.com/eslint/css/commit/7a2ecadddcfbe9e738f88a6c8ba9540b03c088a5)) +* prevent false positives for !important inside comments ([#218](https://github.com/eslint/css/issues/218)) ([3c6937a](https://github.com/eslint/css/commit/3c6937a63874e422a1cec46f601260a2ae06b188)) +* update baseline data ([8ee9da0](https://github.com/eslint/css/commit/8ee9da0c401d183e11f0fdaa7a82864c226689dc)) +* update baseline data ([#207](https://github.com/eslint/css/issues/207)) ([79e06c6](https://github.com/eslint/css/commit/79e06c6510aabeb121ef94d2b48047eb529fbff1)) +* update baseline data ([#213](https://github.com/eslint/css/issues/213)) ([30ca01c](https://github.com/eslint/css/commit/30ca01c0dbdc4bf13af9709a8057979dec4e35cf)) +* update baseline data ([#234](https://github.com/eslint/css/issues/234)) ([5f409d3](https://github.com/eslint/css/commit/5f409d35e0d47bbe8509bcd4f109a3958197b8c2)) +* var() with fallback value in `no-invalid-properties` ([#184](https://github.com/eslint/css/issues/184)) ([1db0b1a](https://github.com/eslint/css/commit/1db0b1ae3873f4efff0f17e95654ed0f744ec04d)) + ## [0.10.0](https://github.com/eslint/css/compare/css-v0.9.0...css-v0.10.0) (2025-07-11) diff --git a/jsr.json b/jsr.json index 4f8f08fe..d31c8e6e 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "0.10.0", + "version": "0.11.0", "exports": { ".": "./dist/esm/index.js" }, diff --git a/package.json b/package.json index 4be0175d..6034c658 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "0.10.0", + "version": "0.11.0", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index 647c3861..004f3573 100644 --- a/src/index.js +++ b/src/index.js @@ -19,7 +19,7 @@ import rules from "./build/rules.js"; const plugin = { meta: { name: "@eslint/css", - version: "0.10.0", // x-release-please-version + version: "0.11.0", // x-release-please-version }, languages: { css: new CSSLanguage(),