Skip to content

Commit ac5e03e

Browse files
committed
Merge branch 'main' of https://github.com/open-telemetry/opentelemetry-java into otlp-configurable-executor
2 parents bb49f90 + a3dd677 commit ac5e03e

File tree

60 files changed

+215
-80
lines changed

Some content is hidden

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

60 files changed

+215
-80
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0
3838

3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
40+
uses: github/codeql-action/init@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
4141
with:
4242
languages: java, actions
4343
# using "latest" helps to keep up with the latest Kotlin support
@@ -51,4 +51,4 @@ jobs:
5151
run: ./gradlew assemble --no-build-cache --no-daemon
5252

5353
- name: Perform CodeQL analysis
54-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
54+
uses: github/codeql-action/analyze@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
# Upload the results to GitHub's code scanning dashboard (optional).
4343
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
45+
uses: github/codeql-action/upload-sarif@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
4646
with:
4747
sarif_file: results.sarif

CHANGELOG.md

Lines changed: 49 additions & 0 deletions

README.md

Lines changed: 31 additions & 31 deletions

api/all/src/main/java/io/opentelemetry/api/logs/LogRecordBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ default LogRecordBuilder setAllAttributes(Attributes attributes) {
123123
* @param key the key for this attribute.
124124
* @param value the value for this attribute.
125125
* @return this.
126+
* @since 1.48.0
126127
*/
127128
default LogRecordBuilder setAttribute(String key, String value) {
128129
return setAttribute(stringKey(key), value);
@@ -138,6 +139,7 @@ default LogRecordBuilder setAttribute(String key, String value) {
138139
* @param key the key for this attribute.
139140
* @param value the value for this attribute.
140141
* @return this.
142+
* @since 1.48.0
141143
*/
142144
default LogRecordBuilder setAttribute(String key, long value) {
143145
return setAttribute(longKey(key), value);
@@ -153,6 +155,7 @@ default LogRecordBuilder setAttribute(String key, long value) {
153155
* @param key the key for this attribute.
154156
* @param value the value for this attribute.
155157
* @return this.
158+
* @since 1.48.0
156159
*/
157160
default LogRecordBuilder setAttribute(String key, double value) {
158161
return setAttribute(doubleKey(key), value);
@@ -168,6 +171,7 @@ default LogRecordBuilder setAttribute(String key, double value) {
168171
* @param key the key for this attribute.
169172
* @param value the value for this attribute.
170173
* @return this.
174+
* @since 1.48.0
171175
*/
172176
default LogRecordBuilder setAttribute(String key, boolean value) {
173177
return setAttribute(booleanKey(key), value);
@@ -183,6 +187,7 @@ default LogRecordBuilder setAttribute(String key, boolean value) {
183187
* @param key the key for this attribute.
184188
* @param value the value for this attribute.
185189
* @return this.
190+
* @since 1.48.0
186191
*/
187192
default LogRecordBuilder setAttribute(String key, int value) {
188193
return setAttribute(key, (long) value);

dependencyManagement/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ val DEPENDENCY_BOMS = listOf(
1313
// (which is EPL licensed) or armeria bom (which is Apache licensed but is getting flagged
1414
// by FOSSA for containing EPL-licensed)
1515

16-
"com.fasterxml.jackson:jackson-bom:2.18.2",
16+
"com.fasterxml.jackson:jackson-bom:2.18.3",
1717
"com.google.guava:guava-bom:33.4.0-jre",
1818
"com.google.protobuf:protobuf-bom:4.29.3",
1919
"com.squareup.okhttp3:okhttp-bom:4.12.0",
@@ -73,7 +73,7 @@ val DEPENDENCIES = listOf(
7373
"io.prometheus:simpleclient_httpserver:${prometheusClientVersion}",
7474
"javax.annotation:javax.annotation-api:1.3.2",
7575
"com.github.stefanbirkner:system-rules:1.19.0",
76-
"com.google.api.grpc:proto-google-common-protos:2.53.0",
76+
"com.google.api.grpc:proto-google-common-protos:2.54.0",
7777
"com.google.code.findbugs:jsr305:3.0.2",
7878
"com.google.guava:guava-beta-checker:1.0",
7979
"com.sun.net.httpserver:http:20070405",
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Comparing source compatibility of opentelemetry-api-1.48.0.jar against opentelemetry-api-1.47.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 setAttribute(java.lang.String, java.lang.String)
5+
+++ NEW METHOD: PUBLIC(+) io.opentelemetry.api.logs.LogRecordBuilder setAttribute(java.lang.String, long)
6+
+++ NEW METHOD: PUBLIC(+) io.opentelemetry.api.logs.LogRecordBuilder setAttribute(java.lang.String, double)
7+
+++ NEW METHOD: PUBLIC(+) io.opentelemetry.api.logs.LogRecordBuilder setAttribute(java.lang.String, boolean)
8+
+++ NEW METHOD: PUBLIC(+) io.opentelemetry.api.logs.LogRecordBuilder setAttribute(java.lang.String, int)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-context-1.48.0.jar against opentelemetry-context-1.47.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-common-1.48.0.jar against opentelemetry-exporter-common-1.47.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-exporter-logging-otlp-1.48.0.jar against opentelemetry-exporter-logging-otlp-1.47.0.jar
2+
No changes.

0 commit comments

Comments
 (0)