Hello,
Quarkus 2.3.0.Final has been released, and is now available from the Maven Central repository. The quickstarts and documentation have also been updated.
More information in the announcement blog post:
https://quarkus.io/blog/quarkus-2-3-0-final-released/* Major changes:
- Dev Service for Neo4J
Dev Services start the required containers automatically when you are developing or testing your application. A lot of Quarkus extensions are already covered and, in 2.3, we added a Dev Service for Neo4J.
- Logging with Panache
Logging in Quarkus now has a Panache flavor which allows you to eliminate logger related boilerplate code. See the logging guide for details.
- Testing support for CLI applications
Quarkus now provides @QuarkusMainTest and @QuarkusMainIntegrationTest to facilitate testing of CLI applications. Check out the command mode guide for details.
- MongoDB Liquibase extension
The new quarkus-liquibase-mongodb introduces support for Liquibase migrations to Quarkus applications that use MongoDB.
- Support for Hibernate Interceptors
Hibernate Interceptors are now supported in Quarkus. The Hibernate guide provides all the necessary details.
* BOM dependency:
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-bom</artifactId>
<version>2.3.0.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>
* Changelog and Download are available from
https://github.com/quarkusio/quarkus/releases/tag/2.3.0.Final* Documentation:
https://quarkus.ioNext release should be cut in roughly two weeks. It will be 2.4.0.
In case you really want to see a feature or something in this release, don’t forget to mention it in your PR or issue.
The Quarkus dev team