Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/modules/file-uploader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Changed

- Bump the minimum supported version to 10.15.

## [1.0.3] FileUploader - 2025-02-28

### [1.0.3] FileUploader
Expand Down
4 changes: 2 additions & 2 deletions packages/modules/file-uploader/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mendix/file-uploader",
"moduleName": "File Uploader module",
"version": "1.0.3",
"version": "2.0.0",
"license": "Apache-2.0",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"private": true,
Expand All @@ -19,7 +19,7 @@
},
"moduleFolderNameInModeler": "fileuploader",
"marketplace": {
"minimumMXVersion": "9.24.0.2965",
"minimumMXVersion": "10.15.0.46408",
"appNumber": 235351,
"appName": "File Uploader"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/pluggableWidgets/file-uploader-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Added

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

## [1.0.3] - 2025-02-28

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/pluggableWidgets/file-uploader-web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mendix/file-uploader-web",
"widgetName": "FileUploader",
"version": "1.0.3",
"version": "2.0.0",
"description": "",
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
"private": true,
Expand All @@ -19,7 +19,7 @@
"branchName": "fileuploader-web"
},
"marketplace": {
"minimumMXVersion": "9.24.0.2965",
"minimumMXVersion": "10.15.0.46408",
"appName": "File Uploader"
},
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
<caption>Read-only mode</caption>
<description />
</property>
<property key="createFileAction" type="action">
<property key="createFileAction" type="action" defaultValue="FileUploader.ACT_CreateUploadedFileDocument" defaultType="CallNanoflow">
<caption>Action to create new files</caption>
<description>Nanoflow that creates a file object, associates it to the current object and commits it.</description>
</property>
<property key="createImageAction" type="action">
<property key="createImageAction" type="action" defaultValue="FileUploader.ACT_CreateUploadedImageDocument" defaultType="CallNanoflow">
<caption>Action to create new images</caption>
<description>Nanoflow that creates an image object, associates it to the current object and commits it.</description>
</property>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="FileUploader" version="1.0.3" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="FileUploader" version="2.0.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="FileUploader.xml" />
</widgetFiles>
Expand Down