This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 6eb24bc47a [KYUUBI #7164] Bump Byte Buddy 1.17.6
6eb24bc47a is described below
commit 6eb24bc47a095bc5ee6d5bba455f696f5668841c
Author: Cheng Pan <[email protected]>
AuthorDate: Fri Aug 8 01:22:29 2025 +0800
[KYUUBI #7164] Bump Byte Buddy 1.17.6
### Why are the changes needed?
Support JDK 25
Full Release Notes: https://github.com/raphw/byte-buddy/releases
### How was this patch tested?
Pass GHA.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #7164 from pan3793/bytebuddy-1.17.6.
Closes #7164
9d4f45a8c [Cheng Pan] Revert "Bump maven shade plugin 3.6.0"
d3dc66862 [Cheng Pan] upgrade asm for maven-shade-plugin
9afe01915 [Cheng Pan] Bump maven shade plugin 3.6.0
1b8a99d71 [Cheng Pan] Bump Byte Buddy 1.17.6
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
pom.xml | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 2a5ad68568..a0d8d16295 100644
--- a/pom.xml
+++ b/pom.xml
@@ -127,7 +127,7 @@
<antlr.st4.version>4.3.4</antlr.st4.version>
<apache.archive.dist>https://archive.apache.org/dist</apache.archive.dist>
<atlas.version>2.3.0</atlas.version>
- <byte-buddy.version>1.14.15</byte-buddy.version>
+ <byte-buddy.version>1.17.6</byte-buddy.version>
<bouncycastle.version>1.78</bouncycastle.version>
<codahale.metrics.version>4.2.30</codahale.metrics.version>
<commons-cli.version>1.5.0</commons-cli.version>
@@ -1572,6 +1572,22 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.plugin.shade.version}</version>
+ <dependencies>
+ <!--
+ TODO: Remove ASM version management once upstream
change released
+ https://github.com/apache/maven-shade-plugin/pull/744
+ -->
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>9.8</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm-commons</artifactId>
+ <version>9.8</version>
+ </dependency>
+ </dependencies>
</plugin>
<plugin>