Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws: migrate code to Go SDK v2 #1655

Open
mauri870 opened this issue Jan 31, 2024 · 0 comments
Open

aws: migrate code to Go SDK v2 #1655

mauri870 opened this issue Jan 31, 2024 · 0 comments

Comments

@mauri870
Copy link
Contributor

AWS announced the end of support for the Go SDK v1 on July 31, 2025. From now on it will receive only critical security updates and when the deadline is reached there will be no more updates (security or otherwise) to the v1 SDK.

I know it's a long time from now, but I wanted to create this ticket so that we can plan in advance.

My preliminary investigation indicates that we only need to upgrade S3 code, which is contained in the aws directory:

$ rg github.com/aws/aws-sdk-go ./**/*.go
./aws/s3_test.go
12:     "github.com/aws/aws-sdk-go/aws"
13:     "github.com/aws/aws-sdk-go/service/s3"
14:     "github.com/aws/aws-sdk-go/service/s3/s3manager"

./aws/s3.go
10:     "github.com/aws/aws-sdk-go/aws"
11:     "github.com/aws/aws-sdk-go/aws/credentials"
12:     "github.com/aws/aws-sdk-go/aws/session"
13:     "github.com/aws/aws-sdk-go/service/s3"
14:     "github.com/aws/aws-sdk-go/service/s3/s3manager"

SDK v2 documentation for reference
AWS docs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant