Skip to content

Commit d376dbf

Browse files
uicontentyordan-st
andauthored
File Uploader v2.5.0: Update changelog (#2296)
Co-authored-by: Yordan Stoyanov <yordan.stoyanov@mendix.com>
1 parent bb6a668 commit d376dbf

5 files changed

Lines changed: 44 additions & 3 deletions

File tree

packages/modules/file-uploader/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,38 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [2.5.0] FileUploader - 2026-06-29
10+
11+
### [2.5.0] FileUploader
12+
13+
#### Fixed
14+
15+
- We fixed an issue where validation errors could not be dismissed and persisted after uploading a valid file.
16+
17+
- We fixed an issue where the dropzone turned grey without explanation when the file limit was reached. A message now appears below the dropzone stating "Maximum file count of X reached."
18+
19+
- We fixed an issue where dropping more files than allowed rejected the entire batch. Only the excess files are now rejected; the rest upload normally.
20+
21+
- We fixed an issue where files rejected due to the total file limit had no way to recover. They now show a retry button that becomes enabled when capacity is available.
22+
23+
#### Added
24+
25+
- We added a new "Maximum concurrent uploads" property to control how many files upload simultaneously. Files beyond this limit wait in a queue and upload automatically as slots free up.
26+
27+
- We added a new "File limit reached" text property to customize the message shown when the upload limit is reached.
28+
29+
- We added a new "Upload queued" text property to customize the message shown on files that are waiting to upload.
30+
31+
- We added a new "Retry button" text property to customize the tooltip on the retry button shown on rejected files.
32+
33+
#### Changed
34+
35+
- The "Maximum number of files" property is now optional. Leaving it empty or setting it to 0 means unlimited files are allowed. The default behavior is now unlimited (no cap).
36+
37+
- Files now upload in a queue rather than being marked as errors when too many are dropped at once. Queued files show a "Waiting..." state while they wait for a concurrent slot.
38+
39+
- Files in the list are now ordered with successful uploads above rejected files.
40+
941
## [2.4.2] FileUploader - 2026-04-23
1042

1143
### [2.4.2] FileUploader

packages/modules/file-uploader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/file-uploader",
33
"moduleName": "File Uploader module",
4-
"version": "2.4.2",
4+
"version": "2.5.0",
55
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
66
"license": "Apache-2.0",
77
"private": true,

packages/pluggableWidgets/file-uploader-web/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,34 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [2.5.0] - 2026-06-29
10+
911
### Fixed
1012

1113
- We fixed an issue where validation errors could not be dismissed and persisted after uploading a valid file.
1214

1315
- We fixed an issue where the dropzone turned grey without explanation when the file limit was reached. A message now appears below the dropzone stating "Maximum file count of X reached."
16+
1417
- We fixed an issue where dropping more files than allowed rejected the entire batch. Only the excess files are now rejected; the rest upload normally.
18+
1519
- We fixed an issue where files rejected due to the total file limit had no way to recover. They now show a retry button that becomes enabled when capacity is available.
1620

1721
### Added
1822

1923
- We added a new "Maximum concurrent uploads" property to control how many files upload simultaneously. Files beyond this limit wait in a queue and upload automatically as slots free up.
24+
2025
- We added a new "File limit reached" text property to customize the message shown when the upload limit is reached.
26+
2127
- We added a new "Upload queued" text property to customize the message shown on files that are waiting to upload.
28+
2229
- We added a new "Retry button" text property to customize the tooltip on the retry button shown on rejected files.
2330

2431
### Changed
2532

2633
- The "Maximum number of files" property is now optional. Leaving it empty or setting it to 0 means unlimited files are allowed. The default behavior is now unlimited (no cap).
34+
2735
- Files now upload in a queue rather than being marked as errors when too many are dropped at once. Queued files show a "Waiting..." state while they wait for a concurrent slot.
36+
2837
- Files in the list are now ordered with successful uploads above rejected files.
2938

3039
## [2.4.2] - 2026-04-23

packages/pluggableWidgets/file-uploader-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/file-uploader-web",
33
"widgetName": "FileUploader",
4-
"version": "2.4.2",
4+
"version": "2.5.0",
55
"description": "Upload files via drag-and-drop or file dialog. Supports multiple file uploads and image preview thumbnails.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/file-uploader-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="FileUploader" version="2.4.2" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="FileUploader" version="2.5.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="FileUploader.xml" />
66
</widgetFiles>

0 commit comments

Comments
 (0)