diff --git a/docs/source/release-notes/index.md b/docs/source/release-notes/index.md index 28d7d69f85..29c8496134 100644 --- a/docs/source/release-notes/index.md +++ b/docs/source/release-notes/index.md @@ -17,6 +17,23 @@ myst: +## 18.0.0-alpha.10 (2024-02-02) + +### Feature + +- Allow editor to edit metadata during bulk upload. @iFlameing [#5549](https://github.com/plone/volto/issues/5549) +- Added `aria-live="polite"` in `Contents.jsx` to improve accessibility for the Contents page. @Hrittik20 [#5617](https://github.com/plone/volto/issues/5617) +- Support for passing whole data object of the initial blocks in local config. Refactor initial block type to its own helpers. @sneridagh [#5718](https://github.com/plone/volto/issues/5718) + +### Bugfix + +- Fixed wrong conditional proprieties on `ObjectBrowser` for multiple selection. @deodorhunter @Wagner3UB [#4190](https://github.com/plone/volto/issues/4190) +- Remove turbo from monorepo commands until it's really necessary @sneridagh [#5715](https://github.com/plone/volto/issues/5715) + +### Documentation + +- Block search engines from indexing content on Netlify preview builds. @stevepiercy [#5725](https://github.com/plone/volto/issues/5725) + ## 18.0.0-alpha.9 (2024-01-26) ### Feature diff --git a/packages/volto/CHANGELOG.md b/packages/volto/CHANGELOG.md index 28d7d69f85..29c8496134 100644 --- a/packages/volto/CHANGELOG.md +++ b/packages/volto/CHANGELOG.md @@ -17,6 +17,23 @@ myst: +## 18.0.0-alpha.10 (2024-02-02) + +### Feature + +- Allow editor to edit metadata during bulk upload. @iFlameing [#5549](https://github.com/plone/volto/issues/5549) +- Added `aria-live="polite"` in `Contents.jsx` to improve accessibility for the Contents page. @Hrittik20 [#5617](https://github.com/plone/volto/issues/5617) +- Support for passing whole data object of the initial blocks in local config. Refactor initial block type to its own helpers. @sneridagh [#5718](https://github.com/plone/volto/issues/5718) + +### Bugfix + +- Fixed wrong conditional proprieties on `ObjectBrowser` for multiple selection. @deodorhunter @Wagner3UB [#4190](https://github.com/plone/volto/issues/4190) +- Remove turbo from monorepo commands until it's really necessary @sneridagh [#5715](https://github.com/plone/volto/issues/5715) + +### Documentation + +- Block search engines from indexing content on Netlify preview builds. @stevepiercy [#5725](https://github.com/plone/volto/issues/5725) + ## 18.0.0-alpha.9 (2024-01-26) ### Feature diff --git a/packages/volto/news/4190.bugfix b/packages/volto/news/4190.bugfix deleted file mode 100644 index 102e518bc3..0000000000 --- a/packages/volto/news/4190.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed wrong conditional proprieties on `ObjectBrowser` for multiple selection. @deodorhunter @Wagner3UB diff --git a/packages/volto/news/5549.feature b/packages/volto/news/5549.feature deleted file mode 100644 index f68789f341..0000000000 --- a/packages/volto/news/5549.feature +++ /dev/null @@ -1 +0,0 @@ -Allow editor to edit metadata during bulk upload. @iFlameing \ No newline at end of file diff --git a/packages/volto/news/5617.feature b/packages/volto/news/5617.feature deleted file mode 100644 index 175d6d1491..0000000000 --- a/packages/volto/news/5617.feature +++ /dev/null @@ -1 +0,0 @@ -Added `aria-live="polite"` in `Contents.jsx` to improve accessibility for the Contents page. @Hrittik20 diff --git a/packages/volto/news/5715.bugfix b/packages/volto/news/5715.bugfix deleted file mode 100644 index df39ed3ef2..0000000000 --- a/packages/volto/news/5715.bugfix +++ /dev/null @@ -1 +0,0 @@ -Remove turbo from monorepo commands until it's really necessary @sneridagh diff --git a/packages/volto/news/5718.feature b/packages/volto/news/5718.feature deleted file mode 100644 index befa3eb8bf..0000000000 --- a/packages/volto/news/5718.feature +++ /dev/null @@ -1 +0,0 @@ -Support for passing whole data object of the initial blocks in local config. Refactor initial block type to its own helpers. @sneridagh diff --git a/packages/volto/news/5725.documentation b/packages/volto/news/5725.documentation deleted file mode 100644 index 6264f42515..0000000000 --- a/packages/volto/news/5725.documentation +++ /dev/null @@ -1 +0,0 @@ -Block search engines from indexing content on Netlify preview builds. @stevepiercy diff --git a/packages/volto/package.json b/packages/volto/package.json index 9b3b4d1a60..ac8492bf96 100644 --- a/packages/volto/package.json +++ b/packages/volto/package.json @@ -9,7 +9,7 @@ } ], "license": "MIT", - "version": "18.0.0-alpha.9", + "version": "18.0.0-alpha.10", "repository": { "type": "git", "url": "git@github.com:plone/volto.git" diff --git a/packages/volto/types/helpers/index.d.ts b/packages/volto/types/helpers/index.d.ts index 0537011646..4484c99b46 100644 --- a/packages/volto/types/helpers/index.d.ts +++ b/packages/volto/types/helpers/index.d.ts @@ -21,6 +21,7 @@ export { getAuthToken, persistAuthToken } from "@plone/volto/helpers/AuthToken/A export { addAppURL, expandToBackendURL, flattenHTMLToAppURL, flattenToAppURL, stripQuerystring, toPublicURL, isInternalURL, getParentUrl, getBaseUrl, getView, isCmsUi, getId, isUrl, normalizeUrl, removeProtocol, URLUtils, flattenScales } from "@plone/volto/helpers/Url/Url"; export { nestContent, getLayoutFieldname, getContentIcon, getLanguageIndependentFields } from "@plone/volto/helpers/Content/Content"; export { addBlock, insertBlock, blockHasValue, changeBlock, deleteBlock, emptyBlocksForm, getBlocks, getBlocksFieldname, getBlocksLayoutFieldname, hasBlocksData, moveBlock, mutateBlock, nextBlockId, previousBlockId, applyBlockDefaults, applySchemaDefaults, blocksFormGenerator, buildStyleClassNamesFromData, buildStyleClassNamesExtenders, buildStyleObjectFromData, getPreviousNextBlock, findBlocks } from "@plone/volto/helpers/Blocks/Blocks"; +export { getSimpleDefaultBlocks, getDefaultBlocks } from "@plone/volto/helpers/Blocks/defaultBlocks"; export { getBoolean, getVocabName, getVocabFromHint, getVocabFromField, getVocabFromItems, getFieldsVocabulary } from "@plone/volto/helpers/Vocabularies/Vocabularies"; export { default as FormValidation, validateFileUploadSize } from "./FormValidation/FormValidation"; export { difference, getColor, getInitials, safeWrapper, applyConfig, withServerErrorCode, parseDateTime, toGettextLang, normalizeLanguageName, toReactIntlLang, toLangUnderscoreRegion, toBackendLang, hasApiExpander, replaceItemOfArray, cloneDeepSchema, arrayRange, reorderArray, isInteractiveElement, slugify, normalizeString } from "@plone/volto/helpers/Utils/Utils";