|
| 1 | +--- |
| 2 | +layout: post |
| 3 | +title: "RESTEasy 6.2.14.Final and 7.0.0.Final Releases" |
| 4 | +subtitle: "" |
| 5 | +date: 2025-09-28 |
| 6 | +author: James R. Perkins |
| 7 | +--- |
| 8 | + |
| 9 | +Today we are excited to announce the release of RESTEasy link:/downloads#6214final[6.2.14.Final] and RESTEasy |
| 10 | +link:/downloads#700final[7.0.0.Final]. RESTEasy 7.0.0.Final has been a long time coming and likely could have been |
| 11 | +final a while ago. However, we had some housekeeping we wanted to get done first. |
| 12 | + |
| 13 | +The release of 7.0.0.Final is a major milestone. It finalizes our effort to streamline the core framework and move |
| 14 | +key integrations into their own separate projects. This allows them to be versioned and released independently, giving |
| 15 | +users more flexibility. |
| 16 | + |
| 17 | +== Major Changes |
| 18 | + |
| 19 | +With RESTEasy 7.0, the Vert.x, Netty, and Jetty integrations have been moved from the core repository into their own |
| 20 | +projects. The old artifacts are now deprecated in 6.2.14.Final and have been removed completely in 7.0.0.Final. |
| 21 | + |
| 22 | +We strongly recommend all users migrate to the new group and artifact IDs (GAVs), as all future development and fixes |
| 23 | +will happen in these new repositories. |
| 24 | + |
| 25 | +The following table maps the old GAVs to the new ones: |
| 26 | + |
| 27 | +|=== |
| 28 | +|Old/Removed GA |New GAV |
| 29 | + |
| 30 | +|`org.jboss.resteasy:resteasy-netty4` |
| 31 | +|`dev.resteasy.netty:resteasy-embedded-server:1.0.0.Final` |
| 32 | + |
| 33 | +|`org.jboss.resteasy:resteasy-netty4-cdi` |
| 34 | +|`dev.resteasy.netty:resteasy-embedded-server-cdi:1.0.0.Final` |
| 35 | + |
| 36 | +|`org.jboss.resteasy:resteasy-reactor-netty` |
| 37 | +|`dev.resteasy.netty:resteasy-embedded-server-reactor:1.0.0.Final` |
| 38 | + |
| 39 | +|`org.jboss.resteasy:resteasy-client-reactor-netty` |
| 40 | +|`dev.resteasy.netty:resteasy-reactor-netty-client:1.0.0.Final` |
| 41 | + |
| 42 | +|`org.jboss.resteasy:resteasy-netty4` |
| 43 | +|`dev.resteasy.netty:resteasy-embedded-server:1.0.0.Final` |
| 44 | + |
| 45 | +|`org.jboss.resteasy:resteasy-vertx` |
| 46 | +|`dev.resteasy.vertx:resteasy-vertx-embedded-server:1.0.1.Final` |
| 47 | + |
| 48 | +|`org.jboss.resteasy:resteasy-client-vertx` |
| 49 | +|`dev.resteasy.vertx:resteasy-vertx-client:1.0.1.Final` |
| 50 | + |
| 51 | +|`org.jboss.resteasy:resteasy-client-jetty` |
| 52 | +|`dev.resteasy.jetty:resteasy-jetty-client:1.0.0.Alpha2` |
| 53 | +|=== |
| 54 | + |
| 55 | +[WARNING] |
| 56 | +==== |
| 57 | +The package for the Netty Reactor Client changed. This had to be done as it used the same package as the RESTEasy Client |
| 58 | +and causes a package split between the two artifacts. |
| 59 | +==== |
| 60 | + |
| 61 | +== 7.0.0.Final |
| 62 | + |
| 63 | +RESTEasy 7.0.0.Final is a https://jakarta.ee/specifications/restful-ws/4.0/[Jakarta REST 4.0] implementation. For the |
| 64 | +users of the Jakarta RESTful Web Services implementation, this is mostly bug fixes from the previous version of 7.0.0.Beta1. |
| 65 | + |
| 66 | +=== Bug |
| 67 | + |
| 68 | +* https://issues.redhat.com/browse/RESTEASY-3591[RESTEASY-3591] No SocketConfig is set for Connection Managers in ClientHttpEngineBuilder43 which can cause indefinitely hangs |
| 69 | +* https://issues.redhat.com/browse/RESTEASY-3593[RESTEASY-3593] The ResteasyDeploymentImpl getOptionValue does not behave the same when the security manager is enabled |
| 70 | +* https://issues.redhat.com/browse/RESTEASY-3598[RESTEASY-3598] ClassNotFoundException for org.jboss.resteasy.client.jaxrs.internal.proxy.ProxyBuilderImpl |
| 71 | +* https://issues.redhat.com/browse/RESTEASY-3620[RESTEASY-3620] The SeBootstrap implementation should clear the RESTEasy Context when stopping the server |
| 72 | + |
| 73 | +=== Task |
| 74 | + |
| 75 | +* https://issues.redhat.com/browse/RESTEASY-3611[RESTEASY-3611] Remove support for the security manager |
| 76 | +* https://issues.redhat.com/browse/RESTEASY-3616[RESTEASY-3616] Deprecate/Remove RESTEasy Vert.x in the core project and move to a new project |
| 77 | +* https://issues.redhat.com/browse/RESTEASY-3618[RESTEASY-3618] Refactor the integration-tests-embedded to be a testable archive |
| 78 | +* https://issues.redhat.com/browse/RESTEASY-3629[RESTEASY-3629] Remove the resteasy-client-jetty from the project |
| 79 | +* https://issues.redhat.com/browse/RESTEASY-3632[RESTEASY-3632] Deprecate /Remove the RESTEasy Netty Integration |
| 80 | + |
| 81 | +=== Enhancement |
| 82 | + |
| 83 | +* https://issues.redhat.com/browse/RESTEASY-3292[RESTEASY-3292] Create a provider for java.nio.file.Path |
| 84 | + |
| 85 | + |
| 86 | + |
| 87 | +Full releases notes can be found at https://github.com/resteasy/resteasy/releases/tag/7.0.0.Final. |
| 88 | + |
| 89 | +== 6.2.14.Final |
| 90 | + |
| 91 | +RESTEasy 6.2.14.Final is a https://jakarta.ee/specifications/restful-ws/3.1/[Jakarta REST 3.1] implementation. This |
| 92 | +release includes several important bug fixes and formally deprecates the components that have been moved to separate |
| 93 | +projects. |
| 94 | + |
| 95 | +=== Bug |
| 96 | + |
| 97 | +* https://issues.redhat.com/browse/RESTEASY-3591[RESTEASY-3591] No SocketConfig is set for Connection Managers in ClientHttpEngineBuilder43 which can cause indefinitely hangs |
| 98 | +* https://issues.redhat.com/browse/RESTEASY-3593[RESTEASY-3593] The ResteasyDeploymentImpl getOptionValue does not behave the same when the security manager is enabled |
| 99 | +* https://issues.redhat.com/browse/RESTEASY-3598[RESTEASY-3598] ClassNotFoundException for org.jboss.resteasy.client.jaxrs.internal.proxy.ProxyBuilderImpl |
| 100 | +* https://issues.redhat.com/browse/RESTEASY-3620[RESTEASY-3620] The SeBootstrap implementation should clear the RESTEasy Context when stopping the server |
| 101 | + |
| 102 | +=== Task |
| 103 | + |
| 104 | +* https://issues.redhat.com/browse/RESTEASY-3616[RESTEASY-3616] Deprecate/Remove RESTEasy Vert.x in the core project and move to a new project |
| 105 | +* https://issues.redhat.com/browse/RESTEASY-3618[RESTEASY-3618] Refactor the integration-tests-embedded to be a test |
| 106 | + |
| 107 | +== Finally |
| 108 | + |
| 109 | +As always, https://github.com/resteasy/resteasy/discussions/[feedback] is welcome. Stay safe, and, depending on where you are, stay warm or be cool. |
0 commit comments