{
"minMuleVersion": "4.1.0"
}
Feature Flagging Mechanism
Mule runtime engine incorporates a feature flagging mechanism that enables Mule applications to change the behavior of the Mule instance depending on the required minimum Mule version. This feature ensures backward compatibility because it allows Mule applications to continue working on later Mule runtime versions, while new Mule applications can benefit from the latest bug fixes implemented in the Mule instance.
The feature flagging mechanism is automatic. For each Mule application deployed to a Mule instance, Mule determines which features are enabled or disabled based on the application’s minimum Mule version configured in the application descriptor file (mule-artifact.json) of the Mule app.
By default, Mule runtime engine disables any new features or bug fixes that aren’t backward compatible with Mule applications running in earlier Mule versions. However, it is possible to manage the feature flags configured for each Mule application or all applications running in the same Mule instance.
Understanding minMuleVersion
If your deployment was rejected because of minMuleVersion, set it to the target runtime’s version or earlier, keeping the patch at .0 unless you need a backported fix (see Adopting a Backported Bug Fix (Advanced)). Don’t set it to the exact patch of the runtime you built or scaffolded with.
|
minMuleVersion declares the minimum runtime feature set that a Mule application requires. Conceptually, this corresponds to the minor number in Semantic Versioning. Mule 4 follows Semantic Versioning 2.0.0. Anypoint Studio and Anypoint Code Builder use this value when scaffolding a new application.
How the Runtime and Tools Check minMuleVersion
minMuleVersion isn’t only a feature-flag selector. The runtime, and other tools that work with a Mule artifact, compare its minMuleVersion against a target version using the full major.minor.patch. If the artifact’s minMuleVersion is later than the target, it’s rejected.
The most visible case is deployment. The runtime refuses to deploy an application whose minMuleVersion is later than the running runtime, and reports that the application requires a later runtime version. For example, an application with minMuleVersion=4.12.2 doesn’t deploy on a 4.12.1 runtime, even though the two only differ in patch. To check the version of the target runtime in CloudHub, CloudHub 2.0, Runtime Fabric, or a server managed by Runtime Manager, check the environment or instance details in Runtime Manager. On a standalone on-premises server, run ./mule -version or check the startup log.
The same comparison also happens outside the deployment cycle. Any tooling that reads a Mule artifact without deploying it applies the same check. For example, a service that introspects an application’s flows to list its triggers compares the artifact’s minMuleVersion exactly as deployment does. So does Anypoint Exchange when it extracts metadata as you publish an asset. Over-declaring minMuleVersion can therefore cause an artifact to be rejected by such tooling even when you aren’t deploying it.
This comparison is patch-sensitive by design. That’s what makes the backported bug fixes described in Adopting a Backported Bug Fix (Advanced) possible. Raising the patch of minMuleVersion is how an application opts into a backported bug fix.
Choosing the Value
Set minMuleVersion to the earliest Mule version whose feature set your application needs, not the latest patch of whatever runtime you happened to build or scaffold with. Declaring a later version than necessary is called over-declaring, and it can prevent an otherwise-compatible runtime or tool from accepting the application.
Setting minMuleVersion to an earlier version has a trade-off too: It disables any feature or bug fix enabled by default between the new value and the version the application previously declared. Choose the earliest version whose behavior your application relies on, not an arbitrarily early one.
Adopting a Backported Bug Fix (Advanced)
The patch component of minMuleVersion (the third number, for example, the 2 in 4.12.2) only matters for one corner case: a bug fix backported into a patch release instead of shipping with the next minor version. This typically results from an escalated product request. The Feature Flags Reference table documents these cases. Most flags become available at a minor release, but a few become available at a patch release, for example, mule.tx.error.when.timeout, available since Mule 4.6.1.
Like every entry in that table, a backported bug fix is disabled by default, so an application relying on the preexisting behavior isn’t affected by upgrading the runtime. Enabling it is a deliberate opt-in.
On an on-premises Mule instance, the recommended way to opt in to a backported fix (or any flag) is to configure it explicitly through a system property, as described in Configure Feature Flags for the Mule Instance, rather than by bumping the patch component of minMuleVersion. Raising the patch changes every flag available since that patch at once, including ones you didn’t intend to adopt, and it also tightens the compatibility check described in How the Runtime and Tools Check minMuleVersion.
Only set a patch-level minMuleVersion when all these conditions are true:
-
The application depends on a specific backported fix.
-
The deployment target doesn’t support a system-property override.
-
MuleSoft Support has directed you to do so.
Otherwise, leave the patch at .0.
For the full list of fields in mule-artifact.json, including minMuleVersion, see Application Descriptor Reference (mule-artifact.json).
Configure Feature Flags for a Mule Application
To configure feature flags for a Mule application, change the minMuleVersion value in the mule-artifact.json file of your app. With this configuration, the Mule instance runs the application using all features and bug fixes that were released to that particular version. The instance disables features and bug fixes that are active by default in later Mule versions.
For example, you can run a Mule application in Mule 4.5.0 instructing the Mule instance to apply only the features that don’t change core functionality up to Mule 4.1.0:
mule-artifact.json file
This example intentionally uses an earlier version, 4.1.0, to illustrate selecting an earlier feature set. It’s not a recommended value for a new application. See Understanding minMuleVersion.
|
Configure Feature Flags for the Mule Instance
An alternative way to configure feature flags is by using system properties. In this case, you can enable or disable each one of the available feature flags. However, configuring feature flags through system properties applies the changes at the Mule instance level, so all applications deployed to this Mule instance behave according to the configured feature flags.
Note that this configuration is compatible with on-premise deployments only because you cannot configure system properties in other deployment targets.
For example, you can configure a Mule 4.5.0 instance to enable and disable specific features for all applications running on this instance:
wrapper.conf file… wrapper.java.additional.999=-DHONOUR_RESERVED_PROPERTIES_PROPERTY=true wrapper.java.additional.1000=-DCOMPUTE_CONNECTION_ERRORS_IN_STATS_PROPERTY=false
Feature Flags Reference
The following table shows the available feature flags, a description of their functionality, the Mule version in which the flag became available, the earlier minor version releases that enable the flag by default, and the issue ID in which the change was implemented:
| Feature Flag | Description |
|---|---|
|
When enabled, batch aggregators with fixed size aggregators commit only when a full block is processed. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, connection errors are computed as part of alerts triggering. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the default error handler added by the Runtime doesn’t roll back a transaction if it doesn’t correspond to have this roll back made. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, DataWeave removes implicit inputs when a variable with the same name is declared at the root level. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, Mule manages extensions imported by a policy in complete isolation from the extensions imported by the Mule application. Also, validations prevent the use of explicit configurations that the application declared as part of the policy initialization. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Runtime profiling capabilities become available. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Mule XML DSL parser fails when deploying an application that declares a schema that cannot be located. Otherwise, the parser fails if the application also makes use of the namespace to which such a schema is bound. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, profiling consumers implemented by the Runtime are enabled by default. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, DataWeave correctly handles internal exceptions while splitting a payload, preventing subsequent serialization errors. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, reserved properties such as Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the operation policy’s error resolution is ignored. Therefore, the error mappings of the processor on which the policy is applied are set successfully. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, AbstractForkJoinRouter-based processors, such as Parallel For Each and Scatter-Gather routers, now show detailed error information for their failed routes. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, if the items to iterate over on a parallel-foreach scope are messages (such as the output of an operation that returns Result objects), they are flattened in a way that is consistent with what the foreach scope does. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Set Variable component creates a variable even if its value is Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, extensions are only able to load exported resources from the deployable artifacts (application, policy, domain). Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, managed cursor iterators transformed to strings show the representation of the elements instead of generic value Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, error suppression occurs. This feature prevents components such as the Web Service Consumer connector and the Until Successful scope from reporting errors outside their namespaces. Example of an error log extract for a connectivity error at the Web Service Consumer (HTTP:CONNECTIVITY is being suppressed): Error type : WSC:INVALID_WSDL Caused by : HTTP:CONNECTIVITY Suppressed errors are treated as underlying causes that can also be matched by On Error handlers. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, if an application accesses a native library, the rest of its declared native libraries are also loaded. This prevents errors like Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, internal exceptions are rethrown instead of throwing a general Available Since
Enabled by Default Since
Issue ID
|
|
When this property is set to true, DataWeave retains a mixed-content structure instead of grouping text with mixed content into a single text field. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, error types validations are enforced, even for error handlers/components that aren’t being referenced. This feature isn’t configurable by system property. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the runtime trims whitespaces from parameter values defined at the attribute level in the DSL. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the runtime trims whitespaces from CDATA text parameter of pojos in the DSL. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, expression validations are enforced for Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, expression validations are enforced for all DataWeave expressions. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, Available Since
Enabled by Default Since
Deprecated Since
Issue ID
|
|
When enabled, Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the application model is validated with the region classloader. When disabled, it is validated with the application classloader. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, error suppression happens. This affects, for example, the Web Service Consumer connector and the Until Successful scope that always reports errors from their corresponding namespaces (MULE and WSC). Suppressed errors are treated as underlying causes. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the 'foreach' router generates an Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the insecure TLS configuration is honored even if there are fields of the TrustStore configured. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, flux sinks are cached using index as part of the key. If a sink is already in use, a new sink is created. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, a new (Source) Policy Context is created for the execution of parallel scopes: ParallelForeach, ScatterGather, and Async. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the trace ID and span ID are added to the MDC when available. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, MBeans aren’t registered for Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Scheduler doesn’t log exceptions. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, an error is thrown when a local or XA transaction reach timeout. This error can be handled using error handling. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, implicit configuration for the XML SDK isn’t created. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the MDC context resets after XML SDK operation is executed. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the root element of Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, flows honor the state configured in Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, body contents aren’t sent on NTLM type 1 requests. This saves resources by not sending a payload that is never consumed (the server rejects the payload until the dance is completed). Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the processors that perform fork and join work (currently, Scatter-Gather and Parallel For Each routers) complete the child event contexts when a timeout occurs. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Available Since
Enabled by Default Since
Deprecated Since
Issue ID
|
|
When disabled, dynamic resolution of notification handling doesn’t occur after the Mule artifact is initialized. This can cause race conditions that affect monitoring metrics. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the encrypted payload is encoded in hexadecimal format when no Expression ID is specified. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, events cancelled during a forceful shutdown raise a Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, events aren’t retried if a Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, batch processing uses batch errors instead of step exceptions. The DataWeave exception-based bindings Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, policies use the object store implementation configured for the application. This enables alternative implementations, such as Object Store v2, to be used by policies. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, inline TLS contexts invoke their lifecycle initialization method, ensuring inline TLS contexts are fully initialized before use. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, all Mule flows are stopped in parallel rather than sequentially when a Mule application is stopped. This prevents delays caused by in-flight events in one flow from delaying the shutdown of other flows. Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, the object factories are created with Byte Buddy instead of CGLIB. Available Since
Enabled by Default Since
Deprecated Since
Issue ID
|
|
When enabled, Available Since
Enabled by Default Since
Issue ID
|
|
When enabled, Available Since
Enabled by Default Since
Issue ID
|



