From a520f281d284b4e1f8323f34e9b8d1fbcb9867eb Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 11:27:21 -0700 Subject: [PATCH 1/8] Deprecate otellambda (#5642) Towards #5546 --- CHANGELOG.md | 3 +++ .../github.com/aws/aws-lambda-go/otellambda/doc.go | 7 +++++++ .../aws/aws-lambda-go/otellambda/example/README.md | 4 +++- .../aws/aws-lambda-go/otellambda/example/go.mod | 1 + .../aws/aws-lambda-go/otellambda/example/main.go | 4 ++-- .../github.com/aws/aws-lambda-go/otellambda/go.mod | 1 + .../aws/aws-lambda-go/otellambda/test/doc.go | 7 +++++++ .../aws/aws-lambda-go/otellambda/test/go.mod | 1 + .../aws/aws-lambda-go/otellambda/test/lambda_test.go | 4 ++-- .../aws-lambda-go/otellambda/xrayconfig/README.md | 2 ++ .../aws/aws-lambda-go/otellambda/xrayconfig/go.mod | 1 + .../otellambda/xrayconfig/xrayconfig.go | 12 ++++++++++-- .../otellambda/xrayconfig/xrayconfig_test.go | 2 +- 13 files changed, 41 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c0e89d2a39..a445ceb8f69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,11 +20,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5544]. (#5640) - The `go.opentelemetry.io/contrib/detectors/aws/lambda` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5545]. (#5641) +- The `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5546]. (#5642) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 [#5544]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5544 [#5545]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5545 +[#5546]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/doc.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/doc.go index 217361ff4da..984d08dccfb 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/doc.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/doc.go @@ -8,4 +8,11 @@ // // lambda.Start() entrypoint: lambda.Start(otellambda.InstrumentHandler()) // lambda.StartHandler() entrypoint: lambda.StartHandler(otellambda.WrapHandler()) +// +// Deprecated: otellambda has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 package otellambda // import "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/README.md b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/README.md index 24fa6355bb0..8869b2e55fe 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/README.md +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/README.md @@ -1,5 +1,7 @@ # aws/aws-lambda-go instrumentation example +:warning: Deprecated: otellambda has no Code Owner. + A simple example to demonstrate the AWS Lambda for Go instrumentation. In this example, container `aws-lambda-client` initializes an S3 client and an HTTP client and runs 2 basic operations: `listS3Buckets` and `GET`. @@ -31,4 +33,4 @@ Note: Because the example runs on AWS Lambda, a handful of resources are created ```sh ./manualAWSCleanup.sh -``` \ No newline at end of file +``` diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.mod b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.mod index 3a6a4db88c1..b731d029248 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.mod +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otellambda has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda/example go 1.21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go index 35d11522ebe..a9fa97f41a5 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go @@ -14,8 +14,8 @@ import ( awsConfig "github.com/aws/aws-sdk-go-v2/config" "github.com/aws/aws-sdk-go-v2/service/s3" - lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" + lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" "go.opentelemetry.io/otel" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/go.mod b/instrumentation/github.com/aws/aws-lambda-go/otellambda/go.mod index 60263bd0d55..5bb3bdeadb4 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/go.mod +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otellambda has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda go 1.21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/doc.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/doc.go index b2d0819bf0d..fb89b7f6eb9 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/doc.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/doc.go @@ -6,5 +6,12 @@ Package test validates AWS Lambda instrumentation with the default SDK. This package is in a separate module from the instrumentation it tests to isolate the dependency of the default SDK and not impose this as a transitive dependency for users. + +Deprecated: otellambda has no Code Owner. +After August 21, 2024, it may no longer be supported and may stop +receiving new releases unless a new Code Owner is found. See +[this issue] if you would like to become the Code Owner of this module. + +[this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 */ package test // import "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda/test" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/go.mod b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/go.mod index 24b4bb7dec3..a46f92b68bf 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/go.mod +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otellambda has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda/test go 1.21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go index c814f80a2fe..3b00fb8b091 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go @@ -19,8 +19,8 @@ import ( "github.com/aws/aws-lambda-go/lambdacontext" "github.com/stretchr/testify/assert" - lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" + lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/propagators/aws/xray" "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/propagation" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/README.md b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/README.md index 18ae68d3322..a22a75c1883 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/README.md +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/README.md @@ -3,6 +3,8 @@ [![Go Reference][goref-image]][goref-url] [![Apache License][license-image]][license-url] +:warning: Deprecated: otellambda has no Code Owner. + This module provides recommended configuration options for [`AWS Lambda Instrumentation`](https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/aws/aws-lambda-go/otellambda) when using [AWS X-Ray](https://aws.amazon.com/xray/). By using this configuration, trace context will automatically be extracted from incoming requests with the `X-Amzn-Trace-Id` header if present. Trace context will also always be injected using the `X-Amzn-Trace-Id` format into downstream requests from the Lambda function. ## Installation diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/go.mod b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/go.mod index 353bae61184..ccc42ac8f19 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/go.mod +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otellambda has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig go 1.21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go index 314d25c87a8..d610709908e 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go @@ -1,14 +1,22 @@ // Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 +// Package xrayconfig provides configuration for the otellambda package. +// +// Deprecated: otellambda has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 package xrayconfig // import "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig" import ( "context" "os" - lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" + lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/propagators/aws/xray" "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc" "go.opentelemetry.io/otel/propagation" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go index ac9f7dd3e95..d7235e4510e 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go @@ -14,7 +14,7 @@ import ( "github.com/aws/aws-lambda-go/lambdacontext" "github.com/stretchr/testify/assert" - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/propagators/aws/xray" "go.opentelemetry.io/otel/propagation" "go.opentelemetry.io/otel/trace" From f4c0798e80d74b728fd774d8d14782501085874b Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 11:40:13 -0700 Subject: [PATCH 2/8] Deprecate otelaws (#5643) Towards #5547 --- CHANGELOG.md | 3 +++ .../aws/aws-lambda-go/otellambda/example/main.go | 2 +- .../github.com/aws/aws-sdk-go-v2/otelaws/aws.go | 8 ++++++++ .../aws/aws-sdk-go-v2/otelaws/example/README.md | 2 ++ .../github.com/aws/aws-sdk-go-v2/otelaws/example/go.mod | 1 + .../github.com/aws/aws-sdk-go-v2/otelaws/example/main.go | 2 +- .../github.com/aws/aws-sdk-go-v2/otelaws/go.mod | 1 + .../github.com/aws/aws-sdk-go-v2/otelaws/test/aws_test.go | 2 +- .../github.com/aws/aws-sdk-go-v2/otelaws/test/doc.go | 7 +++++++ .../aws-sdk-go-v2/otelaws/test/dynamodbattributes_test.go | 2 +- .../github.com/aws/aws-sdk-go-v2/otelaws/test/go.mod | 1 + 11 files changed, 27 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a445ceb8f69..f3cd4f95ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,12 +22,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5545]. (#5641) - The `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5546]. (#5642) +- The `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5547]. (#5643) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 [#5544]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5544 [#5545]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5545 [#5546]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 +[#5547]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5547 [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go index a9fa97f41a5..66d11986dd4 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/main.go @@ -16,7 +16,7 @@ import ( lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/exporters/stdout/stdouttrace" diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/aws.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/aws.go index 5709db82cf4..3af277b9593 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/aws.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/aws.go @@ -1,6 +1,14 @@ // Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 +// Package otelaws instruments the github.com/aws/aws-sdk-go-v2 package. +// +// Deprecated: otelaws has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5547 package otelaws // import "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" import ( diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/README.md b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/README.md index f61d666588c..195cb3e8a32 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/README.md +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/README.md @@ -1,5 +1,7 @@ # aws/aws-sdk-go-v2 instrumentation example +:warning: Deprecated: otelaws has no Code Owner. + A simple example to demonstrate the AWS SDK V2 for Go instrumentation. In this example, container `aws-sdk-client` initializes a S3 client and a DynamoDB client and runs 2 basic operations: `listS3Buckets` and `listDynamodbTables`. diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.mod b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.mod index 8f0f2bf9cbf..2bd87b713dc 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.mod +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelaws has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example go 1.21 diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/main.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/main.go index b5e6bfa2886..b8e37d4c8c9 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/main.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/main.go @@ -12,7 +12,7 @@ import ( "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/s3" - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel" stdout "go.opentelemetry.io/otel/exporters/stdout/stdouttrace" sdktrace "go.opentelemetry.io/otel/sdk/trace" diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.mod b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.mod index 85c744cd0a4..dcad79bec44 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.mod +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelaws has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws go 1.21 diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/aws_test.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/aws_test.go index 7687367c3ac..d24c3778c87 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/aws_test.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/aws_test.go @@ -17,7 +17,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/codes" sdktrace "go.opentelemetry.io/otel/sdk/trace" diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/doc.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/doc.go index 828b3d76f6c..af3de15a71a 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/doc.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/doc.go @@ -7,5 +7,12 @@ Package test validates the otelaws instrumentation with the default SDK. This package is in a separate module from the instrumentation it tests to isolate the dependency of the default SDK and not impose this as a transitive dependency for users. + +Deprecated: otelaws has no Code Owner. +After August 21, 2024, it may no longer be supported and may stop +receiving new releases unless a new Code Owner is found. See +[this issue] if you would like to become the Code Owner of this module. + +[this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5547 */ package test // import "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test" diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/dynamodbattributes_test.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/dynamodbattributes_test.go index b67d64c1f9c..97c975ad4cc 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/dynamodbattributes_test.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/dynamodbattributes_test.go @@ -18,7 +18,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" + "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/codes" sdktrace "go.opentelemetry.io/otel/sdk/trace" diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.mod b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.mod index 100e0d24f83..cfa53951bb9 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.mod +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelaws has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test go 1.21 From 1548e3f474a23b20c3034abf31941692002322b9 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 11:48:43 -0700 Subject: [PATCH 3/8] Deprecate otelmux (#5644) Towards #5549 --- CHANGELOG.md | 3 +++ instrumentation/github.com/gorilla/mux/otelmux/doc.go | 7 +++++++ .../github.com/gorilla/mux/otelmux/example/README.md | 2 ++ .../github.com/gorilla/mux/otelmux/example/go.mod | 1 + .../github.com/gorilla/mux/otelmux/example/server.go | 2 +- instrumentation/github.com/gorilla/mux/otelmux/go.mod | 1 + instrumentation/github.com/gorilla/mux/otelmux/test/doc.go | 7 +++++++ instrumentation/github.com/gorilla/mux/otelmux/test/go.mod | 1 + .../github.com/gorilla/mux/otelmux/test/mux_test.go | 2 +- 9 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3cd4f95ab7..ac83415f0e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5546]. (#5642) - The `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5547]. (#5643) +- The `go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5549]. (#5644) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 @@ -31,6 +33,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [#5545]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5545 [#5546]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 [#5547]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5547 +[#5549]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5549 [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/instrumentation/github.com/gorilla/mux/otelmux/doc.go b/instrumentation/github.com/gorilla/mux/otelmux/doc.go index 0d4d92a7929..e49088d67b4 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/doc.go +++ b/instrumentation/github.com/gorilla/mux/otelmux/doc.go @@ -5,4 +5,11 @@ // // Currently only the routing of a received message can be instrumented. To do // it, use the Middleware function. +// +// Deprecated: otelmux has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5549 package otelmux // import "go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux" diff --git a/instrumentation/github.com/gorilla/mux/otelmux/example/README.md b/instrumentation/github.com/gorilla/mux/otelmux/example/README.md index 3b201c743ee..f1d2ee01228 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/example/README.md +++ b/instrumentation/github.com/gorilla/mux/otelmux/example/README.md @@ -1,5 +1,7 @@ # gorilla/mux instrumentation example +:warning: Deprecated: otelmux has no Code Owner. + An HTTP server using gorilla/mux and instrumentation. The server has a `/users/{id:[0-9]+}` endpoint. The server generates span information to `stdout`. diff --git a/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod b/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod index 691048ec5b3..5177ca3274e 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod +++ b/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelmux has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux/example go 1.21 diff --git a/instrumentation/github.com/gorilla/mux/otelmux/example/server.go b/instrumentation/github.com/gorilla/mux/otelmux/example/server.go index 8b4c8a56ee4..6d6fcca0fd3 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/example/server.go +++ b/instrumentation/github.com/gorilla/mux/otelmux/example/server.go @@ -11,7 +11,7 @@ import ( "github.com/gorilla/mux" - "go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux" + "go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/attribute" stdout "go.opentelemetry.io/otel/exporters/stdout/stdouttrace" diff --git a/instrumentation/github.com/gorilla/mux/otelmux/go.mod b/instrumentation/github.com/gorilla/mux/otelmux/go.mod index 9452d548bd1..bd4c82fb770 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/go.mod +++ b/instrumentation/github.com/gorilla/mux/otelmux/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelmux has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux go 1.21 diff --git a/instrumentation/github.com/gorilla/mux/otelmux/test/doc.go b/instrumentation/github.com/gorilla/mux/otelmux/test/doc.go index 5b405f7eb19..aaa9d0cc48d 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/test/doc.go +++ b/instrumentation/github.com/gorilla/mux/otelmux/test/doc.go @@ -7,5 +7,12 @@ Package test validates the otelmux instrumentation with the default SDK. This package is in a separate module from the instrumentation it tests to isolate the dependency of the default SDK and not impose this as a transitive dependency for users. + +Deprecated: otelmux has no Code Owner. +After August 21, 2024, it may no longer be supported and may stop +receiving new releases unless a new Code Owner is found. See +[this issue] if you would like to become the Code Owner of this module. + +[this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5549 */ package test // import "go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux/test" diff --git a/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod b/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod index 94f663e046f..f220edf4b30 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod +++ b/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelmux has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux/test go 1.21 diff --git a/instrumentation/github.com/gorilla/mux/otelmux/test/mux_test.go b/instrumentation/github.com/gorilla/mux/otelmux/test/mux_test.go index 13e900b5ca1..cd7171cfdd7 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/test/mux_test.go +++ b/instrumentation/github.com/gorilla/mux/otelmux/test/mux_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux" + "go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/codes" "go.opentelemetry.io/otel/propagation" From 00e72a4edc1ea842dc1c26f01667995b72c9e96b Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 12:09:59 -0700 Subject: [PATCH 4/8] Deprecate otelecho (#5645) Towards #5550 --- CHANGELOG.md | 3 +++ instrumentation/github.com/labstack/echo/otelecho/doc.go | 7 +++++++ .../github.com/labstack/echo/otelecho/example/README.md | 2 ++ .../github.com/labstack/echo/otelecho/example/go.mod | 1 + .../github.com/labstack/echo/otelecho/example/server.go | 2 +- instrumentation/github.com/labstack/echo/otelecho/go.mod | 1 + .../github.com/labstack/echo/otelecho/test/doc.go | 7 +++++++ .../github.com/labstack/echo/otelecho/test/echo_test.go | 2 +- .../github.com/labstack/echo/otelecho/test/go.mod | 1 + 9 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac83415f0e0..582bbf203a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5547]. (#5643) - The `go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5549]. (#5644) +- The `go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5550]. (#5645) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 @@ -34,6 +36,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [#5546]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5546 [#5547]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5547 [#5549]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5549 +[#5550]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550 [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/instrumentation/github.com/labstack/echo/otelecho/doc.go b/instrumentation/github.com/labstack/echo/otelecho/doc.go index 01fe0cb8587..af3b07fb819 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/doc.go +++ b/instrumentation/github.com/labstack/echo/otelecho/doc.go @@ -6,4 +6,11 @@ // // Currently only the routing of a received message can be instrumented. To do // so, use the Middleware function. +// +// Deprecated: otelecho has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550 package otelecho // import "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" diff --git a/instrumentation/github.com/labstack/echo/otelecho/example/README.md b/instrumentation/github.com/labstack/echo/otelecho/example/README.md index 41b24e04931..ec0e849e7d7 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/example/README.md +++ b/instrumentation/github.com/labstack/echo/otelecho/example/README.md @@ -1,5 +1,7 @@ # labstack echo instrumentation example +:warning: Deprecated: otelecho has no Code Owner. + An HTTP server using labstack echo and instrumentation. The server has a `/users/:id` endpoint. The server generates span information to `stdout`. diff --git a/instrumentation/github.com/labstack/echo/otelecho/example/go.mod b/instrumentation/github.com/labstack/echo/otelecho/example/go.mod index c7aa5141a70..3156211df4b 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/example/go.mod +++ b/instrumentation/github.com/labstack/echo/otelecho/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelecho has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho/example go 1.21 diff --git a/instrumentation/github.com/labstack/echo/otelecho/example/server.go b/instrumentation/github.com/labstack/echo/otelecho/example/server.go index d6d5ce76c4c..adfcd2da3c2 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/example/server.go +++ b/instrumentation/github.com/labstack/echo/otelecho/example/server.go @@ -10,7 +10,7 @@ import ( "github.com/labstack/echo/v4" - "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" + "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/attribute" stdout "go.opentelemetry.io/otel/exporters/stdout/stdouttrace" diff --git a/instrumentation/github.com/labstack/echo/otelecho/go.mod b/instrumentation/github.com/labstack/echo/otelecho/go.mod index 551e55aeb27..ed256fa5ceb 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/go.mod +++ b/instrumentation/github.com/labstack/echo/otelecho/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelecho has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho go 1.21 diff --git a/instrumentation/github.com/labstack/echo/otelecho/test/doc.go b/instrumentation/github.com/labstack/echo/otelecho/test/doc.go index da2d7535a8c..1aeb939afdc 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/test/doc.go +++ b/instrumentation/github.com/labstack/echo/otelecho/test/doc.go @@ -7,5 +7,12 @@ Package test validates the otelecho instrumentation with the default SDK. This package is in a separate module from the instrumentation it tests to isolate the dependency of the default SDK and not impose this as a transitive dependency for users. + +Deprecated: otelecho has no Code Owner. +After August 21, 2024, it may no longer be supported and may stop +receiving new releases unless a new Code Owner is found. See +[this issue] if you would like to become the Code Owner of this module. + +[this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550 */ package test // import "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho/test" diff --git a/instrumentation/github.com/labstack/echo/otelecho/test/echo_test.go b/instrumentation/github.com/labstack/echo/otelecho/test/echo_test.go index 21d213120c7..237d73d6fed 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/test/echo_test.go +++ b/instrumentation/github.com/labstack/echo/otelecho/test/echo_test.go @@ -16,7 +16,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" + "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/codes" "go.opentelemetry.io/otel/sdk/trace" diff --git a/instrumentation/github.com/labstack/echo/otelecho/test/go.mod b/instrumentation/github.com/labstack/echo/otelecho/test/go.mod index a9a8126538f..ccc2d9dafff 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/test/go.mod +++ b/instrumentation/github.com/labstack/echo/otelecho/test/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelecho has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho/test go 1.21 From 0df336b4d5d019f9874f6e6fd89d5991250b0ec1 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 12:24:31 -0700 Subject: [PATCH 5/8] Deprecate otelmacaron (#5646) Towards #5552 --- CHANGELOG.md | 3 +++ instrumentation/gopkg.in/macaron.v1/otelmacaron/doc.go | 7 +++++++ .../gopkg.in/macaron.v1/otelmacaron/example/README.md | 3 +++ .../gopkg.in/macaron.v1/otelmacaron/example/go.mod | 1 + .../gopkg.in/macaron.v1/otelmacaron/example/server.go | 2 +- instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod | 1 + .../gopkg.in/macaron.v1/otelmacaron/test/doc.go | 7 +++++++ .../gopkg.in/macaron.v1/otelmacaron/test/go.mod | 1 + .../gopkg.in/macaron.v1/otelmacaron/test/macaron_test.go | 2 +- 9 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 582bbf203a6..a42fd84aeb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5549]. (#5644) - The `go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5550]. (#5645) +- The `go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5552]. (#5646) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 @@ -38,6 +40,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [#5549]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5549 [#5550]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550 [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 +[#5552]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5552 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/doc.go b/instrumentation/gopkg.in/macaron.v1/otelmacaron/doc.go index aa7c0a5b502..d700bec1131 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/doc.go +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/doc.go @@ -5,4 +5,11 @@ // // Currently only the routing of a received message can be instrumented. To do // it, use the Middleware function. +// +// Deprecated: otelmacaron has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5552 package otelmacaron // import "go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron" diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/README.md b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/README.md index e69de29bb2d..a0f5349aa9a 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/README.md +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/README.md @@ -0,0 +1,3 @@ +# gopkg.in/macaron.v1/otelmacaron instrumentation example + +:warning: Deprecated: otelmacaron has no Code Owner. diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod index 165d5b277dc..a3383e665c5 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelmacaron has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron/example go 1.21 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/server.go b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/server.go index fa91a39b1df..85d4d010b5d 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/server.go +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/server.go @@ -9,7 +9,7 @@ import ( "gopkg.in/macaron.v1" - "go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron" + "go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/attribute" diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod b/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod index d98927c0d6a..c5e3f78f9b7 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelmacaron has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron go 1.21 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/doc.go b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/doc.go index 8b889ce9e4e..164dc13b34f 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/doc.go +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/doc.go @@ -7,5 +7,12 @@ Package test validates the otelmacaron instrumentation with the default SDK. This package is in a separate module from the instrumentation it tests to isolate the dependency of the default SDK and not impose this as a transitive dependency for users. + +Deprecated: otelmacaron has no Code Owner. +After August 21, 2024, it may no longer be supported and may stop +receiving new releases unless a new Code Owner is found. See +[this issue] if you would like to become the Code Owner of this module. + +[this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5552 */ package test // import "go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron/test" diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod index 46372abd76f..92d29626533 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod @@ -1,3 +1,4 @@ +// Deprecated: otelmacaron has no Code Owner. module go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron/test go 1.21 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/macaron_test.go b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/macaron_test.go index 98d16c65e90..0cb317e96b2 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/macaron_test.go +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/macaron_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/macaron.v1" - "go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron" + "go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/codes" From a2294d756b1c065ddc7349781642d6ded7a9f1b2 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 12:44:14 -0700 Subject: [PATCH 6/8] Deprecate the AWS propagators (#5647) Towards #5553 --- CHANGELOG.md | 3 +++ .../aws/aws-lambda-go/otellambda/test/lambda_test.go | 2 +- .../aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go | 2 +- .../otellambda/xrayconfig/xrayconfig_test.go | 2 +- propagators/autoprop/registry.go | 2 +- propagators/aws/go.mod | 1 + propagators/aws/xray/README.MD | 2 ++ propagators/aws/xray/propagator.go | 8 ++++++++ 8 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a42fd84aeb5..172b76369cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5550]. (#5645) - The `go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5552]. (#5646) +- The `go.opentelemetry.io/contrib/propagators/aws` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5553]. (#5647) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 @@ -41,6 +43,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [#5550]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550 [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 [#5552]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5552 +[#5553]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5553 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go index 3b00fb8b091..3809d7b6f36 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/test/lambda_test.go @@ -21,7 +21,7 @@ import ( lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/propagators/aws/xray" + "go.opentelemetry.io/contrib/propagators/aws/xray" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/propagation" "go.opentelemetry.io/otel/sdk/instrumentation" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go index d610709908e..e2de6e207b6 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig.go @@ -17,7 +17,7 @@ import ( lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/propagators/aws/xray" + "go.opentelemetry.io/contrib/propagators/aws/xray" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc" "go.opentelemetry.io/otel/propagation" sdktrace "go.opentelemetry.io/otel/sdk/trace" diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go index d7235e4510e..63056750310 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig/xrayconfig_test.go @@ -15,7 +15,7 @@ import ( "github.com/stretchr/testify/assert" "go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda" // nolint:staticcheck // deprecated. - "go.opentelemetry.io/contrib/propagators/aws/xray" + "go.opentelemetry.io/contrib/propagators/aws/xray" // nolint:staticcheck // deprecated. "go.opentelemetry.io/otel/propagation" "go.opentelemetry.io/otel/trace" v1common "go.opentelemetry.io/proto/otlp/common/v1" diff --git a/propagators/autoprop/registry.go b/propagators/autoprop/registry.go index 2cb365aa059..29ffa3fe3a2 100644 --- a/propagators/autoprop/registry.go +++ b/propagators/autoprop/registry.go @@ -9,7 +9,7 @@ import ( "strings" "sync" - "go.opentelemetry.io/contrib/propagators/aws/xray" + "go.opentelemetry.io/contrib/propagators/aws/xray" // nolint:staticcheck // deprecated. "go.opentelemetry.io/contrib/propagators/b3" "go.opentelemetry.io/contrib/propagators/jaeger" "go.opentelemetry.io/contrib/propagators/ot" diff --git a/propagators/aws/go.mod b/propagators/aws/go.mod index a57da04c134..8313c4ddf5b 100644 --- a/propagators/aws/go.mod +++ b/propagators/aws/go.mod @@ -1,3 +1,4 @@ +// Deprecated: aws has no Code Owner. module go.opentelemetry.io/contrib/propagators/aws go 1.21 diff --git a/propagators/aws/xray/README.MD b/propagators/aws/xray/README.MD index c9b76367081..23c629da9c9 100644 --- a/propagators/aws/xray/README.MD +++ b/propagators/aws/xray/README.MD @@ -1,5 +1,7 @@ # AWS X-Ray Propagator/IDGenerator +:warning: Deprecated: aws has no Code Owner. + This package contains an AWS X-Ray compatible `TextMapPropagator` and `IDGenerator`. ## `traceIdRatioSampler` and `x-ray IDGenerator` compatibility diff --git a/propagators/aws/xray/propagator.go b/propagators/aws/xray/propagator.go index 82165abc8be..ea5bdf64b49 100644 --- a/propagators/aws/xray/propagator.go +++ b/propagators/aws/xray/propagator.go @@ -1,6 +1,14 @@ // Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 +// Package xray provide an OpenTelemetry propagator for the AWS XRAY platform. +// +// Deprecated: aws has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5553 package xray // import "go.opentelemetry.io/contrib/propagators/aws/xray" import ( From 7baabd4645776f151150452a209e950213e11825 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 23 May 2024 13:41:43 -0700 Subject: [PATCH 7/8] Deprecate the AWS XRAY sampler (#5648) Towards #5554 --- CHANGELOG.md | 3 +++ samplers/aws/xray/go.mod | 1 + samplers/aws/xray/remote_sampler.go | 8 ++++++++ 3 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 172b76369cf..7e6c88f1967 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm If you would like to become a Code Owner of this module and prevent it from being removed, see [#5552]. (#5646) - The `go.opentelemetry.io/contrib/propagators/aws` package is deprecated. If you would like to become a Code Owner of this module and prevent it from being removed, see [#5553]. (#5647) +- The `go.opentelemetry.io/contrib/samplers/aws/xray` package is deprecated. + If you would like to become a Code Owner of this module and prevent it from being removed, see [#5554]. (#5647) [#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542 [#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543 @@ -44,6 +46,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551 [#5552]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5552 [#5553]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5553 +[#5554]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5554 ## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21 diff --git a/samplers/aws/xray/go.mod b/samplers/aws/xray/go.mod index 871c21cf296..faf0e8312ea 100644 --- a/samplers/aws/xray/go.mod +++ b/samplers/aws/xray/go.mod @@ -1,3 +1,4 @@ +// Deprecated: xray has no Code Owner. module go.opentelemetry.io/contrib/samplers/aws/xray go 1.21 diff --git a/samplers/aws/xray/remote_sampler.go b/samplers/aws/xray/remote_sampler.go index 40e5db1d457..e3c277a5303 100644 --- a/samplers/aws/xray/remote_sampler.go +++ b/samplers/aws/xray/remote_sampler.go @@ -1,6 +1,14 @@ // Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 +// Package xray provide an OpenTelemetry sampler for the AWS XRAY platform. +// +// Deprecated: xray has no Code Owner. +// After August 21, 2024, it may no longer be supported and may stop +// receiving new releases unless a new Code Owner is found. See +// [this issue] if you would like to become the Code Owner of this module. +// +// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5554 package xray // import "go.opentelemetry.io/contrib/samplers/aws/xray" import ( From 1c0eae0b35756c073f8ef7abf1dd78723ed51265 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 10:39:26 +0200 Subject: [PATCH 8/8] chore(deps): update module github.com/gabriel-vasile/mimetype to v1.4.4 (#5660) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/gabriel-vasile/mimetype](https://togithub.com/gabriel-vasile/mimetype) | `v1.4.3` -> `v1.4.4` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgabriel-vasile%2fmimetype/v1.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgabriel-vasile%2fmimetype/v1.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgabriel-vasile%2fmimetype/v1.4.3/v1.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgabriel-vasile%2fmimetype/v1.4.3/v1.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
gabriel-vasile/mimetype (github.com/gabriel-vasile/mimetype) ### [`v1.4.4`](https://togithub.com/gabriel-vasile/mimetype/releases/tag/v1.4.4) [Compare Source](https://togithub.com/gabriel-vasile/mimetype/compare/v1.4.3...v1.4.4) #### What's Changed ##### Security fixes: Update `golang.org/x/net` to latest. Fixes: [CVE-2023-45288](https://deps.dev/advisory/osv/GO-2024-2687) ##### Performance improvements: - Change tar detection to use checksum instead of legal ranges of values in [https://github.com/gabriel-vasile/mimetype/pull/466](https://togithub.com/gabriel-vasile/mimetype/pull/466) - ftyp: exit asap to prevent mem allocs in [https://github.com/gabriel-vasile/mimetype/pull/517](https://togithub.com/gabriel-vasile/mimetype/pull/517) - Improve x-subrip detection performance in [https://github.com/gabriel-vasile/mimetype/pull/524](https://togithub.com/gabriel-vasile/mimetype/pull/524) - improve performance for text detection in [https://github.com/gabriel-vasile/mimetype/pull/532](https://togithub.com/gabriel-vasile/mimetype/pull/532) - Using io.ReadAll instead of ioutil.ReadAll by [@​phihungtf](https://togithub.com/phihungtf) in [https://github.com/gabriel-vasile/mimetype/pull/525](https://togithub.com/gabriel-vasile/mimetype/pull/525) Benchmarks: ```bash before: BenchmarkText/application/x-ndjson-8 663314 2027 ns/op 4306 B/op 6 allocs/op BenchmarkSliceRand-8 688160 1690 ns/op 728 B/op 75 allocs/op BenchmarkSrt-8 946042 1089 ns/op 4240 B/op 5 allocs/op after: BenchmarkText/application/x-ndjson-8 1930292 678.6 ns/op 160 B/op 4 allocs/op BenchmarkSliceRand-8 1232066 1173 ns/op 160 B/op 4 allocs/op BenchmarkSrt-8 3235448 368.8 ns/op 64 B/op 2 allocs/op ``` #### New Contributors - [@​phihungtf](https://togithub.com/phihungtf) made their first contribution in [https://github.com/gabriel-vasile/mimetype/pull/525](https://togithub.com/gabriel-vasile/mimetype/pull/525) **Full Changelog**: https://github.com/gabriel-vasile/mimetype/compare/v1.4.3...v1.4.4
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-go-contrib). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../github.com/gin-gonic/gin/otelgin/example/go.mod | 2 +- .../github.com/gin-gonic/gin/otelgin/example/go.sum | 4 ++-- instrumentation/github.com/gin-gonic/gin/otelgin/go.mod | 2 +- instrumentation/github.com/gin-gonic/gin/otelgin/go.sum | 4 ++-- instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod | 2 +- instrumentation/github.com/gin-gonic/gin/otelgin/test/go.sum | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod b/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod index 47ae14f03cb..627be35c75d 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod @@ -21,7 +21,7 @@ require ( github.com/bytedance/sonic/loader v0.1.1 // indirect github.com/cloudwego/base64x v0.1.4 // indirect github.com/cloudwego/iasm v0.2.0 // indirect - github.com/gabriel-vasile/mimetype v1.4.3 // indirect + github.com/gabriel-vasile/mimetype v1.4.4 // indirect github.com/gin-contrib/sse v0.1.0 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.sum b/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.sum index 7f614bd38d1..7c7af340e77 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.sum +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.sum @@ -9,8 +9,8 @@ github.com/cloudwego/iasm v0.2.0/go.mod h1:8rXZaNYT2n95jn+zTI1sDr+IgcD2GVs0nlbbQ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0= -github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk= +github.com/gabriel-vasile/mimetype v1.4.4 h1:QjV6pZ7/XZ7ryI2KuyeEDE8wnh7fHP9YnQy+R0LnH8I= +github.com/gabriel-vasile/mimetype v1.4.4/go.mod h1:JwLei5XPtWdGiMFB5Pjle1oEeoSeEuJfJE+TtfvdB/s= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.10.0 h1:nTuyha1TYqgedzytsKYqna+DfLos46nTv2ygFy86HFU= diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod b/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod index 9979f00620a..e904ae42526 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod @@ -18,7 +18,7 @@ require ( github.com/cloudwego/base64x v0.1.4 // indirect github.com/cloudwego/iasm v0.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/gabriel-vasile/mimetype v1.4.3 // indirect + github.com/gabriel-vasile/mimetype v1.4.4 // indirect github.com/gin-contrib/sse v0.1.0 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/go.sum b/instrumentation/github.com/gin-gonic/gin/otelgin/go.sum index f2e2d974b03..4a545dd4cb4 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/go.sum +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/go.sum @@ -9,8 +9,8 @@ github.com/cloudwego/iasm v0.2.0/go.mod h1:8rXZaNYT2n95jn+zTI1sDr+IgcD2GVs0nlbbQ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0= -github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk= +github.com/gabriel-vasile/mimetype v1.4.4 h1:QjV6pZ7/XZ7ryI2KuyeEDE8wnh7fHP9YnQy+R0LnH8I= +github.com/gabriel-vasile/mimetype v1.4.4/go.mod h1:JwLei5XPtWdGiMFB5Pjle1oEeoSeEuJfJE+TtfvdB/s= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.10.0 h1:nTuyha1TYqgedzytsKYqna+DfLos46nTv2ygFy86HFU= diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod b/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod index b8e08942898..8549fe8cb95 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod @@ -17,7 +17,7 @@ require ( github.com/cloudwego/base64x v0.1.4 // indirect github.com/cloudwego/iasm v0.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/gabriel-vasile/mimetype v1.4.3 // indirect + github.com/gabriel-vasile/mimetype v1.4.4 // indirect github.com/gin-contrib/sse v0.1.0 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.sum b/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.sum index 45c0363a73a..6c2491fe871 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.sum +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.sum @@ -9,8 +9,8 @@ github.com/cloudwego/iasm v0.2.0/go.mod h1:8rXZaNYT2n95jn+zTI1sDr+IgcD2GVs0nlbbQ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0= -github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk= +github.com/gabriel-vasile/mimetype v1.4.4 h1:QjV6pZ7/XZ7ryI2KuyeEDE8wnh7fHP9YnQy+R0LnH8I= +github.com/gabriel-vasile/mimetype v1.4.4/go.mod h1:JwLei5XPtWdGiMFB5Pjle1oEeoSeEuJfJE+TtfvdB/s= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.10.0 h1:nTuyha1TYqgedzytsKYqna+DfLos46nTv2ygFy86HFU=