-
Notifications
You must be signed in to change notification settings - Fork 202
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
chore(deps): replace aws-sdk-go with aws-sdk-go-v2 #472
Conversation
088014a
to
e65c8df
Compare
Codecov Report
@@ Coverage Diff @@
## main #472 +/- ##
=======================================
Coverage 77.70% 77.70%
=======================================
Files 24 24
Lines 1610 1610
=======================================
Hits 1251 1251
Misses 268 268
Partials 91 91
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nvachhar Just some patience. Once the conflicts are resolved we can merge this in.
go.mod
Outdated
@@ -53,6 +53,12 @@ require ( | |||
sigs.k8s.io/yaml v1.3.0 | |||
) | |||
|
|||
require ( | |||
github.com/aws/aws-sdk-go-v2 v1.17.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you actually move this to the above require
block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved this up to the earlier require block (not sure how this extra one got added in the first place). But I also moved github.com/aws/aws-sdk-go
to the lower require block since it is only an indirect dependency.
Didn't mean to be impatient. I've worked in different open source projects where I missed a step and never got a review :-D |
aws-sdk-go-v2 supports more formats of AWS configuration. In particular, it supports the sso-session configuration [section](https://docs.aws.amazon.com/cli/latest/userguide/sso-configure-profile-token.html#sso-configure-profile-token-manual). Signed-off-by: Neil Vachharajani <[email protected]>
All conflicts are resolved and the |
Description
aws-sdk-go-v2 supports more formats of AWS configuration. In particular, it supports the sso-session configuration
section.
Fixes: #473
Checklist
Please make sure that your PR fulfills the following requirements:
go mod tidy -compat=1.17
to ensure only the minimum is pulled in.Type of Change