Skip to content

Commit 316927b

Browse files
Pre-releae steps for opentelemetry-operations-go release. (#1092)
1 parent 29e5586 commit 316927b

67 files changed

Lines changed: 127 additions & 127 deletions

File tree

Some content is hidden

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

e2e-test-server/cloud_functions/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.24.2
77
require (
88
cloud.google.com/go/pubsub/v2 v2.0.0
99
github.com/GoogleCloudPlatform/functions-framework-go v1.9.2
10-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/e2e-test-server v0.54.0
10+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/e2e-test-server v0.55.0
1111
github.com/cloudevents/sdk-go/v2 v2.16.2
1212
)
1313

@@ -19,9 +19,9 @@ require (
1919
cloud.google.com/go/functions v1.19.7 // indirect
2020
cloud.google.com/go/iam v1.5.2 // indirect
2121
cloud.google.com/go/trace v1.11.6 // indirect
22-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
23-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.30.0 // indirect
24-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0 // indirect
22+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
23+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.31.0 // indirect
24+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0 // indirect
2525
github.com/felixge/httpsnoop v1.0.4 // indirect
2626
github.com/go-logr/logr v1.4.3 // indirect
2727
github.com/go-logr/stdr v1.2.2 // indirect

e2e-test-server/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.24.2
66

77
require (
88
cloud.google.com/go/pubsub/v2 v2.0.0
9-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.30.0
9+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.31.0
1010
go.opentelemetry.io/contrib/detectors/gcp v1.38.0
1111
go.opentelemetry.io/otel v1.38.0
1212
go.opentelemetry.io/otel/sdk v1.38.0
@@ -21,8 +21,8 @@ require (
2121
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2222
cloud.google.com/go/iam v1.5.2 // indirect
2323
cloud.google.com/go/trace v1.11.6 // indirect
24-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
25-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0 // indirect
24+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
25+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0 // indirect
2626
github.com/felixge/httpsnoop v1.0.4 // indirect
2727
github.com/go-logr/logr v1.4.3 // indirect
2828
github.com/go-logr/stdr v1.2.2 // indirect

example/log/slogbridge/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818

1919
require (
2020
cloud.google.com/go/compute/metadata v0.9.0 // indirect
21-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
21+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
2222
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
2323
github.com/go-logr/logr v1.4.3 // indirect
2424
github.com/go-logr/stdr v1.2.2 // indirect

example/metric/exponential_histogram/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
toolchain go1.24.2
66

77
require (
8-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.54.0
8+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.55.0
99
go.opentelemetry.io/contrib/detectors/gcp v1.38.0
1010
go.opentelemetry.io/otel v1.38.0
1111
go.opentelemetry.io/otel/metric v1.38.0
@@ -19,8 +19,8 @@ require (
1919
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2020
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2121
cloud.google.com/go/monitoring v1.24.2 // indirect
22-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
23-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0 // indirect
22+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
23+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0 // indirect
2424
github.com/go-logr/logr v1.4.3 // indirect
2525
github.com/go-logr/stdr v1.2.2 // indirect
2626
github.com/google/s2a-go v0.1.9 // indirect

example/metric/otlpgrpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616

1717
require (
1818
cloud.google.com/go/compute/metadata v0.9.0 // indirect
19-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
19+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
2020
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
2121
github.com/go-logr/logr v1.4.3 // indirect
2222
github.com/go-logr/stdr v1.2.2 // indirect

example/metric/sdk/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
toolchain go1.24.2
66

77
require (
8-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.54.0
8+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.55.0
99
go.opentelemetry.io/contrib/detectors/gcp v1.38.0
1010
go.opentelemetry.io/otel v1.38.0
1111
go.opentelemetry.io/otel/metric v1.38.0
@@ -18,8 +18,8 @@ require (
1818
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
1919
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2020
cloud.google.com/go/monitoring v1.24.2 // indirect
21-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
22-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0 // indirect
21+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.31.0 // indirect
22+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0 // indirect
2323
github.com/go-logr/logr v1.4.3 // indirect
2424
github.com/go-logr/stdr v1.2.2 // indirect
2525
github.com/google/s2a-go v0.1.9 // indirect

example/trace/http/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.24.0
55
toolchain go1.24.2
66

77
require (
8-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.30.0
9-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.54.0
8+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.31.0
9+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/propagator v0.55.0
1010
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0
1111
go.opentelemetry.io/otel v1.38.0
1212
go.opentelemetry.io/otel/sdk v1.38.0
@@ -18,7 +18,7 @@ require (
1818
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
1919
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2020
cloud.google.com/go/trace v1.11.6 // indirect
21-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0 // indirect
21+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0 // indirect
2222
github.com/felixge/httpsnoop v1.0.4 // indirect
2323
github.com/go-logr/logr v1.4.3 // indirect
2424
github.com/go-logr/stdr v1.2.2 // indirect

exporter/collector/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ require (
88
cloud.google.com/go/logging v1.13.0
99
cloud.google.com/go/monitoring v1.24.2
1010
cloud.google.com/go/trace v1.11.6
11-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.30.0
12-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0
11+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.31.0
12+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0
1313
github.com/fsnotify/fsnotify v1.9.0
1414
github.com/google/go-cmp v0.7.0
1515
github.com/googleapis/gax-go/v2 v2.15.0

exporter/collector/integrationtest/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ require (
88
cloud.google.com/go/logging v1.13.0
99
cloud.google.com/go/monitoring v1.24.2
1010
cloud.google.com/go/trace v1.11.6
11-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.54.0
12-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector/googlemanagedprometheus v0.54.0
13-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.54.0
14-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/cloudmock v0.54.0
15-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0
11+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.55.0
12+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector/googlemanagedprometheus v0.55.0
13+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.55.0
14+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/cloudmock v0.55.0
15+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.55.0
1616
github.com/google/go-cmp v0.7.0
1717
github.com/google/uuid v1.6.0
1818
github.com/prometheus/otlptranslator v1.0.0
@@ -40,7 +40,7 @@ require (
4040
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
4141
cloud.google.com/go/compute/metadata v0.9.0 // indirect
4242
cloud.google.com/go/longrunning v0.6.7 // indirect
43-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.30.0 // indirect
43+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.31.0 // indirect
4444
github.com/beorn7/perks v1.0.1 // indirect
4545
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
4646
github.com/cespare/xxhash/v2 v2.3.0 // indirect

exporter/collector/integrationtest/testdata/fixtures/logs/logs_apache_access_batches_expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@
452452
"partialSuccess": true
453453
}
454454
],
455-
"userAgent": "GoogleCloudExporter Integration Test/0.54.0 grpc-go/1.75.1",
455+
"userAgent": "GoogleCloudExporter Integration Test/0.55.0 grpc-go/1.75.1",
456456
"selfObservabilityMetrics": {
457457
"createTimeSeriesRequests": [
458458
{

0 commit comments

Comments
 (0)