File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
internal/namespaces/rdb/v1 Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ builds:
30
30
- -X main.GitCommit={{ .ShortCommit }}
31
31
32
32
archives :
33
- - format : binary
33
+ - formats : [ binary]
34
34
35
35
checksum :
36
36
name_template : ' SHA256SUMS'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ go 1.24.0
4
4
5
5
require (
6
6
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
8
8
github.com/buildpacks/pack v0.34.2
9
9
github.com/c-bata/go-prompt v0.2.6
10
10
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
90
90
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.17 /go.mod h1:ygpklyoaypuyDvOM5ujWGrYWpAK3h7ugnmKCU/76Ys4 =
91
91
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.17 h1:qcLWgdhq45sDM9na4cvXax9dyLitn8EYBRl8Ak4XtG4 =
92
92
github.com/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 =
95
95
github.com/aws/aws-sdk-go-v2/service/sso v1.20.2 h1:XOPfar83RIRPEzfihnp+U6udOveKZJvPQ76SKWrLRHc =
96
96
github.com/aws/aws-sdk-go-v2/service/sso v1.20.2 /go.mod h1:Vv9Xyk1KMHXrR3vNQe8W5LMFdTjSeWk0gBZBzvf3Qa0 =
97
97
github.com/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(
253
253
prefix string ,
254
254
request any ,
255
255
) 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
+ }
257
265
suggestion := core .AutocompleteSuggestions (nil )
258
266
client := core .ExtractClient (ctx )
259
267
api := rdbSDK .NewAPI (client )
You can’t perform that action at this time.
0 commit comments