eslint-plugin-primer-react 9.0.0 → 9.1.0-rc.25013a8
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.
package/.github/workflows/ci.yml
CHANGED
|
@@ -9,7 +9,7 @@ jobs:
|
|
|
9
9
|
format:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@v7
|
|
13
13
|
- name: Use Node.js
|
|
14
14
|
uses: actions/setup-node@v4
|
|
15
15
|
with:
|
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
test:
|
|
22
22
|
runs-on: ubuntu-latest
|
|
23
23
|
steps:
|
|
24
|
-
- uses: actions/checkout@
|
|
24
|
+
- uses: actions/checkout@v7
|
|
25
25
|
- name: Use Node.js
|
|
26
26
|
uses: actions/setup-node@v4
|
|
27
27
|
with:
|
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
lint:
|
|
34
34
|
runs-on: ubuntu-latest
|
|
35
35
|
steps:
|
|
36
|
-
- uses: actions/checkout@
|
|
36
|
+
- uses: actions/checkout@v7
|
|
37
37
|
- name: Use Node.js
|
|
38
38
|
uses: actions/setup-node@v4
|
|
39
39
|
with:
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
runs-on: ubuntu-latest
|
|
21
21
|
steps:
|
|
22
22
|
- name: Checkout repository
|
|
23
|
-
uses: actions/checkout@
|
|
23
|
+
uses: actions/checkout@v7
|
|
24
24
|
with:
|
|
25
25
|
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
|
|
26
26
|
fetch-depth: 0
|
|
@@ -56,7 +56,7 @@ jobs:
|
|
|
56
56
|
runs-on: ubuntu-latest
|
|
57
57
|
steps:
|
|
58
58
|
- name: Checkout repository
|
|
59
|
-
uses: actions/checkout@
|
|
59
|
+
uses: actions/checkout@v7
|
|
60
60
|
with:
|
|
61
61
|
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
|
|
62
62
|
fetch-depth: 0
|
|
@@ -106,7 +106,7 @@ jobs:
|
|
|
106
106
|
runs-on: ubuntu-latest
|
|
107
107
|
steps:
|
|
108
108
|
- name: Checkout repository
|
|
109
|
-
uses: actions/checkout@
|
|
109
|
+
uses: actions/checkout@v7
|
|
110
110
|
with:
|
|
111
111
|
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
|
|
112
112
|
fetch-depth: 0
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# eslint-plugin-primer-react
|
|
2
2
|
|
|
3
|
+
## 9.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#592](https://github.com/primer/eslint-plugin-primer-react/pull/592) [`0988020`](https://github.com/primer/eslint-plugin-primer-react/commit/0988020be213c0158f607b250a4faef6e1e41b99) Thanks [@alaingoga](https://github.com/alaingoga)! - Remove plugin:github/react from src/configs/recommended.js to avoid silently depending on GitHub’s React config behavior.
|
|
8
|
+
Expand this package’s eslint peer dependency range to include ESLint ^10.0.0.
|
|
9
|
+
Update the lockfile to reflect the peer dependency change.
|
|
10
|
+
|
|
3
11
|
## 9.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-primer-react",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.1.0-rc.25013a8",
|
|
4
4
|
"description": "ESLint rules for Primer React",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/primer/eslint-plugin-primer-react#readme",
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"eslint": "^9.0.0"
|
|
31
|
+
"eslint": "^9.0.0 || ^10.0.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@typescript-eslint/utils": "^8.50.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@github/markdownlint-github": "^0.8.1",
|
|
45
45
|
"@github/prettier-config": "0.0.6",
|
|
46
46
|
"@types/jest": "^30.0.0",
|
|
47
|
-
"@types/node": "^
|
|
47
|
+
"@types/node": "^26.0.0",
|
|
48
48
|
"@typescript-eslint/rule-tester": "^8.50.0",
|
|
49
49
|
"eslint": "^9.0.0",
|
|
50
50
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"eslint-plugin-prettier": "^5.5.4",
|
|
56
56
|
"globals": "^17.0.0",
|
|
57
57
|
"jest": "^30.0.5",
|
|
58
|
-
"markdownlint-cli2": "^0.
|
|
58
|
+
"markdownlint-cli2": "^0.23.0",
|
|
59
59
|
"markdownlint-cli2-formatter-pretty": "^0.0.10"
|
|
60
60
|
},
|
|
61
61
|
"prettier": "@github/prettier-config"
|