Skip to content

Commit de0fec6

Browse files
Updated to java 17 (#30)
1 parent 7a3f12d commit de0fec6

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,11 @@ The error messages that are used by this module are described below. The module
5151
- **Error Object Description**: the error message in the error object's description. This is used for the Error Message in Common Errors or Custom Errors by default. However, those can be customized to use something else instead.
5252

5353
## Compatibility
54+
### General
55+
- **`Java 17`: requires minimum Mule version `4.6.0`**
56+
- **`Java 9/11`: requires minimum Mule version `4.4.0`**
5457

55-
- **Requires minimum Mule version: 4.3.0**
58+
### Version `6.0.0`
5659
- **The XML component namespace changed due to internal requirements so previous versions of this should be deleted from an app before using this version.**
5760
- **The API response format has breaking changes.** While the response format has changed from versions previous to `6.0.0`, which breaks the API contract, you can create the same response format by transforming this module's response to the old format, if that is desired.
5861

@@ -65,7 +68,8 @@ This module may run on a runtime previous to the minimum listed, but it has not
6568
| ----------- | --------------- |
6669
| 4.0.0 | 4.2.0 |
6770
| 5.0.0 | 4.3.0 |
68-
| 6.0.0 | 4.4.0 |
71+
| 6.0.0 - 6.2.0 | 4.4.0 |
72+
| 6.3.0 | 4.6.0 |
6973

7074
### Changes from versions previous to 6.0.0
7175

mule-artifact.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"minMuleVersion": "4.3.0"
2+
"minMuleVersion": "4.4.0"
33
}

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>ORG_ID_TOKEN</groupId>
66
<artifactId>api-error-handler</artifactId>
7-
<version>6.2.0</version>
7+
<version>6.3.0</version>
88
<packaging>mule-extension</packaging>
99

1010
<name>API Error Handler</name>
@@ -19,9 +19,9 @@
1919
<repo.url>https://maven.anypoint.mulesoft.com/api/v1/organizations/${project.groupId}/maven</repo.url>
2020

2121
<!-- XML SDK properties -->
22-
<mule.version>4.4.0</mule.version>
23-
<mule.extensions.maven.plugin.version>1.5.1</mule.extensions.maven.plugin.version>
24-
<app.runtime>4.4.0</app.runtime>
22+
<mule.version>4.6.0</mule.version>
23+
<mule.extensions.maven.plugin.version>1.6.1</mule.extensions.maven.plugin.version>
24+
<app.runtime>4.6.0</app.runtime>
2525
</properties>
2626

2727
<distributionManagement>

0 commit comments

Comments
 (0)