Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump byteBuddyVersion from 1.11.0 to 1.12.1 #600

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 22, 2021

Bumps byteBuddyVersion from 1.11.0 to 1.12.1.
Updates byte-buddy from 1.11.0 to 1.12.1

Release notes

Sourced from byte-buddy's releases.

Byte Buddy 1.12.1

  • Fix binary incompatibility in BaseNameResolver for suffixing naming strategy.
  • Introduce caller sensitive base name resolver for suffixing naming strategies and use it as default if Graal native image property is discovered.

Byte Buddy 1.12.0

  • Introduce detection for Graal native image execution.
  • Correctly resolve interface implementations in revers order when compiling method graph.
  • Adjust lambda instrumentation strategy to support Java 17.

Byte Buddy 1.11.22

  • Remove automatic frame padding mechanism in favor of explicit NOP instruction after injected blocks.

Byte Buddy 1.11.21

  • Allow Advice.PostProcessor to emitt frames.
  • Add possibility for Advice.AssignReturned to suppress exceptions.
  • Add frame when rebasing constructors to avoid breakage if frames are assumed prior to super constructor call.

Byte Buddy 1.11.20

  • Add option for AsScalar annotation to assign default value instead of ignoring it.
  • Add transform-runtime goal to Byte Buddy Mojo to allow for running plugins with runtime class path included.

Byte Buddy 1.11.19

  • Add Advice.AssignReturned post processor to allow for assigning values from Advice that uses delegation rather than inlining.
  • Allow for declaring Advice.Local values from both enter and exit advice.
  • Add option for using runtime class path rather than only compile scope from Byte Buddy Maven plugin.
  • Avoid loading of annotation proxies within Byte Buddy's internal API.
  • Add plugin to add Java Repeatable annotations without requiring a JDK 8+.

Byte Buddy 1.11.18

  • Avoid binary incompatibility due to signature change by reintroducing method overload.
  • Use plugin to add annotations for dispatcher methods to avoid breakage when using obfuscators.

Byte Buddy 1.11.17

  • Better error message upon attachment failure due to overridden attach socket.
  • Retain label order for instructions in Advice to avoid incorrect offsets in stack map frames.
  • Change MethodGraph.Compiler API to accept generic types.
  • Add plugin to add Proxied annotations to all proxied methods of a dispatcher. This avoids problems in obfuscators.
  • Fix resolution of type initializer in a Nexus.

Byte Buddy 1.11.16

  • Avoid naming conflicts when adding super and default method delegation for the same method using MethodDelegation.
  • Fix module visibility for Invoker to avoid breakage if Byte Buddy is shaded into another module with different package exports.

Byte Buddy 1.11.15

  • Add net.bytebuddy prefix to Byte Buddy specific privileges.
  • Rework JavaDispatcher to require specific privilege but use Byte Buddy's protection domain for dispatchers, once acquired.

byte-buddy-1.11.14

  • Adjust InvocationHandlerAdapter to use null for methods without parameters as specified by contract.
  • Offer option to use null for MethodDelegation and Advice if method has no parameters.

... (truncated)

Changelog

Sourced from byte-buddy's changelog.

9. November 2021: version 1.12.1

  • Fix binary incompatibility in BaseNameResolver for suffixing naming strategy.
  • Introduce caller sensitive base name resolver for suffixing naming strategies and use it as default if Graal native image property is discovered.

5. November 2021: version 1.12.0

  • Introduce detection for Graal native image execution.
  • Correctly resolve interface implementations in revers order when compiling method graph.
  • Adjust lambda instrumentation strategy to support Java 17.

29. October 2021: version 1.11.22

  • Remove automatic frame padding mechanism in favor of explicit NOP instruction after injected blocks.

18. October 2021: version 1.11.21

  • Allow Advice.PostProcessor to emit frames.
  • Add possibility for Advice.AssignReturned to suppress exceptions.
  • Add frame when rebasing constructors to avoid breakage if frames are assumed prior to super constructor call.

11. October 2021: version 1.11.20

  • Add option for AsScalar annotation to assign default value instead of ignoring it.
  • Add transform-runtime goal to Byte Buddy Mojo to allow for running plugins with runtime class path included.

