This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 1a85edab6 ORC-1849: Upgrade `byte-buddy` to 1.17.0
1a85edab6 is described below
commit 1a85edab600648b46b98baccc37b1476e0249e17
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Feb 14 13:11:53 2025 -0800
ORC-1849: Upgrade `byte-buddy` to 1.17.0
### What changes were proposed in this pull request?
This PR aims to upgrade `byte-buddy` to 1.17.0.
### Why are the changes needed?
**Release Note**
- https://github.com/raphw/byte-buddy/releases/tag/byte-buddy-1.17.0
**Support Matrix of ByteBuddy**
| ByteBuddy Version | Java Version |
| - | - |
| 1.17.0 | 25+ |
| 1.15.4 | 24 |
| 1.14.12 | 23 |
| 1.14.8 | 22 |
| 1.14.3 | 21 |
| 1.12.18 | 20 |
| 1.12.9 | 19 |
| 1.11.6 | 18 |
| 1.10.19 | 17 |
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #2129 from dongjoon-hyun/ORC-1849.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit adec6d49fb7150e053025f6781b3649dbc34460f)
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 4d64322c4..73b853f4c 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -252,13 +252,13 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
- <version>1.14.11</version>
+ <version>1.17.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
- <version>1.14.11</version>
+ <version>1.17.0</version>
<scope>test</scope>
</dependency>
<dependency>