Skip to content

Commit 47f656f

Browse files
committed
chore: update file uploader for mx 11
1 parent 923d67d commit 47f656f

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

packages/modules/file-uploader/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@mendix/file-uploader",
33
"moduleName": "File Uploader module",
4-
"version": "2.0.0",
5-
"license": "Apache-2.0",
4+
"version": "2.1.0",
65
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
6+
"license": "Apache-2.0",
77
"private": true,
88
"repository": {
99
"type": "git",
@@ -19,7 +19,7 @@
1919
},
2020
"moduleFolderNameInModeler": "fileuploader",
2121
"marketplace": {
22-
"minimumMXVersion": "10.15.0.46408",
22+
"minimumMXVersion": "10.21.0.64362",
2323
"appNumber": 235351,
2424
"appName": "File Uploader"
2525
},
@@ -28,13 +28,13 @@
2828
"branchName": "fileuploader-web"
2929
},
3030
"scripts": {
31-
"verify": "rui-verify-package-format",
32-
"update-changelog": "rui-update-changelog-module",
3331
"build:module": "ts-node --project scripts/tsconfig.json scripts/build.ts",
3432
"create-gh-release": "rui-create-gh-release",
33+
"publish-marketplace": "rui-publish-marketplace",
3534
"push-update": "ts-node --project scripts/tsconfig.json scripts/push-update.ts",
3635
"release:module": "ts-node --project scripts/tsconfig.json scripts/release.ts",
37-
"publish-marketplace": "rui-publish-marketplace"
36+
"update-changelog": "rui-update-changelog-module",
37+
"verify": "rui-verify-package-format"
3838
},
3939
"dependencies": {
4040
"@mendix/file-uploader-web": "workspace:*"

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

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

77
## [Unreleased]
88

9+
### Changed
10+
11+
- We updated studio pro minimum version to 10.21 to support Mendix 11.
12+
913
## [2.0.0] - 2025-03-14
1014

1115
### Added
1216

13-
- We made "Action to create new files/images" preconfigured with corresponding nanoflows.
17+
- We made "Action to create new files/images" preconfigured with corresponding nanoflows.
1418

1519
## [1.0.3] - 2025-02-28
1620

1721
### Fixed
1822

19-
- We fixed an issue with long file names causing text to extend beyond the widget.
23+
- We fixed an issue with long file names causing text to extend beyond the widget.
2024

2125
## [1.0.2] - 2025-02-14
2226

2327
### Fixed
2428

25-
- We fixed an issue where an error occurred when uploading multiple files on a newly created context object.
29+
- We fixed an issue where an error occurred when uploading multiple files on a newly created context object.
2630

27-
- We fixed an issue where, in image mode, users could upload unsupported image formats.
31+
- We fixed an issue where, in image mode, users could upload unsupported image formats.
2832

2933
### Added
3034

31-
- We improved handling of the File/Image creation action. It is now easier to spot misconfigured actions through console warnings.
35+
- We improved handling of the File/Image creation action. It is now easier to spot misconfigured actions through console warnings.
3236

33-
- We added timeout functionality for the File/Image creation action. It will abort the file uploading process if an object is not created within a certain time.
37+
- We added timeout functionality for the File/Image creation action. It will abort the file uploading process if an object is not created within a certain time.
3438

35-
- We added a setting to enable read-only mode.
39+
- We added a setting to enable read-only mode.
3640

3741
## [1.0.1] - 2024-12-19
3842

3943
### Added
4044

41-
- The file uploader widget enables you to upload files by dragging and dropping them onto the widget or by using the file selection dialog.
45+
- The file uploader widget enables you to upload files by dragging and dropping them onto the widget or by using the file selection dialog.

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

Lines changed: 2 additions & 2 deletions
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.0.0",
4+
"version": "2.1.0",
55
"description": "",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",
@@ -18,7 +18,7 @@
1818
},
1919
"packagePath": "com.mendix.widget.web",
2020
"marketplace": {
21-
"minimumMXVersion": "10.15.0.46408",
21+
"minimumMXVersion": "10.21.0.64362",
2222
"appName": "File Uploader"
2323
},
2424
"testProject": {

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.0.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="FileUploader" version="2.1.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="FileUploader.xml" />
66
</widgetFiles>

0 commit comments

Comments
 (0)