Skip to content

Commit 05a1dbe

Browse files
committed
Restrict peer dependencies for eslint and @wordpress/eslint-plugin to prevent incompatible usage
1 parent 7aa9c23 commit 05a1dbe

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [6.0.1] - 2026-04-19
8+
9+
### Fixed
10+
* JS: Restrict peer dependencies to `eslint` <9 and `@wordpress/eslint-plugin` <25 to prevent incompatible usage.
11+
712
## [6.0.0] - 2024-02-09
813

914
### Changed

packages/eslint-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
},
2222
"homepage": "https://github.com/wearerequired/coding-standards/tree/master/packages/eslint-config#readme",
2323
"peerDependencies": {
24-
"@wordpress/eslint-plugin": ">=17",
25-
"eslint": ">=8",
24+
"@wordpress/eslint-plugin": ">=17 <25",
25+
"eslint": ">=8 <9",
2626
"prettier": ">=3"
2727
},
2828
"publishConfig": {

0 commit comments

Comments
 (0)