-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Upgrade to Hibernate ORM 7 #41310
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
Merged
Merged
Upgrade to Hibernate ORM 7 #41310
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
961d2d4
Remove some dead code in Panache using Hibernate ORM internals
yrodiere e391bea
Upgrade to Hibernate ORM 7.0.0.Alpha3
yrodiere 0f4e8a4
Disallow CDI beans impacting metadata creation
yrodiere 6f4cfac
Upgrade to Hibernate ORM 7.0.0.Beta1
yrodiere 101b303
Make Hibernate ORM and jdbc-derby extensions work without any other r…
yrodiere 47b47c4
Upgrade to Hibernate ORM 7.0.0.Beta3 / Reactive 3.0.0.Beta1
yrodiere 873f397
Adapt QuarkusStrategySelectorBuilder to changes in StrategySelectorBu…
yrodiere 4ef2010
Work around https://hibernate.atlassian.net/browse/HHH-19033
yrodiere 819d1c5
Upgrade to Hibernate ORM 7.0.0.Beta4 / Reactive 3.0.0.Beta2
yrodiere ec03a95
Take into account feature removal HHH-18584 in tests
yrodiere 30d9c9e
Upgrade to Hibernate Search 8.0.0.Alpha1
yrodiere 08a6080
Upgrade to Hibernate Search 8.0.0.Alpha2
yrodiere b03a2f8
Upgrade to Hibernate ORM 7.0.0.Beta5 / Hibernate Reactive 3.0.0.Beta3
yrodiere f8b10ca
Upgrade to Hibernate Search 8.0.0.Alpha3
yrodiere 5b89722
Upgrade to Hibernate ORM 7.0.0.CR1 / Hibernate Reactive 3.0.0.CR1 / H…
yrodiere 604cc12
Upgrade to Hibernate ORM 7.0.0.CR2 / Hibernate Reactive 3.0.0.CR2
yrodiere 53905aa
Upgrade to Hibernate ORM 7.0.0.Final / Hibernate Reactive 3.0.0.Final…
yrodiere 9af61d7
Upgrade to Elasticsearch client 9.0.1
marko-bekhta 81042d3
Bump Elasticsearch/OpenSearch containers to latest-compatible with Hi…
marko-bekhta 4cce5cb
Restore proxy-related tests using `@ConcreteProxy` instead of `@Proxy…
yrodiere 5a21af8
Expose `jakarta.persistence.SchemaManager` as a CDI bean
yrodiere de9ac30
Upgrade to Hibernate Models 1.0.0
yrodiere eaefb92
Upgrade to Hibernate Search 8.0.0.Final / Elasticsearch client 9.0.2
yrodiere 11a6cd8
Bump the maximum number of connections for Elasticsearch
yrodiere 4fb68cb
Remove unnecessary log disabling for Hibernate Search
yrodiere 78b5979
Use hibernate-processor instead of the hibernate-jpamodelgen
marko-bekhta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>quarkus-hibernate-orm-derby-parent</artifactId> | ||
<groupId>io.quarkus</groupId> | ||
<version>999-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>quarkus-hibernate-orm-derby-deployment</artifactId> | ||
<name>Quarkus - Hibernate ORM - Derby - Deployment</name> | ||
<description>This extensions is added by Quarkus automatically when quarkus-hibernate-orm and quarkus-jdbc-derby are on the classpath</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-core-deployment</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-hibernate-orm-deployment-spi</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-datasource-common</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-hibernate-orm-derby</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>default-compile</id> | ||
<configuration> | ||
<annotationProcessorPaths> | ||
<path> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-extension-processor</artifactId> | ||
<version>${project.version}</version> | ||
</path> | ||
</annotationProcessorPaths> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
||
</project> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will probably need to write an OpenRewrite recipe for this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we already have the recipes for this version? I've only seen some for the previous ones, when making the change but maybe I just missed it 🙈