Skip to content

Commit e28a945

Browse files
committed
Quarkus 3.5.0
1 parent a258f0d commit e28a945

File tree

2 files changed

+118
-3
lines changed

2 files changed

+118
-3
lines changed

_data/versions.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
quarkus:
2-
version: 3.4.3
3-
announce: /blog/quarkus-3-4-3-released/
4-
graalvm: '23.0'
2+
version: 3.5.0
3+
announce: /blog/quarkus-3-5-0-released/
4+
graalvm: 'for Java 21'
55
jdk: "11+"
66
maven: 3.8.2+
77
documentation:
Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
---
2+
layout: post
3+
title: 'Quarkus 3.5.0 released - Java 21, OIDC enhancements'
4+
date: 2023-10-25
5+
tags: release
6+
synopsis: 'We released Quarkus 3.5.0 which officially supports Java 21 and contains several OIDC-related improvements.'
7+
author: gsmet
8+
---
9+
10+
It is our pleasure to announce the release of Quarkus 3.5.0.
11+
12+
Major changes are:
13+
14+
- Official support for Java 21 (meaning it's fully tested in our CI)
15+
- GraalVM/Mandrel builder images updated to Java 21
16+
- Several OIDC-related enhancements
17+
18+
This version also comes with bugfixes, performance improvements and documentation improvements.
19+
20+
We currently maintain two version streams in the community:
21+
22+
- 3.5: it is the latest and greatest and it introduces new features
23+
- 3.2: it is our current link:/blog/lts-releases/[LTS release]
24+
25+
Quarkus 2.x is not maintained in the community anymore.
26+
If you are using the community version, please upgrade to Quarkus 3.x (either 3.2 LTS or 3.5).
27+
28+
== Update
29+
30+
To update to Quarkus 3.5, we recommend updating to the latest version of the Quarkus CLI and run:
31+
32+
[source,bash]
33+
----
34+
quarkus update
35+
----
36+
37+
To migrate from 3.4, please refer to https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.5[our migration guide].
38+
39+
If you are not already using 3.x, please refer to the https://quarkus.io/blog/quarkus-3-0-final-released/[3.0 announcement] for all the details.
40+
You can also refer to https://quarkus.io/blog/quarkus-3-upgrade/[this blog post] for additional details.
41+
Once you upgraded to 3.0, also have a look at the https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.1[3.1], https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.2[3.2], https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.2[3.3], and https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.4[3.4] migration guides.
42+
43+
== What's new?
44+
45+
=== Java 21
46+
47+
Most of Quarkus was already working with Java 21 but we polished a few things during the 3.5 development cycle and Quarkus is now fully tested with Java 21.
48+
The main reason why we were not able to include Java 21 in our CI before is that part of our build is using Gradle (typically to build the Gradle plugin)
49+
and Gradle doesn't fully support Java 21 yet.
50+
To overcome this situation, we have decoupled the JVM used to build the Gradle bits from the JVM used to build Quarkus and run our tests,
51+
so we won't have this problem in the future anymore.
52+
53+
Quarkus supports Java 11, Java 17, and Java 21.
54+
55+
=== GraalVM/Mandrel
56+
57+
We updated our native executable builder images to GraalVM/Mandrel for Java 21 (this is the new version scheme for GraalVM, they now target a Java version).
58+
59+
We still support GraalVM/Mandrel 23.0 but we recommend using GraalVM/Mandrel for Java 21.
60+
61+
=== OIDC
62+
63+
==== TokenStateManager backed by database
64+
65+
The `TokenStateManager` can now be backed by the database of your choice.
66+
67+
You can find more information about the new extension introduced to support this feature in https://quarkus.io/guides/security-oidc-code-flow-authentication#db-token-state-manager[our documentation].
68+
69+
==== Mastodon provider
70+
71+
Our OIDC extension provides preconfigured setups for a lot of well-known identity providers (such as Google, GitHub, Apple...).
72+
73+
Quarkus 3.5 adds Mastodon to this list.
74+
75+
==== OIDC scope attribute
76+
77+
The OIDC scope attribute is now mapped to the `SecurityIdentity` permissions.
78+
79+
=== Hibernate Reactive and Agroal
80+
81+
Hibernate Reactive can now coexist with Agroal meaning you can use Flyway or Liquibase in your applications using Hibernate Reactive as the ORM.
82+
83+
[NOTE]
84+
====
85+
It is still not possible to have both Hibernate ORM and Hibernate Reactive in the same application.
86+
====
87+
88+
=== Decompiler changed to Vineflower
89+
90+
When developing extensions or working on Quarkus internals, it is often practical to decompile the generated classes as the output of the bytecode is more readable than the bytecode.
91+
92+
Quarkus includes the ability to do it automatically and we changed the compiler from Quiltflower to Vineflower, which is the continuation of Quiltflower.
93+
You can find more information about this feature in https://quarkus.io/guides/writing-extensions#dump-the-generated-classes-to-the-file-system[our documentation].
94+
95+
== Full changelog
96+
97+
You can get the full changelog of https://github.com/quarkusio/quarkus/releases/tag/3.5.0.CR1[3.5.0.CR1] and https://github.com/quarkusio/quarkus/releases/tag/3.5.0[3.5.0] on GitHub.
98+
99+
== Contributors
100+
101+
The Quarkus community is growing and has now https://github.com/quarkusio/quarkus/graphs/contributors[859 contributors].
102+
Many many thanks to each and everyone of them.
103+
104+
In particular for the 3.5 release, thanks to Ales Justin, Alex Martel, Alexander Schwartz, Alexey Loubyansky, Andries Reurink, Andy Damevin, Àngel Ollé Blázquez, asjervanasten, Bill Burke, Bruno Baptista, Bruno Lellis, Chris Laprun, Christian Beikov, Clement Escoffier, David Andlinger, Dennis Kieselhorst, effedici, Emanuel Alves, Erin Schnabel, Falko Modler, Foivos Zakkak, Galder Zamarreño, Geoffrey De Smet, George Gastaldi, Georgios Andrianakis, Guillaume Smet, Holly Cummins, Ioannis Canellos, Ivan, Jan Martiska, Julien Ponge, Katia Aresti, kdnakt, Ladislav Thon, Laurent SCHOELENS, Leonor Boga, Loïc Mathieu, Marc Nuri, Marc Savy, Marco Bungart, Marek Skacelik, Marko Bekhta, Martin Kouba, Matej Novotny, melloware, Michael Kanis, Michal Karm Babacek, Michal Maléř, Michal Vavřík, Michelle Purcell, Monhemius, B. (Bart), Nathan Erwin, Navinya Shende, Ozan Gunalp, Paul Wright, Peter Palaga, Phillip Krüger, Robert Pospisil, Robert Stupp, Roberto Cortez, Rostislav Svoboda, Said BOUDJELDA, Sanne Grinovero, Sap004, Sergey Beryozkin, svkcemk, Thomas Darimont, Thomas Segismont, tom, Vinícius Ferraz Campos Florentino, Will Li, Willem Jan Glerum, Yacine Kheddache, and Yoann Rodière.
105+
106+
== Come Join Us
107+
108+
We value your feedback a lot so please report bugs, ask for improvements... Let's build something great together!
109+
110+
If you are a Quarkus user or just curious, don't be shy and join our welcoming community:
111+
112+
* provide feedback on https://github.com/quarkusio/quarkus/issues[GitHub];
113+
* craft some code and https://github.com/quarkusio/quarkus/pulls[push a PR];
114+
* discuss with us on https://quarkusio.zulipchat.com/[Zulip] and on the https://groups.google.com/d/forum/quarkus-dev[mailing list];
115+
* ask your questions on https://stackoverflow.com/questions/tagged/quarkus[Stack Overflow].

0 commit comments

Comments
 (0)