Skip to content

Commit

Permalink
Update internal Byte Buddy.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Dec 16, 2021
1 parent c7aba77 commit 2e5cddc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion byte-buddy-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
18 changes: 12 additions & 6 deletions byte-buddy-dep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<plugin>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-maven-plugin</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<executions>
<execution>
<phase>compile</phase>
Expand All @@ -128,19 +128,25 @@
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<plugin>net.bytebuddy.build.HashCodeAndEqualsPlugin$WithNonNullableFields</plugin>
<arguments>
<argument>
<index>0</index>
<value>net.bytebuddy.utility.nullability.MaybeNull</value>
</argument>
</arguments>
</transformation>
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<plugin>net.bytebuddy.build.CachedReturnPlugin</plugin>
</transformation>
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<plugin>net.bytebuddy.build.AccessControllerPlugin</plugin>
<arguments>
<argument>
Expand All @@ -152,13 +158,13 @@
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<plugin>net.bytebuddy.build.DispatcherAnnotationPlugin</plugin>
</transformation>
<transformation>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.4</version>
<version>1.12.5</version>
<plugin>net.bytebuddy.build.RepeatedAnnotationPlugin</plugin>
</transformation>
</transformations>
Expand Down
5 changes: 5 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Byte Buddy release notes
------------------------

### 16. December 2021: version 1.12.5

- Add alias annotations to avoid compilation warnings for optional findbugs dependency.
- Adjust `HashCodeEqualsPlugin` to allow for inclusion of custom annotation type on equals method parameter.

### 15. December 2021: version 1.12.4

- Make paths in Gradle plugin relative and therewith cachable.
Expand Down

0 comments on commit 2e5cddc

Please sign in to comment.