Skip to content

Commit 3ab8efc

Browse files
authored
Release v1.17.0-rc.1/v0.42.0-rc.1/v0.11.0-rc.1 (#3770)
* Bump versions * Sync core * Prepare stable-v1 for version v1.17.0-rc.1 * Prepare experimental-instrumentation for version v0.42.0-rc.1 * Prepare experimental-metrics for version v0.42.0-rc.1 * Prepare experimental-samplers for version v0.11.0-rc.1 * Update changelog * Update CHANGELOG.md * Update CHANGELOG.md
1 parent 5da82d1 commit 3ab8efc

File tree

198 files changed

+1007
-862
lines changed

Some content is hidden

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

198 files changed

+1007
-862
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212

1313
- Add the new `go.opentelemetry.io/contrib/instrgen` package to provide auto-generated source code instrumentation. (#3068, #3108)
1414

15+
## [1.17.0-rc.1/0.42.0-rc.1/0.11.0-rc.1] - 2023-05-17
16+
1517
### Changed
1618

19+
- Upgrade dependencies of OpenTelemetry Go to use the new [`v1.16.0-rc.1`/`v0.39.0-rc.1` release](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.16.0-rc.1).
1720
- Remove `semver:` prefix from instrumentation version. (#3681, #3798)
1821

1922
### Deprecated
@@ -30,7 +33,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3033

3134
- Upgrade dependencies of OpenTelemetry Go to use the new [`v1.15.1`/`v0.38.1` release](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.15.1)
3235

33-
3436
### Fixed
3537

3638
- AWS XRay Remote Sampling to preserve previous rule if updated rule property has not changed in `go.opentelemetry.io/contrib/samplers/aws/xray`. (#3619, #3620)
@@ -726,7 +728,8 @@ First official tagged release of `contrib` repository.
726728
- Prefix support for dogstatsd (#34)
727729
- Update Go Runtime package to use batch observer (#44)
728730

729-
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-contrib/compare/v1.16.1...HEAD
731+
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-contrib/compare/v1.17.0-rc.1...HEAD
732+
[1.17.0-rc.1/0.42.0-rc.1/0.11.0-rc.1]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.17.0-rc.1
730733
[1.16.1/0.41.1/0.10.1]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.16.1
731734
[1.16.0/0.41.0/0.10.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.16.0
732735
[1.16.0-rc.2/0.41.0-rc.2/0.10.0-rc.2]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.16.0-rc.2

detectors/aws/ec2/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.19
55
require (
66
github.com/aws/aws-sdk-go v1.44.262
77
github.com/stretchr/testify v1.8.2
8-
go.opentelemetry.io/otel v1.15.1
9-
go.opentelemetry.io/otel/sdk v1.15.1
8+
go.opentelemetry.io/otel v1.16.0-rc.1
9+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1
1010
)
1111

1212
require (
@@ -15,7 +15,8 @@ require (
1515
github.com/go-logr/stdr v1.2.2 // indirect
1616
github.com/jmespath/go-jmespath v0.4.0 // indirect
1717
github.com/pmezard/go-difflib v1.0.0 // indirect
18-
go.opentelemetry.io/otel/trace v1.15.1 // indirect
18+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 // indirect
19+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 // indirect
1920
golang.org/x/sys v0.7.0 // indirect
2021
gopkg.in/yaml.v3 v3.0.1 // indirect
2122
)

detectors/aws/ec2/go.sum

+8-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
2424
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
2525
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
2626
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
27-
go.opentelemetry.io/otel v1.15.1 h1:3Iwq3lfRByPaws0f6bU3naAqOR1n5IeDWd9390kWHa8=
28-
go.opentelemetry.io/otel v1.15.1/go.mod h1:mHHGEHVDLal6YrKMmk9LqC4a3sF5g+fHfrttQIB1NTc=
29-
go.opentelemetry.io/otel/sdk v1.15.1 h1:5FKR+skgpzvhPQHIEfcwMYjCBr14LWzs3uSqKiQzETI=
30-
go.opentelemetry.io/otel/sdk v1.15.1/go.mod h1:8rVtxQfrbmbHKfqzpQkT5EzZMcbMBwTzNAggbEAM0KA=
31-
go.opentelemetry.io/otel/trace v1.15.1 h1:uXLo6iHJEzDfrNC0L0mNjItIp06SyaBQxu5t3xMlngY=
32-
go.opentelemetry.io/otel/trace v1.15.1/go.mod h1:IWdQG/5N1x7f6YUlmdLeJvH9yxtuJAfc4VW5Agv9r/8=
27+
go.opentelemetry.io/otel v1.16.0-rc.1 h1:MDhS6G6x7UXVf7QgX9uNwllM/oLsVHr0NZnjX4MwgdY=
28+
go.opentelemetry.io/otel v1.16.0-rc.1/go.mod h1:dGSTwGyzvw5Dzn8nE8HrfOXnWIDrL0GIzQdOpTnJ2CM=
29+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 h1:R9MPFw2jA+z91ejfOVU7QRYSdb37E5Ak6jJUwNMQbR8=
30+
go.opentelemetry.io/otel/metric v1.16.0-rc.1/go.mod h1:0I+4bYjKHaoXGw7uXAABYA5wyptQdXeXOhi3SBgD6GM=
31+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1 h1:xnCLdRms5HUsj3/Fn949Gck3+JojpTFv0DtBwvPBBMc=
32+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1/go.mod h1:HBgX2gRV3gQHV4xeGepbmWms9uatwpGyYIxRh7Uvojg=
33+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 h1:/dPBlZrzSSXglIEKgy/A3kyiACcmgNMFWKTIHHxxd/o=
34+
go.opentelemetry.io/otel/trace v1.16.0-rc.1/go.mod h1:xqretMbHfSU24I2KKbSEG+aVHsNtBCr5L4BGaNqTx68=
3335
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
3436
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
3537
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=

detectors/aws/ec2/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package ec2 // import "go.opentelemetry.io/contrib/detectors/aws/ec2"
1616

1717
// Version is the current release version of the EC2 resource detector.
1818
func Version() string {
19-
return "1.16.1"
19+
return "1.17.0-rc.1"
2020
// This string is updated by the pre_release.sh script during release
2121
}
2222

detectors/aws/ecs/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.19
55
require (
66
github.com/brunoscheufler/aws-ecs-metadata-go v0.0.0-20220812150832-b6b31c6eeeaf
77
github.com/stretchr/testify v1.8.2
8-
go.opentelemetry.io/otel v1.15.1
9-
go.opentelemetry.io/otel/sdk v1.15.1
8+
go.opentelemetry.io/otel v1.16.0-rc.1
9+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1
1010
)
1111

1212
require (
@@ -15,7 +15,8 @@ require (
1515
github.com/go-logr/stdr v1.2.2 // indirect
1616
github.com/pmezard/go-difflib v1.0.0 // indirect
1717
github.com/stretchr/objx v0.5.0 // indirect
18-
go.opentelemetry.io/otel/trace v1.15.1 // indirect
18+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 // indirect
19+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 // indirect
1920
golang.org/x/sys v0.7.0 // indirect
2021
gopkg.in/yaml.v3 v3.0.1 // indirect
2122
)

detectors/aws/ecs/go.sum

+8-6
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
1919
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
2020
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
2121
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
22-
go.opentelemetry.io/otel v1.15.1 h1:3Iwq3lfRByPaws0f6bU3naAqOR1n5IeDWd9390kWHa8=
23-
go.opentelemetry.io/otel v1.15.1/go.mod h1:mHHGEHVDLal6YrKMmk9LqC4a3sF5g+fHfrttQIB1NTc=
24-
go.opentelemetry.io/otel/sdk v1.15.1 h1:5FKR+skgpzvhPQHIEfcwMYjCBr14LWzs3uSqKiQzETI=
25-
go.opentelemetry.io/otel/sdk v1.15.1/go.mod h1:8rVtxQfrbmbHKfqzpQkT5EzZMcbMBwTzNAggbEAM0KA=
26-
go.opentelemetry.io/otel/trace v1.15.1 h1:uXLo6iHJEzDfrNC0L0mNjItIp06SyaBQxu5t3xMlngY=
27-
go.opentelemetry.io/otel/trace v1.15.1/go.mod h1:IWdQG/5N1x7f6YUlmdLeJvH9yxtuJAfc4VW5Agv9r/8=
22+
go.opentelemetry.io/otel v1.16.0-rc.1 h1:MDhS6G6x7UXVf7QgX9uNwllM/oLsVHr0NZnjX4MwgdY=
23+
go.opentelemetry.io/otel v1.16.0-rc.1/go.mod h1:dGSTwGyzvw5Dzn8nE8HrfOXnWIDrL0GIzQdOpTnJ2CM=
24+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 h1:R9MPFw2jA+z91ejfOVU7QRYSdb37E5Ak6jJUwNMQbR8=
25+
go.opentelemetry.io/otel/metric v1.16.0-rc.1/go.mod h1:0I+4bYjKHaoXGw7uXAABYA5wyptQdXeXOhi3SBgD6GM=
26+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1 h1:xnCLdRms5HUsj3/Fn949Gck3+JojpTFv0DtBwvPBBMc=
27+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1/go.mod h1:HBgX2gRV3gQHV4xeGepbmWms9uatwpGyYIxRh7Uvojg=
28+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 h1:/dPBlZrzSSXglIEKgy/A3kyiACcmgNMFWKTIHHxxd/o=
29+
go.opentelemetry.io/otel/trace v1.16.0-rc.1/go.mod h1:xqretMbHfSU24I2KKbSEG+aVHsNtBCr5L4BGaNqTx68=
2830
golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
2931
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3032
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=

detectors/aws/ecs/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package ecs // import "go.opentelemetry.io/contrib/detectors/aws/ecs"
1616

1717
// Version is the current release version of the ECS resource detector.
1818
func Version() string {
19-
return "1.16.1"
19+
return "1.17.0-rc.1"
2020
// This string is updated by the pre_release.sh script during release
2121
}
2222

detectors/aws/eks/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.19
44

55
require (
66
github.com/stretchr/testify v1.8.2
7-
go.opentelemetry.io/otel v1.15.1
8-
go.opentelemetry.io/otel/sdk v1.15.1
7+
go.opentelemetry.io/otel v1.16.0-rc.1
8+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1
99
k8s.io/apimachinery v0.27.1
1010
k8s.io/client-go v0.27.1
1111
)
@@ -32,7 +32,8 @@ require (
3232
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3333
github.com/pmezard/go-difflib v1.0.0 // indirect
3434
github.com/stretchr/objx v0.5.0 // indirect
35-
go.opentelemetry.io/otel/trace v1.15.1 // indirect
35+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 // indirect
36+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 // indirect
3637
golang.org/x/net v0.10.0 // indirect
3738
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
3839
golang.org/x/sys v0.8.0 // indirect

detectors/aws/eks/go.sum

+8-6
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,14 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
186186
go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
187187
go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
188188
go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
189-
go.opentelemetry.io/otel v1.15.1 h1:3Iwq3lfRByPaws0f6bU3naAqOR1n5IeDWd9390kWHa8=
190-
go.opentelemetry.io/otel v1.15.1/go.mod h1:mHHGEHVDLal6YrKMmk9LqC4a3sF5g+fHfrttQIB1NTc=
191-
go.opentelemetry.io/otel/sdk v1.15.1 h1:5FKR+skgpzvhPQHIEfcwMYjCBr14LWzs3uSqKiQzETI=
192-
go.opentelemetry.io/otel/sdk v1.15.1/go.mod h1:8rVtxQfrbmbHKfqzpQkT5EzZMcbMBwTzNAggbEAM0KA=
193-
go.opentelemetry.io/otel/trace v1.15.1 h1:uXLo6iHJEzDfrNC0L0mNjItIp06SyaBQxu5t3xMlngY=
194-
go.opentelemetry.io/otel/trace v1.15.1/go.mod h1:IWdQG/5N1x7f6YUlmdLeJvH9yxtuJAfc4VW5Agv9r/8=
189+
go.opentelemetry.io/otel v1.16.0-rc.1 h1:MDhS6G6x7UXVf7QgX9uNwllM/oLsVHr0NZnjX4MwgdY=
190+
go.opentelemetry.io/otel v1.16.0-rc.1/go.mod h1:dGSTwGyzvw5Dzn8nE8HrfOXnWIDrL0GIzQdOpTnJ2CM=
191+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 h1:R9MPFw2jA+z91ejfOVU7QRYSdb37E5Ak6jJUwNMQbR8=
192+
go.opentelemetry.io/otel/metric v1.16.0-rc.1/go.mod h1:0I+4bYjKHaoXGw7uXAABYA5wyptQdXeXOhi3SBgD6GM=
193+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1 h1:xnCLdRms5HUsj3/Fn949Gck3+JojpTFv0DtBwvPBBMc=
194+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1/go.mod h1:HBgX2gRV3gQHV4xeGepbmWms9uatwpGyYIxRh7Uvojg=
195+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 h1:/dPBlZrzSSXglIEKgy/A3kyiACcmgNMFWKTIHHxxd/o=
196+
go.opentelemetry.io/otel/trace v1.16.0-rc.1/go.mod h1:xqretMbHfSU24I2KKbSEG+aVHsNtBCr5L4BGaNqTx68=
195197
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
196198
golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
197199
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=

detectors/aws/eks/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package eks // import "go.opentelemetry.io/contrib/detectors/aws/eks"
1616

1717
// Version is the current release version of the EKS resource detector.
1818
func Version() string {
19-
return "1.16.1"
19+
return "1.17.0-rc.1"
2020
// This string is updated by the pre_release.sh script during release
2121
}
2222

detectors/aws/lambda/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ go 1.19
44

55
require (
66
github.com/stretchr/testify v1.8.2
7-
go.opentelemetry.io/otel v1.15.1
8-
go.opentelemetry.io/otel/sdk v1.15.1
7+
go.opentelemetry.io/otel v1.16.0-rc.1
8+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1
99
)
1010

1111
require (
1212
github.com/davecgh/go-spew v1.1.1 // indirect
1313
github.com/go-logr/logr v1.2.4 // indirect
1414
github.com/go-logr/stdr v1.2.2 // indirect
1515
github.com/pmezard/go-difflib v1.0.0 // indirect
16-
go.opentelemetry.io/otel/trace v1.15.1 // indirect
16+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 // indirect
17+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 // indirect
1718
golang.org/x/sys v0.7.0 // indirect
1819
gopkg.in/yaml.v3 v3.0.1 // indirect
1920
)

detectors/aws/lambda/go.sum

+8-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
1616
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
1717
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
1818
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
19-
go.opentelemetry.io/otel v1.15.1 h1:3Iwq3lfRByPaws0f6bU3naAqOR1n5IeDWd9390kWHa8=
20-
go.opentelemetry.io/otel v1.15.1/go.mod h1:mHHGEHVDLal6YrKMmk9LqC4a3sF5g+fHfrttQIB1NTc=
21-
go.opentelemetry.io/otel/sdk v1.15.1 h1:5FKR+skgpzvhPQHIEfcwMYjCBr14LWzs3uSqKiQzETI=
22-
go.opentelemetry.io/otel/sdk v1.15.1/go.mod h1:8rVtxQfrbmbHKfqzpQkT5EzZMcbMBwTzNAggbEAM0KA=
23-
go.opentelemetry.io/otel/trace v1.15.1 h1:uXLo6iHJEzDfrNC0L0mNjItIp06SyaBQxu5t3xMlngY=
24-
go.opentelemetry.io/otel/trace v1.15.1/go.mod h1:IWdQG/5N1x7f6YUlmdLeJvH9yxtuJAfc4VW5Agv9r/8=
19+
go.opentelemetry.io/otel v1.16.0-rc.1 h1:MDhS6G6x7UXVf7QgX9uNwllM/oLsVHr0NZnjX4MwgdY=
20+
go.opentelemetry.io/otel v1.16.0-rc.1/go.mod h1:dGSTwGyzvw5Dzn8nE8HrfOXnWIDrL0GIzQdOpTnJ2CM=
21+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 h1:R9MPFw2jA+z91ejfOVU7QRYSdb37E5Ak6jJUwNMQbR8=
22+
go.opentelemetry.io/otel/metric v1.16.0-rc.1/go.mod h1:0I+4bYjKHaoXGw7uXAABYA5wyptQdXeXOhi3SBgD6GM=
23+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1 h1:xnCLdRms5HUsj3/Fn949Gck3+JojpTFv0DtBwvPBBMc=
24+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1/go.mod h1:HBgX2gRV3gQHV4xeGepbmWms9uatwpGyYIxRh7Uvojg=
25+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 h1:/dPBlZrzSSXglIEKgy/A3kyiACcmgNMFWKTIHHxxd/o=
26+
go.opentelemetry.io/otel/trace v1.16.0-rc.1/go.mod h1:xqretMbHfSU24I2KKbSEG+aVHsNtBCr5L4BGaNqTx68=
2527
golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
2628
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
2729
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=

detectors/gcp/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ require (
77
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.13.1
88
github.com/google/go-cmp v0.5.9
99
github.com/stretchr/testify v1.8.2
10-
go.opentelemetry.io/otel v1.15.1
11-
go.opentelemetry.io/otel/sdk v1.15.1
10+
go.opentelemetry.io/otel v1.16.0-rc.1
11+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1
1212
)
1313

1414
require (
@@ -17,7 +17,8 @@ require (
1717
github.com/go-logr/logr v1.2.4 // indirect
1818
github.com/go-logr/stdr v1.2.2 // indirect
1919
github.com/pmezard/go-difflib v1.0.0 // indirect
20-
go.opentelemetry.io/otel/trace v1.15.1 // indirect
20+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 // indirect
21+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 // indirect
2122
golang.org/x/sys v0.7.0 // indirect
2223
gopkg.in/yaml.v3 v3.0.1 // indirect
2324
)

detectors/gcp/go.sum

+8-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
2323
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
2424
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
2525
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
26-
go.opentelemetry.io/otel v1.15.1 h1:3Iwq3lfRByPaws0f6bU3naAqOR1n5IeDWd9390kWHa8=
27-
go.opentelemetry.io/otel v1.15.1/go.mod h1:mHHGEHVDLal6YrKMmk9LqC4a3sF5g+fHfrttQIB1NTc=
28-
go.opentelemetry.io/otel/sdk v1.15.1 h1:5FKR+skgpzvhPQHIEfcwMYjCBr14LWzs3uSqKiQzETI=
29-
go.opentelemetry.io/otel/sdk v1.15.1/go.mod h1:8rVtxQfrbmbHKfqzpQkT5EzZMcbMBwTzNAggbEAM0KA=
30-
go.opentelemetry.io/otel/trace v1.15.1 h1:uXLo6iHJEzDfrNC0L0mNjItIp06SyaBQxu5t3xMlngY=
31-
go.opentelemetry.io/otel/trace v1.15.1/go.mod h1:IWdQG/5N1x7f6YUlmdLeJvH9yxtuJAfc4VW5Agv9r/8=
26+
go.opentelemetry.io/otel v1.16.0-rc.1 h1:MDhS6G6x7UXVf7QgX9uNwllM/oLsVHr0NZnjX4MwgdY=
27+
go.opentelemetry.io/otel v1.16.0-rc.1/go.mod h1:dGSTwGyzvw5Dzn8nE8HrfOXnWIDrL0GIzQdOpTnJ2CM=
28+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 h1:R9MPFw2jA+z91ejfOVU7QRYSdb37E5Ak6jJUwNMQbR8=
29+
go.opentelemetry.io/otel/metric v1.16.0-rc.1/go.mod h1:0I+4bYjKHaoXGw7uXAABYA5wyptQdXeXOhi3SBgD6GM=
30+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1 h1:xnCLdRms5HUsj3/Fn949Gck3+JojpTFv0DtBwvPBBMc=
31+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1/go.mod h1:HBgX2gRV3gQHV4xeGepbmWms9uatwpGyYIxRh7Uvojg=
32+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 h1:/dPBlZrzSSXglIEKgy/A3kyiACcmgNMFWKTIHHxxd/o=
33+
go.opentelemetry.io/otel/trace v1.16.0-rc.1/go.mod h1:xqretMbHfSU24I2KKbSEG+aVHsNtBCr5L4BGaNqTx68=
3234
golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
3335
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3436
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=

detectors/gcp/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package gcp // import "go.opentelemetry.io/contrib/detectors/gcp"
1616

1717
// Version is the current release version of the GCP resource detector.
1818
func Version() string {
19-
return "1.16.1"
19+
return "1.17.0-rc.1"
2020
// This string is updated by the pre_release.sh script during release
2121
}
2222

instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ replace go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/ot
66

77
require (
88
github.com/Shopify/sarama v1.38.1
9-
go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.41.1
10-
go.opentelemetry.io/otel v1.15.1
11-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.15.1
12-
go.opentelemetry.io/otel/sdk v1.15.1
13-
go.opentelemetry.io/otel/trace v1.15.1
9+
go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama v0.42.0-rc.1
10+
go.opentelemetry.io/otel v1.16.0-rc.1
11+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.16.0-rc.1
12+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1
13+
go.opentelemetry.io/otel/trace v1.16.0-rc.1
1414
)
1515

1616
require (
@@ -32,6 +32,7 @@ require (
3232
github.com/klauspost/compress v1.15.14 // indirect
3333
github.com/pierrec/lz4/v4 v4.1.17 // indirect
3434
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
35+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 // indirect
3536
golang.org/x/crypto v0.1.0 // indirect
3637
golang.org/x/net v0.10.0 // indirect
3738
golang.org/x/sys v0.8.0 // indirect

instrumentation/github.com/Shopify/sarama/otelsarama/example/go.sum

+10-8
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,16 @@ github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81P
5454
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
5555
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
5656
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
57-
go.opentelemetry.io/otel v1.15.1 h1:3Iwq3lfRByPaws0f6bU3naAqOR1n5IeDWd9390kWHa8=
58-
go.opentelemetry.io/otel v1.15.1/go.mod h1:mHHGEHVDLal6YrKMmk9LqC4a3sF5g+fHfrttQIB1NTc=
59-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.15.1 h1:2PunuO5SbkN5MhCbuHCd3tC6qrcaj+uDAkX/qBU5BAs=
60-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.15.1/go.mod h1:q8+Tha+5LThjeSU8BW93uUC5w5/+DnYHMKBMpRCsui0=
61-
go.opentelemetry.io/otel/sdk v1.15.1 h1:5FKR+skgpzvhPQHIEfcwMYjCBr14LWzs3uSqKiQzETI=
62-
go.opentelemetry.io/otel/sdk v1.15.1/go.mod h1:8rVtxQfrbmbHKfqzpQkT5EzZMcbMBwTzNAggbEAM0KA=
63-
go.opentelemetry.io/otel/trace v1.15.1 h1:uXLo6iHJEzDfrNC0L0mNjItIp06SyaBQxu5t3xMlngY=
64-
go.opentelemetry.io/otel/trace v1.15.1/go.mod h1:IWdQG/5N1x7f6YUlmdLeJvH9yxtuJAfc4VW5Agv9r/8=
57+
go.opentelemetry.io/otel v1.16.0-rc.1 h1:MDhS6G6x7UXVf7QgX9uNwllM/oLsVHr0NZnjX4MwgdY=
58+
go.opentelemetry.io/otel v1.16.0-rc.1/go.mod h1:dGSTwGyzvw5Dzn8nE8HrfOXnWIDrL0GIzQdOpTnJ2CM=
59+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.16.0-rc.1 h1:YVx9oJhfDLLm2nKz0rbnIzkZZIF6fuipxgHKx5Kuqog=
60+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.16.0-rc.1/go.mod h1:Uw0LUBZIWISwKZ3rFVklYgfHJDIVRWT0JlqGW7FJuo4=
61+
go.opentelemetry.io/otel/metric v1.16.0-rc.1 h1:R9MPFw2jA+z91ejfOVU7QRYSdb37E5Ak6jJUwNMQbR8=
62+
go.opentelemetry.io/otel/metric v1.16.0-rc.1/go.mod h1:0I+4bYjKHaoXGw7uXAABYA5wyptQdXeXOhi3SBgD6GM=
63+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1 h1:xnCLdRms5HUsj3/Fn949Gck3+JojpTFv0DtBwvPBBMc=
64+
go.opentelemetry.io/otel/sdk v1.16.0-rc.1/go.mod h1:HBgX2gRV3gQHV4xeGepbmWms9uatwpGyYIxRh7Uvojg=
65+
go.opentelemetry.io/otel/trace v1.16.0-rc.1 h1:/dPBlZrzSSXglIEKgy/A3kyiACcmgNMFWKTIHHxxd/o=
66+
go.opentelemetry.io/otel/trace v1.16.0-rc.1/go.mod h1:xqretMbHfSU24I2KKbSEG+aVHsNtBCr5L4BGaNqTx68=
6567
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
6668
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
6769
golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=

0 commit comments

Comments
 (0)