Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.x: Upgrade ASM to 9.7.0 and byte-buddy to 1.14.18 for Java 23 support #9238

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
<version.lib.annotation-api>1.3.5</version.lib.annotation-api>
<version.lib.brave-opentracing>1.0.0</version.lib.brave-opentracing>
<version.lib.reactivestreams>1.0.4</version.lib.reactivestreams>
<!-- Force upgrade byte-buddy for Java 21. Remove after upgrading hibernate -->
<version.lib.byte-buddy>1.14.6</version.lib.byte-buddy>
<!-- Force upgrade byte-buddy for Java 23. Remove after upgrading hibernate -->
<version.lib.byte-buddy>1.14.18</version.lib.byte-buddy>
<version.lib.commons-logging>1.2</version.lib.commons-logging>
<version.lib.cron-utils>9.2.1</version.lib.cron-utils>
<version.lib.dropwizard.metrics>4.1.2</version.lib.dropwizard.metrics>
<version.lib.eclipselink>3.0.3</version.lib.eclipselink>
<!-- Force upgrade to ASM 9.5.0. Once eclipselink is upgraded this can be removed -->
<!-- Needed to support Java 20 -->
<version.lib.eclipselink.asm>9.5.0</version.lib.eclipselink.asm>
<!-- Force upgrade to ASM 9.7.0 Once eclipselink is upgraded this can be removed -->
<!-- Needed to support Java 23 -->
<version.lib.eclipselink.asm>9.7.0</version.lib.eclipselink.asm>
<version.lib.el-impl>4.0.2</version.lib.el-impl>
<version.lib.etcd4j>2.18.0</version.lib.etcd4j>
<version.lib.failsafe>2.3.1</version.lib.failsafe>
Expand Down Expand Up @@ -789,7 +789,7 @@
<artifactId>org.eclipse.persistence.jpa</artifactId>
<version>${version.lib.eclipselink}</version>
</dependency>
<!-- Force upgrade to ASM 9.5.0. Once eclipselink is upgraded this can be removed -->
<!-- Force upgrade ASM Once eclipselink is upgraded this can be removed -->
<!-- Needed to support Java 21 -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
Expand Down
Loading