Skip to content

Commit a46e263

Browse files
authored
Merge branch 'master' into akul/no-danger-allow-custom-components
2 parents fdd934d + 417e1ca commit a46e263

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
55

66
## Unreleased
77

8+
## [7.34.2] - 2024.05.24
9+
810
### Fixed
911
* [`boolean-prop-naming`]: avoid a crash with a non-TSTypeReference type ([#3718][] @developer-bandi)
1012
* [`jsx-no-leaked-render`]: invalid report if left side is boolean ([#3746][] @akulsr0)
1113
* [`jsx-closing-bracket-location`]: message shows `{{details}}` when there are no details ([#3759][] @mdjermanovic)
1214
* [`no-invalid-html-attribute`]: ensure error messages are correct ([#3759][] @mdjermanovic, @ljharb)
1315

16+
### Changed
17+
* [Refactor] create various eslint utils to fix eslint deprecations ([#3759][] @mdjermanovic, @ljharb)
18+
19+
[7.34.2]: https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.34.1...v7.34.2
1420
[#3759]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3759
1521
[#3746]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3746
1622
[#3718]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3718

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-react",
3-
"version": "7.34.1",
3+
"version": "7.34.2",
44
"author": "Yannick Croissant <[email protected]>",
55
"description": "React specific linting rules for ESLint",
66
"main": "index.js",
@@ -25,32 +25,32 @@
2525
"homepage": "https://github.com/jsx-eslint/eslint-plugin-react",
2626
"bugs": "https://github.com/jsx-eslint/eslint-plugin-react/issues",
2727
"dependencies": {
28-
"array-includes": "^3.1.7",
29-
"array.prototype.findlast": "^1.2.4",
28+
"array-includes": "^3.1.8",
29+
"array.prototype.findlast": "^1.2.5",
3030
"array.prototype.flatmap": "^1.3.2",
3131
"array.prototype.toreversed": "^1.1.2",
3232
"array.prototype.tosorted": "^1.1.3",
3333
"doctrine": "^2.1.0",
34-
"es-iterator-helpers": "^1.0.17",
34+
"es-iterator-helpers": "^1.0.19",
3535
"estraverse": "^5.3.0",
3636
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
3737
"minimatch": "^3.1.2",
38-
"object.entries": "^1.1.7",
39-
"object.fromentries": "^2.0.7",
40-
"object.hasown": "^1.1.3",
41-
"object.values": "^1.1.7",
38+
"object.entries": "^1.1.8",
39+
"object.fromentries": "^2.0.8",
40+
"object.hasown": "^1.1.4",
41+
"object.values": "^1.2.0",
4242
"prop-types": "^15.8.1",
4343
"resolve": "^2.0.0-next.5",
4444
"semver": "^6.3.1",
45-
"string.prototype.matchall": "^4.0.10"
45+
"string.prototype.matchall": "^4.0.11"
4646
},
4747
"devDependencies": {
48-
"@babel/core": "^7.24.0",
49-
"@babel/eslint-parser": "^7.23.10",
50-
"@babel/plugin-syntax-decorators": "^7.24.0",
51-
"@babel/plugin-syntax-do-expressions": "^7.23.3",
52-
"@babel/plugin-syntax-function-bind": "^7.23.3",
53-
"@babel/preset-react": "^7.23.3",
48+
"@babel/core": "^7.24.6",
49+
"@babel/eslint-parser": "^7.24.6",
50+
"@babel/plugin-syntax-decorators": "^7.24.6",
51+
"@babel/plugin-syntax-do-expressions": "^7.24.6",
52+
"@babel/plugin-syntax-function-bind": "^7.24.6",
53+
"@babel/preset-react": "^7.24.6",
5454
"@types/eslint": "=7.2.10",
5555
"@types/estree": "0.0.52",
5656
"@types/node": "^4.9.5",

0 commit comments

Comments
 (0)