Skip to content

Commit 18fb649

Browse files
committed
release: 1.15.1
1 parent 47d643f commit 18fb649

File tree

20 files changed

+587
-609
lines changed

20 files changed

+587
-609
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
## 1.15.1 (Draft)
1+
## 1.15.1 (Sat 26 Oct 2024)
22

33
### 🐞 Fixes
44

5-
- Added missing ts `as` and `satisfies` expressions handling to `getFunctionIdentifier`, closes #843
5+
- fix(plugins/react-x): respect semicolon by @hyoban in https://github.com/Rel1cx/eslint-react/pull/841
6+
- fix(utilities/ast): added missing ts `as` and `satisfies` expressions handling to `getFunctionIdentifier` by @Rel1cx , closes https://github.com/Rel1cx/eslint-react/issues/843
67

78
## 1.15.0 (Sat 12 Oct 2024)
89

examples/vite-react-dom/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"react-dom": "^18.3.1"
1616
},
1717
"devDependencies": {
18-
"@babel/core": "^7.25.9",
18+
"@babel/core": "^7.26.0",
1919
"@babel/eslint-parser": "^7.25.9",
20-
"@babel/preset-env": "^7.25.9",
20+
"@babel/preset-env": "^7.26.0",
2121
"@babel/preset-react": "^7.25.9",
2222
"@eslint-react/eslint-plugin": "workspace:*",
2323
"@eslint/config-inspector": "^0.5.5",

examples/webpack-react-dom-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@tsconfig/node22": "22.0.0",
2626
"@tsconfig/strictest": "2.0.5",
2727
"@types/dotenv-webpack": "7.0.7",
28-
"@types/node": "^22.7.9",
28+
"@types/node": "^22.8.1",
2929
"@types/react": "^18.3.12",
3030
"@types/react-dom": "^18.3.1",
3131
"css-loader": "^7.1.2",

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"format:write": "dprint fmt",
3434
"inspect:deps": "skott -e .ts",
3535
"inspect:eslint-config": "eslint-config-inspector",
36-
"lint": "pnpm run lint:spell && pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:type && concurrently \"pnpm run lint:ts\" \"pnpm run lint:examples\" \"pnpm run lint:website\"",
36+
"lint": "pnpm run lint:deps && pnpm run lint:publish && pnpm run lint:type && concurrently \"pnpm run lint:ts\" \"pnpm run lint:examples\" \"pnpm run lint:website\"",
3737
"lint:deps": "skott -m file-tree -e .ts -s",
3838
"lint:examples": "pnpm -r -F \"./examples/*\" run --parallel lint",
3939
"lint:publish": "pnpm -r run --parallel lint:publish",
@@ -49,18 +49,18 @@
4949
"devDependencies": {
5050
"@changesets/cli": "^2.27.9",
5151
"@effect/language-service": "^0.2.0",
52-
"@effect/platform": "^0.69.8",
53-
"@effect/platform-bun": "^0.49.9",
54-
"@effect/platform-node": "^0.64.9",
52+
"@effect/platform": "^0.69.9",
53+
"@effect/platform-bun": "^0.49.10",
54+
"@effect/platform-node": "^0.64.10",
5555
"@effect/schema": "^0.75.5",
5656
"@eslint/config-inspector": "^0.5.5",
5757
"@eslint/js": "^9.13.0",
5858
"@stylistic/eslint-plugin-js": "^2.9.0",
59-
"@susisu/eslint-plugin-safe-typescript": "^0.9.0",
59+
"@susisu/eslint-plugin-safe-typescript": "^0.9.1",
6060
"@swc/core": "^1.7.39",
6161
"@tsconfig/node22": "^22.0.0",
6262
"@tsconfig/strictest": "^2.0.5",
63-
"@types/node": "^22.7.9",
63+
"@types/node": "^22.8.1",
6464
"@types/react": "^18.3.12",
6565
"@types/react-dom": "^18.3.1",
6666
"@typescript-eslint/eslint-plugin": "^8.11.0",
@@ -71,7 +71,7 @@
7171
"concurrently": "^9.0.1",
7272
"cspell": "^8.15.4",
7373
"dprint": "^0.47.4",
74-
"effect": "^3.10.3",
74+
"effect": "^3.10.4",
7575
"esbuild": "^0.24.0",
7676
"eslint": "^9.13.0",
7777
"eslint-config-flat-gitignore": "^0.3.0",
@@ -88,7 +88,7 @@
8888
"eslint-plugin-vitest": "^0.5.4",
8989
"importx": "^0.5.0",
9090
"lefthook": "^1.8.1",
91-
"markdownlint": "^0.35.0",
91+
"markdownlint": "^0.36.0",
9292
"publint": "^0.2.12",
9393
"react": "^18.3.1",
9494
"react-dom": "^18.3.1",
@@ -97,7 +97,7 @@
9797
"std-env": "^3.7.0",
9898
"tinyglobby": "^0.2.10",
9999
"ts-pattern": "^5.5.0",
100-
"tsup": "^8.3.4",
100+
"tsup": "^8.3.5",
101101
"tsx": "^4.19.1",
102102
"turbo": "^2.2.3",
103103
"type-fest": "^4.26.1",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@
5757
"ts-pattern": "^5.5.0"
5858
},
5959
"devDependencies": {
60-
"tsup": "^8.3.4"
60+
"tsup": "^8.3.5"
6161
}
6262
}

packages/plugins/eslint-plugin-react-debug/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"devDependencies": {
6565
"@types/react": "^18.3.12",
6666
"@types/react-dom": "^18.3.1",
67-
"tsup": "^8.3.4"
67+
"tsup": "^8.3.5"
6868
},
6969
"peerDependencies": {
7070
"eslint": "^8.57.0 || ^9.0.0",

packages/plugins/eslint-plugin-react-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@types/react": "^18.3.12",
6565
"@types/react-dom": "^18.3.1",
6666
"string-ts": "^2.2.0",
67-
"tsup": "^8.3.4"
67+
"tsup": "^8.3.5"
6868
},
6969
"peerDependencies": {
7070
"eslint": "^8.57.0 || ^9.0.0",

packages/plugins/eslint-plugin-react-hooks-extra/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@types/react": "^18.3.12",
6565
"@types/react-dom": "^18.3.1",
6666
"string-ts": "^2.2.0",
67-
"tsup": "^8.3.4"
67+
"tsup": "^8.3.5"
6868
},
6969
"peerDependencies": {
7070
"eslint": "^8.57.0 || ^9.0.0",

packages/plugins/eslint-plugin-react-naming-convention/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@types/react": "^18.3.12",
6464
"@types/react-dom": "^18.3.1",
6565
"string-ts": "^2.2.0",
66-
"tsup": "^8.3.4"
66+
"tsup": "^8.3.5"
6767
},
6868
"peerDependencies": {
6969
"eslint": "^8.57.0 || ^9.0.0",

packages/plugins/eslint-plugin-react-web-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@types/react": "^18.3.12",
6666
"@types/react-dom": "^18.3.1",
6767
"string-ts": "^2.2.0",
68-
"tsup": "^8.3.4"
68+
"tsup": "^8.3.5"
6969
},
7070
"peerDependencies": {
7171
"eslint": "^8.57.0 || ^9.0.0",

0 commit comments

Comments
 (0)