Skip to content

Commit 26acf70

Browse files
committed
Release 18.32.3
1 parent bf01387 commit 26acf70

File tree

6 files changed

+120
-96
lines changed

6 files changed

+120
-96
lines changed

docs/source/release-notes/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ myst:
1717

1818
<!-- towncrier release notes start -->
1919

20+
## 18.32.3 (2026-03-04)
21+
22+
### Bugfix
23+
24+
- Add file size upload limit validator. @robgietema [#7936](https://github.com/plone/volto/issues/7936)
25+
2026
## 18.32.2 (2026-03-02)
2127

2228
### Bugfix

packages/volto/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ myst:
1717

1818
<!-- towncrier release notes start -->
1919

20+
## 18.32.3 (2026-03-04)
21+
22+
### Bugfix
23+
24+
- Add file size upload limit validator. @robgietema [#7936](https://github.com/plone/volto/issues/7936)
25+
2026
## 18.32.2 (2026-03-02)
2127

2228
### Bugfix

packages/volto/news/7936.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/volto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"license": "MIT",
12-
"version": "18.32.2",
12+
"version": "18.32.3",
1313
"repository": {
1414
"type": "git",
1515
"url": "git@github.com:plone/volto.git"

packages/volto/types/helpers/FormValidation/validators.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ type ChoiceValidator = {
2020
formData: any;
2121
formatMessage: Function;
2222
};
23+
type FileValidator = {
24+
value: Record<string, any>;
25+
field: Record<string, any>;
26+
formData: any;
27+
formatMessage: Function;
28+
};
2329
export declare const isMaxPropertyValid: ({ value, fieldSpec, criterion, formatMessage, }: MinMaxValidator) => any;
2430
export declare const isMinPropertyValid: ({ value, fieldSpec, criterion, formatMessage, }: MinMaxValidator) => any;
2531
export declare const minLengthValidator: ({ value, field, formatMessage, }: Validator) => any;
@@ -37,4 +43,5 @@ export declare const patternValidator: ({ value, field, formatMessage, }: Valida
3743
export declare const maxItemsValidator: ({ value, field, formatMessage, }: Validator) => any;
3844
export declare const minItemsValidator: ({ value, field, formatMessage, }: Validator) => any;
3945
export declare const defaultLanguageControlPanelValidator: ({ value, formData, formatMessage, }: ChoiceValidator) => any;
46+
export declare const sizeValidator: ({ value, field, formatMessage, }: FileValidator) => any;
4047
export {};

0 commit comments

Comments
 (0)