Skip to content

Commit 9a20ff2

Browse files
committed
Merge branch 'main' of https://github.com/open-telemetry/opentelemetry-java into renovate-config
2 parents 09ee50f + d698c1d commit 9a20ff2

File tree

44 files changed

+921
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+921
-161
lines changed

.github/scripts/update-version.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash -e
2+
3+
version=$1
4+
5+
sed -Ei "s/[0-9]+\.[0-9]+\.[0-9]+/$version/" version.gradle.kts
6+
7+
sed -Ei "1 s/(Comparing source compatibility of [a-z-]+)-[0-9]+\.[0-9]+\.[0-9]+(-SNAPSHOT)?.jar/\1-$version.jar/" docs/apidiffs/current_vs_latest/*.txt

.github/workflows/prepare-patch-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "VERSION=$major_minor.$((patch + 1))" >> $GITHUB_ENV
3838
3939
- name: Update version
40-
run: sed -Ei "s/[0-9]+\.[0-9]+\.[0-9]+/$VERSION/" version.gradle.kts
40+
run: .github/scripts/update-version.sh $VERSION
4141

4242
- name: Update the change log with the approximate release date
4343
run: |

.github/workflows/prepare-release-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ jobs:
100100
echo "unexpected version: $version"
101101
exit 1
102102
fi
103-
echo "NEXT_VERSION=$next_version" >> $GITHUB_ENV
103+
echo "NEXT_VERSION=${next_version}-SNAPSHOT" >> $GITHUB_ENV
104104
echo "VERSION=$version" >> $GITHUB_ENV
105105
106106
- name: Update version
107-
run: sed -Ei "s/[0-9]+\.[0-9]+\.[0-9]+/$NEXT_VERSION/" version.gradle.kts
107+
run: .github/scripts/update-version.sh $NEXT_VERSION
108108

109109
- name: Update the change log on main
110110
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
git add docs/apidiffs
189189
190190
- name: Use CLA approved bot
191-
run: .github/scripts/use-cla-approved-bot.sh
191+
run: .github/scripts/use-cla-approved-github-bot.sh
192192

193193
- uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2
194194
id: otelbot-token

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies {
6464
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.3")
6565
implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.2.0")
6666
implementation("net.ltgt.gradle:gradle-nullaway-plugin:2.2.0")
67-
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.20")
67+
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.21")
6868
implementation("org.owasp:dependency-check-gradle:12.1.1")
6969
implementation("ru.vyarus:gradle-animalsniffer-plugin:2.0.1")
7070
}
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
Comparing source compatibility of opentelemetry-api-1.51.0-SNAPSHOT.jar against opentelemetry-api-1.49.0.jar
2-
*** MODIFIED INTERFACE: PUBLIC ABSTRACT io.opentelemetry.api.logs.LogRecordBuilder (not serializable)
3-
=== CLASS FILE FORMAT VERSION: 52.0 <- 52.0
4-
+++ NEW METHOD: PUBLIC(+) io.opentelemetry.api.logs.LogRecordBuilder setEventName(java.lang.String)
1+
Comparing source compatibility of opentelemetry-api-1.51.0-SNAPSHOT.jar against opentelemetry-api-1.50.0.jar
2+
No changes.
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
Comparing source compatibility of opentelemetry-context-1.51.0-SNAPSHOT.jar against opentelemetry-context-1.49.0.jar
2-
*** MODIFIED INTERFACE: PUBLIC ABSTRACT io.opentelemetry.context.propagation.TextMapGetter (not serializable)
3-
=== CLASS FILE FORMAT VERSION: 52.0 <- 52.0
4-
GENERIC TEMPLATES: === C:java.lang.Object
5-
+++ NEW METHOD: PUBLIC(+) java.util.Iterator<java.lang.String> getAll(java.lang.Object, java.lang.String)
1+
Comparing source compatibility of opentelemetry-context-1.51.0-SNAPSHOT.jar against opentelemetry-context-1.50.0.jar
2+
No changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-exporter-common-1.51.0-SNAPSHOT.jar against opentelemetry-exporter-common-1.49.0.jar
1+
Comparing source compatibility of opentelemetry-exporter-common-1.51.0-SNAPSHOT.jar against opentelemetry-exporter-common-1.50.0.jar
22
No changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-exporter-logging-otlp-1.51.0-SNAPSHOT.jar against opentelemetry-exporter-logging-otlp-1.49.0.jar
1+
Comparing source compatibility of opentelemetry-exporter-logging-otlp-1.51.0-SNAPSHOT.jar against opentelemetry-exporter-logging-otlp-1.50.0.jar
22
No changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-exporter-logging-1.51.0-SNAPSHOT.jar against opentelemetry-exporter-logging-1.49.0.jar
1+
Comparing source compatibility of opentelemetry-exporter-logging-1.51.0-SNAPSHOT.jar against opentelemetry-exporter-logging-1.50.0.jar
22
No changes.

0 commit comments

Comments
 (0)