@plone/volto 17.15.1 → 17.15.2
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/.eslintrc +2 -1
- package/CHANGELOG.md +6 -0
- package/package.json +2 -2
- package/packages/volto-slate/package.json +1 -1
package/.eslintrc
CHANGED
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
],
|
|
28
28
|
"react-hooks/rules-of-hooks": "error",
|
|
29
29
|
"react-hooks/exhaustive-deps": "warn",
|
|
30
|
-
"react/react-in-jsx-scope": "off"
|
|
30
|
+
"react/react-in-jsx-scope": "off",
|
|
31
|
+
"jsx-a11y/label-has-associated-control": "off"
|
|
31
32
|
},
|
|
32
33
|
"settings": {
|
|
33
34
|
"import/resolver": {
|
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,12 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 17.15.2 (2024-02-24)
|
|
21
|
+
|
|
22
|
+
### Bugfix
|
|
23
|
+
|
|
24
|
+
- Pin `eslint-plugin-jsx-a11y` to version `^6.7.0` to fix ESLint couldn't determine the plugin "jsx-a11y". @ichim-david [#5785](https://github.com/plone/volto/issues/5785)
|
|
25
|
+
|
|
20
26
|
## 17.15.1 (2024-02-22)
|
|
21
27
|
|
|
22
28
|
### Bugfix
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"version": "17.15.
|
|
12
|
+
"version": "17.15.2",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "git@github.com:plone/volto.git"
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
"eslint-import-resolver-alias": "1.1.2",
|
|
290
290
|
"eslint-import-resolver-babel-plugin-root-import": "1.1.1",
|
|
291
291
|
"eslint-plugin-import": "2.28.1",
|
|
292
|
-
"eslint-plugin-jsx-a11y": "6.7.1",
|
|
292
|
+
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
293
293
|
"eslint-plugin-prettier": "5.0.0",
|
|
294
294
|
"eslint-plugin-react": "7.33.2",
|
|
295
295
|
"eslint-plugin-react-hooks": "4.6.0",
|