5. October 2021: version 1.11.19

  • Add Advice.AssignReturned post processor to allow for assigning values from Advice that uses delegation rather than inlining.
  • Allow for declaring Advice.Local values from both enter and exit advice.
  • Add option for using runtime class path rather than only compile scope from Byte Buddy Maven plugin.
  • Avoid loading of annotation proxies within Byte Buddy's internal API.
  • Add plugin to add Java Repeatable annotations without requiring a JDK 8+.

23. September 2021: version 1.11.18

  • Avoid binary incompatibility due to signature change by reintroducing method overload.
  • Use plugin to add annotations for dispatcher methods to avoid breakage when using obfuscators.

22. September 2021: version 1.11.17

  • Better error message upon attachment failure due to overridden attach socket.
  • Retain label order for instructions in Advice to avoid incorrect offsets in stack map frames.
  • Change MethodGraph.Compiler API to accept generic types.
  • Add plugin to add Proxied annotations to all proxied methods of a dispatcher. This avoids problems in obfuscators.
  • Fix resolution of type initializer in a Nexus.

17. September 2021: version 1.11.16

  • Avoid naming conflicts when adding super and default method delegation for the same method using MethodDelegation.

... (truncated)

Commits
  • ef26cf0 [maven-release-plugin] prepare release byte-buddy-1.12.1
  • 952e045 [release] New release
  • b6d899c Reintroduce base name resolver in suffixing random strategy and deprecate it ...
  • 3ea315d Fix version.
  • 9bac44e Try Zulu for EA version.
  • 8c7c3ce Revert EA version.
  • d10a5b7 Fix build matrix.
  • a9603b4 Update build matrix.
  • 54b22a3 Add contextual naming strategy and make it default for Graal builds.
  • d865202 Increment internal Byte Buddy.
  • Additional commits viewable in compare view

Updates byte-buddy-agent from 1.11.0 to 1.12.1

Release notes

Sourced from byte-buddy-agent's releases.

Byte Buddy 1.12.1

  • Fix binary incompatibility in BaseNameResolver for suffixing naming strategy.
  • Introduce caller sensitive base name resolver for suffixing naming strategies and use it as default if Graal native image property is discovered.

Byte Buddy 1.12.0

  • Introduce detection for Graal native image execution.
  • Correctly resolve interface implementations in revers order when compiling method graph.
  • Adjust lambda instrumentation strategy to support Java 17.

Byte Buddy 1.11.22

  • Remove automatic frame padding mechanism in favor of explicit NOP instruction after injected blocks.

Byte Buddy 1.11.21

  • Allow Advice.PostProcessor to emitt frames.
  • Add possibility for Advice.AssignReturned to suppress exceptions.
  • Add frame when rebasing constructors to avoid breakage if frames are assumed prior to super constructor call.

Byte Buddy 1.11.20

  • Add option for AsScalar annotation to assign default value instead of ignoring it.
  • Add transform-runtime goal to Byte Buddy Mojo to allow for running plugins with runtime class path included.

Byte Buddy 1.11.19

  • Add Advice.AssignReturned post processor to allow for assigning values from Advice that uses delegation rather than inlining.
  • Allow for declaring Advice.Local values from both enter and exit advice.
  • Add option for using runtime class path rather than only compile scope from Byte Buddy Maven plugin.
  • Avoid loading of annotation proxies within Byte Buddy's internal API.
  • Add plugin to add Java Repeatable annotations without requiring a JDK 8+.

Byte Buddy 1.11.18

  • Avoid binary incompatibility due to signature change by reintroducing method overload.
  • Use plugin to add annotations for dispatcher methods to avoid breakage when using obfuscators.

Byte Buddy 1.11.17

  • Better error message upon attachment failure due to overridden attach socket.
  • Retain label order for instructions in Advice to avoid incorrect offsets in stack map frames.
  • Change MethodGraph.Compiler API to accept generic types.
  • Add plugin to add Proxied annotations to all proxied methods of a dispatcher. This avoids problems in obfuscators.
  • Fix resolution of type initializer in a Nexus.

Byte Buddy 1.11.16

  • Avoid naming conflicts when adding super and default method delegation for the same method using MethodDelegation.
  • Fix module visibility for Invoker to avoid breakage if Byte Buddy is shaded into another module with different package exports.

