Skip to content

Commit 83e6a38

Browse files
Bump net.bytebuddy:byte-buddy from 1.15.10 to 1.15.11 (#740)
Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.10 to 1.15.11. <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.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.Enging</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> </blockquote> </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> <h2>Byte Buddy release notes</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/raphw/byte-buddy/commit/08578b9b02c9837ef811fdbe1ec55949bc522fee"><code>08578b9</code></a> [maven-release-plugin] prepare release byte-buddy-1.15.11</li> <li><a href="https://github.com/raphw/byte-buddy/commit/8b4485f34205f47a4c9e797eee43dbfc4c750db5"><code>8b4485f</code></a> [release] Release new version</li> <li><a href="https://github.com/raphw/byte-buddy/commit/e9bde621ea67f47436818264aa713c3ef1640fc8"><code>e9bde62</code></a> Add checksums for new release plugin.</li> <li><a href="https://github.com/raphw/byte-buddy/commit/268bf967378d9194a244a87423c7e15392a869f9"><code>268bf96</code></a> [release] Release new version</li> <li><a href="https://github.com/raphw/byte-buddy/commit/c15c880139bc434d8d8df246402b6ee540b307e6"><code>c15c880</code></a> Clean up build and remove access to projects from Maven and Gradle plugins as...</li> <li><a href="https://github.com/raphw/byte-buddy/commit/efbd6cb453a8c37ec610bbdaeb8c382c0eaac139"><code>efbd6cb</code></a> Remove debug output.</li> <li><a href="https://github.com/raphw/byte-buddy/commit/5237719ef1bd7c33f6bc0017dbb66299e476fb69"><code>5237719</code></a> Clean up code according to existing conventions.</li> <li><a href="https://github.com/raphw/byte-buddy/commit/ea9ad3df1aa256cdc2db0f373b0899b93603fdd7"><code>ea9ad3d</code></a> Config avoidance (<a href="https://redirect.github.com/raphw/byte-buddy/issues/1737">#1737</a>)</li> <li><a href="https://github.com/raphw/byte-buddy/commit/f071a02cb82229bdfe1a97042eff538b6569d641"><code>f071a02</code></a> Add additional arguments to plugins.</li> <li><a href="https://github.com/raphw/byte-buddy/commit/01d06f97b1207d4f4d72c97e157233ada56bdd8c"><code>01d06f9</code></a> Avoid JIT compilation bug in validator.</li> <li>Additional commits viewable in <a href="https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.10...byte-buddy-1.15.11">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.10&new-version=1.15.11)](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>
2 parents 4dd333c + 5851ea7 commit 83e6a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
<guava.version>33.3.1-jre</guava.version>
137137
<codegen.version>0.6.8</codegen.version>
138138
<mysema.lang.version>0.2.4</mysema.lang.version>
139-
<byte-buddy.version>1.15.10</byte-buddy.version>
139+
<byte-buddy.version>1.15.11</byte-buddy.version>
140140
<slf4j.version>2.0.16</slf4j.version>
141141
<surefire.version>3.5.2</surefire.version>
142142
<animal-sniffer.version>1.24</animal-sniffer.version>

0 commit comments

Comments
 (0)