From b788a591bd2744c01ddd08df749b87c0c28f7e22 Mon Sep 17 00:00:00 2001 From: ESLint Bot Date: Wed, 12 Aug 2026 00:04:54 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=201.5.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 | 21 +++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- 5 files changed, 25 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4c313f93..dd8fde77 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.4.0" + ".": "1.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fe8e5132..90fd6fe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [1.5.0](https://github.com/eslint/css/compare/css-v1.4.0...css-v1.5.0) (2026-08-12) + + +### Features + +* add suggestions to no-empty-blocks ([#479](https://github.com/eslint/css/issues/479)) ([aa750cc](https://github.com/eslint/css/commit/aa750cca82c806af1ec8366228db72bd7c2def13)) +* make font-family-fallbacks generic fonts case-insensitive ([#517](https://github.com/eslint/css/issues/517)) ([f010c7b](https://github.com/eslint/css/commit/f010c7bc1f043b5cc0059f0293cfdc3f4184d290)) + + +### Bug Fixes + +* detect equivalent selectors in `no-duplicate-keyframe-selectors` ([#512](https://github.com/eslint/css/issues/512)) ([f4fbea8](https://github.com/eslint/css/commit/f4fbea84cf5583a43fa2eca3dc0a02f5925a6727)) +* distinguish named timeline range keyframe selectors ([#507](https://github.com/eslint/css/issues/507)) ([c96ceeb](https://github.com/eslint/css/commit/c96ceeb3fe225505657b3ccf75e07a65e4117ca1)) +* skip validating values containing env() in no-invalid-properties ([#510](https://github.com/eslint/css/issues/510)) ([ffc5c32](https://github.com/eslint/css/commit/ffc5c325756e1800cb397b079190bec00658abae)) +* update baseline data ([005db74](https://github.com/eslint/css/commit/005db746f026714534a4df71da38598eade8697b)) +* update baseline data ([43672ee](https://github.com/eslint/css/commit/43672ee184353178e75b60846435adf7dfc8c551)) +* update baseline data ([1ae3a41](https://github.com/eslint/css/commit/1ae3a4125a4e6d78fd32e93969100a8090a87157)) +* update baseline data ([#504](https://github.com/eslint/css/issues/504)) ([e90e001](https://github.com/eslint/css/commit/e90e001ae2d26f600aaaa7009047a316a254c4b7)) +* update baseline data ([#514](https://github.com/eslint/css/issues/514)) ([1c8a632](https://github.com/eslint/css/commit/1c8a6324588b69d6c905b09046f3f80ec438313c)) +* update dependency @eslint/css-tree to ^4.0.5 ([#511](https://github.com/eslint/css/issues/511)) ([500ad2a](https://github.com/eslint/css/commit/500ad2a95a2b37c397be0ee00c90352d1a299b2b)) + ## [1.4.0](https://github.com/eslint/css/compare/css-v1.3.0...css-v1.4.0) (2026-07-01) diff --git a/jsr.json b/jsr.json index c1919ffe..ccd3cba9 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.4.0", + "version": "1.5.0", "exports": { ".": "./dist/index.js" }, diff --git a/package.json b/package.json index a90ed305..de68726b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/css", - "version": "1.4.0", + "version": "1.5.0", "description": "CSS linting plugin for ESLint", "author": "Nicholas C. Zakas", "type": "module", diff --git a/src/index.js b/src/index.js index a3fe4743..d1275c6e 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: "1.4.0", // x-release-please-version + version: "1.5.0", // x-release-please-version }, languages: { css: new CSSLanguage(),