Skip to content

Commit d865202

Browse files
committed
Increment internal Byte Buddy.
1 parent fbc8f6e commit d865202

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

byte-buddy-agent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>net.bytebuddy</groupId>
7070
<artifactId>byte-buddy</artifactId>
71-
<version>1.11.22</version>
71+
<version>1.12.0</version>
7272
<scope>test</scope>
7373
</dependency>
7474
</dependencies>

byte-buddy-dep/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<plugin>
114114
<groupId>net.bytebuddy</groupId>
115115
<artifactId>byte-buddy-maven-plugin</artifactId>
116-
<version>1.11.22</version>
116+
<version>1.12.0</version>
117117
<executions>
118118
<execution>
119119
<phase>compile</phase>
@@ -128,19 +128,19 @@
128128
<transformation>
129129
<groupId>net.bytebuddy</groupId>
130130
<artifactId>byte-buddy</artifactId>
131-
<version>1.11.22</version>
131+
<version>1.12.0</version>
132132
<plugin>net.bytebuddy.build.HashCodeAndEqualsPlugin$WithNonNullableFields</plugin>
133133
</transformation>
134134
<transformation>
135135
<groupId>net.bytebuddy</groupId>
136136
<artifactId>byte-buddy</artifactId>
137-
<version>1.11.22</version>
137+
<version>1.12.0</version>
138138
<plugin>net.bytebuddy.build.CachedReturnPlugin</plugin>
139139
</transformation>
140140
<transformation>
141141
<groupId>net.bytebuddy</groupId>
142142
<artifactId>byte-buddy</artifactId>
143-
<version>1.11.22</version>
143+
<version>1.12.0</version>
144144
<plugin>net.bytebuddy.build.AccessControllerPlugin</plugin>
145145
<arguments>
146146
<argument>
@@ -152,13 +152,13 @@
152152
<transformation>
153153
<groupId>net.bytebuddy</groupId>
154154
<artifactId>byte-buddy</artifactId>
155-
<version>1.11.22</version>
155+
<version>1.12.0</version>
156156
<plugin>net.bytebuddy.build.DispatcherAnnotationPlugin</plugin>
157157
</transformation>
158158
<transformation>
159159
<groupId>net.bytebuddy</groupId>
160160
<artifactId>byte-buddy</artifactId>
161-
<version>1.11.22</version>
161+
<version>1.12.0</version>
162162
<plugin>net.bytebuddy.build.RepeatedAnnotationPlugin</plugin>
163163
</transformation>
164164
</transformations>

release-notes.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Byte Buddy release notes
22
------------------------
33

4+
### 5. November 2021: version 1.12.0
5+
6+
- Introduce detection for Graal native image execution.
7+
- Correctly resolve interface implementations in revers order when compiling method graph.
8+
- Adjust lambda instrumentation strategy to support Java 17.
9+
410
### 29. October 2021: version 1.11.22
511

612
- Remove automatic frame padding mechanism in favor of explicit *NOP* instruction after injected blocks.

0 commit comments

Comments
 (0)