Bump org.postgresql:postgresql from 42.5.0 to 42.7.7 in /labs/unicorn-store/software/alternatives/unicorn-store-basic
Open
Number: #7
Type: Pull Request
State: Open
Type: Pull Request
State: Open
Author:
dependabot[bot]
Association: Contributor
Comments: 0
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
Created:
August 31, 2025 at 09:45 PM UTC
(10 days ago)
(10 days ago)
Updated:
August 31, 2025 at 09:45 PM UTC
(10 days ago)
(10 days ago)
Labels:
dependencies java
dependencies java
Description:
Bumps org.postgresql:postgresql from 42.5.0 to 42.7.7.
Release notes
Sourced from org.postgresql:postgresql's releases.
v42.7.7
Changes
Security
- security: Client Allows Fallback to Insecure Authentication Despite channelBinding=require configuration. Fix
channel binding required
handling to reject non-SASL authentication Previously, when channel binding was set to "require", the driver would silently ignore this requirement for non-SASL authentication methods. This could lead to a false sense of security when channel binding was explicitly requested but not actually enforced. The fix ensures that when channel binding is set to "require", the driver will reject connections that use non-SASL authentication methods or when SASL authentication has not completed properly. See the Security Advisory for more detail. Reported by George MacKerron The following CVE-2025-49146 has been issuedAdded
- test: Added ChannelBindingRequiredTest to verify proper behavior of channel binding settings
🐛 Bug Fixes
🧰 Maintenance
- chore: bump slf4j and logback versions used for pgjdbc-osgi-test
@vlsi
(#3653)- chore: fix the default branch name for dependency-submission action
@vlsi
(#3650)- chore: add gradle/actions/dependency-submission so GitHub shows all dependencies used when building pgjdbc
@vlsi
(#3646)⬆️ Dependencies
- chore: bump slf4j and logback versions used for pgjdbc-osgi-test
@vlsi
(#3653)- chore(deps): update oracle-actions/setup-java action to v1.4.2
@renovate-bot
(#3643)- fix(deps): update dependency checkstyle to v10.25.0
@renovate-bot
(#3644)- chore: add gradle/actions/dependency-submission so GitHub shows all dependencies used when building pgjdbc
@vlsi
(#3646)- fix(deps): update dependency org.codehaus.groovy:groovy-all to v3.0.25
@renovate-bot
(#3648)- fix(deps): update dependency org.openrewrite.rewrite:org.openrewrite.rewrite.gradle.plugin to v7.7.0
@renovate-bot
(#3649)- chore(deps): update plugin com.gradle.develocity to v4.0.2
@renovate-bot
(#3647)- chore(deps): update codecov/codecov-action digest to 15559ed
@renovate-bot
(#3636)- chore(deps): update dependency gradle to v8.14.1
@renovate-bot
(#3637)- chore(deps): update plugin org.jetbrains.kotlin.jvm to v2.1.21 - autoclosed
@renovate-bot
(#3638)- chore(deps): update dependency sbt/sbt to v1.11.0
@renovate-bot
(#3640)- fix(deps): update dependency com.github.spotbugs:com.github.spotbugs.gradle.plugin to v6.1.13
@renovate-bot
(#3639)v42.7.6
Changes
... (truncated)
Changelog
Sourced from org.postgresql:postgresql's changelog.
[42.7.7] (2025-06-10)
Security
- security: Client Allows Fallback to Insecure Authentication Despite channelBinding=require configuration. Fix
channel binding required
handling to reject non-SASL authentication Previously, when channel binding was set to "require", the driver would silently ignore this requirement for non-SASL authentication methods. This could lead to a false sense of security when channel binding was explicitly requested but not actually enforced. The fix ensures that when channel binding is set to "require", the driver will reject connections that use non-SASL authentication methods or when SASL authentication has not completed properly. See the Security Advisory for more detail. Reported by George MacKerron The following CVE-2025-49146 has been issuedAdded
- test: Added ChannelBindingRequiredTest to verify proper behavior of channel binding settings
[42.7.6]
Features
- fix: Enhanced DatabaseMetadata.getIndexInfo() method, added index comment as REMARKS property [PR #3513](pgjdbc/pgjdbc#3513)
Performance Improvements
- performance: Improve ResultSetMetadata.fetchFieldMetaData by using IN row values instead of UNION ALL for improved query performance (later reverted) [PR #3510](pgjdbc/pgjdbc#3510)
- feat:Use a single simple query for all startup parameters, so groupStartupParameters is no longer needed [PR #3613](pgjdbc/pgjdbc#3613)
Bug Fixes
Protocol & Connection Handling
- fix: Send extra_float_digits=3 for PostgreSQL 12+ as well [PR #3491](pgjdbc/pgjdbc#3491)
- fix: Fixed handling of protocol 3.2 and wider cancel keys [PR #3592](pgjdbc/pgjdbc#3592)
- fix: Made PgConnection#abort compatible with Java 24 [PR #3582](pgjdbc/pgjdbc#3582)
- fix: Fixed ArrayIndexOutOfBounds when writing big objects into GSS enabled connections [PR #3500](pgjdbc/pgjdbc#3500)
- fix: Added back application name setting [PR #3509](pgjdbc/pgjdbc#3509)
Metadata & Catalog Handling
- fix: Set column name explicitly when using current_database() in queries [PR #3526](pgjdbc/pgjdbc#3526)
- fix: Use query to find the current catalog instead of relying on the database in the connection URL [pull #3565](pgjdbc/pgjdbc#3565)
- fix: Refactored empty resultset to use empty result set if the catalog is not correct [PR #3588](pgjdbc/pgjdbc#3588)
API Improvements
- fix: Undeprecated Fastpath API and fixed deprecation warnings [PR #3493](pgjdbc/pgjdbc#3493)
- fix: Undeprecated sslfactoryarg [PR #3496](pgjdbc/pgjdbc#3496)
- fix: Added PgMessageType and used static variables for protocol literals [PR #3609](pgjdbc/pgjdbc#3609)
- fix: Add the ability to turn off automatic LSN flush [PR #3403](pgjdbc/pgjdbc#3403)
- fix: isValid incorrectly called execute, instead of executeWithFlags [PR #3631](pgjdbc/pgjdbc#3631). Fixes [Issue #3630](pgjdbc/pgjdbc#3630)
- fix: EOFException on PreparedStatement#toString with unset bytea parameter since 42.7.4 Commit 0a88ea4. Fixes [Issue #3365](pgjdbc/pgjdbc#3365)
Infrastructure & Build Improvements
... (truncated)
Commits
9217ed1
Merge commit from forkcb10dce
fix: ensure Connection.isValid() returns true even if prepared statements dea...10e3546
chore: bump slf4j and logback versions used for pgjdbc-osgi-test6c5ea88
chore: fix the default branch name for dependency-submission action5616d5f
chore(deps): update oracle-actions/setup-java action to v1.4.20d43f0a
fix(deps): update dependency checkstyle to v10.25.0d0a8890
chore: add gradle/actions/dependency-submission so GitHub shows all dependenc...7105c75
fix(deps): update dependency org.codehaus.groovy:groovy-all to v3.0.25d9a6fc6
fix(deps): update dependency org.openrewrite.rewrite:org.openrewrite.rewrite....19dff83
chore(deps): update plugin com.gradle.develocity to v4.0.2- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
Commits:
1
1
Files Changed:
1
1
Additions:
+1
+1
Deletions:
-1
-1
Package Dependencies
Package:
org.postgresql:postgresql
Ecosystem:
maven
maven
Version Change:
42.5.0 → 42.7.7
Update Type:
Minor
Minor
Path:
/labs/unicorn-store/software/alternatives/unicorn-store-basic
Technical Details
ID: | 6041240 |
UUID: | 2788080991 |
Node ID: | PR_kwDOPnhvE86mLr1f |
Host: | GitHub |
Repository: | caoloss1/aws-lambda-java-workshop |
Merge State: | Unknown |