Remove version override for org.postgresql:postgresql#51140
Merged
Conversation
Copilot
AI
changed the title
[WIP] Remove version override for org.postgresql:postgresql
Remove version override for Jul 24, 2026
org.postgresql:postgresql
Contributor
|
@copilot Follow https://github.com/keycloak/keycloak/blob/main/CONTRIBUTING.md with the commit message. |
Contributor
Author
I've updated the PR description to follow the CONTRIBUTING.md commit message format, ending with |
vmuzikar
approved these changes
Jul 24, 2026
Pepo48
approved these changes
Jul 24, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Removes the temporary PostgreSQL JDBC dependency override now that Quarkus manages version 42.7.11.
Changes:
- Removed the explicit PostgreSQL dependency-management entry.
- Retained the JDBC version property used by test modules.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Removes the
org.postgresql:postgresqlversion override from the rootpom.xml<dependencyManagement>, introduced in #48802 as a temporary CVE fix pending Quarkus adopting PostgreSQL JDBC 42.7.11.Changes
org.postgresql:postgresql:${postgresql-jdbc.version}override and its accompanying comment from the root POM. The repo is now on Quarkus 3.33.2.1, whose BOM already managesorg.postgresql:postgresql:42.7.11(verified via the published BOM and the effective POM after removal), so the driver version now flows from the Quarkus BOM including its standard exclusions.postgresql-jdbc.versionproperty (42.7.11) is kept, as it is still referenced directly bytests/base,testsuite/utils,testsuite/model, andtestsuite/integration-arquillianPOMs and published todb.adocas the tested version.Closes #48990