|
1 | 1 | module github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awskinesisexporter
|
2 | 2 |
|
3 |
| -go 1.17 |
| 3 | +go 1.24.0 |
4 | 4 |
|
5 | 5 | require (
|
6 | 6 | github.com/aws/aws-sdk-go v1.44.15
|
7 | 7 | github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.51.0
|
8 | 8 | github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.51.0
|
9 |
| - github.com/stretchr/testify v1.7.1 |
| 9 | + github.com/stretchr/testify v1.11.1 |
10 | 10 | go.opentelemetry.io/collector v0.51.0
|
11 | 11 | go.uber.org/zap v1.21.0
|
12 | 12 | )
|
13 | 13 |
|
14 | 14 | require (
|
15 | 15 | github.com/gogo/protobuf v1.3.2
|
16 |
| - github.com/google/uuid v1.3.0 |
| 16 | + github.com/google/uuid v1.6.0 |
17 | 17 | github.com/jaegertracing/jaeger v1.34.1
|
18 |
| - go.opentelemetry.io/collector/pdata v0.51.0 |
19 |
| - go.uber.org/multierr v1.8.0 |
| 18 | + go.opentelemetry.io/collector/pdata v1.42.0 |
| 19 | + go.uber.org/multierr v1.11.0 |
20 | 20 | )
|
21 | 21 |
|
22 | 22 | require (
|
23 | 23 | github.com/apache/thrift v0.16.0 // indirect
|
24 | 24 | github.com/benbjohnson/clock v1.3.0 // indirect
|
25 | 25 | github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
26 | 26 | github.com/davecgh/go-spew v1.1.1 // indirect
|
27 |
| - github.com/golang/protobuf v1.5.2 // indirect |
| 27 | + github.com/hashicorp/go-version v1.7.0 // indirect |
28 | 28 | github.com/jmespath/go-jmespath v0.4.0 // indirect
|
29 | 29 | github.com/json-iterator/go v1.1.12 // indirect
|
30 | 30 | github.com/knadh/koanf v1.4.1 // indirect
|
31 | 31 | github.com/mitchellh/copystructure v1.2.0 // indirect
|
32 | 32 | github.com/mitchellh/mapstructure v1.5.0 // indirect
|
33 | 33 | github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
34 | 34 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
35 |
| - github.com/modern-go/reflect2 v1.0.2 // indirect |
| 35 | + github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect |
36 | 36 | github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.51.0 // indirect
|
37 | 37 | github.com/opentracing/opentracing-go v1.2.0 // indirect
|
38 | 38 | github.com/openzipkin/zipkin-go v0.4.0 // indirect
|
39 | 39 | github.com/pmezard/go-difflib v1.0.0 // indirect
|
40 | 40 | github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
|
41 | 41 | github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
|
42 | 42 | go.opencensus.io v0.23.0 // indirect
|
| 43 | + go.opentelemetry.io/collector/featuregate v1.42.0 // indirect |
43 | 44 | go.opentelemetry.io/collector/semconv v0.51.0 // indirect
|
44 |
| - go.opentelemetry.io/otel v1.7.0 // indirect |
45 |
| - go.opentelemetry.io/otel/metric v0.30.0 // indirect |
46 |
| - go.opentelemetry.io/otel/trace v1.7.0 // indirect |
| 45 | + go.opentelemetry.io/otel v1.37.0 // indirect |
| 46 | + go.opentelemetry.io/otel/metric v1.37.0 // indirect |
| 47 | + go.opentelemetry.io/otel/trace v1.37.0 // indirect |
47 | 48 | go.uber.org/atomic v1.9.0 // indirect
|
48 |
| - golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect |
49 |
| - golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect |
50 |
| - golang.org/x/text v0.3.7 // indirect |
| 49 | + golang.org/x/net v0.41.0 // indirect |
| 50 | + golang.org/x/sys v0.33.0 // indirect |
| 51 | + golang.org/x/text v0.26.0 // indirect |
51 | 52 | google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
|
52 |
| - google.golang.org/grpc v1.46.0 // indirect |
53 |
| - google.golang.org/protobuf v1.28.0 // indirect |
| 53 | + google.golang.org/grpc v1.75.1 // indirect |
| 54 | + google.golang.org/protobuf v1.36.9 // indirect |
54 | 55 | gopkg.in/yaml.v2 v2.4.0 // indirect
|
55 |
| - gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 56 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
56 | 57 | )
|
57 | 58 |
|
58 | 59 | replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger => ../../pkg/translator/jaeger
|
|
0 commit comments