Message-ID: From: "renovate-bot (@renovate-bot)" To: "pgjdbc/pgjdbc" Date: Mon, 15 Jun 2026 08:00:53 +0000 Subject: [pgjdbc/pgjdbc] PR #4179: fix(deps): update dependency net.bytebuddy:byte-buddy-parent to v1.18.10 - autoclosed List-Id: X-GitHub-Additions: 1 X-GitHub-Author-Id: 25180681 X-GitHub-Author-Login: renovate-bot X-GitHub-Base: master X-GitHub-Changed-Files: 1 X-GitHub-Commits: 1 X-GitHub-Deletions: 1 X-GitHub-Head-Branch: renovate/net.bytebuddy-byte-buddy-parent-1.x X-GitHub-Head-SHA: 21b8199fab05b0ebf6da01fc747b495e58b5107d X-GitHub-Issue: 4179 X-GitHub-Labels: dependencies X-GitHub-Merge-SHA: 9da0c1fde88c64adf79a31f0ac6e974664b2a7cb X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: closed X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/pull/4179 Content-Type: text/plain; charset=utf-8 This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [net.bytebuddy:byte-buddy-parent](https://bytebuddy.net) ([source](https://redirect.github.com/raphw/byte-buddy)) | `1.18.8` → `1.18.10` | ![age](https://developer.mend.io/api/mc/badges/age/maven/net.bytebuddy:byte-buddy-parent/1.18.10?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/net.bytebuddy:byte-buddy-parent/1.18.8/1.18.10?slim=true) | --- ### Release Notes
raphw/byte-buddy (net.bytebuddy:byte-buddy-parent) ### [`v1.18.10`](https://redirect.github.com/raphw/byte-buddy/blob/HEAD/release-notes.md#3-June-2026-version-11810) - Delay change of default for unsage use to Java 26 and improve error message. ### [`v1.18.9`](https://redirect.github.com/raphw/byte-buddy/blob/HEAD/release-notes.md#1-June-2026-version-1189) - Disable use of Unsafe by default when Java 25or newer is discovered. - Check for escape when creating folders in `Plugin.Engine`. - Improve OpenJ9 attachment. - Avoid null pointer on missing annotation types. - Improve diagnostics for external agent attachment. - Improve on Gradle context discovery. - Support Android libraries on AGP9 or newer. - Update ASM.
--- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - "every 3 weeks on Monday" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/pgjdbc/pgjdbc). diff --git a/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts b/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts index 1ca84140cf..630310b5d5 100644 --- a/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts +++ b/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts @@ -15,7 +15,7 @@ dependencies { testImplementation("uk.org.webcompere:system-stubs-jupiter:2.1.8") // system-stubs-jupiter might come with an outdated byte-buddy version, so we mention // the latest one so it would be updated by the bots even if system-stubs-jupiter does not update - testImplementation(platform("net.bytebuddy:byte-buddy-parent:1.18.8")) + testImplementation(platform("net.bytebuddy:byte-buddy-parent:1.18.10")) } else { testImplementation("uk.org.webcompere:system-stubs-jupiter:1.2.1") // renovate:ignore }