@plone/volto 16.34.0 → 16.34.1
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/.changelog.draft +2 -6
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/packages/volto-slate/package.json +1 -1
- package/src/middleware/api.js +1 -1
package/.changelog.draft
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
## 16.34.
|
|
2
|
-
|
|
3
|
-
### Feature
|
|
4
|
-
|
|
5
|
-
- Provide language alternate links @erral [#6615](https://github.com/plone/volto/issues/6615)
|
|
1
|
+
## 16.34.1 (2025-09-29)
|
|
6
2
|
|
|
7
3
|
### Bugfix
|
|
8
4
|
|
|
9
|
-
-
|
|
5
|
+
- Added guard in API REDUX middleware. @sneridagh [#7412](https://github.com/plone/volto/issues/7412)
|
|
10
6
|
|
|
11
7
|
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/middleware/api.js
CHANGED
|
@@ -331,7 +331,7 @@ const apiMiddlewareFactory = (api) => ({ dispatch, getState }) => (next) => (
|
|
|
331
331
|
...rest,
|
|
332
332
|
error,
|
|
333
333
|
statusCode: error.response,
|
|
334
|
-
message: error.response
|
|
334
|
+
message: error.response?.body?.message,
|
|
335
335
|
connectionRefused: false,
|
|
336
336
|
type: SET_APIERROR,
|
|
337
337
|
});
|