This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 9b170ed8f ORC-2144: Upgrade `byte-buddy` to 1.18.7
9b170ed8f is described below
commit 9b170ed8ff3b691277324ed9bef0726634d40aae
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Mar 24 21:58:49 2026 -0700
ORC-2144: Upgrade `byte-buddy` to 1.18.7
### What changes were proposed in this pull request?
This PR upgrades `byte-buddy` and `byte-buddy-agent` to 1.18.7.
### Why are the changes needed?
To keep the test dependency up to date with the latest bug fixes and
improvements.
- https://github.com/raphw/byte-buddy/releases/tag/byte-buddy-1.18.7
- https://github.com/raphw/byte-buddy/releases/tag/byte-buddy-1.18.5
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Code (claude-4-opus)
Closes #2594 from dongjoon-hyun/ORC-2144.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
java/pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/java/pom.xml b/java/pom.xml
index 66f569714..69c0cd8b3 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -274,13 +274,13 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.18.4</version>
+ <version>1.18.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
- <version>1.18.4</version>
+ <version>1.18.7</version>
<scope>test</scope>
</dependency>
<dependency>