dependabot[bot] opened a new pull request, #396:
URL: https://github.com/apache/maven-plugin-tools/pull/396

   Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 
1.15.5 to 1.17.5.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/raphw/byte-buddy/releases";>net.bytebuddy:byte-buddy's 
releases</a>.</em></p>
   <blockquote>
   <h2>Byte Buddy 1.17.5</h2>
   <ul>
   <li>Update ASM to version 9.8 to support Java 25 using ASM reader and 
writer.</li>
   <li>Include <code>AnnotationRemoval</code> visitor for removing or replacing 
annotations.</li>
   </ul>
   <h2>Byte Buddy 1.17.4</h2>
   <ul>
   <li>Add <code>SafeVarargs</code> plugin.</li>
   <li>Fix OSGi declaration for <em>byte-buddy-agent</em>.</li>
   </ul>
   <h2>Byte Buddy 1.17.3</h2>
   <ul>
   <li>Fix bug in ASM to Class File API bridge handling tableswitch 
instructions.</li>
   <li>Add plugin for adding <code>SafeVarargs</code> annotations.</li>
   <li>Further generify <code>MemberSubstitution</code> API.</li>
   </ul>
   <h2>Byte Buddy 1.17.2</h2>
   <ul>
   <li>Update Class File API integration to include support for several omitted 
byte codes.</li>
   <li>Adjust attach API emulation for OpenJ9 to not create subfolder if 
temporary folder is set explicitly.</li>
   </ul>
   <h2>Byte Buddy 1.17.1</h2>
   <ul>
   <li>Fix bug in <code>MemberSubstitution</code> were argument indices were 
resolved by one digit off.</li>
   <li>Update Class File API integration to avoid that parameter annotations 
are lost.</li>
   </ul>
   <h2>Byte Buddy 1.17.0</h2>
   <ul>
   <li>Assure that implicit choice for class reader and class writer are always 
symmetric with regard to internal representation.</li>
   <li>Retrofit <code>MemberSubstitution</code> to also allow for intercepting 
invokedynamic instructions.</li>
   <li>Introduce <code>@Handle</code> annotations to allow for injecting 
constant pool-stored method handle in <code>Advice</code>, 
<code>MemberSubstitution</code> and <code>MethodDelegation</code>.</li>
   <li>Introduce <code>@DynamicConstant</code> annotations to allow for 
injecting constant pool-stored dynamic constants in <code>Advice</code>, 
<code>MemberSubstitution</code> and <code>MethodDelegation</code>.</li>
   </ul>
   <h2>Byte Buddy 1.16.1</h2>
   <ul>
   <li>Correct reflective activation of Class File API.</li>
   <li>Reject array descriptors that are not well-formed in 
<code>TypePool</code>.</li>
   </ul>
   <h2>Byte Buddy 1.16.0</h2>
   <ul>
   <li>Allow for erasure of types of bootstrapped methods in 
<code>Advice</code> within instrumented class.</li>
   <li>Rework <code>Advice</code> post-processing to allow for erasure of 
bootstrapped methods.</li>
   <li>Fix missing application of hashCode/equals plugin for Java 8 code.</li>
   <li>Include support for JDK Class File API.</li>
   <li>Allow <code>Plugin.Engine</code> to retain folders.</li>
   </ul>
   <h2>Byte Buddy 1.15.11</h2>
   <ul>
   <li>Avoid dependency of <code>CachedReturnPlugin</code> on precompiled class 
files.</li>
   <li>Add <code>NOP</code> instruction when <code>Advice</code> is used on 
<code>void</code> methods as those might be empty which results on a frame 
being written to the same offset, causing an exception.</li>
   <li>Allow <code>Plugin.Engine</code> to link files instead of copying.</li>
   <li>Adjust validator code to avoid compiler bug that was reported by 
multiple users.</li>
   <li>Allow injection of class path as <code>File[]</code> to 
<code>Plugin</code> constructors.</li>
   <li>Allow for configuring variants when using the Android Gradle plugin.</li>
   </ul>
   <h2>Byte Buddy 1.15.10</h2>
   <ul>
   <li>Fix Java 8 patterns for multi-release jars to avoid that inner classes 
are excluded.</li>
   </ul>
   <h2>Byte Buddy 1.15.9</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/raphw/byte-buddy/blob/master/release-notes.md";>net.bytebuddy:byte-buddy's
 changelog</a>.</em></p>
   <blockquote>
   <h3>30. March 2025: version 1.17.5</h3>
   <ul>
   <li>Update ASM to version 9.8 to support Java 25 using ASM reader and 
writer.</li>
   <li>Include <code>AnnotationRemoval</code> visitor for removing or replacing 
