Skip to content

Commit 2e83c1c

Browse files
committed
Quarkus 3.22.1
1 parent fc9d6cf commit 2e83c1c

File tree

2 files changed

+132
-2
lines changed

2 files changed

+132
-2
lines changed

_data/versions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
quarkus:
2-
version: 3.21.4
3-
announce: /blog/quarkus-3-21-4-released/
2+
version: 3.22.1
3+
announce: /blog/quarkus-3-22-1-released/
44
graalvm: 'for Java 21'
55
jdk: "17+"
66
maven: 3.9.6+
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
---
2+
layout: post
3+
title: 'Quarkus 3.22 - Compose Dev Services, improved test class loading infrastructure...'
4+
date: 2025-04-30
5+
tags: release
6+
synopsis: 'Today, we released Quarkus 3.22, which introduces the Compose Dev Services feature and an improved test class loading infrastructure.'
7+
author: gsmet
8+
---
9+
10+
Today, we released Quarkus 3.22.
11+
12+
It comes with several important features, together with some infrastructure improvements:
13+
14+
* https://github.com/quarkusio/quarkus/pull/46848[#46848] - Compose Dev Services
15+
* https://github.com/quarkusio/quarkus/pull/34681[#34681] - Improved testing class loader infrastructure
16+
* https://github.com/quarkusio/quarkus/pull/44473[#44473] - Allow Hibernate ORM and Hibernate Reactive to be used in the same application
17+
* https://github.com/quarkusio/quarkus/pull/46398[#46398] - Apply validation modes to the Hibernate Reactive session factory config / Add tests for Reactive + Validator
18+
* https://github.com/quarkusio/quarkus/pull/46728[#46728] - Dedicated Dev UI interface to execute HQL (Hibernate ORM) queries
19+
* https://github.com/quarkusio/quarkus/pull/47012[#47012] - Add Jakarta Data documentation, dependency management and tests
20+
* https://github.com/quarkusio/quarkus/pull/46864[#46864] - Allow setting Clear-Site-Data on OIDC logout
21+
* https://github.com/quarkusio/quarkus/pull/47254[#47254] - Add OIDC expanded configuration reference
22+
* https://github.com/quarkusio/quarkus/pull/47127[#47127] - Support customization of gRPC server building
23+
* https://github.com/quarkusio/quarkus/pull/47435[#47435] - Make Stork optional for REST Client
24+
25+
== Update
26+
27+
To update to Quarkus 3.22, we recommend updating to the latest version of the Quarkus CLI and run:
28+
29+
[source,bash]
30+
----
31+
quarkus update
32+
----
33+
34+
Note that `quarkus update` can update your applications from any version of Quarkus (including 2.x) to Quarkus 3.22.
35+
36+
For more information about the adjustments you need to make to your applications, please refer to the https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.22[Quarkus 3.22 migration guide].
37+
38+
== What's new?
39+
40+
=== Compose Dev Services
41+
42+
Dev Services is one of the key developer joy feature of Quarkus.
43+
It has been around for quite some time and is very handy to get simple containers started in dev and test modes.
44+
45+
Quarkus 3.22 introduces the ability to compose and orchestrate complex container setups as Dev Services,
46+
by leveraging the Compose approach offered by Docker and Podman.
47+
48+
You can learn all about it in the https://quarkus.io/guides/compose-dev-services[dedicated guide].
49+
50+
=== Improved testing class loader infrastructure
51+
52+
This one has been in the works for quite some time and we are pleased to announce a new testing class loader infrastructure.
53+
It fixes a lot of issues but might also introduce some issues - even if we tried hard to squash all of them.
54+
55+
You can learn (a lot!) more about it in https://quarkus.io/blog/test-classloading-rewrite/[Holly's blog post presenting this work].
56+
57+
If you encounter any weird class loading issues in your tests, please report back!
58+
59+
=== Hibernate ORM and Hibernate Reactive
60+
61+
We used to not be able to mix Hibernate ORM and Hibernate Reactive in the same application.
62+
This limitation has now been lifted and you can leverage the strengths of both extensions in the same app.
63+
64+
Also, Hibernate Validator is now properly integrated with Hibernate Reactive.
65+
66+
Finally, Quarkus 3.22 includes a new Dev UI feature:
67+
you can execute HQL queries (as in Hibernate Query Language) directly in the Dev UI,
68+
allowing you to very easily test your HQL queries and iterate on them.
69+
70+
=== Jakarta Data
71+
72+
Jakarta Data has been supported by Quarkus since its inception but it wasn't properly documented.
73+
It has now a https://quarkus.io/guides/hibernate-orm#jakarta-data[dedicated section] in the Hibernate ORM guide.
74+
75+
The Jakarta Data dependencies have been added to our BOM.
76+
77+
=== OIDC
78+
79+
Starting with 3.22, on OIDC logout, you have the ability to set `Clear-Site-Data` header by using the `quarkus.oidc.logout.clear-site-data` configuration property.
80+
81+
We also added a https://quarkus.io/guides/security-oidc-expanded-configuration[brand new guide] with extensive coverage of the OIDC configuration.
82+
83+
=== gRPC
84+
85+
It is now possible to customize the gRPC server building by implementing the `ServerBuilderCustomizer` interface.
86+
87+
You can find out more about in the https://quarkus.io/guides/grpc-service-implementation#custom-server-building[new section] added to the documentation.
88+
89+
=== Stork
90+
91+
To avoid having to initialize Stork even if not needed, Stork is no longer a hard dependency of the REST Client.
92+
93+
If you want to leverage Stork with the REST Client, you need to add the Stork extension to your build file.
94+
95+
=== Platform component upgrades
96+
97+
==== Quarkus CXF
98+
99+
Quarkus CXF 3.22 was released and is now available in https://code.quarkus.io/?extension-search=origin:platform%20quarkus-cxf[Quarkus Platform 3.22].
100+
Check the https://docs.quarkiverse.io/quarkus-cxf/dev/release-notes/3.22.0.html[Quarkus CXF 3.22.0] release notes for more information about what is new in this release.
101+
102+
==== Camel Quarkus
103+
104+
Camel Quarkus has been upgraded to 3.22.0.
105+
106+
==== Amazon Services
107+
108+
The Amazon Services extensions have been upgraded to version 3.5.0.
109+
110+
== Full changelog
111+
112+
You can get the full changelog of https://github.com/quarkusio/quarkus/releases/tag/3.22.0.CR1[3.22.0.CR1], https://github.com/quarkusio/quarkus/releases/tag/3.22.0[3.22.0], and https://github.com/quarkusio/quarkus/releases/tag/3.22.1[3.22.1] on GitHub.
113+
114+
== Contributors
115+
116+
The Quarkus community is growing and has now https://github.com/quarkusio/quarkus/graphs/contributors[1075 contributors].
117+
Many many thanks to each and everyone of them.
118+
119+
In particular for the 3.22 release, thanks to Aixi-dev, Ales Justin, Alexey Loubyansky, Andreas Eberle, Andy Damevin, Antonio Musarra, Auri Munoz, Barry LaFond, Bruno Baptista, Clemens Classen, Clement Escoffier, Davide D'Alto, Digvijay Singh, elmodeer, Eric Deandrea, Esben Nedergaard, Fabian, Fabian Senn, feibl, Foivos Zakkak, franz1981, George Gastaldi, Georgios Andrianakis, Giancarlo Calderón Cárdenas, Guillaume Smet, Harry Chan, Holly Cummins, holomekc, Inaki Villar, ineednousername, Jan Martiska, Jeremie Bresson, Johnathan Gilday, Juan Antonio Breña Moral, Julien Ponge, Junes, Karm Michal Babacek, Katia Aresti, Ladislav Thon, Loïc Mathieu, Luca Basso Ricci, Luca Molteni, Marco Belladelli, mariofusco, marko-bekhta, Martin Bartoš, Martin Kouba, Martin Panzer, Matej Novotny, Matheus Cruz, Matheus Oliveira da Silva, Maximilian Zellhofer, Michael Edgar, Michael Musgrove, Michal Vavřík, Michiel Dockx, Mikhail Polivakha, Ozan Gunalp, Ozzy, Paulo Casaes, Peter Palaga, Phillip Krüger, Roberto Balarezo, Roberto Cortez, Rod Cheater, Rostislav Svoboda, Rüdiger zu Dohna, Sergey Beryozkin, shjones, Stuart Douglas, Stéphane Épardaud, Tamas Cservenak, Vardhman, w0pp, Yassine Haouzane, Yoann Rodière, and Yoshikazu Nojima.
120+
121+
== Come Join Us
122+
123+
We value your feedback a lot so please report bugs, ask for improvements... Let's build something great together!
124+
125+
If you are a Quarkus user or just curious, don't be shy and join our welcoming community:
126+
127+
* provide feedback on https://github.com/quarkusio/quarkus/issues[GitHub];
128+
* craft some code and https://github.com/quarkusio/quarkus/pulls[push a PR];
129+
* discuss with us on https://quarkusio.zulipchat.com/[Zulip] and on the https://groups.google.com/d/forum/quarkus-dev[mailing list];
130+
* ask your questions on https://stackoverflow.com/questions/tagged/quarkus[Stack Overflow].

0 commit comments

Comments
 (0)