diff --git a/CHANGELOG.md b/CHANGELOG.md index 17de96a56a6..97f7014efdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,20 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [1.2.0/0.27.0] - 2021-11-15 + +### Changed + +- Update dependency on the `go.opentelemetry.io/otel` project to `v1.2.0`. +- `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda/xrayconfig` + updated to ensure access to the `TracerProvider`. + - A `NewTracerProvider()` function is available to construct a recommended + `TracerProvider` configuration. + - `AllRecommendedOptions()` has been renamed to `WithRecommendedOptions()` + and takes a `TracerProvider` as an argument. + - `EventToCarrier()` and `Propagator()` are now `WithEventToCarrier()` and + `WithPropagator()` to reflect that they return `Option` implementations. + ## [1.1.1/0.26.1] - 2021-11-04 ### Changed @@ -381,7 +395,8 @@ First official tagged release of `contrib` repository. - Prefix support for dogstatsd (#34) - Update Go Runtime package to use batch observer (#44) -[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-contrib/compare/v1.1.1...HEAD +[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-contrib/compare/v1.2.0...HEAD +[1.2.0/0.27.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.2.0 [1.1.1/0.26.1]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.1.1 [1.1.0/0.26.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.1.0 [1.0.0/0.25.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.0.0 diff --git a/detectors/aws/ec2/go.mod b/detectors/aws/ec2/go.mod index 3ab88704bc4..28010af48ee 100644 --- a/detectors/aws/ec2/go.mod +++ b/detectors/aws/ec2/go.mod @@ -3,7 +3,7 @@ module go.opentelemetry.io/contrib/detectors/aws/ec2 go 1.15 require ( - github.com/aws/aws-sdk-go v1.41.19 + github.com/aws/aws-sdk-go v1.42.4 github.com/stretchr/testify v1.7.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/detectors/aws/ec2/go.sum b/detectors/aws/ec2/go.sum index 71ad6c1d967..997978be371 100644 --- a/detectors/aws/ec2/go.sum +++ b/detectors/aws/ec2/go.sum @@ -1,5 +1,5 @@ -github.com/aws/aws-sdk-go v1.41.19 h1:9QR2WTNj5bFdrNjRY9SeoG+3hwQmKXGX16851vdh+N8= -github.com/aws/aws-sdk-go v1.41.19/go.mod h1:585smgzpB/KqRA+K3y/NL/oYRqQvpNJYvLm+LY1U59Q= +github.com/aws/aws-sdk-go v1.42.4 h1:L3gadqlmmdWCDE7aD52l3A5TKVG9jPBHZG1/65x9GVw= +github.com/aws/aws-sdk-go v1.42.4/go.mod h1:585smgzpB/KqRA+K3y/NL/oYRqQvpNJYvLm+LY1U59Q= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ= diff --git a/detectors/aws/ec2/version.go b/detectors/aws/ec2/version.go index 4e0e0cb4513..1a98b9d58e7 100644 --- a/detectors/aws/ec2/version.go +++ b/detectors/aws/ec2/version.go @@ -16,7 +16,7 @@ package ec2 // Version is the current release version of the EC2 resource detector. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/detectors/aws/ecs/version.go b/detectors/aws/ecs/version.go index efc2743f82b..c5dceca47e8 100644 --- a/detectors/aws/ecs/version.go +++ b/detectors/aws/ecs/version.go @@ -16,7 +16,7 @@ package ecs // Version is the current release version of the ECS resource detector. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/detectors/aws/eks/version.go b/detectors/aws/eks/version.go index a9db7a97592..7f832204d27 100644 --- a/detectors/aws/eks/version.go +++ b/detectors/aws/eks/version.go @@ -16,7 +16,7 @@ package eks // Version is the current release version of the EKS resource detector. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/detectors/gcp/version.go b/detectors/gcp/version.go index 673a91dc16f..24ca3caa93f 100644 --- a/detectors/gcp/version.go +++ b/detectors/gcp/version.go @@ -16,7 +16,7 @@ package gcp // Version is the current release version of the GCP resource detector. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/exporters/metric/cortex/example/go.mod b/exporters/metric/cortex/example/go.mod index 41a51ee90b0..30ca64ef6b5 100644 --- a/exporters/metric/cortex/example/go.mod +++ b/exporters/metric/cortex/example/go.mod @@ -8,8 +8,8 @@ replace ( ) require ( - go.opentelemetry.io/contrib/exporters/metric/cortex v0.26.1 - go.opentelemetry.io/contrib/exporters/metric/cortex/utils v0.26.1 + go.opentelemetry.io/contrib/exporters/metric/cortex v0.27.0 + go.opentelemetry.io/contrib/exporters/metric/cortex/utils v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/exporters/metric/cortex/utils/go.mod b/exporters/metric/cortex/utils/go.mod index ecfa023cac5..17858639b25 100644 --- a/exporters/metric/cortex/utils/go.mod +++ b/exporters/metric/cortex/utils/go.mod @@ -8,5 +8,5 @@ require ( github.com/spf13/afero v1.6.0 github.com/spf13/viper v1.9.0 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/exporters/metric/cortex v0.26.1 + go.opentelemetry.io/contrib/exporters/metric/cortex v0.27.0 ) diff --git a/exporters/metric/cortex/utils/version.go b/exporters/metric/cortex/utils/version.go index 94daaae673f..7b85107c44a 100644 --- a/exporters/metric/cortex/utils/version.go +++ b/exporters/metric/cortex/utils/version.go @@ -16,7 +16,7 @@ package utils // Version is the current release version of the Cortex utils module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/exporters/metric/cortex/version.go b/exporters/metric/cortex/version.go index 6385fd6ab6d..82cf8149a2e 100644 --- a/exporters/metric/cortex/version.go +++ b/exporters/metric/cortex/version.go @@ -16,7 +16,7 @@ package cortex // Version is the current release version of the Cortex exporter. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/exporters/metric/datadog/version.go b/exporters/metric/datadog/version.go index ced1cd61cda..4c28be550f7 100644 --- a/exporters/metric/datadog/version.go +++ b/exporters/metric/datadog/version.go @@ -16,7 +16,7 @@ package datadog // Version is the current release version of the DataDog exporter. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/exporters/metric/dogstatsd/version.go b/exporters/metric/dogstatsd/version.go index 06828fbf1ce..16c32a49eca 100644 --- a/exporters/metric/dogstatsd/version.go +++ b/exporters/metric/dogstatsd/version.go @@ -16,7 +16,7 @@ package dogstatsd // Version is the current release version of the dogstatsd exporter. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod b/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod index 163c343a8bc..77d34783504 100644 --- a/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod +++ b/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/Shopify/sarama v1.29.1 - go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/Shopify/sarama/otelsarama/test/go.mod b/instrumentation/github.com/Shopify/sarama/otelsarama/test/go.mod index 73d1450d2cf..79d69245493 100644 --- a/instrumentation/github.com/Shopify/sarama/otelsarama/test/go.mod +++ b/instrumentation/github.com/Shopify/sarama/otelsarama/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/Shopify/sarama v1.29.1 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/Shopify/sarama/otelsarama/test/version.go b/instrumentation/github.com/Shopify/sarama/otelsarama/test/version.go index f21d7cc50e3..5e2963876a2 100644 --- a/instrumentation/github.com/Shopify/sarama/otelsarama/test/version.go +++ b/instrumentation/github.com/Shopify/sarama/otelsarama/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the sarama instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/Shopify/sarama/otelsarama/version.go b/instrumentation/github.com/Shopify/sarama/otelsarama/version.go index 9323f20c688..cef9056c07e 100644 --- a/instrumentation/github.com/Shopify/sarama/otelsarama/version.go +++ b/instrumentation/github.com/Shopify/sarama/otelsarama/version.go @@ -16,7 +16,7 @@ package otelsarama // Version is the current release version of the sarama instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod b/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod index bbd2b54ade3..ff3f31b68b4 100644 --- a/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod +++ b/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod @@ -11,7 +11,7 @@ replace ( require ( github.com/astaxie/beego v1.12.3 - go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/astaxie/beego/otelbeego/go.mod b/instrumentation/github.com/astaxie/beego/otelbeego/go.mod index 7c9b668c3a6..19ae4fb3f04 100644 --- a/instrumentation/github.com/astaxie/beego/otelbeego/go.mod +++ b/instrumentation/github.com/astaxie/beego/otelbeego/go.mod @@ -11,7 +11,7 @@ replace ( require ( github.com/astaxie/beego v1.12.3 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.26.1 + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/astaxie/beego/otelbeego/test/go.mod b/instrumentation/github.com/astaxie/beego/otelbeego/test/go.mod index 54c3776fb0b..ed57ecd0a1b 100644 --- a/instrumentation/github.com/astaxie/beego/otelbeego/test/go.mod +++ b/instrumentation/github.com/astaxie/beego/otelbeego/test/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/astaxie/beego v1.12.3 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego v0.26.1 - go.opentelemetry.io/contrib/propagators/b3 v1.1.1 + go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego v0.27.0 + go.opentelemetry.io/contrib/propagators/b3 v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/astaxie/beego/otelbeego/test/version.go b/instrumentation/github.com/astaxie/beego/otelbeego/test/version.go index c723bbf6fcd..f25f4004695 100644 --- a/instrumentation/github.com/astaxie/beego/otelbeego/test/version.go +++ b/instrumentation/github.com/astaxie/beego/otelbeego/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the Beego instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/astaxie/beego/otelbeego/version.go b/instrumentation/github.com/astaxie/beego/otelbeego/version.go index 91ac030f75d..e1a1b92048c 100644 --- a/instrumentation/github.com/astaxie/beego/otelbeego/version.go +++ b/instrumentation/github.com/astaxie/beego/otelbeego/version.go @@ -16,7 +16,7 @@ package otelbeego // Version is the current release version of the Beego instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } 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 d0cb406531e..8e1bc6233d8 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 @@ -12,7 +12,7 @@ replace ( require ( github.com/aws/aws-lambda-go v1.27.0 github.com/aws/aws-sdk-go-v2/config v1.9.0 - github.com/aws/aws-sdk-go-v2/service/s3 v1.18.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.19.0 go.opentelemetry.io/contrib/detectors/aws/lambda v0.26.1 go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.26.1 go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.26.1 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.sum b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.sum index ba63dd84e58..8ac6ed7f2b2 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.sum +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/example/go.sum @@ -25,8 +25,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.5.0 h1:qGZWS/WgiF github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.5.0/go.mod h1:Mq6AEc+oEjCUlBuLiK5YwW4shSOAKCQ3tXN0sQeYoBA= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.9.0 h1:0BOlTqnNnrEO04oYKzDxMMe68t107pmIotn18HtVonY= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.9.0/go.mod h1:xKCZ4YFSF2s4Hnb/J0TLeOsKuGzICzcElaOKNGrVnx4= -github.com/aws/aws-sdk-go-v2/service/s3 v1.18.0 h1:7qgXYvv0ONAfmHYT2d/k7MdllM8xmcxRP7CF1Xyxdws= -github.com/aws/aws-sdk-go-v2/service/s3 v1.18.0/go.mod h1:Gwz3aVctJe6mUY9T//bcALArPUaFmNAy2rTB9qN4No8= +github.com/aws/aws-sdk-go-v2/service/s3 v1.19.0 h1:5mRAms4TjSTOGYsqKYte5kHr1PzpMJSyLThjF3J+hw0= +github.com/aws/aws-sdk-go-v2/service/s3 v1.19.0/go.mod h1:Gwz3aVctJe6mUY9T//bcALArPUaFmNAy2rTB9qN4No8= github.com/aws/aws-sdk-go-v2/service/sso v1.5.0 h1:VnrCAJTp1bDxU79UuW/D4z7bwZ7xOc7JjDKpqXL/m04= github.com/aws/aws-sdk-go-v2/service/sso v1.5.0/go.mod h1:GsqaJOJeOfeYD88/2vHWKXegvDRofDqWwC5i48A2kgs= github.com/aws/aws-sdk-go-v2/service/sts v1.8.0 h1:7N7RsEVvUcvEg7jrWKU5AnSi4/6b6eY9+wG1g6W4ExE= 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 e02cb498772..710a115c836 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 @@ -12,9 +12,9 @@ replace ( require ( github.com/aws/aws-lambda-go v1.27.0 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/detectors/aws/lambda v0.26.1 - go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.26.1 - go.opentelemetry.io/contrib/propagators/aws v1.1.1 + go.opentelemetry.io/contrib/detectors/aws/lambda v0.27.0 + go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.27.0 + go.opentelemetry.io/contrib/propagators/aws v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/aws/aws-lambda-go/otellambda/version.go b/instrumentation/github.com/aws/aws-lambda-go/otellambda/version.go index 02d70df30b0..eaa5ffc96da 100644 --- a/instrumentation/github.com/aws/aws-lambda-go/otellambda/version.go +++ b/instrumentation/github.com/aws/aws-lambda-go/otellambda/version.go @@ -16,7 +16,7 @@ package otellambda // Version is the current release version of the AWS Lambda instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } 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 2380a6c50c0..9d77d84f391 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 @@ -11,9 +11,9 @@ replace ( require ( github.com/aws/aws-lambda-go v1.27.0 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/detectors/aws/lambda v0.26.1 - go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.26.1 - go.opentelemetry.io/contrib/propagators/aws v1.1.1 + go.opentelemetry.io/contrib/detectors/aws/lambda v0.27.0 + go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.27.0 + go.opentelemetry.io/contrib/propagators/aws v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 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 b23139de5ca..21e60a300e2 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 @@ -11,7 +11,7 @@ require ( github.com/aws/aws-sdk-go-v2 v1.11.0 github.com/aws/aws-sdk-go-v2/config v1.9.0 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.6.0 - github.com/aws/aws-sdk-go-v2/service/s3 v1.18.0 + github.com/aws/aws-sdk-go-v2/service/s3 v1.19.0 go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.26.1 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.sum b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.sum index f167ead9b2b..f5e77dff6c9 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.sum +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/go.sum @@ -28,8 +28,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.5.0 h1:qGZWS/WgiF github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.5.0/go.mod h1:Mq6AEc+oEjCUlBuLiK5YwW4shSOAKCQ3tXN0sQeYoBA= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.9.0 h1:0BOlTqnNnrEO04oYKzDxMMe68t107pmIotn18HtVonY= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.9.0/go.mod h1:xKCZ4YFSF2s4Hnb/J0TLeOsKuGzICzcElaOKNGrVnx4= -github.com/aws/aws-sdk-go-v2/service/s3 v1.18.0 h1:7qgXYvv0ONAfmHYT2d/k7MdllM8xmcxRP7CF1Xyxdws= -github.com/aws/aws-sdk-go-v2/service/s3 v1.18.0/go.mod h1:Gwz3aVctJe6mUY9T//bcALArPUaFmNAy2rTB9qN4No8= +github.com/aws/aws-sdk-go-v2/service/s3 v1.19.0 h1:5mRAms4TjSTOGYsqKYte5kHr1PzpMJSyLThjF3J+hw0= +github.com/aws/aws-sdk-go-v2/service/s3 v1.19.0/go.mod h1:Gwz3aVctJe6mUY9T//bcALArPUaFmNAy2rTB9qN4No8= github.com/aws/aws-sdk-go-v2/service/sso v1.5.0 h1:VnrCAJTp1bDxU79UuW/D4z7bwZ7xOc7JjDKpqXL/m04= github.com/aws/aws-sdk-go-v2/service/sso v1.5.0/go.mod h1:GsqaJOJeOfeYD88/2vHWKXegvDRofDqWwC5i48A2kgs= github.com/aws/aws-sdk-go-v2/service/sts v1.8.0 h1:7N7RsEVvUcvEg7jrWKU5AnSi4/6b6eY9+wG1g6W4ExE= 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 0171fdd21c3..b7877969694 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 @@ -5,7 +5,7 @@ go 1.15 replace go.opentelemetry.io/contrib => ../../../../../ require ( - github.com/aws/aws-sdk-go-v2 v1.10.0 + github.com/aws/aws-sdk-go-v2 v1.11.0 github.com/aws/smithy-go v1.9.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.sum b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.sum index 72ad438219c..4f87ec164d1 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.sum +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/go.sum @@ -1,6 +1,5 @@ -github.com/aws/aws-sdk-go-v2 v1.10.0 h1:+dCJ5W2HiZNa4UtaIc5ljKNulm0dK0vS5dxb5LdDOAA= -github.com/aws/aws-sdk-go-v2 v1.10.0/go.mod h1:U/EyyVvKtzmFeQQcca7eBotKdlpcP2zzU6bXBYcf7CE= -github.com/aws/smithy-go v1.8.1/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= +github.com/aws/aws-sdk-go-v2 v1.11.0 h1:HxyD62DyNhCfiFGUHqJ/xITD6rAjJ7Dm/2nLxLmO4Ag= +github.com/aws/aws-sdk-go-v2 v1.11.0/go.mod h1:SQfA+m2ltnu1cA0soUkj4dRSsmITiVQUJvBIZjzfPyQ= github.com/aws/smithy-go v1.9.0 h1:c7FUdEqrQA1/UVKKCNDFQPNKGp4FQg3YW4Ck5SLTG58= github.com/aws/smithy-go v1.9.0/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= 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 0f9b7862a22..9ef6455662b 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 @@ -4,9 +4,9 @@ go 1.15 require ( github.com/aws/aws-sdk-go-v2 v1.11.0 - github.com/aws/aws-sdk-go-v2/service/route53 v1.13.0 + github.com/aws/aws-sdk-go-v2/service/route53 v1.14.0 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.sum b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.sum index 2857236260d..729ada0590d 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.sum +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/go.sum @@ -1,13 +1,11 @@ -github.com/aws/aws-sdk-go-v2 v1.10.0/go.mod h1:U/EyyVvKtzmFeQQcca7eBotKdlpcP2zzU6bXBYcf7CE= github.com/aws/aws-sdk-go-v2 v1.11.0 h1:HxyD62DyNhCfiFGUHqJ/xITD6rAjJ7Dm/2nLxLmO4Ag= github.com/aws/aws-sdk-go-v2 v1.11.0/go.mod h1:SQfA+m2ltnu1cA0soUkj4dRSsmITiVQUJvBIZjzfPyQ= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.0 h1:zY8cNmbBXt3pzjgWgdIbzpQ6qxoCwt+Nx9JbrAf2mbY= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.0/go.mod h1:NO3Q5ZTTQtO2xIg2+xTXYDiT7knSejfeDm7WGDaOo0U= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.0.0 h1:Z3aR/OXBnkYK9zXkNkfitHX6SmUBzSsx8VMHbH4Lvhw= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.0.0/go.mod h1:anlUzBoEWglcUxUQwZA7HQOEVEnQALVZsizAapB2hq8= -github.com/aws/aws-sdk-go-v2/service/route53 v1.13.0 h1:D6wCH7rAeDJoSGmxkCcnp1EIye/6ecCm8WCNOSqTY+E= -github.com/aws/aws-sdk-go-v2/service/route53 v1.13.0/go.mod h1:s0AHQXKd6Jo4hsu2N9R1kxJuKLsEY8pIp3GUegGMrqk= -github.com/aws/smithy-go v1.8.1/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= +github.com/aws/aws-sdk-go-v2/service/route53 v1.14.0 h1:0SJgP/L7413/m8itu30tEcsEfup9Ky5TOyhqGaefZ4c= +github.com/aws/aws-sdk-go-v2/service/route53 v1.14.0/go.mod h1:s0AHQXKd6Jo4hsu2N9R1kxJuKLsEY8pIp3GUegGMrqk= github.com/aws/smithy-go v1.9.0 h1:c7FUdEqrQA1/UVKKCNDFQPNKGp4FQg3YW4Ck5SLTG58= github.com/aws/smithy-go v1.9.0/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/version.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/version.go index d4f70a72924..7060000b2ff 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/version.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the AWS intstrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/version.go b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/version.go index 45419b7f841..97df78bca46 100644 --- a/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/version.go +++ b/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/version.go @@ -16,7 +16,7 @@ package otelaws // Version is the current release version of the AWS SDKv2 instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/go.mod b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/go.mod index dc08429b243..de76546a5cd 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/go.mod +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b - go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.27.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 ) diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/go.mod b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/go.mod index ce3d56ce9ae..f7aca40a927 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/go.mod +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib v1.1.1 - go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.26.1 + go.opentelemetry.io/contrib v1.2.0 + go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/version.go b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/version.go index e061719632f..0bc30fa079c 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/version.go +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the memcached instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/version.go b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/version.go index 531d1d7989f..e06ad939e43 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/version.go +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/version.go @@ -16,7 +16,7 @@ package otelmemcache // Version is the current release version of the memcached instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/emicklei/go-restful/otelrestful/example/go.mod b/instrumentation/github.com/emicklei/go-restful/otelrestful/example/go.mod index 2b191ba714a..fd239f99f53 100644 --- a/instrumentation/github.com/emicklei/go-restful/otelrestful/example/go.mod +++ b/instrumentation/github.com/emicklei/go-restful/otelrestful/example/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/emicklei/go-restful/v3 v3.7.1 - go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/emicklei/go-restful/otelrestful/go.mod b/instrumentation/github.com/emicklei/go-restful/otelrestful/go.mod index e590658f1c3..b1cdd3054ba 100644 --- a/instrumentation/github.com/emicklei/go-restful/otelrestful/go.mod +++ b/instrumentation/github.com/emicklei/go-restful/otelrestful/go.mod @@ -11,7 +11,7 @@ require ( github.com/emicklei/go-restful/v3 v3.7.1 github.com/json-iterator/go v1.1.10 // indirect github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/propagators/b3 v1.1.1 + go.opentelemetry.io/contrib/propagators/b3 v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 ) diff --git a/instrumentation/github.com/emicklei/go-restful/otelrestful/test/go.mod b/instrumentation/github.com/emicklei/go-restful/otelrestful/test/go.mod index 3ea4e15042b..ebd797b5143 100644 --- a/instrumentation/github.com/emicklei/go-restful/otelrestful/test/go.mod +++ b/instrumentation/github.com/emicklei/go-restful/otelrestful/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/emicklei/go-restful/v3 v3.7.1 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/emicklei/go-restful/otelrestful/test/version.go b/instrumentation/github.com/emicklei/go-restful/otelrestful/test/version.go index 15165e70a63..ada8bcea9e2 100644 --- a/instrumentation/github.com/emicklei/go-restful/otelrestful/test/version.go +++ b/instrumentation/github.com/emicklei/go-restful/otelrestful/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the go-restful instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/emicklei/go-restful/otelrestful/version.go b/instrumentation/github.com/emicklei/go-restful/otelrestful/version.go index 5a0df3cf518..bc0b3547b4c 100644 --- a/instrumentation/github.com/emicklei/go-restful/otelrestful/version.go +++ b/instrumentation/github.com/emicklei/go-restful/otelrestful/version.go @@ -16,7 +16,7 @@ package otelrestful // Version is the current release version of the go-restful instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } 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 24eda3d3dec..446f9b3cfcf 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/example/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/gin-gonic/gin v1.7.4 - go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod b/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod index 79982eec3e8..e56d4570303 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/gin-gonic/gin v1.7.4 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/propagators/b3 v1.1.1 + go.opentelemetry.io/contrib/propagators/b3 v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 ) 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 29240c4625d..27252ab5f05 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/gin-gonic/gin v1.7.4 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/test/version.go b/instrumentation/github.com/gin-gonic/gin/otelgin/test/version.go index 13359a9be9f..7543c373cc3 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/test/version.go +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the gin instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/gin-gonic/gin/otelgin/version.go b/instrumentation/github.com/gin-gonic/gin/otelgin/version.go index 0d75f363dfa..8e32f70d041 100644 --- a/instrumentation/github.com/gin-gonic/gin/otelgin/version.go +++ b/instrumentation/github.com/gin-gonic/gin/otelgin/version.go @@ -16,7 +16,7 @@ package otelgin // Version is the current release version of the gin instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod b/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod index c603880e562..314404cf6ce 100644 --- a/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod +++ b/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/gorilla/mux v1.8.0 - go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/go-kit/kit/otelkit/test/go.mod b/instrumentation/github.com/go-kit/kit/otelkit/test/go.mod index 6aa5dcf2253..c5f27702308 100644 --- a/instrumentation/github.com/go-kit/kit/otelkit/test/go.mod +++ b/instrumentation/github.com/go-kit/kit/otelkit/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/go-kit/kit v0.12.0 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/go-kit/kit/otelkit/test/version.go b/instrumentation/github.com/go-kit/kit/otelkit/test/version.go index 885ef6ae0aa..935a0c53d7e 100644 --- a/instrumentation/github.com/go-kit/kit/otelkit/test/version.go +++ b/instrumentation/github.com/go-kit/kit/otelkit/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the go-kit instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/go-kit/kit/otelkit/version.go b/instrumentation/github.com/go-kit/kit/otelkit/version.go index 94e92565232..caf418d87af 100644 --- a/instrumentation/github.com/go-kit/kit/otelkit/version.go +++ b/instrumentation/github.com/go-kit/kit/otelkit/version.go @@ -16,7 +16,7 @@ package otelkit // Version is the current release version of the go-kit instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod b/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod index adbf0765dcf..f76db7298ce 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod +++ b/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/gocql/gocql v0.0.0-20200624222514-34081eda590e - go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/prometheus v0.25.0 go.opentelemetry.io/otel/exporters/zipkin v1.2.0 diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/test/go.mod b/instrumentation/github.com/gocql/gocql/otelgocql/test/go.mod index d5845b6e401..01ecf1db93b 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/test/go.mod +++ b/instrumentation/github.com/gocql/gocql/otelgocql/test/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/gocql/gocql v0.0.0-20210707082121-9a3953d1826d github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib v1.1.1 - go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql v0.26.1 + go.opentelemetry.io/contrib v1.2.0 + go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/test/version.go b/instrumentation/github.com/gocql/gocql/otelgocql/test/version.go index 0c8603d7467..1da61dfe768 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/test/version.go +++ b/instrumentation/github.com/gocql/gocql/otelgocql/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the gocql instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/version.go b/instrumentation/github.com/gocql/gocql/otelgocql/version.go index d5634cb43aa..d0e418c2967 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/version.go +++ b/instrumentation/github.com/gocql/gocql/otelgocql/version.go @@ -16,7 +16,7 @@ package otelgocql // Version is the current release version of the gocql instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod b/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod index 785802e9b14..f41e291d0f9 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod +++ b/instrumentation/github.com/gorilla/mux/otelmux/example/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/gorilla/mux v1.8.0 - go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod b/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod index 43c6b44f77c..a6d2838c984 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod +++ b/instrumentation/github.com/gorilla/mux/otelmux/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/gorilla/mux v1.8.0 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/gorilla/mux/otelmux/test/version.go b/instrumentation/github.com/gorilla/mux/otelmux/test/version.go index 54edf574c64..f2b32f6526f 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/test/version.go +++ b/instrumentation/github.com/gorilla/mux/otelmux/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the gorilla/mux instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/gorilla/mux/otelmux/version.go b/instrumentation/github.com/gorilla/mux/otelmux/version.go index f900b5be30f..24f970bbf14 100644 --- a/instrumentation/github.com/gorilla/mux/otelmux/version.go +++ b/instrumentation/github.com/gorilla/mux/otelmux/version.go @@ -16,7 +16,7 @@ package otelmux // Version is the current release version of the gorilla/mux instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/labstack/echo/otelecho/example/go.mod b/instrumentation/github.com/labstack/echo/otelecho/example/go.mod index 8084dd4e759..d3799011380 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/example/go.mod +++ b/instrumentation/github.com/labstack/echo/otelecho/example/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/labstack/echo/v4 v4.6.1 - go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/github.com/labstack/echo/otelecho/go.mod b/instrumentation/github.com/labstack/echo/otelecho/go.mod index 8962de34cef..c6d16e4af6e 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/go.mod +++ b/instrumentation/github.com/labstack/echo/otelecho/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/labstack/echo/v4 v4.6.1 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/propagators/b3 v1.1.1 + go.opentelemetry.io/contrib/propagators/b3 v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 ) diff --git a/instrumentation/github.com/labstack/echo/otelecho/test/go.mod b/instrumentation/github.com/labstack/echo/otelecho/test/go.mod index 7631144e1e5..0e7c5bf5021 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/test/go.mod +++ b/instrumentation/github.com/labstack/echo/otelecho/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/labstack/echo/v4 v4.6.1 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.26.1 + go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/github.com/labstack/echo/otelecho/test/version.go b/instrumentation/github.com/labstack/echo/otelecho/test/version.go index f20f67b05bc..b420e62a4dd 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/test/version.go +++ b/instrumentation/github.com/labstack/echo/otelecho/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the echo instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/github.com/labstack/echo/otelecho/version.go b/instrumentation/github.com/labstack/echo/otelecho/version.go index f5c308663ea..550c77a1c8d 100644 --- a/instrumentation/github.com/labstack/echo/otelecho/version.go +++ b/instrumentation/github.com/labstack/echo/otelecho/version.go @@ -16,7 +16,7 @@ package otelecho // Version is the current release version of the echo instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/go.mod b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/go.mod index 15629de0b35..908512f3498 100644 --- a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/go.mod +++ b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/stretchr/testify v1.7.0 go.mongodb.org/mongo-driver v1.7.4 - go.opentelemetry.io/contrib v1.1.1 - go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.26.1 + go.opentelemetry.io/contrib v1.2.0 + go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/version.go b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/version.go index 8ea0d1bbf9f..8a193f243ec 100644 --- a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/version.go +++ b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the mongo-driver instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/version.go b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/version.go index 4d0fc904a74..6386432eca0 100644 --- a/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/version.go +++ b/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/version.go @@ -16,7 +16,7 @@ package otelmongo // Version is the current release version of the mongo-driver instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/google.golang.org/grpc/otelgrpc/example/go.mod b/instrumentation/google.golang.org/grpc/otelgrpc/example/go.mod index 21ff11568af..4635608aefd 100644 --- a/instrumentation/google.golang.org/grpc/otelgrpc/example/go.mod +++ b/instrumentation/google.golang.org/grpc/otelgrpc/example/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/golang/protobuf v1.5.2 - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.26.1 + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/google.golang.org/grpc/otelgrpc/test/go.mod b/instrumentation/google.golang.org/grpc/otelgrpc/test/go.mod index 64166c0b618..328c56ea183 100644 --- a/instrumentation/google.golang.org/grpc/otelgrpc/test/go.mod +++ b/instrumentation/google.golang.org/grpc/otelgrpc/test/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/golang/protobuf v1.5.2 github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.26.1 + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.uber.org/goleak v1.1.12 diff --git a/instrumentation/google.golang.org/grpc/otelgrpc/test/version.go b/instrumentation/google.golang.org/grpc/otelgrpc/test/version.go index 4d9a9d3675e..ad28d4bdd5a 100644 --- a/instrumentation/google.golang.org/grpc/otelgrpc/test/version.go +++ b/instrumentation/google.golang.org/grpc/otelgrpc/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the gRPC instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/google.golang.org/grpc/otelgrpc/version.go b/instrumentation/google.golang.org/grpc/otelgrpc/version.go index 1c8f779bea5..80db7fb545d 100644 --- a/instrumentation/google.golang.org/grpc/otelgrpc/version.go +++ b/instrumentation/google.golang.org/grpc/otelgrpc/version.go @@ -16,7 +16,7 @@ package otelgrpc // Version is the current release version of the gRPC instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod index aae1fecfa16..be8f5bcf82e 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/example/go.mod @@ -9,7 +9,7 @@ replace ( ) require ( - go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron v0.26.1 + go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod b/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod index c6af9d1072f..94e956da36e 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/propagators/b3 v1.1.1 + go.opentelemetry.io/contrib/propagators/b3 v1.2.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 gopkg.in/macaron.v1 v1.4.0 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod index e630d70432c..9786a50cbd8 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron v0.26.1 + go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 go.opentelemetry.io/otel/trace v1.2.0 diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/version.go b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/version.go index 277eaf12f21..a9e97cfdce1 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/version.go +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the macron instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/gopkg.in/macaron.v1/otelmacaron/version.go b/instrumentation/gopkg.in/macaron.v1/otelmacaron/version.go index 8ad29700933..e72d5649ce9 100644 --- a/instrumentation/gopkg.in/macaron.v1/otelmacaron/version.go +++ b/instrumentation/gopkg.in/macaron.v1/otelmacaron/version.go @@ -16,7 +16,7 @@ package otelmacaron // Version is the current release version of the macron instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/host/example/go.mod b/instrumentation/host/example/go.mod index c1c441cf1d2..bfae89d2feb 100644 --- a/instrumentation/host/example/go.mod +++ b/instrumentation/host/example/go.mod @@ -8,7 +8,7 @@ replace ( ) require ( - go.opentelemetry.io/contrib/instrumentation/host v0.26.1 + go.opentelemetry.io/contrib/instrumentation/host v0.27.0 go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v0.25.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/sdk/metric v0.25.0 diff --git a/instrumentation/host/version.go b/instrumentation/host/version.go index 40d5670de01..efc27af0cd2 100644 --- a/instrumentation/host/version.go +++ b/instrumentation/host/version.go @@ -16,7 +16,7 @@ package host // Version is the current release version of the host instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/net/http/httptrace/otelhttptrace/example/go.mod b/instrumentation/net/http/httptrace/otelhttptrace/example/go.mod index 2b88f18ce3b..4c6bd6b5298 100644 --- a/instrumentation/net/http/httptrace/otelhttptrace/example/go.mod +++ b/instrumentation/net/http/httptrace/otelhttptrace/example/go.mod @@ -9,8 +9,8 @@ replace ( ) require ( - go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.26.1 - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.26.1 + go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.27.0 + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/net/http/httptrace/otelhttptrace/test/go.mod b/instrumentation/net/http/httptrace/otelhttptrace/test/go.mod index 112d72f56f5..c6a8db6a557 100644 --- a/instrumentation/net/http/httptrace/otelhttptrace/test/go.mod +++ b/instrumentation/net/http/httptrace/otelhttptrace/test/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.26.1 + go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 ) diff --git a/instrumentation/net/http/httptrace/otelhttptrace/test/version.go b/instrumentation/net/http/httptrace/otelhttptrace/test/version.go index 3472ab465c0..1f1b4cfa776 100644 --- a/instrumentation/net/http/httptrace/otelhttptrace/test/version.go +++ b/instrumentation/net/http/httptrace/otelhttptrace/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the httptrace instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/net/http/httptrace/otelhttptrace/version.go b/instrumentation/net/http/httptrace/otelhttptrace/version.go index d37154b8caf..43f0d3a5ef6 100644 --- a/instrumentation/net/http/httptrace/otelhttptrace/version.go +++ b/instrumentation/net/http/httptrace/otelhttptrace/version.go @@ -16,7 +16,7 @@ package otelhttptrace // Version is the current release version of the httptrace instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/net/http/otelhttp/example/go.mod b/instrumentation/net/http/otelhttp/example/go.mod index 63146fe0947..a8f1ca48401 100644 --- a/instrumentation/net/http/otelhttp/example/go.mod +++ b/instrumentation/net/http/otelhttp/example/go.mod @@ -8,7 +8,7 @@ replace ( ) require ( - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.26.1 + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/net/http/otelhttp/test/go.mod b/instrumentation/net/http/otelhttp/test/go.mod index ca2a94634f0..e173cc3a6e6 100644 --- a/instrumentation/net/http/otelhttp/test/go.mod +++ b/instrumentation/net/http/otelhttp/test/go.mod @@ -4,7 +4,7 @@ go 1.15 require ( github.com/stretchr/testify v1.7.0 - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.26.1 + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/instrumentation/net/http/otelhttp/test/version.go b/instrumentation/net/http/otelhttp/test/version.go index e22d1cdf0a4..5613bb0a850 100644 --- a/instrumentation/net/http/otelhttp/test/version.go +++ b/instrumentation/net/http/otelhttp/test/version.go @@ -16,7 +16,7 @@ package test // Version is the current release version of the otelhttp instrumentation test module. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/net/http/otelhttp/version.go b/instrumentation/net/http/otelhttp/version.go index 02b531d34c3..371f3485d8e 100644 --- a/instrumentation/net/http/otelhttp/version.go +++ b/instrumentation/net/http/otelhttp/version.go @@ -16,7 +16,7 @@ package otelhttp // Version is the current release version of the otelhttp instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/instrumentation/runtime/example/go.mod b/instrumentation/runtime/example/go.mod index ae5809874c7..82a1ead2191 100644 --- a/instrumentation/runtime/example/go.mod +++ b/instrumentation/runtime/example/go.mod @@ -8,7 +8,7 @@ replace ( ) require ( - go.opentelemetry.io/contrib/instrumentation/runtime v0.26.1 + go.opentelemetry.io/contrib/instrumentation/runtime v0.27.0 go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v0.25.0 go.opentelemetry.io/otel/metric v0.25.0 go.opentelemetry.io/otel/sdk/metric v0.25.0 diff --git a/instrumentation/runtime/version.go b/instrumentation/runtime/version.go index 3cd859394f5..a2e88c1ad54 100644 --- a/instrumentation/runtime/version.go +++ b/instrumentation/runtime/version.go @@ -16,7 +16,7 @@ package runtime // Version is the current release version of the runtime instrumentation. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/propagators/aws/version.go b/propagators/aws/version.go index 04c442f855a..e6b99b49e70 100644 --- a/propagators/aws/version.go +++ b/propagators/aws/version.go @@ -16,7 +16,7 @@ package aws // Version is the current release version of the AWS XRay propagator. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/propagators/b3/version.go b/propagators/b3/version.go index fafa9adbb58..8142c2eba88 100644 --- a/propagators/b3/version.go +++ b/propagators/b3/version.go @@ -16,7 +16,7 @@ package b3 // Version is the current release version of the B3 propagator. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/propagators/jaeger/version.go b/propagators/jaeger/version.go index b7c7bdf30e2..ce2c31869b3 100644 --- a/propagators/jaeger/version.go +++ b/propagators/jaeger/version.go @@ -16,7 +16,7 @@ package jaeger // Version is the current release version of the Jaeger propagator. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/propagators/opencensus/examples/go.mod b/propagators/opencensus/examples/go.mod index ee86eed1faf..e3ee3b3125f 100644 --- a/propagators/opencensus/examples/go.mod +++ b/propagators/opencensus/examples/go.mod @@ -4,8 +4,8 @@ go 1.15 require ( go.opencensus.io v0.22.6-0.20201102222123-380f4078db9f - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.26.1 - go.opentelemetry.io/contrib/propagators/opencensus v0.26.1 + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.27.0 + go.opentelemetry.io/contrib/propagators/opencensus v0.27.0 go.opentelemetry.io/otel v1.2.0 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.2.0 go.opentelemetry.io/otel/sdk v1.2.0 diff --git a/propagators/opencensus/version.go b/propagators/opencensus/version.go index c6d1bd0780f..837ed2975db 100644 --- a/propagators/opencensus/version.go +++ b/propagators/opencensus/version.go @@ -16,7 +16,7 @@ package opencensus // Version is the current release version of the OpenCensus propagator. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release } diff --git a/propagators/ot/version.go b/propagators/ot/version.go index d12a8356176..3788518a162 100644 --- a/propagators/ot/version.go +++ b/propagators/ot/version.go @@ -16,7 +16,7 @@ package ot // Version is the current release version of the ot propagator. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/tools/version.go b/tools/version.go index 0ed34d4f7fd..22b058c4394 100644 --- a/tools/version.go +++ b/tools/version.go @@ -16,7 +16,7 @@ package tools // Version is the current release version of the OpenTelemetry Contrib tools. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/version.go b/version.go index 8fb2328f6a7..e9d47eac344 100644 --- a/version.go +++ b/version.go @@ -18,7 +18,7 @@ package contrib // import "go.opentelemetry.io/contrib" // Version is the current release version of OpenTelemetry Contrib in use. func Version() string { - return "1.1.1" + return "1.2.0" // This string is updated by the pre_release.sh script during release } diff --git a/versions.yaml b/versions.yaml index cd9c0ccfd39..bdbc9284d8a 100644 --- a/versions.yaml +++ b/versions.yaml @@ -14,7 +14,7 @@ module-sets: stable-v1: - version: v1.1.1 + version: v1.2.0 modules: - go.opentelemetry.io/contrib - go.opentelemetry.io/contrib/tools @@ -27,7 +27,7 @@ module-sets: - go.opentelemetry.io/contrib/detectors/aws/ecs - go.opentelemetry.io/contrib/detectors/aws/eks experimental-instrumentation: - version: v0.26.1 + version: v0.27.0 modules: - go.opentelemetry.io/contrib/detectors/aws/lambda - go.opentelemetry.io/contrib/propagators/opencensus @@ -82,7 +82,7 @@ module-sets: - go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful/test - go.opentelemetry.io/contrib/zpages experimental-metrics: - version: v0.26.1 + version: v0.27.0 modules: - go.opentelemetry.io/contrib/exporters/metric/dogstatsd - go.opentelemetry.io/contrib/exporters/metric/cortex diff --git a/zpages/version.go b/zpages/version.go index ad3ada6d349..434c012497a 100644 --- a/zpages/version.go +++ b/zpages/version.go @@ -16,7 +16,7 @@ package zpages // Version is the current release version of the zpages span processor. func Version() string { - return "0.26.1" + return "0.27.0" // This string is updated by the pre_release.sh script during release }