Skip to content

Commit 97358fe

Browse files
committed
chore: update min MX version to 10.13.0.41393
1 parent f912772 commit 97358fe

7 files changed

Lines changed: 9 additions & 38 deletions

File tree

.github/actions/create-native-bundle/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
/tmp/mxbuild/modeler/tools/node/linux-x64/node \
3434
/tmp/mxbuild/modeler/tools/node/node_modules/react-native/local-cli/cli.js \
3535
bundle --verbose --platform ${{ inputs.platform }} --dev false \
36-
--config "$PWD/metro.config.json" \
36+
--config "$PWD/metro.config.js" \
3737
--bundle-output $GITHUB_WORKSPACE/${{ inputs.platform }}/index.${{ inputs.platform }}.bundle \
3838
--assets-dest $GITHUB_WORKSPACE/${{ inputs.platform }}/assets/ \
3939
--entry-file ./index.js

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- Contains unit tests ✅ ❌
44
- Contains breaking changes ✅ ❌
5-
- Compatible with: MX 7️⃣, 8️⃣, 9️⃣
5+
- Compatible with: MX 8, 9, 10
66
- Did you update version and changelog? ✅ ❌
77
- PR title properly formatted (`[XX-000]: description`)? ✅ ❌
88
- Works in Android ✅ ❌

.github/scripts/mxbuild.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/runtime:6.0
1+
FROM mcr.microsoft.com/dotnet/runtime:8.0
22
ARG MENDIX_VERSION
33

44
RUN \

configs/e2e/mendix-versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"latest": "10.7.0.26214",
2+
"latest": "10.13.0.41393",
33
"8": "8.18.23.62193"
44
}

packages/jsActions/mobile-resources-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/mendix/native-widgets.git"
1010
},
1111
"marketplace": {
12-
"minimumMXVersion": "10.12.0.38909",
12+
"minimumMXVersion": "10.13.0.41393",
1313
"marketplaceId": 109513
1414
},
1515
"testProject": {

packages/jsActions/nanoflow-actions-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/mendix/native-widgets.git"
1010
},
1111
"marketplace": {
12-
"minimumMXVersion": "10.6.0.23934",
12+
"minimumMXVersion": "10.13.0.41393",
1313
"marketplaceId": 109515
1414
},
1515
"testProject": {

scripts/release/README.md

Lines changed: 3 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,6 @@
1-
## How to release widgets & modules to the appstore (`./marketplaceRelease.js`)
1+
# How to release widgets & modules to the appstore (`./marketplaceRelease.js`)
22

3-
#### Web Widgets
4-
5-
1. Trigger the "Create Web Release" action manually in GitHub with the argument containing the widget name. Eg: "accordion-web".
6-
2. That's it!
7-
- The content should now be released in GitHub.
8-
- The content should now be released in the MX Marketplace. Double check to verify.
9-
10-
#### Web Modules
11-
12-
1. Trigger the "Create Web Release" action manually in GitHub with the argument containing the module name. Eg "data-widgets".
13-
2. That's it!
14-
- The content should now be released in GitHub.
15-
- The content should now be released in the MX Marketplace. Double check to verify.
16-
17-
#### Atlas Core
18-
19-
1. Trigger the "Create Web Release" action manually in GitHub with the argument "atlas-core".
20-
2. That's it!
21-
- The content should now be released in GitHub as a draft. Approve and publish it.
22-
- Then another GitHub action `MarketplaceRelease` will take care of releasing the module to the MX Marketplace. Double check to verify.
23-
24-
#### Native Modules
3+
## Native Modules
254

265
- Native _modules_ published to Marketplace include Native Mobile Resources (named `mobile-resources-native` in code) and Nanoflow Commons (named `nanoflow-actions-native` in code). `nanoflow-actions-hybrid` is deprecated since MX9.
276

@@ -44,15 +23,7 @@ The automation script uses the version part to bump the module's `package.json`
4423

4524
Note: regarding JS actions and widgets, the automation will delete existing JS action and widgets from the test project before copying over that which comes from the widget resources repository. This is useful to avoid retaining stale files/dependencies, for example, as the codebase changes and thus sourcecode files/dependencies change.
4625

47-
#### Hybrid Modules
48-
49-
1. Add a tag to the commit you want to create a release from. The tag should be formatted like ${PackageName}-v${Major}.${Minor}.${Patch}
50-
- Example: `mobile-resources-hybrid-v1.0.0`
51-
1. That's it!
52-
- The content should now be released in GitHub.
53-
- The content should now be released in the MX Marketplace. Double check to verify.
54-
55-
#### Atlas Native Content Module
26+
## Atlas Native Content Module
5627

5728
1. Add a tag to the commit you want to create a release from. The tag should be formatted like ${PackageName}-v${Major}.${Minor}.${Patch}
5829
- Example: `atlas-content-native-v4.0.0`

0 commit comments

Comments
 (0)