Skip to content

Commit 8923e74

Browse files
authored
Merge branch 'open-telemetry:main' into main
2 parents daf96e4 + ca536b2 commit 8923e74

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ val slf4jVersion = "2.0.17"
1717
val opencensusVersion = "0.31.1"
1818
val prometheusServerVersion = "1.3.10"
1919
val armeriaVersion = "1.34.2"
20-
val junitVersion = "5.14.1"
20+
val junitVersion = "5.14.2"
2121
val okhttpVersion = "5.3.2"
2222

2323
val DEPENDENCY_BOMS = listOf(

exporters/prometheus/src/test/java/io/opentelemetry/exporter/prometheus/CollectorIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
class CollectorIntegrationTest {
6161

6262
private static final String COLLECTOR_IMAGE =
63-
"otel/opentelemetry-collector-contrib:0.142.0@sha256:38c349c3b7a2fd7ea46700cde8fa13d35b699ef2ce245bdf34dae2a413512f76";
63+
"otel/opentelemetry-collector-contrib:0.143.1@sha256:f051aff195ad50ed5ad9d95bcdd51d7258200c937def3797cf830366ed62e034";
6464

6565
private static final Integer COLLECTOR_HEALTH_CHECK_PORT = 13133;
6666

integration-tests/otlp/src/main/java/io/opentelemetry/integrationtest/OtlpExporterIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ abstract class OtlpExporterIntegrationTest {
113113
private static final AttributeKey<String> SERVICE_NAME = AttributeKey.stringKey("service.name");
114114

115115
private static final String COLLECTOR_IMAGE =
116-
"otel/opentelemetry-collector-contrib:0.142.0@sha256:38c349c3b7a2fd7ea46700cde8fa13d35b699ef2ce245bdf34dae2a413512f76";
116+
"otel/opentelemetry-collector-contrib:0.143.1@sha256:f051aff195ad50ed5ad9d95bcdd51d7258200c937def3797cf830366ed62e034";
117117

118118
private static final Integer COLLECTOR_OTLP_GRPC_PORT = 4317;
119119
private static final Integer COLLECTOR_OTLP_HTTP_PORT = 4318;

perf-harness/src/test/java/io/opentelemetry/perf/OtlpPipelineStressTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public class OtlpPipelineStressTest {
7070
public static final GenericContainer<?> collectorContainer =
7171
new GenericContainer<>(
7272
DockerImageName.parse(
73-
"otel/opentelemetry-collector-contrib:0.142.0@sha256:38c349c3b7a2fd7ea46700cde8fa13d35b699ef2ce245bdf34dae2a413512f76"))
73+
"otel/opentelemetry-collector-contrib:0.143.1@sha256:f051aff195ad50ed5ad9d95bcdd51d7258200c937def3797cf830366ed62e034"))
7474
.withImagePullPolicy(PullPolicy.alwaysPull())
7575
.withNetwork(network)
7676
.withNetworkAliases("otel-collector")

sdk/trace/src/jmh/java/io/opentelemetry/sdk/trace/ExporterBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private ExporterBenchmark() {}
3737
public abstract static class AbstractProcessorBenchmark {
3838
private static final DockerImageName OTLP_COLLECTOR_IMAGE =
3939
DockerImageName.parse(
40-
"otel/opentelemetry-collector-contrib:0.142.0@sha256:38c349c3b7a2fd7ea46700cde8fa13d35b699ef2ce245bdf34dae2a413512f76");
40+
"otel/opentelemetry-collector-contrib:0.143.1@sha256:f051aff195ad50ed5ad9d95bcdd51d7258200c937def3797cf830366ed62e034");
4141
protected static final int OTLP_PORT = 5678;
4242
private static final int HEALTH_CHECK_PORT = 13133;
4343
protected SdkSpanBuilder sdkSpanBuilder;

sdk/trace/src/jmh/java/io/opentelemetry/sdk/trace/SpanPipelineBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private SpanPipelineBenchmark() {}
3939
public abstract static class AbstractProcessorBenchmark {
4040
private static final DockerImageName OTLP_COLLECTOR_IMAGE =
4141
DockerImageName.parse(
42-
"otel/opentelemetry-collector-contrib:0.142.0@sha256:38c349c3b7a2fd7ea46700cde8fa13d35b699ef2ce245bdf34dae2a413512f76");
42+
"otel/opentelemetry-collector-contrib:0.143.1@sha256:f051aff195ad50ed5ad9d95bcdd51d7258200c937def3797cf830366ed62e034");
4343
private static final int EXPOSED_PORT = 5678;
4444
private static final int HEALTH_CHECK_PORT = 13133;
4545
private Tracer tracer;

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluginManagement {
22
plugins {
3-
id("com.gradleup.shadow") version "9.3.0"
3+
id("com.gradleup.shadow") version "9.3.1"
44
id("com.gradle.develocity") version "4.3"
55
id("de.undercouch.download") version "5.6.0"
66
id("org.jsonschema2pojo") version "1.2.2"

0 commit comments

Comments
 (0)