From 583e2a76f8937c9fdb3773a840192c4320008477 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 8 Mar 2023 08:58:59 +0000
Subject: [PATCH] Bump byteBuddyVersion from 1.14.0 to 1.14.1 (#8001)
Bumps `byteBuddyVersion` from 1.14.0 to 1.14.1.
Updates `net.bytebuddy:byte-buddy` from 1.14.0 to 1.14.1
Changelog
Sourced from net.bytebuddy:byte-buddy's
changelog.
Byte Buddy release notes
Commits
5ef0fa6
[maven-release-plugin] prepare release byte-buddy-1.14.1
bada152
[release] Release new version
334128e
Update Eclipse lifecycle mapping.
876d667
Add additional scope for Maven plugin.
665a090
Add checksums.
537c613
Increment internal byte buddy and add release notes.
8c6f861
[maven-release-plugin] prepare for next development iteration
- See full diff in compare
view
Updates `net.bytebuddy:byte-buddy-dep` from 1.14.0 to 1.14.1
Changelog
Sourced from net.bytebuddy:byte-buddy-dep's
changelog.
Byte Buddy release notes
Commits
5ef0fa6
[maven-release-plugin] prepare release byte-buddy-1.14.1
bada152
[release] Release new version
334128e
Update Eclipse lifecycle mapping.
876d667
Add additional scope for Maven plugin.
665a090
Add checksums.
537c613
Increment internal byte buddy and add release notes.
8c6f861
[maven-release-plugin] prepare for next development iteration
- See full diff in compare
view
Updates `net.bytebuddy:byte-buddy-agent` from 1.14.0 to 1.14.1
Changelog
Sourced from net.bytebuddy:byte-buddy-agent's
changelog.
Byte Buddy release notes
Commits
5ef0fa6
[maven-release-plugin] prepare release byte-buddy-1.14.1
bada152
[release] Release new version
334128e
Update Eclipse lifecycle mapping.
876d667
Add additional scope for Maven plugin.
665a090
Add checksums.
537c613
Increment internal byte buddy and add release notes.
8c6f861
[maven-release-plugin] prepare for next development iteration
- See full diff in compare
view
Updates `net.bytebuddy:byte-buddy-gradle-plugin` from 1.14.0 to 1.14.1
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
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)
---------
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
Co-authored-by: Lauri Tulmin
---
conventions/build.gradle.kts | 2 +-
dependencyManagement/build.gradle.kts | 2 +-
gradle-plugins/build.gradle.kts | 2 +-
.../META-INF/LICENSE | 0
.../META-INF/NOTICE | 0
licenses/licenses.md | 8 ++++----
6 files changed, 7 insertions(+), 7 deletions(-)
rename licenses/{byte-buddy-dep-1.14.0.jar => byte-buddy-dep-1.14.1.jar}/META-INF/LICENSE (100%)
rename licenses/{byte-buddy-dep-1.14.0.jar => byte-buddy-dep-1.14.1.jar}/META-INF/NOTICE (100%)
diff --git a/conventions/build.gradle.kts b/conventions/build.gradle.kts
index 4a2c9dfa2dbb..38b6806eb958 100644
--- a/conventions/build.gradle.kts
+++ b/conventions/build.gradle.kts
@@ -61,7 +61,7 @@ dependencies {
implementation("org.owasp:dependency-check-gradle:8.1.2")
implementation("ru.vyarus:gradle-animalsniffer-plugin:1.7.0")
// When updating, also update dependencyManagement/build.gradle.kts
- implementation("net.bytebuddy:byte-buddy-gradle-plugin:1.14.0")
+ implementation("net.bytebuddy:byte-buddy-gradle-plugin:1.14.1")
implementation("gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.0")
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.0")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.0.1")
diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts
index f983673497b6..9cbc09c57155 100644
--- a/dependencyManagement/build.gradle.kts
+++ b/dependencyManagement/build.gradle.kts
@@ -42,7 +42,7 @@ val DEPENDENCY_BOMS = listOf(
val autoServiceVersion = "1.0.1"
val autoValueVersion = "1.10.1"
val errorProneVersion = "2.18.0"
-val byteBuddyVersion = "1.14.0"
+val byteBuddyVersion = "1.14.1"
val asmVersion = "9.4"
val jmhVersion = "1.36"
val mockitoVersion = "4.11.0"
diff --git a/gradle-plugins/build.gradle.kts b/gradle-plugins/build.gradle.kts
index 1b7a15212ae5..4d0dcc7a98cc 100644
--- a/gradle-plugins/build.gradle.kts
+++ b/gradle-plugins/build.gradle.kts
@@ -24,7 +24,7 @@ configurations.named("compileOnly") {
extendsFrom(bbGradlePlugin)
}
-val byteBuddyVersion = "1.14.0"
+val byteBuddyVersion = "1.14.1"
val aetherVersion = "1.1.0"
dependencies {
diff --git a/licenses/byte-buddy-dep-1.14.0.jar/META-INF/LICENSE b/licenses/byte-buddy-dep-1.14.1.jar/META-INF/LICENSE
similarity index 100%
rename from licenses/byte-buddy-dep-1.14.0.jar/META-INF/LICENSE
rename to licenses/byte-buddy-dep-1.14.1.jar/META-INF/LICENSE
diff --git a/licenses/byte-buddy-dep-1.14.0.jar/META-INF/NOTICE b/licenses/byte-buddy-dep-1.14.1.jar/META-INF/NOTICE
similarity index 100%
rename from licenses/byte-buddy-dep-1.14.0.jar/META-INF/NOTICE
rename to licenses/byte-buddy-dep-1.14.1.jar/META-INF/NOTICE
diff --git a/licenses/licenses.md b/licenses/licenses.md
index 96a58145d7aa..42d39211586e 100644
--- a/licenses/licenses.md
+++ b/licenses/licenses.md
@@ -1,7 +1,7 @@
#javaagent
##Dependency License Report
-_2023-02-22 22:23:49 UTC_
+_2023-03-08 05:59:45 UTC_
## Apache License, Version 2.0
**1** **Group:** `com.blogspot.mydailyjava` **Name:** `weak-lock-free` **Version:** `0.18`
@@ -159,10 +159,10 @@ _2023-02-22 22:23:49 UTC_
> - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
> - **Embedded license files**: [zipkin-2.23.2.jar/META-INF/LICENSE](zipkin-2.23.2.jar/META-INF/LICENSE)
-**36** **Group:** `net.bytebuddy` **Name:** `byte-buddy-dep` **Version:** `1.14.0`
+**36** **Group:** `net.bytebuddy` **Name:** `byte-buddy-dep` **Version:** `1.14.1`
> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
-> - **Embedded license files**: [byte-buddy-dep-1.14.0.jar/META-INF/LICENSE](byte-buddy-dep-1.14.0.jar/META-INF/LICENSE)
- - [byte-buddy-dep-1.14.0.jar/META-INF/NOTICE](byte-buddy-dep-1.14.0.jar/META-INF/NOTICE)
+> - **Embedded license files**: [byte-buddy-dep-1.14.1.jar/META-INF/LICENSE](byte-buddy-dep-1.14.1.jar/META-INF/LICENSE)
+ - [byte-buddy-dep-1.14.1.jar/META-INF/NOTICE](byte-buddy-dep-1.14.1.jar/META-INF/NOTICE)
**37** **Group:** `org.jetbrains` **Name:** `annotations` **Version:** `13.0`
> - **POM Project URL**: [http://www.jetbrains.org](http://www.jetbrains.org)