@plone/volto 18.0.0-alpha.31 → 18.0.0-alpha.32
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 +26 -0
- package/locales/hi/LC_MESSAGES/volto.po +4977 -0
- package/locales/hi.json +1 -0
- package/package.json +5 -5
- package/razzle.config.js +2 -0
- package/src/components/manage/Blocks/Block/EditBlockWrapper.jsx +2 -0
- package/src/components/manage/Form/Form.jsx +1 -1
- package/src/components/theme/View/View.jsx +4 -2
- package/src/components/theme/View/View.test.jsx +1 -0
- package/src/config/ControlPanels.js +7 -0
- package/src/config/config.test.js +232 -0
- package/src/constants/Languages.js +1 -0
- package/src/express-middleware/files.js +1 -0
- package/src/express-middleware/images.js +1 -0
- package/src/helpers/Api/Api.js +12 -0
- package/src/helpers/Api/Api.plone.rest.test.js +1 -0
- package/src/helpers/Api/Api.test.js +1 -0
- package/theme/themes/pastanaga/extras/blocks.less +10 -10
- package/types/config/config.test.d.ts +1 -0
- package/types/constants/Languages.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,32 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 18.0.0-alpha.32 (2024-05-23)
|
|
21
|
+
|
|
22
|
+
### Feature
|
|
23
|
+
|
|
24
|
+
- Removes navigation settings that are not used by Volto. @wesleybl [#5961](https://github.com/plone/volto/issues/5961)
|
|
25
|
+
- Add Hindi translation in Volto. @iFlameing [#6015](https://github.com/plone/volto/issues/6015)
|
|
26
|
+
|
|
27
|
+
### Bugfix
|
|
28
|
+
|
|
29
|
+
- Return a redirect response from Volto server-side rendering if the API request was redirected. @JeffersonBledsoe @mamico [#4834](https://github.com/plone/volto/issues/4834)
|
|
30
|
+
- Fixed separator edit class spilling outside of the block toolbar @JeffersonBledsoe [#6010](https://github.com/plone/volto/issues/6010)
|
|
31
|
+
- Fix duplication of execution of the build dependencies script on start @sneridagh [#6022](https://github.com/plone/volto/issues/6022)
|
|
32
|
+
- In the EditBlockWrapper, pass the `showRestricted` prop to the BlockChooserButton. @JeffersonBledsoe [#6026](https://github.com/plone/volto/issues/6026)
|
|
33
|
+
- Replace relative Import Path with Alias Import in 'Form.jsx' @MAX-786 [#6040](https://github.com/plone/volto/issues/6040)
|
|
34
|
+
- Allow X-Robots-Tag header in images/files middleware @sneridagh [#6043](https://github.com/plone/volto/issues/6043)
|
|
35
|
+
|
|
36
|
+
### Internal
|
|
37
|
+
|
|
38
|
+
- Use pnpm corepack instead of installing it in CI @sneridagh [#6038](https://github.com/plone/volto/issues/6038)
|
|
39
|
+
- Add client and providers to the SSR externals list @sneridagh [#6045](https://github.com/plone/volto/issues/6045)
|
|
40
|
+
|
|
41
|
+
### Documentation
|
|
42
|
+
|
|
43
|
+
- Use Plone Sphinx Theme. Migrate from Netlify to Read the Docs for pull request preview builds. @stevepiercy [#6030](https://github.com/plone/volto/issues/6030)
|
|
44
|
+
- Build documentation and Storybook only when their files change. @stevepiercy [#6037](https://github.com/plone/volto/issues/6037)
|
|
45
|
+
|
|
20
46
|
## 18.0.0-alpha.31 (2024-05-15)
|
|
21
47
|
|
|
22
48
|
### Bugfix
|