From a333d623f644114992ee6d56ece727050ecd628d Mon Sep 17 00:00:00 2001 From: Yordan Stoyanov Date: Wed, 1 Jul 2026 15:57:18 +0200 Subject: [PATCH] docs(file-uploader): correct 2.5.0 changelog inaccuracies - Limit message appears on the dropzone, not below it - Default max files remains 10, not unlimited --- packages/modules/file-uploader/CHANGELOG.md | 4 ++-- packages/pluggableWidgets/file-uploader-web/CHANGELOG.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/modules/file-uploader/CHANGELOG.md b/packages/modules/file-uploader/CHANGELOG.md index a758860ba0..124b4df0c9 100644 --- a/packages/modules/file-uploader/CHANGELOG.md +++ b/packages/modules/file-uploader/CHANGELOG.md @@ -14,7 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - We fixed an issue where validation errors could not be dismissed and persisted after uploading a valid file. -- 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." +- We fixed an issue where the dropzone turned grey without explanation when the file limit was reached. A message now appears on the dropzone stating "Maximum file count of X reached." - 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. @@ -32,7 +32,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), #### Changed -- 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). +- The "Maximum number of files" property is now optional. Leaving it empty or setting it to 0 means unlimited files are allowed. The default remains 10. - 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. diff --git a/packages/pluggableWidgets/file-uploader-web/CHANGELOG.md b/packages/pluggableWidgets/file-uploader-web/CHANGELOG.md index e8997a99ff..6d0f3a5f27 100644 --- a/packages/pluggableWidgets/file-uploader-web/CHANGELOG.md +++ b/packages/pluggableWidgets/file-uploader-web/CHANGELOG.md @@ -12,7 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - We fixed an issue where validation errors could not be dismissed and persisted after uploading a valid file. -- 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." +- We fixed an issue where the dropzone turned grey without explanation when the file limit was reached. A message now appears on the dropzone stating "Maximum file count of X reached." - 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. @@ -30,7 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Changed -- 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). +- The "Maximum number of files" property is now optional. Leaving it empty or setting it to 0 means unlimited files are allowed. The default remains 10. - 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.