File tree Expand file tree Collapse file tree
github.com
aws-lambda-go/otellambda/example
samplers/probability/consistent Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 restore-keys : cache-lychee-
2323
2424 - name : Link Checker
25- uses : lycheeverse/lychee-action@v2.3 .0
25+ uses : lycheeverse/lychee-action@v2.4 .0
2626 env :
2727 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2828 with :
Original file line number Diff line number Diff line change 2626
2727 - name : Link Checker
2828 id : lychee
29- uses : lycheeverse/lychee-action@v2.3 .0
29+ uses : lycheeverse/lychee-action@v2.4 .0
3030 env :
3131 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3232 with :
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2222
2323- Jaeger remote sampler's probabilistic strategy now uses the same sampling algorithm as ` trace.TraceIDRatioBased ` in ` go.opentelemetry.io/contrib/samplers/jaegerremote ` . (#6892 )
2424- Update remote sampler import paths to use jaeger-idl. (#7061 )
25+ - The deprecated ` SemVersion ` function is removed in ` go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/test ` package. Use ` Version ` instead.
2526
2627### Fixed
2728
@@ -37,6 +38,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3738
3839- Drop support for [ Go 1.22] . (#6853 )
3940- The deprecated ` go.opentelemetry.io/contrib/config ` package is removed, use ` go.opentelemetry.io/contrib/otelconf ` instead. (#6894 )
41+ - The deprecated ` SemVersion ` function in ` go.opentelemetry.io/contrib/samplers/probability/consistent ` is removed, use ` Version ` instead. (#7072 )
4042
4143<!-- Released section -->
4244<!-- Don't change this section unless doing release -->
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ require (
1313require (
1414 github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1515 github.com/emicklei/go-restful/v3 v3.12.2 // indirect
16- github.com/fxamacker/cbor/v2 v2.7 .0 // indirect
16+ github.com/fxamacker/cbor/v2 v2.8 .0 // indirect
1717 github.com/go-logr/logr v1.4.2 // indirect
1818 github.com/go-logr/stdr v1.2.2 // indirect
1919 github.com/go-openapi/jsonpointer v0.21.1 // indirect
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
44github.1485827954.workers.dev/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
55github.1485827954.workers.dev/emicklei/go-restful/v3 v3.12.2 h1:DhwDP0vY3k8ZzE0RunuJy8GhNpPL6zqLkDf9B/a0/xU =
66github.1485827954.workers.dev/emicklei/go-restful/v3 v3.12.2 /go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc =
7- github.com/fxamacker/cbor/v2 v2.7 .0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E =
8- github.com/fxamacker/cbor/v2 v2.7 .0 /go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ =
7+ github.com/fxamacker/cbor/v2 v2.8 .0 h1:fFtUGXUzXPHTIUdne5+zzMPTfffl3RD5qYnkY40vtxU =
8+ github.com/fxamacker/cbor/v2 v2.8 .0 /go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ =
99github.1485827954.workers.dev/go-logr/logr v1.2.2 /go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A =
1010github.1485827954.workers.dev/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY =
1111github.1485827954.workers.dev/go-logr/logr v1.4.2 /go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY =
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ replace (
1212require (
1313 github.com/aws/aws-lambda-go v1.47.0
1414 github.com/aws/aws-sdk-go-v2/config v1.29.12
15- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2
15+ github.com/aws/aws-sdk-go-v2/service/s3 v1.79.0
1616 go.opentelemetry.io/contrib/detectors/aws/lambda v0.60.0
1717 go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.60.0
1818 go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.60.0
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 h1:dM9/92u2
3030github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 /go.mod h1:SwFBy2vjtA0vZbjjaFtfN045boopadnoVPhu4Fv66vY =
3131github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 h1:moLQUoVq91LiqT1nbvzDukyqAlCv89ZmwaHw/ZFlFZg =
3232github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 /go.mod h1:ZH34PJUc8ApjBIfgQCFvkWcUDBtl/WTD+uiYHjd8igA =
33- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 h1:jIiopHEV22b4yQP2q36Y0OmwLbsxNWdWwfZRR5QRRO4 =
34- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 /go.mod h1:U5SNqwhXB3Xe6F47kXvWihPl/ilGaEDe8HD/50Z9wxc =
33+ github.com/aws/aws-sdk-go-v2/service/s3 v1.79.0 h1:OIw2nryEApESTYI5deCZGcq4Gvz8DBAt4tJlNyg3v5o =
34+ github.com/aws/aws-sdk-go-v2/service/s3 v1.79.0 /go.mod h1:U5SNqwhXB3Xe6F47kXvWihPl/ilGaEDe8HD/50Z9wxc =
3535github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/sns v1.34.2 h1:PajtbJ/5bEo6iUAIGMYnK8ljqg2F1h4mMCGh1acjN30 =
3636github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/sns v1.34.2 /go.mod h1:PJtxxMdj747j8DeZENRTTYAz/lx/pADn/U0k7YNNiUY =
3737github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/sqs v1.38.3 h1:j5BchjfDoS7K26vPdyJlyxBIIBGDflq3qjjJKBDlbcI =
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ require (
88 github.com/aws/aws-sdk-go-v2 v1.36.3
99 github.com/aws/aws-sdk-go-v2/config v1.29.12
1010 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.42.0
11- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2
11+ github.com/aws/aws-sdk-go-v2/service/s3 v1.79.0
1212 go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.60.0
1313 go.opentelemetry.io/otel v1.35.0
1414 go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.35.0
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 h1:dM9/92u2
2828github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 /go.mod h1:SwFBy2vjtA0vZbjjaFtfN045boopadnoVPhu4Fv66vY =
2929github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 h1:moLQUoVq91LiqT1nbvzDukyqAlCv89ZmwaHw/ZFlFZg =
3030github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 /go.mod h1:ZH34PJUc8ApjBIfgQCFvkWcUDBtl/WTD+uiYHjd8igA =
31- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 h1:jIiopHEV22b4yQP2q36Y0OmwLbsxNWdWwfZRR5QRRO4 =
32- github.com/aws/aws-sdk-go-v2/service/s3 v1.78.2 /go.mod h1:U5SNqwhXB3Xe6F47kXvWihPl/ilGaEDe8HD/50Z9wxc =
31+ github.com/aws/aws-sdk-go-v2/service/s3 v1.79.0 h1:OIw2nryEApESTYI5deCZGcq4Gvz8DBAt4tJlNyg3v5o =
32+ github.com/aws/aws-sdk-go-v2/service/s3 v1.79.0 /go.mod h1:U5SNqwhXB3Xe6F47kXvWihPl/ilGaEDe8HD/50Z9wxc =
3333github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/sns v1.34.2 h1:PajtbJ/5bEo6iUAIGMYnK8ljqg2F1h4mMCGh1acjN30 =
3434github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/sns v1.34.2 /go.mod h1:PJtxxMdj747j8DeZENRTTYAz/lx/pADn/U0k7YNNiUY =
3535github.1485827954.workers.dev/aws/aws-sdk-go-v2/service/sqs v1.38.3 h1:j5BchjfDoS7K26vPdyJlyxBIIBGDflq3qjjJKBDlbcI =
Original file line number Diff line number Diff line change @@ -8,10 +8,3 @@ func Version() string {
88 return "0.60.0"
99 // This string is updated by the pre_release.sh script during release
1010}
11-
12- // SemVersion is the semantic version to be supplied to tracer/meter creation.
13- //
14- // Deprecated: Use [Version] instead.
15- func SemVersion () string {
16- return Version ()
17- }
You can’t perform that action at this time.
0 commit comments