You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Mendix 10.24 nightly failures and version compatibility docs
Nightly integration tests for Mendix 10.24 failed because widget
templates (from 11.6) and 11.x-only MDL features were not gated.
Changes:
- Gate 17-custom-widget-examples and 19-image-collection-examples
to 11.0+ (pluggable widget template tests)
- Gate P040_ConditionalProps section in 03-page-examples to 11.0+
(Visible/Editable xpath syntax)
- Add CE0463 as global known error (widget template version mismatch)
- Update nightly/push-test to use Mendix 11.9.0 (latest release)
- Add conditional visibility/editability and responsive column widths
to version registry YAML files
- Expand version-compatibility docs with fine-grained feature matrix
sourced from sdk/versions/*.yaml metadata
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs-site/src/appendixes/version-compatibility.md
+96-42Lines changed: 96 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Mendix Version Compatibility
2
2
3
-
Supported Mendix Studio Pro versions, BSON format differences, and known limitations.
3
+
Supported Mendix Studio Pro versions, feature availability matrix, and known limitations.
4
4
5
5
## Supported Versions
6
6
@@ -14,7 +14,7 @@ mxcli supports Mendix Studio Pro versions **9.x through 11.x**. Development and
14
14
| 10.24 (LTS) | v2 |**Yes**| Supported |
15
15
| 11.0 -- 11.5 | v2 | No | Supported |
16
16
| 11.6 | v2 |**Yes**| Primary development target |
17
-
| 11.8| v2 |**Yes**| Latest tested |
17
+
| 11.9| v2 |**Yes**| Latest tested |
18
18
19
19
## MPR Format Versions
20
20
@@ -32,48 +32,102 @@ mxcli supports Mendix Studio Pro versions **9.x through 11.x**. Development and
32
32
33
33
The library auto-detects the format. No configuration is needed.
34
34
35
-
## Feature Availability by Version
36
-
37
-
Not all MDL features work on all Mendix versions. The BSON document structure changes across versions, and some features were introduced in specific releases.
38
-
39
-
### Core Features (all supported versions)
40
-
41
-
| Feature | Minimum Version | Notes |
42
-
|---------|----------------|-------|
43
-
| Domain models (entities, attributes, associations) | 9.0 | Full CRUD support |
Pluggable widget templates are currently extracted from Mendix 11.6. When used on 10.x projects, the [MPK augmentation system](../internals/widget-templates.md) reconciles property differences. Some CE0463 ("widget definition changed") errors may still occur.
| Association storage format | 11.0 | New BSON encoding for associations |
77
131
| Portable app format | 11.6 | New deployment format |
78
132
79
133
## BSON Differences Across Versions
@@ -124,7 +178,7 @@ This reduces CE0463 ("widget definition changed") errors from widget version dri
124
178
125
179
## Version Gates in MDL Scripts
126
180
127
-
MDL scripts can use `-- @version:` directives to gate sections by Mendix version. This is used in the doctype integration tests to skip features incompatible with older versions:
181
+
MDL scripts can use `-- @version:` directives to conditionally execute features based on the target Mendix version. This is used in the doctype integration tests to skip features incompatible with older versions:
0 commit comments