Skip to content

Commit

Permalink
Release 17.15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Apr 24, 2024
1 parent 85ea1f8 commit 0bb516e
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -17,6 +17,17 @@ myst:

<!-- towncrier release notes start -->

## 17.15.6 (2024-04-24)

### Bugfix

- Show validation error message as string instead of list. @wesleybl [#1868](https://github.com/plone/volto/issues/1868)
- Fixed rendering if ConditionalLink has no children @pnicolli [#5963](https://github.com/plone/volto/issues/5963)

### Documentation

- Block search engines from indexing content on Netlify preview builds. @stevepiercy [#5915](https://github.com/plone/volto/issues/5915)

## 17.15.5 (2024-03-07)

### Bugfix
Expand Down
11 changes: 11 additions & 0 deletions docs/source/release-notes/index.md
Expand Up @@ -17,6 +17,17 @@ myst:

<!-- towncrier release notes start -->

## 17.15.6 (2024-04-24)

### Bugfix

- Show validation error message as string instead of list. @wesleybl [#1868](https://github.com/plone/volto/issues/1868)
- Fixed rendering if ConditionalLink has no children @pnicolli [#5963](https://github.com/plone/volto/issues/5963)

### Documentation

- Block search engines from indexing content on Netlify preview builds. @stevepiercy [#5915](https://github.com/plone/volto/issues/5915)

## 17.15.5 (2024-03-07)

### Bugfix
Expand Down
1 change: 0 additions & 1 deletion news/1868.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/5915.documentation

This file was deleted.

1 change: 0 additions & 1 deletion news/5963.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "17.15.5",
"version": "17.15.6",
"repository": {
"type": "git",
"url": "git@github.com:plone/volto.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/volto-slate/package.json
@@ -1,6 +1,6 @@
{
"name": "@plone/volto-slate",
"version": "17.15.5",
"version": "17.15.6",
"description": "Slate.js integration with Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
Expand Up @@ -4,7 +4,7 @@ declare function ConditionalLink({ condition, to, item, ...props }: {
condition: any;
to: any;
item: any;
}): any;
}): JSX.Element;
declare namespace ConditionalLink {
namespace propTypes {
let condition: PropTypes.Requireable<boolean>;
Expand Down
1 change: 1 addition & 0 deletions types/helpers/FormValidation/FormValidation.d.ts
@@ -1,3 +1,4 @@
export function tryParseJSON(requestItem: string): any;
export default FormValidation;
export function validateFileUploadSize(file: File, intlFunc: Function): boolean;
declare class FormValidation {
Expand Down
2 changes: 1 addition & 1 deletion types/helpers/index.d.ts
Expand Up @@ -23,7 +23,7 @@ export { nestContent, getLayoutFieldname, getContentIcon, getLanguageIndependent
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 { default as FormValidation, validateFileUploadSize, tryParseJSON } 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";
export { withBlockSchemaEnhancer, withVariationSchemaEnhancer, withBlockExtensions, applySchemaEnhancer, resolveExtension, resolveBlockExtensions, addStyling, composeSchema } from "./Extensions";
export { getCurrentStateMapping, getWorkflowOptions } from "./Workflows/Workflows";

0 comments on commit 0bb516e

Please sign in to comment.