@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 CHANGED
@@ -1,11 +1,7 @@
1
- ## 16.34.0 (2025-08-25)
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
- - Fix corner case in devproxy when pathname is null. @sneridagh [#7276](https://github.com/plone/volto/issues/7276)
5
+ - Added guard in API REDUX middleware. @sneridagh [#7412](https://github.com/plone/volto/issues/7412)
10
6
 
11
7
 
Binary file
package/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 16.34.1 (2025-09-29)
12
+
13
+ ### Bugfix
14
+
15
+ - Added guard in API REDUX middleware. @sneridagh [#7412](https://github.com/plone/volto/issues/7412)
16
+
11
17
  ## 16.34.0 (2025-08-25)
12
18
 
13
19
  ### Feature
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  }
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "16.34.0",
12
+ "version": "16.34.1",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "git@github.com:plone/volto.git"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plone/volto-slate",
3
- "version": "16.34.0",
3
+ "version": "16.34.1",
4
4
  "description": "Slate.js integration with Volto",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -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.body.message,
334
+ message: error.response?.body?.message,
335
335
  connectionRefused: false,
336
336
  type: SET_APIERROR,
337
337
  });