You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
4575a9774d
This release is the last to support [Go 1.24]. The next release will require at least [Go 1.25]. ### Added - Support testing of [Go 1.26]. (#7902) ### Fixed - Update `Baggage` in `go.opentelemetry.io/otel/propagation` and `Parse` and `New` in `go.opentelemetry.io/otel/baggage` to comply with W3C Baggage specification limits. `New` and `Parse` now return partial baggage along with an error when limits are exceeded. Errors from baggage extraction are reported to the global error handler. (#7880) [Go 1.26]: https://go.dev/doc/go1.26 [Go 1.25]: https://go.dev/doc/go1.25 [Go 1.24]: https://go.dev/doc/go1.24
30 lines
977 B
Modula-2
30 lines
977 B
Modula-2
module go.opentelemetry.io/otel/trace/internal/telemetry/test
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.11.1
|
|
go.opentelemetry.io/collector/pdata v1.51.0
|
|
go.opentelemetry.io/otel/trace v1.41.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/hashicorp/go-version v1.8.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
go.opentelemetry.io/collector/featuregate v1.51.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace go.opentelemetry.io/otel/trace => ../../..
|
|
|
|
replace go.opentelemetry.io/otel => ../../../..
|
|
|
|
replace go.opentelemetry.io/otel/metric => ../../../../metric
|