File tree Expand file tree Collapse file tree
internal/namespaces/object/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ go 1.26.0
55require (
66 github.com/aws/aws-sdk-go-v2 v1.41.3
77 github.com/aws/aws-sdk-go-v2/service/s3 v1.96.4
8+ github.com/aws/smithy-go v1.24.2
89 github.com/buildpacks/pack v0.39.1
910 github.com/c-bata/go-prompt v0.2.6
1011 github.com/charmbracelet/bubbletea v1.3.10
@@ -72,7 +73,6 @@ require (
7273 github.com/aws/aws-sdk-go-v2/service/sso v1.30.11 // indirect
7374 github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.15 // indirect
7475 github.com/aws/aws-sdk-go-v2/service/sts v1.41.7 // indirect
75- github.com/aws/smithy-go v1.24.2 // indirect
7676 github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.11.0 // indirect
7777 github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
7878 github.com/beorn7/perks v1.0.1 // indirect
Original file line number Diff line number Diff line change @@ -38,8 +38,9 @@ func newS3Client(ctx context.Context, region scw.Region) *s3.Client {
3838
3939 options := []func (* middleware.Stack ) error {
4040 func (stack * middleware.Stack ) error {
41- return awsmiddleware .AddUserAgentKey (
42- buildInfo .GetUserAgent (),
41+ return awsmiddleware .AddUserAgentKeyValue (
42+ "scaleway-cli" ,
43+ buildInfo .Version .String (),
4344 )(stack )
4445 },
4546 }
You can’t perform that action at this time.
0 commit comments