-
Notifications
You must be signed in to change notification settings - Fork 369
Quarkus 3.31 #3614
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
base: main
Are you sure you want to change the base?
Quarkus 3.31 #3614
Conversation
6f51bc0 to
45476ca
Compare
9b4a713 to
e64b27f
Compare
3d51bd7 to
d28c9a2
Compare
dimas-b
left a comment
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.
Nice upgrade 🎉
I wonder whether the new MongoDbBackendBuilder is usable in older Quarkus versions 🤔
...in/java/org/apache/polaris/persistence/nosql/quarkus/backend/MongoDBConfigSourceFactory.java
Outdated
Show resolved
Hide resolved
...in/java/org/apache/polaris/persistence/nosql/quarkus/backend/MongoDBConfigSourceFactory.java
Outdated
Show resolved
Hide resolved
Nope, it's sadly not. |
| HttpServer httpServer; | ||
|
|
||
| private Response request(Map<String, String> headers) { | ||
| var baseUri = URI.create("http://localhost:" + httpServer.getPort()); |
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.
Can't you inject @TestHTTPResource URL testUrl?
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.
BTW this was just a nit, no need to change.
The Mongo-DB changes are necessary to account for the new way to define (multiple) Mongo drivers and that have an `active` flag. The internal-ish Mongo related classes in the Quarkus extension have changed. The added config-source makes the whole change transparent to users.
Updates Quarkus to 3.31.x.
The Mongo-DB changes are necessary to account for the new way to define (multiple) Mongo drivers and that have an
activeflag. The internal-ish Mongo related classes in the Quarkus extension have changed. The added config-source makes the whole change transparent to users.