annotations.</li>
   </ul>
   <h3>23. March 2025: version 1.17.4</h3>
   <ul>
   <li>Add <code>SafeVarargs</code> plugin.</li>
   <li>Fix OSGi declaration for <em>byte-buddy-agent</em>.</li>
   </ul>
   <h3>21. March 2025: version 1.17.3</h3>
   <ul>
   <li>Fix bug in ASM to Class File API bridge handling tableswitch 
instructions.</li>
   <li>Add plugin for adding <code>SafeVarargs</code> annotations.</li>
   <li>Further generify <code>MemberSubstitution</code> API.</li>
   </ul>
   <h3>3. March 2025: version 1.17.2</h3>
   <ul>
   <li>Update Class File API integration to include support for several omitted 
byte codes.</li>
   <li>Adjust attach API emulation for OpenJ9 to not create subfolder if 
temporary folder is set explicitly.</li>
   </ul>
   <h3>14. February 2025: version 1.17.1</h3>
   <ul>
   <li>Fix bug in <code>MemberSubstitution</code> were argument indices were 
resolved by one digit off.</li>
   <li>Update Class File API integration to avoid that parameter annotations 
are lost.</li>
   </ul>
   <h3>29. January 2025: version 1.17.0</h3>
   <ul>
   <li>Assure that implicit choice for class reader and class writer are always 
symmetric with regard to internal representation.</li>
   <li>Retrofit <code>MemberSubstitution</code> to also allow for intercepting 
invokedynamic instructions.</li>
   <li>Introduce <code>@Handle</code> annotations to allow for injecting 
constant pool-stored method handle in <code>Advice</code>, 
<code>MemberSubstitution</code> and <code>MethodDelegation</code>.</li>
   <li>Introduce <code>@DynamicConstant</code> annotations to allow for 
injecting constant pool-stored dynamic constants in <code>Advice</code>, 
<code>MemberSubstitution</code> and <code>MethodDelegation</code>.</li>
   </ul>
   <h3>19. January 2025: version 1.16.1</h3>
   <ul>
   <li>Correct reflective activation of Class File API.</li>
   <li>Reject array descriptors that are not well-formed in 
<code>TypePool</code>.</li>
   </ul>
   <h3>17. January 2025: version 1.16.0</h3>
   <ul>
   <li>Allow for erasure of types of bootstrapped methods in 
<code>Advice</code> within instrumented class.</li>
   <li>Rework <code>Advice</code> post-processing to allow for erasure of 
bootstrapped methods.</li>
   <li>Fix missing application of hashCode/equals plugin for Java 8 code.</li>
   <li>Include support for JDK Class File API.</li>
   <li>Allow <code>Plugin.Engine</code> to retain folders.</li>
   </ul>
   <h3>15. December 2024: version 1.15.11</h3>
   <ul>
   <li>Avoid dependency of <code>CachedReturnPlugin</code> on precompiled class 
files.</li>
   <li>Add <code>NOP</code> instruction when <code>Advice</code> is used on 
<code>void</code> methods as those might be empty which results on a frame 
being written to the same offset, causing an exception.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/5bfbb2cdb542c906fb1092330bebbaf9ec306cbf";><code>5bfbb2c</code></a>
 [maven-release-plugin] prepare release byte-buddy-1.17.5</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/6d606ca9c75a9e7fe3f683366a3013fc682b5189";><code>6d606ca</code></a>
 [release] Release new version.</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/82391a626793df0b8894db53e7902ef96e0609f9";><code>82391a6</code></a>
 Add release notes.</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/acee964ae318c6d4f9197010e25131124bc48283";><code>acee964</code></a>
 [release] Update ASM and release new version</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/5274152d8b3029e27f4049c542e46d2358b1939c";><code>5274152</code></a>
 Add missing checksums</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/9a910a6d8d3773d5dca9b54c8a5791bb8331901b";><code>9a910a6</code></a>
 Add checksums and minor fixes.</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/50f39fe9d12d82df4f7ddb3bc05417f52dd11889";><code>50f39fe</code></a>
 Add tests for annotation removal.</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/6e88849f6f6e97429d176a26d1d60b8616dcc9b4";><code>6e88849</code></a>
 Add annotation removal.</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/11c76cc8a597348c139fa683c4cca85007df3087";><code>11c76cc</code></a>
 Add annotation removal.</li>
   <li><a 
href="https://github.com/raphw/byte-buddy/commit/41016d9acd171d541f4e05cf80faad6b39ca733b";><code>41016d9</code></a>
 [maven-release-plugin] prepare for next development iteration</li>
   <li>Additional commits viewable in <a 
href="https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.5...byte-buddy-1.17.5";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.bytebuddy:byte-buddy&package-manager=maven&previous-version=1.15.5&new-version=1.17.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to