Skip to content

Commit 206f8b1

Browse files
Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 (#220)
* Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 Bumps google.golang.org/protobuf from 1.32.0 to 1.33.0. --- updated-dependencies: - dependency-name: google.golang.org/protobuf dependency-version: 1.33.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * license --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kezhenxu94 <kezhenxu94@apache.org>
1 parent 9a5d284 commit 206f8b1

31 files changed

Lines changed: 149 additions & 87 deletions

File tree

dist/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ The text of each license is also included at licenses/license-[project].txt.
250250
golang.org/x/term v0.30.0 BSD-3-Clause
251251
golang.org/x/text v0.23.0 BSD-3-Clause
252252
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac BSD-3-Clause
253-
google.golang.org/protobuf v1.32.0 BSD-3-Clause
253+
google.golang.org/protobuf v1.33.0 BSD-3-Clause
254254
gopkg.in/inf.v0 v0.9.1 BSD-3-Clause
255255

256256
========================================================================

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ require (
7575
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
7676
google.golang.org/appengine v1.6.7 // indirect
7777
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
78-
google.golang.org/protobuf v1.32.0 // indirect
78+
google.golang.org/protobuf v1.33.0 // indirect
7979
gopkg.in/inf.v0 v0.9.1 // indirect
8080
gopkg.in/ini.v1 v1.51.0 // indirect
8181
gopkg.in/yaml.v3 v3.0.0 // indirect

go.sum

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,8 +812,9 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
812812
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
813813
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
814814
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
815-
google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I=
816815
google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
816+
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
817+
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
817818
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
818819
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
819820
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

internal/commands/alarm/autopleteKeys.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,13 @@ $ swctl alarm autocomplete-keys
5050
start := ctx.String("start")
5151
end := ctx.String("end")
5252
step := ctx.Generic("step")
53+
coldStage := ctx.Bool("cold")
5354

5455
duration := api.Duration{
55-
Start: start,
56-
End: end,
57-
Step: step.(*model.StepEnumValue).Selected,
56+
Start: start,
57+
End: end,
58+
Step: step.(*model.StepEnumValue).Selected,
59+
ColdStage: &coldStage,
5860
}
5961

6062
autocompleteKeys, err := alarm.TagAutocompleteKeys(ctx.Context, duration)

internal/commands/alarm/autopleteValues.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,15 @@ $ swctl alarm autocomplete-values --key=tagKey
5757
start := ctx.String("start")
5858
end := ctx.String("end")
5959
step := ctx.Generic("step")
60+
coldStage := ctx.Bool("cold")
6061

6162
tagKey := ctx.String("key")
6263

6364
duration := api.Duration{
64-
Start: start,
65-
End: end,
66-
Step: step.(*model.StepEnumValue).Selected,
65+
Start: start,
66+
End: end,
67+
Step: step.(*model.StepEnumValue).Selected,
68+
ColdStage: &coldStage,
6769
}
6870

6971
autocompleteValues, err := alarm.TagAutocompleteValues(ctx.Context, duration, tagKey)

internal/commands/alarm/list.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,17 @@ $ swctl alarm list
7676
start := ctx.String("start")
7777
end := ctx.String("end")
7878
step := ctx.Generic("step")
79+
coldStage := ctx.Bool("cold")
7980

8081
keyword := ctx.String("keyword")
8182
tagStr := ctx.String("tags")
8283
scope := ctx.Generic("scope").(*model.ScopeEnumValue).Selected
8384

8485
duration := api.Duration{
85-
Start: start,
86-
End: end,
87-
Step: step.(*model.StepEnumValue).Selected,
86+
Start: start,
87+
End: end,
88+
Step: step.(*model.StepEnumValue).Selected,
89+
ColdStage: &coldStage,
8890
}
8991

9092
var tags []*api.AlarmTag

internal/commands/browser/logs/list.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,13 @@ $ swctl browser logs list`,
5555
start := ctx.String("start")
5656
end := ctx.String("end")
5757
step := ctx.Generic("step")
58+
coldStage := ctx.Bool("cold")
5859

5960
duration := api.Duration{
60-
Start: start,
61-
End: end,
62-
Step: step.(*model.StepEnumValue).Selected,
61+
Start: start,
62+
End: end,
63+
Step: step.(*model.StepEnumValue).Selected,
64+
ColdStage: &coldStage,
6365
}
6466

6567
serviceID := ctx.String("service-id")

internal/commands/browser/service/list.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,17 @@ $ swctl browser svc ls test-ui`,
5151
end := ctx.String("end")
5252
start := ctx.String("start")
5353
step := ctx.Generic("step")
54+
coldStage := ctx.Bool("cold")
5455

5556
var services []api.Service
5657
var err error
5758

5859
if args := ctx.Args(); args.Len() == 0 {
5960
services, err = metadata.AllBrowserServices(ctx.Context, api.Duration{
60-
Start: start,
61-
End: end,
62-
Step: step.(*model.StepEnumValue).Selected,
61+
Start: start,
62+
End: end,
63+
Step: step.(*model.StepEnumValue).Selected,
64+
ColdStage: &coldStage,
6365
})
6466
if err != nil {
6567
return err

internal/commands/browser/version/list.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,14 @@ $ swctl browser version ls --service-id dGVzdC11aQ==.1`,
5454
end := ctx.String("end")
5555
start := ctx.String("start")
5656
step := ctx.Generic("step")
57+
coldStage := ctx.Bool("cold")
5758
serviceID := ctx.String("service-id")
5859

5960
instances, err := metadata.Instances(ctx.Context, serviceID, api.Duration{
60-
Start: start,
61-
End: end,
62-
Step: step.(*model.StepEnumValue).Selected,
61+
Start: start,
62+
End: end,
63+
Step: step.(*model.StepEnumValue).Selected,
64+
ColdStage: &coldStage,
6365
})
6466
if err != nil {
6567
return err

internal/commands/dashboard/global/global.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ $ swctl dashboard global --template my-global-template.yml
7777
end := ctx.String("end")
7878
start := ctx.String("start")
7979
step := ctx.Generic("step")
80+
coldStage := ctx.Bool("cold")
8081

8182
globalData, err := dashboard.Global(ctx.Context, api.Duration{
82-
Start: start,
83-
End: end,
84-
Step: step.(*model.StepEnumValue).Selected,
83+
Start: start,
84+
End: end,
85+
Step: step.(*model.StepEnumValue).Selected,
86+
ColdStage: &coldStage,
8587
})
8688
if err != nil {
8789
return err

0 commit comments

Comments
 (0)