Skip to content

Commit

Permalink
build: bump version.byte-buddy from 1.15.11 to 1.17.0 (#3967)
Browse files Browse the repository at this point in the history
* build: bump version.byte-buddy from 1.15.11 to 1.17.0

Bumps `version.byte-buddy` from 1.15.11 to 1.17.0.

Updates `net.bytebuddy:byte-buddy` from 1.15.11 to 1.17.0
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](raphw/byte-buddy@byte-buddy-1.15.11...byte-buddy-1.17.0)

Updates `net.bytebuddy:byte-buddy-agent` from 1.9.16 to 1.17.0
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](raphw/byte-buddy@byte-buddy-1.9.16...byte-buddy-1.17.0)

Updates `net.bytebuddy:byte-buddy-dep` from 1.15.11 to 1.17.0
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](raphw/byte-buddy@byte-buddy-1.15.11...byte-buddy-1.17.0)

---
updated-dependencies:
- dependency-name: net.bytebuddy:byte-buddy
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: net.bytebuddy:byte-buddy-agent
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: net.bytebuddy:byte-buddy-dep
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* restore old version

* update shade + force asm version

* add new dependency to agent packages

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sylvain Juge <[email protected]>
  • Loading branch information
dependabot[bot] and SylvainJuge authored Feb 4, 2025
1 parent 9d16386 commit ab029a2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public class AgentInfo {
"com.lmax.disruptor",
"com.dslplatform.json",
"com.googlecode.concurrentlinkedhashmap",
"co.elastic.otel"
"co.elastic.otel",
"codes.rafael.asmjdkbridge"
));

private static final Set<String> agentRootPackages = new HashSet<>(Arrays.asList(
Expand Down
22 changes: 20 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
<version.jetty-server>9.4.11.v20180605</version.jetty-server>
<version.json-schema-validator>1.5.3</version.json-schema-validator>
<!-- Byte Buddy and ASM must be kept in sync -->
<version.byte-buddy>1.15.11</version.byte-buddy>
<version.byte-buddy>1.17.0</version.byte-buddy>
<version.asm>9.7.1</version.asm>
<version.cucumber>5.4.0</version.cucumber>

Expand Down Expand Up @@ -615,7 +615,25 @@
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<version>3.6.0</version>
<dependencies>
<!-- work-around to support java 24 bytecode -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${version.asm}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>${version.asm}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>${version.asm}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
Expand Down

0 comments on commit ab029a2

Please sign in to comment.