@adobe-commerce/elsie 2.1.0-beta.0 → 2.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @adobe-commerce/elsie
2
2
 
3
+ ## 2.1.0-beta.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1256599: Cap the `eslint-plugin-cypress` peer dependency range at `<7.0.0`.
8
+ The unbounded `>=3.0.0` range let npm's resolver consider
9
+ `eslint-plugin-cypress@7`, which peer-requires `eslint@>=10` and conflicts
10
+ with elsie's own `eslint@^9.39.5` dependency — even though
11
+ `eslint-plugin-cypress` remains an optional peer. Versions up to `6.4.4` still
12
+ support `eslint@>=9`, so the range now stays within what's actually
13
+ compatible.
14
+
3
15
  ## 2.1.0-beta.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe-commerce/elsie",
3
- "version": "2.1.0-beta.0",
3
+ "version": "2.1.0-beta.1",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "description": "Domain Package SDK",
6
6
  "engines": {
@@ -38,7 +38,7 @@
38
38
  "@dropins/build-tools": "~1.2.1"
39
39
  },
40
40
  "peerDependencies": {
41
- "eslint-plugin-cypress": ">=3.0.0"
41
+ "eslint-plugin-cypress": ">=3.0.0 <7.0.0"
42
42
  },
43
43
  "peerDependenciesMeta": {
44
44
  "eslint-plugin-cypress": {