Byte Buddy 1.11.15

  • Add net.bytebuddy prefix to Byte Buddy specific privileges.
  • Rework JavaDispatcher to require specific privilege but use Byte Buddy's protection domain for dispatchers, once acquired.

byte-buddy-1.11.14

  • Adjust InvocationHandlerAdapter to use null for methods without parameters as specified by contract.
  • Offer option to use null for MethodDelegation and Advice if method has no parameters.

... (truncated)

Changelog

Sourced from byte-buddy-agent's changelog.

9. November 2021: version 1.12.1

  • Fix binary incompatibility in BaseNameResolver for suffixing naming strategy.
  • Introduce caller sensitive base name resolver for suffixing naming strategies and use it as default if Graal native image property is discovered.

5. November 2021: version 1.12.0

  • Introduce detection for Graal native image execution.
  • Correctly resolve interface implementations in revers order when compiling method graph.
  • Adjust lambda instrumentation strategy to support Java 17.

29. October 2021: version 1.11.22

  • Remove automatic frame padding mechanism in favor of explicit NOP instruction after injected blocks.

18. October 2021: version 1.11.21

  • Allow Advice.PostProcessor to emit frames.
  • Add possibility for Advice.AssignReturned to suppress exceptions.
  • Add frame when rebasing constructors to avoid breakage if frames are assumed prior to super constructor call.

11. October 2021: version 1.11.20

  • Add option for AsScalar annotation to assign default value instead of ignoring it.
  • Add transform-runtime goal to Byte Buddy Mojo to allow for running plugins with runtime class path included.

5. October 2021: version 1.11.19

  • Add Advice.AssignReturned post processor to allow for assigning values from Advice that uses delegation rather than inlining.
  • Allow for declaring Advice.Local values from both enter and exit advice.
  • Add option for using runtime class path rather than only compile scope from Byte Buddy Maven plugin.
  • Avoid loading of annotation proxies within Byte Buddy's internal API.
  • Add plugin to add Java Repeatable annotations without requiring a JDK 8+.

23. September 2021: version 1.11.18

  • Avoid binary incompatibility due to signature change by reintroducing method overload.
  • Use plugin to add annotations for dispatcher methods to avoid breakage when using obfuscators.

22. September 2021: version 1.11.17

  • Better error message upon attachment failure due to overridden attach socket.
  • Retain label order for instructions in Advice to avoid incorrect offsets in stack map frames.
  • Change MethodGraph.Compiler API to accept generic types.
  • Add plugin to add Proxied annotations to all proxied methods of a dispatcher. This avoids problems in obfuscators.
  • Fix resolution of type initializer in a Nexus.

17. September 2021: version 1.11.16

  • Avoid naming conflicts when adding super and default method delegation for the same method using MethodDelegation.

... (truncated)

Commits
  • ef26cf0 [maven-release-plugin] prepare release byte-buddy-1.12.1
  • 952e045 [release] New release
  • b6d899c Reintroduce base name resolver in suffixing random strategy and deprecate it ...
  • 3ea315d Fix version.
  • 9bac44e Try Zulu for EA version.
  • 8c7c3ce Revert EA version.
  • d10a5b7 Fix build matrix.
  • a9603b4 Update build matrix.
  • 54b22a3 Add contextual naming strategy and make it default for Graal builds.
  • d865202 Increment internal Byte Buddy.
  • Additional commits viewable in compare view

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 commands and options

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 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)

Bumps `byteBuddyVersion` from 1.11.0 to 1.12.1.

Updates `byte-buddy` from 1.11.0 to 1.12.1
- [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.11.0...byte-buddy-1.12.1)

Updates `byte-buddy-agent` from 1.11.0 to 1.12.1
- [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.11.0...byte-buddy-1.12.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Related to third party dependency updates or migrations java Pull requests that update Java code labels Nov 22, 2021
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 26, 2021

Looks like these dependencies are no longer a dependency, so this is no longer needed.

@dependabot dependabot bot closed this Dec 26, 2021
@dependabot dependabot bot deleted the dependabot/maven/byteBuddyVersion-1.12.1 branch December 26, 2021 20:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Related to third party dependency updates or migrations java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants