@plone/volto 14.1.0 → 14.1.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.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 14.1.1 (2022-01-03)
4
+
5
+ ### Internal
6
+
7
+ - Update to plone.restapi 8.18.0, remove some defensive code in vocabularies action now that it's fixed in the backend @sneridagh
8
+
3
9
  ## 14.1.0 (2021-12-31)
4
10
 
5
11
  ### Feature
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  }
10
10
  ],
11
11
  "license": "MIT",
12
- "version": "14.1.0",
12
+ "version": "14.1.1",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "git@github.com:plone/volto.git"
@@ -75,11 +75,12 @@ export function getVocabularyTokenTitle({
75
75
  subrequest,
76
76
  request: {
77
77
  op: 'get',
78
- path: `/@vocabularies/${vocabulary}?b_size=-1&${qs
79
- .stringify(queryString, {
78
+ path: `/@vocabularies/${vocabulary}?b_size=-1&${qs.stringify(
79
+ queryString,
80
+ {
80
81
  encode: false,
81
- })
82
- .replace('tokens', 'tokens:list')}`, // TODO: Remove when p.restapi 8.18.0 is released
82
+ },
83
+ )}`,
83
84
  },
84
85
  };
85
86
  }