@plone/volto 17.0.0-alpha.2 → 17.0.0-alpha.21
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/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +549 -15
- package/CONTRIBUTING.md +1 -1
- package/README.md +11 -14
- package/addon-registry.js +34 -0
- package/create-theme-addons-loader.js +79 -0
- package/cypress/support/commands.js +58 -5
- package/cypress/support/e2e.js +1 -2
- package/cypress/support/volto-slate.js +4 -5
- package/docker-compose.yml +1 -1
- package/locales/ca/LC_MESSAGES/volto.po +282 -7
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +301 -26
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +281 -6
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +291 -16
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +282 -7
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +4891 -0
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +282 -7
- package/locales/fr.json +1 -1
- package/locales/it/LC_MESSAGES/volto.po +284 -9
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +282 -7
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +937 -650
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +282 -7
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +291 -16
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +282 -7
- package/locales/ro.json +1 -1
- package/locales/volto.pot +282 -7
- package/locales/zh_CN/LC_MESSAGES/volto.po +282 -7
- package/locales/zh_CN.json +1 -1
- package/package.json +8 -6
- package/packages/volto-slate/build/messages/src/blocks/Table/TableBlockEdit.json +1 -1
- package/packages/volto-slate/build/messages/src/blocks/Text/DefaultTextBlockEditor.json +1 -1
- package/packages/volto-slate/build/messages/src/blocks/Text/DetachedTextBlockEditor.json +1 -1
- package/packages/volto-slate/build/messages/src/blocks/Text/SlashMenu.json +1 -1
- package/packages/volto-slate/build/messages/src/editor/plugins/AdvancedLink/index.json +1 -1
- package/packages/volto-slate/build/messages/src/editor/plugins/Link/index.json +1 -1
- package/packages/volto-slate/build/messages/src/editor/plugins/Table/index.json +1 -1
- package/packages/volto-slate/build/messages/src/elementEditor/messages.json +1 -1
- package/packages/volto-slate/build/messages/src/widgets/HtmlSlateWidget.json +1 -1
- package/packages/volto-slate/build/messages/src/widgets/RichTextWidgetView.json +1 -1
- package/packages/volto-slate/package.json +1 -1
- package/packages/volto-slate/src/actions/index.js +1 -1
- package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +21 -212
- package/packages/volto-slate/src/blocks/Table/schema.js +122 -0
- package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +8 -3
- package/packages/volto-slate/src/blocks/Text/SlashMenu.jsx +4 -3
- package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +20 -16
- package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +3 -1
- package/packages/volto-slate/src/blocks/Text/index.js +10 -2
- package/packages/volto-slate/src/editor/config.jsx +5 -4
- package/packages/volto-slate/src/editor/deserialize.js +0 -1
- package/packages/volto-slate/src/editor/index.js +4 -4
- package/packages/volto-slate/src/editor/less/slate.less +28 -0
- package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +14 -4
- package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +14 -5
- package/packages/volto-slate/src/editor/render.jsx +68 -8
- package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +2 -2
- package/packages/volto-slate/src/editor/ui/index.js +15 -15
- package/packages/volto-slate/src/index.js +2 -2
- package/packages/volto-slate/src/utils/blocks.js +7 -0
- package/packages/volto-slate/src/widgets/RichTextWidget.jsx +15 -8
- package/razzle.config.js +28 -0
- package/src/actions/index.js +6 -0
- package/src/actions/language/language.js +9 -8
- package/src/actions/querystringsearch/querystringsearch.js +20 -14
- package/src/actions/relations/rebuild.js +25 -0
- package/src/actions/relations/relations.js +86 -0
- package/src/actions/relations/relations.test.js +15 -0
- package/src/components/index.js +3 -0
- package/src/components/manage/Add/Add.jsx +2 -2
- package/src/components/manage/AnchorPlugin/index.jsx +2 -2
- package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
- package/src/components/manage/BlockChooser/BlockChooser.jsx +14 -5
- package/src/components/manage/BlockChooser/BlockChooser.test.jsx +5 -0
- package/src/components/manage/Blocks/Block/BlocksForm.jsx +19 -2
- package/src/components/manage/Blocks/Block/Edit.jsx +1 -1
- package/src/components/manage/Blocks/Block/Style.jsx +2 -2
- package/src/components/manage/Blocks/Container/Data.jsx +32 -0
- package/src/components/manage/Blocks/Container/Edit.jsx +174 -0
- package/src/components/manage/Blocks/Container/EditBlockWrapper.jsx +120 -0
- package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +84 -0
- package/src/components/manage/Blocks/Container/SimpleContainerToolbar.jsx +54 -0
- package/src/components/manage/Blocks/Grid/Edit.jsx +33 -0
- package/src/components/manage/Blocks/Grid/View.jsx +43 -0
- package/src/components/manage/Blocks/Grid/adapter.js +14 -0
- package/src/components/manage/Blocks/Grid/grid-1.svg +6 -0
- package/src/components/manage/Blocks/Grid/grid-2.svg +9 -0
- package/src/components/manage/Blocks/Grid/grid-3.svg +10 -0
- package/src/components/manage/Blocks/Grid/grid-4.svg +11 -0
- package/src/components/manage/Blocks/Grid/schema.js +35 -0
- package/src/components/manage/Blocks/Grid/templates.js +47 -0
- package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +6 -1
- package/src/components/manage/Blocks/Image/Edit.jsx +51 -12
- package/src/components/manage/Blocks/Image/Edit.test.jsx +2 -0
- package/src/components/manage/Blocks/Image/ImageSidebar.jsx +66 -16
- package/src/components/manage/Blocks/Image/View.jsx +25 -5
- package/src/components/manage/Blocks/Image/View.test.jsx +20 -0
- package/src/components/manage/Blocks/Image/schema.js +12 -9
- package/src/components/manage/Blocks/Image/utils.js +14 -0
- package/src/components/manage/Blocks/LeadImage/Edit.jsx +32 -10
- package/src/components/manage/Blocks/LeadImage/Edit.test.jsx +11 -1
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.jsx +28 -9
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.test.jsx +8 -2
- package/src/components/manage/Blocks/LeadImage/View.jsx +50 -38
- package/src/components/manage/Blocks/LeadImage/View.test.jsx +11 -1
- package/src/components/manage/Blocks/Listing/DefaultTemplate.jsx +18 -3
- package/src/components/manage/Blocks/Listing/Edit.jsx +0 -14
- package/src/components/manage/Blocks/Listing/ListingBody.jsx +30 -8
- package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +20 -0
- package/src/components/manage/Blocks/Listing/SummaryTemplate.jsx +1 -1
- package/src/components/manage/Blocks/Listing/getAsyncData.js +9 -3
- package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +26 -18
- package/src/components/manage/Blocks/Search/SearchBlockEdit.jsx +5 -4
- package/src/components/manage/Blocks/Search/SearchBlockView.jsx +2 -1
- package/src/components/manage/Blocks/Search/components/DateRangeFacet.jsx +4 -1
- package/src/components/manage/Blocks/Search/components/Facets.jsx +64 -4
- package/src/components/manage/Blocks/Search/components/SearchInput.jsx +9 -2
- package/src/components/manage/Blocks/Search/components/index.js +13 -13
- package/src/components/manage/Blocks/Search/hocs/index.js +2 -2
- package/src/components/manage/Blocks/Search/hocs/withQueryString.jsx +2 -2
- package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +43 -15
- package/src/components/manage/Blocks/Search/layout/LeftColumnFacets.jsx +17 -5
- package/src/components/manage/Blocks/Search/layout/RightColumnFacets.jsx +17 -5
- package/src/components/manage/Blocks/Search/layout/TopSideFacets.jsx +21 -5
- package/src/components/manage/Blocks/Search/schema.js +16 -1
- package/src/components/manage/Blocks/Teaser/Body.jsx +0 -1
- package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +5 -10
- package/src/components/manage/Blocks/Teaser/schema.js +5 -0
- package/src/components/manage/Blocks/Title/View.jsx +15 -5
- package/src/components/manage/Blocks/Title/View.test.jsx +16 -1
- package/src/components/manage/Blocks/ToC/Schema.jsx +5 -1
- package/src/components/manage/Blocks/ToC/View.jsx +8 -1
- package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +17 -4
- package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +148 -10
- package/src/components/manage/Blocks/ToC/variations/index.js +3 -1
- package/src/components/manage/Contents/Contents.jsx +47 -32
- package/src/components/manage/Contents/ContentsItem.jsx +6 -0
- package/src/components/manage/Contents/ContentsUploadModal.jsx +10 -5
- package/src/components/manage/Controlpanels/AddonsControlpanel.jsx +3 -3
- package/src/components/manage/Controlpanels/Controlpanels.jsx +199 -224
- package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -7
- package/src/components/manage/Controlpanels/Relations/BrokenRelations.jsx +66 -0
- package/src/components/manage/Controlpanels/Relations/Relations.jsx +114 -0
- package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +479 -0
- package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +531 -0
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.jsx +3 -3
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipListing.jsx +51 -82
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.jsx +79 -75
- package/src/components/manage/DragDropList/DragDropList.jsx +18 -13
- package/src/components/manage/Form/Form.jsx +5 -3
- package/src/components/manage/Form/InlineForm.jsx +39 -9
- package/src/components/manage/Form/InlineFormState.js +8 -0
- package/src/components/manage/History/History.jsx +11 -1
- package/src/components/manage/LinksToItem/LinksToItem.jsx +209 -0
- package/src/components/manage/LinksToItem/LinksToItem.test.jsx +97 -0
- package/src/components/manage/Multilingual/CreateTranslation.jsx +2 -2
- package/src/components/manage/Multilingual/TranslationObject.jsx +4 -3
- package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
- package/src/components/manage/Preferences/PersonalPreferences.jsx +2 -2
- package/src/components/manage/Sharing/Sharing.jsx +5 -1
- package/src/components/manage/Sidebar/AlignBlock.jsx +1 -1
- package/src/components/manage/TemplateChooser/TemplateChooser.jsx +38 -0
- package/src/components/manage/TemplateChooser/TemplateChooser.test.jsx +34 -0
- package/src/components/manage/TemplateChooser/template.svg +10 -0
- package/src/components/manage/Toast/Toast.jsx +2 -2
- package/src/components/manage/Toolbar/More.jsx +15 -0
- package/src/components/manage/Toolbar/Types.jsx +2 -2
- package/src/components/manage/UniversalLink/UniversalLink.jsx +2 -6
- package/src/components/manage/UniversalLink/UniversalLink.test.jsx +36 -0
- package/src/components/manage/Widgets/ColorPickerWidget.jsx +6 -1
- package/src/components/manage/Widgets/DatetimeWidget.jsx +9 -5
- package/src/components/manage/Widgets/FileWidget.jsx +2 -1
- package/src/components/manage/Widgets/ObjectListWidget.jsx +3 -8
- package/src/components/manage/Widgets/RecurrenceWidget/ByDayField.jsx +2 -1
- package/src/components/manage/Widgets/RecurrenceWidget/MonthOfTheYearField.jsx +2 -1
- package/src/components/manage/Widgets/RecurrenceWidget/Occurences.jsx +2 -1
- package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +8 -3
- package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthField.jsx +2 -1
- package/src/components/manage/Widgets/SelectUtils.js +1 -1
- package/src/components/manage/Widgets/SelectWidget.jsx +1 -1
- package/src/components/theme/Anontools/Anontools.jsx +44 -72
- package/src/components/theme/Anontools/Anontools.stories.jsx +16 -6
- package/src/components/theme/Anontools/Anontools.test.jsx +16 -2
- package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +52 -99
- package/src/components/theme/Breadcrumbs/Breadcrumbs.stories.jsx +14 -13
- package/src/components/theme/Comments/CommentEditModal.jsx +63 -115
- package/src/components/theme/Component/Component.jsx +1 -1
- package/src/components/theme/ContactForm/ContactForm.jsx +108 -192
- package/src/components/theme/ContactForm/ContactForm.stories.jsx +1 -1
- package/src/components/theme/ContactForm/ContactForm.test.jsx +2 -3
- package/src/components/theme/Footer/Footer.jsx +2 -13
- package/src/components/theme/Header/Header.jsx +37 -63
- package/src/components/theme/Header/Header.test.jsx +18 -0
- package/src/components/theme/Icon/Icon.jsx +2 -2
- package/src/components/theme/Image/Image.jsx +96 -0
- package/src/components/theme/Image/Image.test.jsx +125 -0
- package/src/components/theme/LanguageSelector/LanguageSelector.js +8 -3
- package/src/components/theme/Login/Login.jsx +1 -0
- package/src/components/theme/Logo/Logo.jsx +4 -1
- package/src/components/theme/MultilingualRedirector/MultilingualRedirector.jsx +2 -2
- package/src/components/theme/Navigation/NavItem.jsx +4 -2
- package/src/components/theme/NotFound/NotFound.jsx +55 -41
- package/src/components/theme/PasswordReset/PasswordReset.jsx +7 -4
- package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +1 -1
- package/src/components/theme/PreviewImage/PreviewImage.jsx +25 -14
- package/src/components/theme/PreviewImage/PreviewImage.test.js +39 -16
- package/src/components/theme/SearchWidget/SearchWidget.jsx +38 -98
- package/src/components/theme/Sitemap/Sitemap.jsx +5 -3
- package/src/components/theme/View/AlbumView.jsx +20 -16
- package/src/components/theme/View/DefaultView.jsx +1 -1
- package/src/components/theme/View/EventDatesInfo.jsx +2 -1
- package/src/components/theme/View/EventView.jsx +36 -25
- package/src/components/theme/View/FileView.jsx +23 -18
- package/src/components/theme/View/ImageView.jsx +40 -32
- package/src/components/theme/View/ImageView.test.jsx +4 -0
- package/src/components/theme/View/LinkView.jsx +53 -78
- package/src/components/theme/View/ListingView.jsx +36 -28
- package/src/components/theme/View/NewsItemView.jsx +16 -17
- package/src/components/theme/View/RenderBlocks.jsx +56 -21
- package/src/components/theme/View/RenderEmptyBlock.jsx +5 -0
- package/src/components/theme/View/SummaryView.jsx +49 -39
- package/src/components/theme/View/TabularView.jsx +59 -53
- package/src/components/theme/Widgets/DateWidget.jsx +2 -1
- package/src/components/theme/Widgets/DatetimeWidget.jsx +2 -1
- package/src/components/theme/Widgets/RelationsWidget.jsx +13 -11
- package/src/config/Blocks.jsx +46 -0
- package/src/config/Components.jsx +2 -1
- package/src/config/ControlPanels.js +2 -0
- package/src/config/NonContentRoutes.jsx +1 -0
- package/src/config/RichTextEditor/Blocks.jsx +2 -2
- package/src/config/RichTextEditor/FromHTML.jsx +2 -2
- package/src/config/RichTextEditor/Styles.jsx +1 -1
- package/src/config/Widgets.jsx +2 -0
- package/src/config/index.js +24 -0
- package/src/config/server.js +2 -0
- package/src/constants/ActionTypes.js +4 -0
- package/src/constants/Indexes.js +3 -1
- package/src/constants/Languages.js +8 -4
- package/src/express-middleware/devproxy.js +1 -1
- package/src/express-middleware/files.js +3 -3
- package/src/express-middleware/images.js +4 -4
- package/src/express-middleware/ok.js +16 -0
- package/src/express-middleware/robotstxt.js +1 -1
- package/src/express-middleware/sitemap.js +37 -5
- package/src/express-middleware/static.js +3 -3
- package/src/helpers/Api/Api.js +1 -1
- package/src/helpers/Blocks/Blocks.js +48 -0
- package/src/helpers/Blocks/Blocks.test.js +79 -0
- package/src/helpers/Extensions/index.js +2 -1
- package/src/helpers/Extensions/withBlockSchemaEnhancer.js +15 -11
- package/src/helpers/Extensions/withBlockSchemaEnhancer.test.js +145 -0
- package/src/helpers/FormValidation/FormValidation.js +40 -2
- package/src/helpers/FormValidation/FormValidation.test.js +73 -0
- package/src/helpers/Html/Html.jsx +3 -1
- package/src/helpers/Html/Html.test.jsx +5 -0
- package/src/helpers/MessageLabels/MessageLabels.js +80 -0
- package/src/helpers/Robots/Robots.js +24 -6
- package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
- package/src/helpers/Sitemap/Sitemap.js +44 -2
- package/src/helpers/Url/Url.js +49 -7
- package/src/helpers/Url/Url.test.js +67 -0
- package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +191 -0
- package/src/helpers/Utils/Utils.js +63 -13
- package/src/helpers/Utils/Utils.test.js +4 -4
- package/src/helpers/Utils/usePagination.js +67 -14
- package/src/helpers/Utils/usePagination.test.js +115 -0
- package/src/helpers/index.js +20 -10
- package/src/hooks/client/useClient.js +11 -0
- package/src/hooks/clipboard/useClipboard.js +26 -0
- package/src/hooks/index.js +2 -0
- package/src/icons/grid-block.svg +11 -0
- package/src/middleware/Api.test.js +54 -0
- package/src/middleware/api.js +24 -6
- package/src/middleware/index.js +2 -2
- package/src/reducers/actions/actions.js +8 -6
- package/src/reducers/actions/actions.test.js +70 -0
- package/src/reducers/breadcrumbs/breadcrumbs.js +1 -1
- package/src/reducers/index.js +2 -0
- package/src/reducers/navigation/navigation.js +1 -1
- package/src/reducers/relations/relations.js +173 -0
- package/src/reducers/types/types.js +1 -1
- package/src/routes.js +14 -0
- package/src/server.jsx +28 -23
- package/src/start-server.js +2 -2
- package/test-setup-config.js +11 -1
- package/theme/themes/pastanaga/extras/blocks.less +5 -1
- package/theme/themes/pastanaga/extras/contents.less +1 -0
- package/theme/themes/pastanaga/extras/grid.less +426 -0
- package/theme/themes/pastanaga/extras/main.less +8 -1
- package/theme/themes/pastanaga/extras/search.less +6 -0
- package/theme/themes/pastanaga/extras/sidebar.less +4 -0
- package/theme/themes/pastanaga/extras/toc.less +29 -0
- package/theme/themes/pastanaga/extras/userscontrolpanel.less +99 -76
- package/.changelog.draft +0 -31
- package/.editorconfig +0 -36
- package/.storybook/main.js +0 -127
- package/.storybook/manager.js +0 -15
- package/.storybook/preview.js +0 -21
- package/.storybook/static/previewImage.svg +0 -48
- package/.yarnrc.yml +0 -5
- package/jsdoc.json +0 -16
- package/netlify.toml +0 -5
- package/pyvenv.cfg +0 -3
- package/share/man/man1/ttx.1 +0 -225
- package/src/components/manage/Blocks/Teaser/utils.js +0 -44
- package/src/components/manage/Blocks/Teaser/utils.test.jsx +0 -229
- package/src/components/theme/Header/Header.md +0 -27
- package/towncrier.toml +0 -33
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,345 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 17.0.0-alpha.21 (2023-07-23)
|
|
12
|
+
|
|
13
|
+
### Breaking
|
|
14
|
+
|
|
15
|
+
- Added new Image component to render optimized images @pnicolli @davisagli [#3337](https://github.com/plone/volto/issues/3337)
|
|
16
|
+
|
|
17
|
+
### Feature
|
|
18
|
+
|
|
19
|
+
- Add getFieldURL helper function used to get the url value of a field based on its structure. @razvanMiu [#2252](https://github.com/plone/volto/issues/2252)
|
|
20
|
+
|
|
21
|
+
### Bugfix
|
|
22
|
+
|
|
23
|
+
- Fix delete confirmation to handle empty `breaches`. @davisagli [#4832](https://github.com/plone/volto/issues/4832)
|
|
24
|
+
|
|
25
|
+
### Internal
|
|
26
|
+
|
|
27
|
+
- Upgrade to Cypress 12.17.1 (latest) @sneridagh [#4981](https://github.com/plone/volto/issues/4981)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## 17.0.0-alpha.20 (2023-07-18)
|
|
31
|
+
|
|
32
|
+
### Feature
|
|
33
|
+
|
|
34
|
+
- Use all the apiExpanders in use, so we perform a single request for getting all the required data. @sneridagh [#4946](https://github.com/plone/volto/issues/4946)
|
|
35
|
+
|
|
36
|
+
### Bugfix
|
|
37
|
+
|
|
38
|
+
- Fix the condition deciding on listing pagination format so it takes into account container blocks as well @sneridagh [#4978](https://github.com/plone/volto/issues/4978)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## 17.0.0-alpha.19 (2023-07-18)
|
|
42
|
+
|
|
43
|
+
### Feature
|
|
44
|
+
|
|
45
|
+
- Add /ok route as an express middleware @ionlizarazu [#4375](https://github.com/plone/volto/issues/4375)
|
|
46
|
+
- Add `Links to item` view (available via object's more menu) @pgrunewald [#4787](https://github.com/plone/volto/issues/4787)
|
|
47
|
+
- Tune 'Links to item' view to 'Links and references' view. Show all relation types. @ksuess @stevepiercy [#4842](https://github.com/plone/volto/issues/4842)
|
|
48
|
+
- Update browserlist to latest @sneridagh [#4977](https://github.com/plone/volto/issues/4977)
|
|
49
|
+
|
|
50
|
+
### Bugfix
|
|
51
|
+
|
|
52
|
+
- Handle condition for yearly frequency in recurrence @BhuvaneshPatil [#4498](https://github.com/plone/volto/issues/4498)
|
|
53
|
+
- Fix search block input clear button doesn't reset the search @iFlameing [#4828](https://github.com/plone/volto/issues/4828)
|
|
54
|
+
|
|
55
|
+
### Internal
|
|
56
|
+
|
|
57
|
+
- Update to latest plone.restapi and Plone 6.0.6 @sneridagh [#4979](https://github.com/plone/volto/issues/4979)
|
|
58
|
+
- Remove dangling out of place Guillotina Cypress tests @sneridagh [#4980](https://github.com/plone/volto/issues/4980)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## 17.0.0-alpha.18 (2023-07-16)
|
|
62
|
+
|
|
63
|
+
### Feature
|
|
64
|
+
|
|
65
|
+
- Refactor CommentEdit -@Tishasoumya-02 [#4075](https://github.com/plone/volto/issues/4075)
|
|
66
|
+
- Facets should be able to decide themselves if they should show or not. Made defaultShowFacet to be a fallback in case there is no custom function for each facet type. @tedw87 [#4579](https://github.com/plone/volto/issues/4579)
|
|
67
|
+
- Add backward compatibility to `slate_richtext` with fields that are plain text @razvanMiu [#4796](https://github.com/plone/volto/issues/4796)
|
|
68
|
+
- Refactor-Contact Form @Tishasoumya-02 [#4850](https://github.com/plone/volto/issues/4850)
|
|
69
|
+
- Refactor BreadcrumbsComponent @Tishasoumya-02 [#4858](https://github.com/plone/volto/issues/4858)
|
|
70
|
+
- Refactor SearchWidget @Tishasoumya-02 [#4864](https://github.com/plone/volto/issues/4864)
|
|
71
|
+
- Refactor LinkView -@Tishasoumya-02 [#4866](https://github.com/plone/volto/issues/4866)
|
|
72
|
+
- Use container from component registry in content type views, if defined. @sneridagh [#4962](https://github.com/plone/volto/issues/4962)
|
|
73
|
+
|
|
74
|
+
### Bugfix
|
|
75
|
+
|
|
76
|
+
- Fix temporary rendering of folder contents while query results are loading. @davisagli [#4351](https://github.com/plone/volto/issues/4351)
|
|
77
|
+
- Fix isBlacklisted method check for volto externalRoutes [#4725](https://github.com/plone/volto/issues/4725)
|
|
78
|
+
- fix(styleMenu): Highlight selected block styles @nileshgulia1 [#4851](https://github.com/plone/volto/issues/4851)
|
|
79
|
+
- Fix tablet main menu. [#4859](https://github.com/plone/volto/issues/4859)
|
|
80
|
+
- Fix the table of contents block so that if one or more items get out of the viewport, a dropdown menu appears with all the items that do not fit the viewport and also added an option to make the TOC sticky. @MihaelaCretu11 [#4907](https://github.com/plone/volto/issues/4907)
|
|
81
|
+
- Add a marker in the props passed to `RenderBlocks` in the Grid block view @sneridagh [#4932](https://github.com/plone/volto/issues/4932)
|
|
82
|
+
- Typo in Italian locales @mamico [#4944](https://github.com/plone/volto/issues/4944)
|
|
83
|
+
- Fix handling of overriden image in Teaser, improve in case that a custom image component is present. @sneridagh [#4964](https://github.com/plone/volto/issues/4964)
|
|
84
|
+
- Fix slateTable still uses old style of sidebar generation @iFlameing [#4972](https://github.com/plone/volto/issues/4972)
|
|
85
|
+
- Fix password autocomplete hint for login form. @davisagli [#4976](https://github.com/plone/volto/issues/4976)
|
|
86
|
+
|
|
87
|
+
### Internal
|
|
88
|
+
|
|
89
|
+
- Upgrade bundlewatch to 0.3.3. @wesleybl [#4967](https://github.com/plone/volto/issues/4967)
|
|
90
|
+
|
|
91
|
+
### Documentation
|
|
92
|
+
|
|
93
|
+
- Added note that Pluggables are not compatible with server-side rendering (SSR). @Akshat2Jain [#4735](https://github.com/plone/volto/issues/4735)
|
|
94
|
+
- Replace broken link for @albertcasado to use GitHub instead of Twitter. @stevepiercy [#4941](https://github.com/plone/volto/issues/4941)
|
|
95
|
+
- Exclude video markup from `make text` builder. @stevepiercy [#4966](https://github.com/plone/volto/issues/4966)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## 17.0.0-alpha.17 (2023-07-11)
|
|
99
|
+
|
|
100
|
+
### Breaking
|
|
101
|
+
|
|
102
|
+
- Remove useToken & useContent hooks-@Tishasoumya-02 [#4951](https://github.com/plone/volto/issues/4951)
|
|
103
|
+
|
|
104
|
+
### Feature
|
|
105
|
+
|
|
106
|
+
- Use container from component registry in content type views, if defined. @sneridagh [#4962](https://github.com/plone/volto/issues/4962)
|
|
107
|
+
|
|
108
|
+
### Bugfix
|
|
109
|
+
|
|
110
|
+
- Fix temporary rendering of folder contents while query results are loading. @davisagli [#4351](https://github.com/plone/volto/issues/4351)
|
|
111
|
+
- Fix isBlacklisted method check for volto externalRoutes [#4725](https://github.com/plone/volto/issues/4725)
|
|
112
|
+
- Add a marker in the props passed to `RenderBlocks` in the Grid block view @sneridagh [#4932](https://github.com/plone/volto/issues/4932)
|
|
113
|
+
- Fix handling of overriden image in Teaser, improve in case that a custom image component is present. @sneridagh [#4964](https://github.com/plone/volto/issues/4964)
|
|
114
|
+
|
|
115
|
+
### Documentation
|
|
116
|
+
|
|
117
|
+
- Replace broken link for @albertcasado to use GitHub instead of Twitter. @stevepiercy [#4941](https://github.com/plone/volto/issues/4941)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
## 17.0.0-alpha.16 (2023-06-28)
|
|
121
|
+
|
|
122
|
+
### Feature
|
|
123
|
+
|
|
124
|
+
- New block: Grid - A container of blocks, arranged in horizontal direction. @sneridagh
|
|
125
|
+
New primitive: Container - A primitive to build blocks containing other blocks. @sneridagh [#3180](https://github.com/plone/volto/issues/3180)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
## 17.0.0-alpha.15 (2023-06-28)
|
|
129
|
+
|
|
130
|
+
### Breaking
|
|
131
|
+
|
|
132
|
+
- Use proper heading tag (depending on the headline) in default listing template @sneridagh [#4848](https://github.com/plone/volto/issues/4848)
|
|
133
|
+
|
|
134
|
+
### Bugfix
|
|
135
|
+
|
|
136
|
+
- Remove anonymous function calls. Remove default exports from. @sneridagh [#4917](https://github.com/plone/volto/issues/4917)
|
|
137
|
+
- Fix Annontools StoryBook @sneridagh [#4921](https://github.com/plone/volto/issues/4921)
|
|
138
|
+
- Fix the experimental add new block button position, compensate the icon width to center it correctly @sneridagh [#4924](https://github.com/plone/volto/issues/4924)
|
|
139
|
+
|
|
140
|
+
### Internal
|
|
141
|
+
|
|
142
|
+
- Add Storybook story for useDetectClickOutside hook with several demos @sneridagh [#4923](https://github.com/plone/volto/issues/4923)
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
## 17.0.0-alpha.14 (2023-06-23)
|
|
146
|
+
|
|
147
|
+
### Feature
|
|
148
|
+
|
|
149
|
+
- Added slug-based linked headings in `volto-slate`. @tiberiuichim, @nileshgulia1 [#4287](https://github.com/plone/volto/issues/4287)
|
|
150
|
+
- Refactored Anontools components. @Tishasoumya-02 [#4845](https://github.com/plone/volto/issues/4845)
|
|
151
|
+
|
|
152
|
+
### Bugfix
|
|
153
|
+
|
|
154
|
+
- Update to version 6.0.5 of Plone backend. @davisagli [#4897](https://github.com/plone/volto/issues/4897)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
## 17.0.0-alpha.13 (2023-06-15)
|
|
158
|
+
|
|
159
|
+
### Feature
|
|
160
|
+
|
|
161
|
+
- Add and enforce a new config setting, `maxFileUploadSize`. @davisagli [#4868](https://github.com/plone/volto/issues/4868)
|
|
162
|
+
|
|
163
|
+
### Bugfix
|
|
164
|
+
|
|
165
|
+
- Fix and improve the `addStyling` helper @sneridagh [#4880](https://github.com/plone/volto/issues/4880)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
## 17.0.0-alpha.12 (2023-06-14)
|
|
169
|
+
|
|
170
|
+
### Feature
|
|
171
|
+
|
|
172
|
+
- Allow to deselect color in ColorPickerWidget. @ksuess [#4838](https://github.com/plone/volto/issues/4838)
|
|
173
|
+
- Configurable Container component from registry for some key route views. @sneridagh [#4871](https://github.com/plone/volto/issues/4871)
|
|
174
|
+
|
|
175
|
+
### Bugfix
|
|
176
|
+
|
|
177
|
+
- Fix regression in horizontal scroll in contents view, add it back @sneridagh [#4872](https://github.com/plone/volto/issues/4872)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
## 17.0.0-alpha.11 (2023-06-09)
|
|
181
|
+
|
|
182
|
+
### Bugfix
|
|
183
|
+
|
|
184
|
+
- Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
## 17.0.0-alpha.10 (2023-06-09)
|
|
188
|
+
|
|
189
|
+
### Feature
|
|
190
|
+
|
|
191
|
+
- Search Block: Add support for advanced facets that are only displayed on demand.
|
|
192
|
+
[pbauer, razvanMiu, claudiaifrim] [#4783](https://github.com/plone/volto/issues/4783)
|
|
193
|
+
- Display PAS validation errors. [tschorr] [#4801](https://github.com/plone/volto/issues/4801)
|
|
194
|
+
- Added a CSS identifier to the Slate style menu options. @razvanMiu [#4846](https://github.com/plone/volto/issues/4846)
|
|
195
|
+
- Use a Container from the registry in the Form component and fallback to the Semantic UI one. @sneridagh [#4849](https://github.com/plone/volto/issues/4849)
|
|
196
|
+
- Update Brazilian Portuguese translations @ericof [#4853](https://github.com/plone/volto/issues/4853)
|
|
197
|
+
|
|
198
|
+
### Bugfix
|
|
199
|
+
|
|
200
|
+
- Convert header class to function. @gomez [#4767](https://github.com/plone/volto/issues/4767)
|
|
201
|
+
- Do not break validation on required number field with value 0 @cekk [#4841](https://github.com/plone/volto/issues/4841)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
## 17.0.0-alpha.9 (2023-06-01)
|
|
205
|
+
|
|
206
|
+
### Bugfix
|
|
207
|
+
|
|
208
|
+
- Fix special characters in request urls @pnicolli @mamico @luca-bellenghi @cekk [#4825](https://github.com/plone/volto/issues/4825)
|
|
209
|
+
- Fix block is undefined in StyleWrapper helper when building classnames @sneridagh [#4827](https://github.com/plone/volto/issues/4827)
|
|
210
|
+
- Fix navigation sections in 404 pages @sneridagh [#4836](https://github.com/plone/volto/issues/4836)
|
|
211
|
+
|
|
212
|
+
### Documentation
|
|
213
|
+
|
|
214
|
+
- Fix glossary warning due to lack of empty line before a term. @stevepiercy [#4820](https://github.com/plone/volto/issues/4820)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
## 17.0.0-alpha.8 (2023-05-24)
|
|
218
|
+
|
|
219
|
+
### Feature
|
|
220
|
+
|
|
221
|
+
- Add Finnish translation (contributed by @rioksane) @erral [#4084](https://github.com/plone/volto/issues/4084)
|
|
222
|
+
|
|
223
|
+
### Bugfix
|
|
224
|
+
|
|
225
|
+
- Fixed the issue "shouldn't use a hook like function name for a variable" @Kaku-g [#4693](https://github.com/plone/volto/issues/4693)
|
|
226
|
+
- Fix to not update breadrumbs, navigation, actions, and types when content is fetched as a subrequest and apiExpanders includes these components. @davisagli [#4760](https://github.com/plone/volto/issues/4760)
|
|
227
|
+
- Fix bug where editors could not see their own content in the Contents view if it was expired or has a future effective date. @davisagli [#4764](https://github.com/plone/volto/issues/4764)
|
|
228
|
+
- Fix bug showing logs at the browsers when richtext widget is use @claytonc [#4780](https://github.com/plone/volto/issues/4780)
|
|
229
|
+
- Update relations control panel layout @danalvrz [#4794](https://github.com/plone/volto/issues/4794)
|
|
230
|
+
- Fix hot module reloading of changes to `@plone/volto`. @davisagli [#4799](https://github.com/plone/volto/issues/4799)
|
|
231
|
+
- Add guard in case of malformed blocks are present (at least id and title should be present) @sneridagh [#4802](https://github.com/plone/volto/issues/4802)
|
|
232
|
+
- Fix html tag lang attribute in SSR @sneridagh [#4803](https://github.com/plone/volto/issues/4803)
|
|
233
|
+
- Add newest supported languages to `Language` constants list @sneridagh [#4811](https://github.com/plone/volto/issues/4811)
|
|
234
|
+
|
|
235
|
+
### Internal
|
|
236
|
+
|
|
237
|
+
- Remove max_line_length from .editorconfig @pnicolli [#4776](https://github.com/plone/volto/issues/4776)
|
|
238
|
+
- Fix unannounced breaking change in cypress-io/github-action @sneridagh [#4795](https://github.com/plone/volto/issues/4795)
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
## 17.0.0-alpha.7 (2023-05-11)
|
|
242
|
+
|
|
243
|
+
### Bugfix
|
|
244
|
+
|
|
245
|
+
- Fix language negotiation for language codes that include a region (e.g. `pt-br`). @davisagli [#4644](https://github.com/plone/volto/issues/4644)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
## 17.0.0-alpha.6 (2023-05-11)
|
|
249
|
+
|
|
250
|
+
### Feature
|
|
251
|
+
|
|
252
|
+
- Changed control panel list to be fetched server-side not client-side
|
|
253
|
+
@JeffersonBledsoe [#3749](https://github.com/plone/volto/issues/3749)
|
|
254
|
+
|
|
255
|
+
### Bugfix
|
|
256
|
+
|
|
257
|
+
- Apply suggestion from browser for password field @lord2anil [#3990](https://github.com/plone/volto/issues/3990)
|
|
258
|
+
- Open all accordion'd content in InlineForm by default, allow arbitrarily close any number of them. @sneridagh [#4178](https://github.com/plone/volto/issues/4178)
|
|
259
|
+
- Fix duplicating listing block by removing block uid from blocks data. @ksuess [#4234](https://github.com/plone/volto/issues/4234)
|
|
260
|
+
- The tabs for the add page was unresponsive on mobile devices. Fixed this by changing flex-wrap property. @sudhanshu1309 [#4506](https://github.com/plone/volto/issues/4506)
|
|
261
|
+
- (fix):Object.normaliseMail: Cannot read properties of null @dobri1408 [#4558](https://github.com/plone/volto/issues/4558)
|
|
262
|
+
- Update add-on control panel tranlsations: install -> activate. @ksuess [#4582](https://github.com/plone/volto/issues/4582)
|
|
263
|
+
- Fix robot.txt - the sitemap link should respect x-forwarded headers @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
|
|
264
|
+
- Fix Move to top of folder ordering in folder content view by searching also @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
|
|
265
|
+
- Fix faulty D&D elements in ObjectBrowserList widget @sneridagh [#4703](https://github.com/plone/volto/issues/4703)
|
|
266
|
+
- Fix fetching API paths with urlencoded characters in the querystring. @davisagli [#4718](https://github.com/plone/volto/issues/4718)
|
|
267
|
+
|
|
268
|
+
### Internal
|
|
269
|
+
|
|
270
|
+
- Change conditional checking to optional chaining for a theme icon @nilootpal [#4567](https://github.com/plone/volto/issues/4567)
|
|
271
|
+
- Security upgrade for momentjs [#4715](https://github.com/plone/volto/issues/4715)
|
|
272
|
+
- Upgrade to Plone 6.0.4 @sneridagh [#4743](https://github.com/plone/volto/issues/4743)
|
|
273
|
+
|
|
274
|
+
### Documentation
|
|
275
|
+
|
|
276
|
+
- Added documentation regarding the static middleware. @BhardwajAditya-github [#4518](https://github.com/plone/volto/issues/4518)
|
|
277
|
+
- Use new URL `6.docs.plone.org`. @stevepiercy [#4726](https://github.com/plone/volto/issues/4726)
|
|
278
|
+
- Synch stuff from `16.x.x` branch that should have been in `master` as well. @stevepiercy [#4728](https://github.com/plone/volto/issues/4728)
|
|
279
|
+
- Fix link in Volto, remove from linkcheck ignore in Documentation. @stevepiercy [#4742](https://github.com/plone/volto/issues/4742)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
## 17.0.0-alpha.5 (2023-04-14)
|
|
283
|
+
|
|
284
|
+
### Bugfix
|
|
285
|
+
|
|
286
|
+
- Generate a split sitemap @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
|
|
287
|
+
- Fix Move to top of folder ordering in folder content view @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
|
|
288
|
+
- Revert "Add current page parameter to the route in the listing and search block pagination (#4159)" @sneridagh [#4695](https://github.com/plone/volto/issues/4695)
|
|
289
|
+
- Fix search block in edit mode re-queries multiple blocks with an empty search text @reebalazs [#4697](https://github.com/plone/volto/issues/4697)
|
|
290
|
+
|
|
291
|
+
### Documentation
|
|
292
|
+
|
|
293
|
+
- Update links for 2022 Training archive. @stevepiercy [#4635](https://github.com/plone/volto/issues/4635)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
## 17.0.0-alpha.4 (2023-04-12)
|
|
297
|
+
|
|
298
|
+
### Feature
|
|
299
|
+
|
|
300
|
+
- DefaultView (view of fields for content types with blocks disabled): Show field name as tip on hover of label. @ksuess [#4598](https://github.com/plone/volto/issues/4598)
|
|
301
|
+
- Support RelationList field with named StaticCatalogVocabulary and SelectWidget. @ksuess [#4614](https://github.com/plone/volto/issues/4614)
|
|
302
|
+
- Support for declaring a theme in `volto.config.js` or in `package.json`
|
|
303
|
+
Add two entry points to allow extension of a theme from other add-ons. @sneridagh [#4625](https://github.com/plone/volto/issues/4625)
|
|
304
|
+
- Set sameSite in I18N_LANGUAGE cookie @sneridagh [#4627](https://github.com/plone/volto/issues/4627)
|
|
305
|
+
- Added querystring search get option. @robgietema [#4658](https://github.com/plone/volto/issues/4658)
|
|
306
|
+
|
|
307
|
+
### Bugfix
|
|
308
|
+
|
|
309
|
+
- Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
|
|
310
|
+
- Fix regexp that checks valid URLs and improve tests [cekk] [#4601](https://github.com/plone/volto/issues/4601)
|
|
311
|
+
- Fixed wrong localization on password reset page @iRohitSingh [#4656](https://github.com/plone/volto/issues/4656)
|
|
312
|
+
- fix sitemap.xml.gz not is not compressed @dobri1408 [#4663](https://github.com/plone/volto/issues/4663)
|
|
313
|
+
|
|
314
|
+
### Internal
|
|
315
|
+
|
|
316
|
+
- Trigger CI workflows to run from external pull requests. @davisagli [#4629](https://github.com/plone/volto/issues/4629)
|
|
317
|
+
- Update to p.restapi 8.36.0 and Plone 6.0.3 @sneridagh [#4682](https://github.com/plone/volto/issues/4682)
|
|
318
|
+
|
|
319
|
+
### Documentation
|
|
320
|
+
|
|
321
|
+
- Added `JavaScript` and `NodeJS` as accepted spellings, and deviations of them as rejected spellings. @utkkkarshhh [#3092](https://github.com/plone/volto/issues/3092)
|
|
322
|
+
- Fix documentation build, add pins @sneridagh [#4626](https://github.com/plone/volto/issues/4626)
|
|
323
|
+
- Update Volto contributing to align with and refer to the new Plone core code contributing requirements. @stevepiercy [#4634](https://github.com/plone/volto/issues/4634)
|
|
324
|
+
- Improve creating views documentation page. @rboixaderg [#4636](https://github.com/plone/volto/issues/4636)
|
|
325
|
+
- Razzle upgrade notice in upgrade guide @sneridagh [#4641](https://github.com/plone/volto/issues/4641)
|
|
326
|
+
- Rename "Developer Guidelines" to "Contributing". @stevepiercy [#4666](https://github.com/plone/volto/issues/4666)
|
|
327
|
+
- Fix broken link to `ReactJS.org`. @stevepiercy [#4667](https://github.com/plone/volto/issues/4667)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
## 17.0.0-alpha.3 (2023-03-22)
|
|
331
|
+
|
|
332
|
+
### Feature
|
|
333
|
+
|
|
334
|
+
- Add Vale to CI for spell and style checks. @MAX-786 [#4423](https://github.com/plone/volto/issues/4423)
|
|
335
|
+
|
|
336
|
+
### Bugfix
|
|
337
|
+
|
|
338
|
+
- Fix Search is case sensitive in Block chooser @iRohitSingh [#4526](https://github.com/plone/volto/issues/4526)
|
|
339
|
+
- InternalURl helper method should incorporate externalRoutes settings into consideration. @iFlameing [#4559](https://github.com/plone/volto/issues/4559)
|
|
340
|
+
- Update message add-on control panel: remove 'buildout', update reference. @ksuess [#4574](https://github.com/plone/volto/issues/4574)
|
|
341
|
+
|
|
342
|
+
### Documentation
|
|
343
|
+
|
|
344
|
+
- Deleted duplicate import and fixed training URLs. @yahya-cloud [#4523](https://github.com/plone/volto/issues/4523)
|
|
345
|
+
- Fix grammar in PR #4542. @stevepiercy [#4555](https://github.com/plone/volto/issues/4555)
|
|
346
|
+
- Fix broken links at `ReactJS.org`. @stevepiercy [#4569](https://github.com/plone/volto/issues/4569)
|
|
347
|
+
- Fix video warnings and link errors. @stevepiercy [#4578](https://github.com/plone/volto/issues/4578)
|
|
348
|
+
|
|
349
|
+
|
|
11
350
|
## 17.0.0-alpha.2 (2023-03-15)
|
|
12
351
|
|
|
13
352
|
### Breaking
|
|
@@ -91,6 +430,199 @@
|
|
|
91
430
|
- Fix English and MyST grammar and syntax from PR #4285 @stevepiercy [#4331](https://github.com/plone/volto/issues/4331)
|
|
92
431
|
- Use a universal static path for both documentation and volto repos. @stevepiercy [#4376](https://github.com/plone/volto/issues/4376)
|
|
93
432
|
|
|
433
|
+
|
|
434
|
+
## 16.21.1 (2023-06-23)
|
|
435
|
+
|
|
436
|
+
### Bugfix
|
|
437
|
+
|
|
438
|
+
- Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
## 16.21.0 (2023-06-16)
|
|
442
|
+
|
|
443
|
+
### Feature
|
|
444
|
+
|
|
445
|
+
- Display PAS validation errors. [tschorr] [#4801](https://github.com/plone/volto/issues/4801)
|
|
446
|
+
- Allow to deselect color in ColorPickerWidget. @ksuess [#4838](https://github.com/plone/volto/issues/4838)
|
|
447
|
+
- Added a CSS identifier to the Slate style menu options. @razvanMiu [#4846](https://github.com/plone/volto/issues/4846)
|
|
448
|
+
- Use a Container from the registry in the Form component and fallback to the Semantic UI one. @sneridagh [#4849](https://github.com/plone/volto/issues/4849)
|
|
449
|
+
- Add and enforce a new config setting, `maxFileUploadSize`. @davisagli [#4868](https://github.com/plone/volto/issues/4868)
|
|
450
|
+
- Configurable Container component from registry for some key route views. @sneridagh [#4871](https://github.com/plone/volto/issues/4871)
|
|
451
|
+
|
|
452
|
+
### Bugfix
|
|
453
|
+
|
|
454
|
+
- Do not break validation on required number field with value 0 @cekk [#4841](https://github.com/plone/volto/issues/4841)
|
|
455
|
+
- Fix regression in horizontal scroll in contents view, add it back @sneridagh [#4872](https://github.com/plone/volto/issues/4872)
|
|
456
|
+
- Fix and improve the `addStyling` helper @sneridagh [#4880](https://github.com/plone/volto/issues/4880)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
## 16.20.8 (2023-06-01)
|
|
460
|
+
|
|
461
|
+
### Bugfix
|
|
462
|
+
|
|
463
|
+
- Fix special characters in request urls @pnicolli @mamico @luca-bellenghi @cekk [#4826](https://github.com/plone/volto/issues/4826)
|
|
464
|
+
- Fix block is undefined in StyleWrapper helper when building classnames @sneridagh [#4827](https://github.com/plone/volto/issues/4827)
|
|
465
|
+
- Fix navigation sections in 404 pages @sneridagh [#4836](https://github.com/plone/volto/issues/4836)
|
|
466
|
+
|
|
467
|
+
### Documentation
|
|
468
|
+
|
|
469
|
+
- Fix glossary warning due to lack of empty line before a term. @stevepiercy [#4820](https://github.com/plone/volto/issues/4820)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
## 16.20.7 (2023-05-24)
|
|
473
|
+
|
|
474
|
+
### Bugfix
|
|
475
|
+
|
|
476
|
+
- Fixed the issue "shouldn't use a hook like function name for a variable" @Kaku-g [#4693](https://github.com/plone/volto/issues/4693)
|
|
477
|
+
- Fix to not update breadrumbs, navigation, actions, and types when content is fetched as a subrequest and apiExpanders includes these components. @davisagli [#4760](https://github.com/plone/volto/issues/4760)
|
|
478
|
+
- Fix bug where editors could not see their own content in the Contents view if it was expired or has a future effective date. @davisagli [#4764](https://github.com/plone/volto/issues/4764)
|
|
479
|
+
- Fix bug showing logs at the browsers when richtext widget is use @claytonc [#4780](https://github.com/plone/volto/issues/4780)
|
|
480
|
+
- Add guard in case of malformed blocks are present (at least id and title should be present) @sneridagh [#4802](https://github.com/plone/volto/issues/4802)
|
|
481
|
+
- Fix html tag lang attribute in SSR @sneridagh [#4803](https://github.com/plone/volto/issues/4803)
|
|
482
|
+
- Add newest supported languages to `Language` constants list @sneridagh [#4811](https://github.com/plone/volto/issues/4811)
|
|
483
|
+
|
|
484
|
+
### Internal
|
|
485
|
+
|
|
486
|
+
- Remove max_line_length from .editorconfig @pnicolli [#4776](https://github.com/plone/volto/issues/4776)
|
|
487
|
+
- Fix unannounced breaking change in cypress-io/github-action @sneridagh [#4795](https://github.com/plone/volto/issues/4795)
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
## 16.20.6 (2023-05-12)
|
|
491
|
+
|
|
492
|
+
### Bugfix
|
|
493
|
+
|
|
494
|
+
- Fix language negotiation for language codes that include a region (e.g. `pt-br`). @davisagli [#4644](https://github.com/plone/volto/issues/4644)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
## 16.20.5 (2023-05-12)
|
|
498
|
+
|
|
499
|
+
### Bugfix
|
|
500
|
+
|
|
501
|
+
- Apply suggestion from browser for password field @lord2anil [#3990](https://github.com/plone/volto/issues/3990)
|
|
502
|
+
- The tabs for the add page was unresponsive on mobile devices. Fixed this by changing flex-wrap property. @sudhanshu1309 [#4506](https://github.com/plone/volto/issues/4506)
|
|
503
|
+
- (fix):Object.normaliseMail: Cannot read properties of null @dobri1408 [#4558](https://github.com/plone/volto/issues/4558)
|
|
504
|
+
|
|
505
|
+
### Internal
|
|
506
|
+
|
|
507
|
+
- Upgrade to Plone 6.0.4 @sneridagh [#4743](https://github.com/plone/volto/issues/4743)
|
|
508
|
+
|
|
509
|
+
### Documentation
|
|
510
|
+
|
|
511
|
+
- Added documentation regarding the static middleware. @BhardwajAditya-github [#4518](https://github.com/plone/volto/issues/4518)
|
|
512
|
+
- Backport most documentation differences from `master` to `16.x.x`. @stevepiercy [#4727](https://github.com/plone/volto/issues/4727)
|
|
513
|
+
- Fix link in Volto, remove from linkcheck ignore in Documentation. @stevepiercy [#4742](https://github.com/plone/volto/issues/4742)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
## 16.20.4 (2023-04-20)
|
|
517
|
+
|
|
518
|
+
### Bugfix
|
|
519
|
+
|
|
520
|
+
- Fix fetching API paths with urlencoded characters in the querystring. @davisagli [#4718](https://github.com/plone/volto/issues/4718)
|
|
521
|
+
|
|
522
|
+
### Internal
|
|
523
|
+
|
|
524
|
+
- Security upgrade for momentjs [#4716](https://github.com/plone/volto/issues/4716)
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
## 16.20.3 (2023-04-18)
|
|
528
|
+
|
|
529
|
+
### Bugfix
|
|
530
|
+
|
|
531
|
+
- Revert inadvertently included files from another PR in #4710 @sneridagh [#4713](https://github.com/plone/volto/issues/4713)
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
## 16.20.2 (2023-04-18)
|
|
535
|
+
|
|
536
|
+
### Bugfix
|
|
537
|
+
|
|
538
|
+
- Fix robot.txt - the sitemap link should respect x-forwarded headers @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
|
|
539
|
+
- Fix Move to top of folder ordering in folder content view by searching also @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
|
|
540
|
+
- Fix faulty D&D elements in ObjectBrowserList widget @sneridagh [#4703](https://github.com/plone/volto/issues/4703)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
## 16.20.1 (2023-04-14)
|
|
544
|
+
|
|
545
|
+
### Bugfix
|
|
546
|
+
|
|
547
|
+
- Generate a split sitemap @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
|
|
548
|
+
- Fix Move to top of folder ordering in folder content view @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
|
|
549
|
+
- Revert "Add current page parameter to the route in the listing and search block pagination (#4159)" @sneridagh [#4695](https://github.com/plone/volto/issues/4695)
|
|
550
|
+
- Fix search block in edit mode re-queries multiple blocks with an empty search text @reebalazs [#4697](https://github.com/plone/volto/issues/4697)
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
## 16.20.0 (2023-04-12)
|
|
554
|
+
|
|
555
|
+
### Feature
|
|
556
|
+
|
|
557
|
+
- Support RelationList field with named StaticCatalogVocabulary and SelectWidget. @ksuess [#4614](https://github.com/plone/volto/issues/4614)
|
|
558
|
+
- Support for declaring a theme in `volto.config.js` or in `package.json`
|
|
559
|
+
Add two entry points to allow extension of a theme from other add-ons. @sneridagh [#4625](https://github.com/plone/volto/issues/4625)
|
|
560
|
+
- Added querystring search get option. @robgietema [#4658](https://github.com/plone/volto/issues/4658)
|
|
561
|
+
|
|
562
|
+
### Bugfix
|
|
563
|
+
|
|
564
|
+
- Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
|
|
565
|
+
- Fixed wrong localization on password reset page @iRohitSingh [#4656](https://github.com/plone/volto/issues/4656)
|
|
566
|
+
- fix sitemap.xml.gz not is not compressed @dobri1408 [#4663](https://github.com/plone/volto/issues/4663)
|
|
567
|
+
|
|
568
|
+
### Internal
|
|
569
|
+
|
|
570
|
+
- Update to p.restapi 8.36.0 and Plone 6.0.3 @sneridagh [#4682](https://github.com/plone/volto/issues/4682)
|
|
571
|
+
|
|
572
|
+
### Documentation
|
|
573
|
+
|
|
574
|
+
- Update Volto contributing to align with and refer to the new Plone core code contributing requirements. @stevepiercy [#4634](https://github.com/plone/volto/issues/4634)
|
|
575
|
+
- Improve creating views documentation page. @rboixaderg [#4636](https://github.com/plone/volto/issues/4636)
|
|
576
|
+
- Rename "Developer Guidelines" to "Contributing". @stevepiercy [#4666](https://github.com/plone/volto/issues/4666)
|
|
577
|
+
- Fix broken link to `ReactJS.org`. @stevepiercy [#4667](https://github.com/plone/volto/issues/4667)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
## 16.19.0 (2023-04-04)
|
|
581
|
+
|
|
582
|
+
### Feature
|
|
583
|
+
|
|
584
|
+
- DefaultView (view of fields for content types with blocks disabled): Show field name as tip on hover of label. @ksuess [#4598](https://github.com/plone/volto/issues/4598)
|
|
585
|
+
- Set sameSite in I18N_LANGUAGE cookie @sneridagh [#4627](https://github.com/plone/volto/issues/4627)
|
|
586
|
+
|
|
587
|
+
### Bugfix
|
|
588
|
+
|
|
589
|
+
- Fix regexp that checks valid URLs and improve tests [cekk] [#4601](https://github.com/plone/volto/issues/4601)
|
|
590
|
+
|
|
591
|
+
### Documentation
|
|
592
|
+
|
|
593
|
+
- Added `JavaScript` and `NodeJS` as accepted spellings, and deviations of them as rejected spellings. @utkkkarshhh [#3092](https://github.com/plone/volto/issues/3092)
|
|
594
|
+
- Fix documentation build, add pins @sneridagh [#4626](https://github.com/plone/volto/issues/4626)
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
## 16.18.0 (2023-03-22)
|
|
598
|
+
|
|
599
|
+
### Feature
|
|
600
|
+
|
|
601
|
+
- Add Vale to CI for spell and style checks. @MAX-786 [#4423](https://github.com/plone/volto/issues/4423)
|
|
602
|
+
|
|
603
|
+
### Bugfix
|
|
604
|
+
|
|
605
|
+
- Patch updates for some dependencies. @davisagli [#4520](https://github.com/plone/volto/issues/4520)
|
|
606
|
+
- InternalURl helper method should incorporate externalRoutes settings into consideration. @iFlameing [#4559](https://github.com/plone/volto/issues/4559)
|
|
607
|
+
- Update message add-on control panel: remove 'buildout', update reference. @ksuess [#4574](https://github.com/plone/volto/issues/4574)
|
|
608
|
+
|
|
609
|
+
### Documentation
|
|
610
|
+
|
|
611
|
+
- Fix broken links at `ReactJS.org`. @stevepiercy [#4569](https://github.com/plone/volto/issues/4569)
|
|
612
|
+
- Fix video warnings and link errors. @stevepiercy [#4578](https://github.com/plone/volto/issues/4578)
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
## 16.17.1 (2023-03-16)
|
|
616
|
+
|
|
617
|
+
### Bugfix
|
|
618
|
+
|
|
619
|
+
- Fix Search is case sensitive in Block chooser @iRohitSingh [#4526](https://github.com/plone/volto/issues/4526)
|
|
620
|
+
|
|
621
|
+
### Documentation
|
|
622
|
+
|
|
623
|
+
- Deleted duplicate import and fixed training URLs. @yahya-cloud [#4523](https://github.com/plone/volto/issues/4523)
|
|
624
|
+
|
|
625
|
+
|
|
94
626
|
## 16.17.0 (2023-03-15)
|
|
95
627
|
|
|
96
628
|
### Feature
|
|
@@ -143,7 +675,7 @@
|
|
|
143
675
|
|
|
144
676
|
### Documentation
|
|
145
677
|
|
|
146
|
-
- Complete teaser docs, add new section in `Blocks`: `Core Blocks developers notes` @sneridagh [#4461](https://github.com/plone/volto/
|
|
678
|
+
- Complete teaser docs, add new section in `Blocks`: `Core Blocks developers notes` @sneridagh [#4461](https://github.com/plone/volto/pull/4461)
|
|
147
679
|
|
|
148
680
|
|
|
149
681
|
## 16.14.0 (2023-03-03)
|
|
@@ -473,7 +1005,7 @@
|
|
|
473
1005
|
- Enable the use of yarn 3 in the build by default @sneridagh
|
|
474
1006
|
- The `ContentsBreadcrumbs` component now renders the whole language name of the language root folder (if any) instead of just the `id` (before: `de`, now: `Deutsch`) @sneridagh
|
|
475
1007
|
|
|
476
|
-
See https://6.
|
|
1008
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
477
1009
|
|
|
478
1010
|
### Feature
|
|
479
1011
|
|
|
@@ -908,6 +1440,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
908
1440
|
- Add support for loading core add-ons from the `packages` folder defined in Volto's `package.json` @sneridagh
|
|
909
1441
|
- Implement the Upgrade Control Panel @ericof
|
|
910
1442
|
- Allow addons to customize modules from the project root, via the `@root` namespace and folder @tiberiuichim
|
|
1443
|
+
- Updated Spanish translation @macagua
|
|
911
1444
|
|
|
912
1445
|
### Bugfix
|
|
913
1446
|
|
|
@@ -970,7 +1503,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
970
1503
|
- Moved all sentry-related code from Volto to the `@plone-collective/volto-sentry` package. @tiberiuichim
|
|
971
1504
|
- The listing block icon has been improved to avoid confusion with the normal text list. @sneridagh
|
|
972
1505
|
|
|
973
|
-
See https://6.
|
|
1506
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
974
1507
|
|
|
975
1508
|
### Feature
|
|
976
1509
|
|
|
@@ -1031,6 +1564,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
1031
1564
|
- Object browser: image search should only show images @reebalazs
|
|
1032
1565
|
- Updated spanish translation @macagua
|
|
1033
1566
|
- Add Dutch translation @spereverde
|
|
1567
|
+
- Add control panel for relations. @ksuess
|
|
1034
1568
|
|
|
1035
1569
|
### Bugfix
|
|
1036
1570
|
|
|
@@ -1081,7 +1615,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
1081
1615
|
|
|
1082
1616
|
- Sentry integration is now lazy-loaded. The `sentryOptions` key from the `settings` registry becomes a callable that passes resolved sentry libraries. @tiberiuichim
|
|
1083
1617
|
|
|
1084
|
-
See https://6.
|
|
1618
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1085
1619
|
|
|
1086
1620
|
### Feature
|
|
1087
1621
|
|
|
@@ -1145,7 +1679,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
1145
1679
|
- Upgrade to Razzle 4 @davisagli
|
|
1146
1680
|
- Jest downgraded from 27 to 26 @davisagli
|
|
1147
1681
|
|
|
1148
|
-
See https://6.
|
|
1682
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1149
1683
|
|
|
1150
1684
|
### Internal
|
|
1151
1685
|
|
|
@@ -1185,7 +1719,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
1185
1719
|
### Breaking
|
|
1186
1720
|
|
|
1187
1721
|
- `react-window` no longer a Volto dependency @sneridagh
|
|
1188
|
-
See https://6.
|
|
1722
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1189
1723
|
|
|
1190
1724
|
### Bugfix
|
|
1191
1725
|
|
|
@@ -1224,7 +1758,7 @@ See https://6.dev-docs.plone.org/volto/upgrade-guide/index.html for more informa
|
|
|
1224
1758
|
### Breaking
|
|
1225
1759
|
|
|
1226
1760
|
- Move Layout constants to `config.views.layoutViewsNamesMapping`. Complete the list. i18n the list. Improve Display component. @sneridagh
|
|
1227
|
-
See https://6.
|
|
1761
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1228
1762
|
|
|
1229
1763
|
### Feature
|
|
1230
1764
|
|
|
@@ -1270,7 +1804,7 @@ Undo html_static_path configuration in `plone/documentation`, and restore image
|
|
|
1270
1804
|
### Breaking
|
|
1271
1805
|
|
|
1272
1806
|
- Main workflow change menu changed from Pastanaga UI simplification to classic Plone implementation. @sneridagh
|
|
1273
|
-
See https://6.
|
|
1807
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1274
1808
|
|
|
1275
1809
|
### Feature
|
|
1276
1810
|
|
|
@@ -1366,7 +1900,7 @@ Undo html_static_path configuration in `plone/documentation`, and restore image
|
|
|
1366
1900
|
- change password-reset url to be consistent with Plone configuration @erral
|
|
1367
1901
|
- Simplify over the existing Component Registry API. The `component` key has been flattened for simplification and now it's mapped directly to the `component` argument of `registerComponent`. @sneridagh
|
|
1368
1902
|
|
|
1369
|
-
See https://6.
|
|
1903
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1370
1904
|
|
|
1371
1905
|
### Feature
|
|
1372
1906
|
|
|
@@ -1944,14 +2478,14 @@ Use next release instead: https://github.com/plone/volto/releases/tag/16.0.0-alp
|
|
|
1944
2478
|
### Breaking
|
|
1945
2479
|
|
|
1946
2480
|
- Upgrade `react-cookie` to the latest version. @sneridagh @robgietema
|
|
1947
|
-
See https://6.
|
|
2481
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1948
2482
|
- Language Switcher no longer takes care of the change of the language on the Redux Store. This responsibility has been unified in the API Redux middleware @sneridagh
|
|
1949
2483
|
- Markup change in `LinkView` component.
|
|
1950
2484
|
- Rename `core-sandbox` to `coresandbox` for sake of consistency @sneridagh
|
|
1951
2485
|
- Extend the original intent and rename `RAZZLE_TESTING_ADDONS` to `ADDONS`. @sneridagh
|
|
1952
|
-
See https://6.
|
|
2486
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1953
2487
|
- Lazyload Draft.js library. See the upgrade guide on how that impacts you, in case you have extended the rich text editor configuration @tiberiuichim @kreafox
|
|
1954
|
-
See https://6.
|
|
2488
|
+
See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information.
|
|
1955
2489
|
- Deprecating `lang` cookie in favor of Plone official one `I18N_LANGUAGE` @sneridagh
|
|
1956
2490
|
|
|
1957
2491
|
### Feature
|
|
@@ -2435,7 +2969,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
|
|
|
2435
2969
|
- Use Plone logo @ericof
|
|
2436
2970
|
- Update favicon and related tags with best practices @sneridagh
|
|
2437
2971
|
- Enable to be able to use the internal proxy in production as well @sneridagh
|
|
2438
|
-
- Add runtime configuration for `@babel/plugin-transform-react-jsx` set to `automatic`. This enables the new JSX runtime: https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html So no longer `import React from 'react'` is needed anymore. @sneridagh
|
|
2972
|
+
- Add runtime configuration for `@babel/plugin-transform-react-jsx` set to `automatic`. This enables the new JSX runtime: https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html So no longer `import React from 'react'` is needed anymore. @sneridagh
|
|
2439
2973
|
- Add `autocomplete` Widget component - It holds off the vocabulary endpoint pull until you search (more than 2 chars). Useful when dealing with huge vocabularies @sneridagh @reebalazs
|
|
2440
2974
|
- Add new listing block option "fullobjects" per variation @ksuess
|
|
2441
2975
|
- `FormFieldWrapper` accepts now strings and elements for description @nzambello
|
|
@@ -2565,7 +3099,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
|
|
|
2565
3099
|
|
|
2566
3100
|
### Feature
|
|
2567
3101
|
|
|
2568
|
-
- Add runtime configuration for `@babel/plugin-transform-react-jsx` set to `automatic`. This enables the new JSX runtime: https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html So no longer `import React from 'react'` is needed anymore.
|
|
3102
|
+
- Add runtime configuration for `@babel/plugin-transform-react-jsx` set to `automatic`. This enables the new JSX runtime: https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html So no longer `import React from 'react'` is needed anymore.
|
|
2569
3103
|
- Update favicon and related tags with best practices @sneridagh
|
|
2570
3104
|
|
|
2571
3105
|
### Bugfix
|
|
@@ -4897,7 +5431,7 @@ https://6.docs.plone.org/volto/upgrade-guide/index.html
|
|
|
4897
5431
|
- Added item type as a tooltip in contents @nzambello
|
|
4898
5432
|
- Added Italian translations and translated array, token and select widget. @giuliaghisini
|
|
4899
5433
|
- Added uploading image preview in FileWidget @iFlameing
|
|
4900
|
-
- Allow custom express middleware declared with `settings.expressMiddleware`. See [Custom Express middleware](https://6.
|
|
5434
|
+
- Allow custom express middleware declared with `settings.expressMiddleware`. See [Custom Express middleware](https://6.docs.plone.org/volto/recipes/express.html) @tiberiuichim
|
|
4901
5435
|
|
|
4902
5436
|
### Bugfix
|
|
4903
5437
|
|