Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade H2 to 2.3.230 #43265

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Downgrade H2 to 2.3.230
Fixes #43261
gsmet committed Sep 13, 2024

Verified

This commit was signed with the committer’s verified signature.
gsmet Guillaume Smet
commit e063f24c3c645d0bfd6fc6ebf5a3f8a552c31a16
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@
<httpasync.version>4.1.5</httpasync.version>
<cronutils.version>9.2.1</cronutils.version>
<quartz.version>2.3.2</quartz.version>
<h2.version>2.3.232</h2.version> <!-- When updating, needs to be matched in io.quarkus.hibernate.orm.runtime.config.DialectVersions
<h2.version>2.3.230</h2.version> <!-- When updating, needs to be matched in io.quarkus.hibernate.orm.runtime.config.DialectVersions
and the dependency jts-core needs to be updated in extensions/jdbc/jdbc-h2/runtime/pom.xml -->
<postgresql-jdbc.version>42.7.4</postgresql-jdbc.version>
<mariadb-jdbc.version>3.4.1</mariadb-jdbc.version>
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ public static final class Defaults {

// This must be aligned on the H2 version in the Quarkus BOM
// This must never be removed
public static final String H2 = "2.3.232";
public static final String H2 = "2.3.230";

private Defaults() {
}