Skip to content

Commit faa9377

Browse files
committed
release: 1.29.0
1 parent 5c2a713 commit faa9377

File tree

18 files changed

+425
-364
lines changed

18 files changed

+425
-364
lines changed

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v1.29.0 (2025-03-01)
2+
3+
### ✨ New
4+
5+
- feat(plugins/naming-convention): add `context-name` rule by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/952
6+
7+
### 🐞 Fixes
8+
9+
- fix: fixed `naming-convention/use-state` works in components only, closes #953 by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/954
10+
11+
### 🪄 Improvements
12+
13+
- docs: use `recommended-typescript` for typescript files by @bluwy in https://github.com/Rel1cx/eslint-react/pull/949
14+
15+
### New Contributors
16+
17+
- @bluwy made their first contribution in https://github.com/Rel1cx/eslint-react/pull/949
18+
119
## v1.28.0 (2025-02-26)
220

321
### ✨ New
@@ -175,7 +193,7 @@ function useAuth() {
175193
- docs: add 'Min. React' column to rules overview page by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/880>
176194
- docs: add features section to rules overview page by @Rel1cx
177195

178-
## New Contributors
196+
### New Contributors
179197

180198
- @danielrentz made their first contribution in <https://github.com/Rel1cx/eslint-react/pull/877>
181199

@@ -314,7 +332,7 @@ function useAuth() {
314332
- docs: use a standard mono-width font for the docs, closes #835 by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/837>
315333
- Undeprecate `hooks-extra-no-direct-set-state-in-use-layout-effect` and remove it from recommended presets, closes #839 by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/840>
316334

317-
## New Contributors
335+
### New Contributors
318336

319337
- @imjordanxd made their first contribution in <https://github.com/Rel1cx/eslint-react/pull/829>
320338
- @neovov made their first contribution in <https://github.com/Rel1cx/eslint-react/pull/831>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.28.1-beta.7
1+
1.29.0

apps/website/content/docs/changelog.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
title: Changelog
33
---
44

5+
## v1.29.0 (2025-03-01)
6+
7+
### ✨ New
8+
9+
- feat(plugins/naming-convention): add `context-name` rule by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/952
10+
11+
### 🐞 Fixes
12+
13+
- fix: fixed `naming-convention/use-state` works in components only, closes #953 by @Rel1cx in https://github.com/Rel1cx/eslint-react/pull/954
14+
15+
### 🪄 Improvements
16+
17+
- docs: use `recommended-typescript` for typescript files by @bluwy in https://github.com/Rel1cx/eslint-react/pull/949
18+
19+
### New Contributors
20+
21+
- @bluwy made their first contribution in https://github.com/Rel1cx/eslint-react/pull/949
22+
523
## v1.28.0 (2025-02-26)
624

725
### ✨ New
@@ -179,7 +197,7 @@ function useAuth() {
179197
- docs: add 'Min. React' column to rules overview page by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/880>
180198
- docs: add features section to rules overview page by @Rel1cx
181199

182-
## New Contributors
200+
### New Contributors
183201

184202
- @danielrentz made their first contribution in <https://github.com/Rel1cx/eslint-react/pull/877>
185203

@@ -318,7 +336,7 @@ function useAuth() {
318336
- docs: use a standard mono-width font for the docs, closes #835 by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/837>
319337
- Undeprecate `hooks-extra-no-direct-set-state-in-use-layout-effect` and remove it from recommended presets, closes #839 by @Rel1cx in <https://github.com/Rel1cx/eslint-react/pull/840>
320338

321-
## New Contributors
339+
### New Contributors
322340

323341
- @imjordanxd made their first contribution in <https://github.com/Rel1cx/eslint-react/pull/829>
324342
- @neovov made their first contribution in <https://github.com/Rel1cx/eslint-react/pull/831>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"private": true,
55
"description": "Monorepo for eslint-plugin-react-[x, dom, web-api, hooks-extra, naming-convention].",
66
"keywords": [
@@ -130,7 +130,7 @@
130130
"react": "^19.0.0",
131131
"react-dom": "^19.0.0",
132132
"ts-api-utils": "^2.0.1",
133-
"typescript": "5.8.1-rc"
133+
"typescript": "^5.8.2"
134134
}
135135
}
136136
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/core",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and Patterns.",
55
"homepage": "https://github.com/Rel1cx/eslint-react",
66
"bugs": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-debug",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"keywords": [
66
"react",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-dom",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"description": "ESLint React's ESLint plugin for React DOM related rules.",
55
"keywords": [
66
"react",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-hooks-extra",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"description": "ESLint React's ESLint plugin for React Hooks related rules.",
55
"keywords": [
66
"react",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-naming-convention",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"keywords": [
66
"react",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react-web-api",
3-
"version": "1.28.1-beta.7",
3+
"version": "1.29.0",
44
"description": "ESLint React's ESLint plugin for interacting with Web APIs",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)