File tree Expand file tree Collapse file tree
internal/namespaces/rdb/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ builds:
3030 - -X main.GitCommit={{ .ShortCommit }}
3131
3232archives :
33- - format : binary
33+ - formats : [ binary]
3434
3535checksum :
3636 name_template : ' SHA256SUMS'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ go 1.24.0
44
55require (
66 github.com/aws/aws-sdk-go-v2 v1.36.5
7- github.com/aws/aws-sdk-go-v2/service/s3 v1.81 .0
7+ github.com/aws/aws-sdk-go-v2/service/s3 v1.82 .0
88 github.com/buildpacks/pack v0.34.2
99 github.com/c-bata/go-prompt v0.2.6
1010 github.com/charmbracelet/bubbletea v1.3.5
Original file line number Diff line number Diff line change @@ -90,8 +90,8 @@ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.17 h1:t0E6FzRE
9090mygithub.libinneed.workers.dev/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.17 /go.mod h1:ygpklyoaypuyDvOM5ujWGrYWpAK3h7ugnmKCU/76Ys4 =
9191mygithub.libinneed.workers.dev/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.17 h1:qcLWgdhq45sDM9na4cvXax9dyLitn8EYBRl8Ak4XtG4 =
9292mygithub.libinneed.workers.dev/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.17 /go.mod h1:M+jkjBFZ2J6DJrjMv2+vkBbuht6kxJYtJiwoVgX4p4U =
93- github.com/aws/aws-sdk-go-v2/service/s3 v1.81 .0 h1:1GmCadhKR3J2sMVKs2bAYq9VnwYeCqfRyZzD4RASGlA =
94- github.com/aws/aws-sdk-go-v2/service/s3 v1.81 .0 /go.mod h1:kUklwasNoCn5YpyAqC/97r6dzTA1SRKJfKq16SXeoDU =
93+ github.com/aws/aws-sdk-go-v2/service/s3 v1.82 .0 h1:JubM8CGDDFaAOmBrd8CRYNr49ZNgEAiLwGwgNMdS0nw =
94+ github.com/aws/aws-sdk-go-v2/service/s3 v1.82 .0 /go.mod h1:kUklwasNoCn5YpyAqC/97r6dzTA1SRKJfKq16SXeoDU =
9595mygithub.libinneed.workers.dev/aws/aws-sdk-go-v2/service/sso v1.20.2 h1:XOPfar83RIRPEzfihnp+U6udOveKZJvPQ76SKWrLRHc =
9696mygithub.libinneed.workers.dev/aws/aws-sdk-go-v2/service/sso v1.20.2 /go.mod h1:Vv9Xyk1KMHXrR3vNQe8W5LMFdTjSeWk0gBZBzvf3Qa0 =
9797mygithub.libinneed.workers.dev/aws/aws-sdk-go-v2/service/ssooidc v1.23.2 h1:pi0Skl6mNl2w8qWZXcdOyg197Zsf4G97U7Sso9JXGZE =
Original file line number Diff line number Diff line change @@ -253,7 +253,15 @@ func autoCompleteDatabaseEngines(
253253 prefix string ,
254254 request any ,
255255) core.AutocompleteSuggestions {
256- req := request .(rdbCreateInstanceRequestCustom )
256+ var req * rdbCreateInstanceRequestCustom
257+ switch v := request .(type ) {
258+ case rdbCreateInstanceRequestCustom :
259+ req = & v
260+ case * rdbCreateInstanceRequestCustom :
261+ req = v
262+ default :
263+ return nil
264+ }
257265 suggestion := core .AutocompleteSuggestions (nil )
258266 client := core .ExtractClient (ctx )
259267 api := rdbSDK .NewAPI (client )
You can’t perform that action at this time.
0 commit comments