forked from segmentio/analytics-go
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from FindHotel/aws-sdk-v2
[sc-142233] upgrade aws sdk v2 & use datadog-statsd client
- Loading branch information
Showing
12 changed files
with
220 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,49 @@ | ||
module github.com/FindHotel/analytics-go | ||
module github.com/FindHotel/analytics-go/v4 | ||
|
||
go 1.14 | ||
go 1.21 | ||
|
||
toolchain go1.23.3 | ||
|
||
require ( | ||
github.com/avast/retry-go v2.1.0+incompatible | ||
github.com/aws/aws-sdk-go v1.19.1 | ||
github.com/cenkalti/backoff v2.1.0+incompatible // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/DataDog/datadog-go/v5 v5.5.0 | ||
github.com/aws/aws-sdk-go-v2 v1.34.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.29.2 | ||
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.54 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.74.1 | ||
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a | ||
github.com/segmentio/backo-go v0.0.0-20160424052352-204274ad699c | ||
github.com/segmentio/conf v1.0.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.8 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.55 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.29 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.29 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.29 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.33.10 // indirect | ||
github.com/aws/smithy-go v1.22.2 // indirect | ||
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/segmentio/go-snakecase v1.0.0 // indirect | ||
github.com/segmentio/objconv v1.0.1 // indirect | ||
github.com/stretchr/objx v0.3.0 // indirect | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c | ||
github.com/zorkian/go-datadog-api v2.18.0+incompatible | ||
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/go-playground/mold.v2 v2.2.0 // indirect | ||
gopkg.in/validator.v2 v2.0.0-20180514200540-135c24b11c19 // indirect | ||
gopkg.in/yaml.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.