Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit ad54e7b

Browse files
authored
update deps (#185)
1 parent 5d99da8 commit ad54e7b

21 files changed

+221
-789
lines changed

go.mod

Lines changed: 42 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,49 @@
11
module github.com/Peripli/service-manager-cli
22

3-
go 1.13
3+
go 1.23.3
44

55
require (
6-
github.com/Peripli/service-manager v0.23.2
7-
//github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210521184019-c5ad59b459ec // indirect
8-
github.com/gofrs/uuid v4.0.0+incompatible // indirect
9-
github.com/onrik/logrus v0.9.0 // indirect
10-
github.com/onsi/ginkgo v1.16.4
11-
github.com/onsi/gomega v1.10.3
12-
github.com/sirupsen/logrus v1.8.1 // indirect
13-
github.com/spf13/afero v1.6.0
14-
github.com/spf13/cobra v1.1.3
15-
github.com/spf13/pflag v1.0.5
16-
github.com/spf13/viper v1.8.0
17-
github.com/tidwall/gjson v1.9.3
18-
github.com/tidwall/sjson v1.1.7 // indirect
19-
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
20-
golang.org/x/oauth2 v0.0.0-20210615190721-d04028783cf1
21-
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
22-
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
23-
gopkg.in/yaml.v2 v2.4.0
6+
github.com/Peripli/service-manager v0.24.3-0.20250611140835-e06d0984b1db
7+
github.com/onsi/ginkgo v1.16.5
8+
github.com/onsi/gomega v1.37.0
9+
github.com/spf13/afero v1.14.0
10+
github.com/spf13/cobra v1.9.1
11+
github.com/spf13/pflag v1.0.6
12+
github.com/spf13/viper v1.20.1
13+
github.com/tidwall/gjson v1.18.0
14+
golang.org/x/crypto v0.39.0
15+
golang.org/x/oauth2 v0.30.0
16+
gopkg.in/yaml.v3 v3.0.1
17+
)
18+
19+
require (
20+
github.com/InVisionApp/go-health/v2 v2.1.4 // indirect
21+
github.com/InVisionApp/go-logger v1.0.1 // indirect
22+
github.com/antlr/antlr4 v0.0.0-20210105192202-5c2b686f95e1 // indirect
23+
github.com/fsnotify/fsnotify v1.9.0 // indirect
24+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
25+
github.com/gobwas/glob v0.2.3 // indirect
26+
github.com/gofrs/uuid v4.4.0+incompatible // indirect
27+
github.com/google/go-cmp v0.7.0 // indirect
28+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
29+
github.com/nxadm/tail v1.4.8 // indirect
30+
github.com/onrik/logrus v0.11.0 // indirect
31+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
32+
github.com/sagikazarmark/locafero v0.7.0 // indirect
33+
github.com/sirupsen/logrus v1.9.3 // indirect
34+
github.com/sourcegraph/conc v0.3.0 // indirect
35+
github.com/spf13/cast v1.9.2 // indirect
36+
github.com/subosito/gotenv v1.6.0 // indirect
37+
github.com/tidwall/match v1.1.1 // indirect
38+
github.com/tidwall/pretty v1.2.0 // indirect
39+
github.com/tidwall/sjson v1.2.5 // indirect
40+
go.uber.org/atomic v1.9.0 // indirect
41+
go.uber.org/multierr v1.9.0 // indirect
42+
golang.org/x/net v0.37.0 // indirect
43+
golang.org/x/sys v0.33.0 // indirect
44+
golang.org/x/term v0.32.0 // indirect
45+
golang.org/x/text v0.26.0 // indirect
46+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
2447
)
2548

2649
replace gopkg.in/fsnotify.v1 v1.4.9 => github.com/fsnotify/fsnotify v1.4.9

go.sum

Lines changed: 158 additions & 749 deletions
Large diffs are not rendered by default.

internal/cmd/binding/bind_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/Peripli/service-manager/pkg/util"
66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"
8-
"gopkg.in/yaml.v2"
8+
"gopkg.in/yaml.v3"
99
"io/ioutil"
1010
"net/http"
1111

internal/cmd/binding/list_bindings_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/Peripli/service-manager-cli/pkg/types"
2626
. "github.com/onsi/ginkgo"
2727
. "github.com/onsi/gomega"
28-
"gopkg.in/yaml.v2"
28+
"gopkg.in/yaml.v3"
2929
)
3030

3131
var _ = Describe("List bindings command test", func() {

internal/cmd/broker/list_brokers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"
8-
"gopkg.in/yaml.v2"
8+
"gopkg.in/yaml.v3"
99

1010
"bytes"
1111

internal/cmd/broker/register_broker_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/Peripli/service-manager/pkg/util"
66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"
8-
"gopkg.in/yaml.v2"
8+
"gopkg.in/yaml.v3"
99
"io/ioutil"
1010
"net/http"
1111

internal/cmd/broker/update_broker_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package broker
33
import (
44
"encoding/json"
55
"errors"
6-
"gopkg.in/yaml.v2"
6+
"gopkg.in/yaml.v3"
77

88
"bytes"
99

internal/cmd/instance/list_instances_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/Peripli/service-manager-cli/pkg/types"
2626
. "github.com/onsi/ginkgo"
2727
. "github.com/onsi/gomega"
28-
"gopkg.in/yaml.v2"
28+
"gopkg.in/yaml.v3"
2929
)
3030

3131
var _ = Describe("List instances command test", func() {

internal/cmd/instance/provision_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/Peripli/service-manager/pkg/util"
66
. "github.com/onsi/ginkgo"
77
. "github.com/onsi/gomega"
8-
"gopkg.in/yaml.v2"
8+
"gopkg.in/yaml.v3"
99
"io/ioutil"
1010
"net/http"
1111

internal/cmd/instance/transfer_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
. "github.com/onsi/ginkgo"
2828
. "github.com/onsi/gomega"
2929
"github.com/spf13/cobra"
30-
"gopkg.in/yaml.v2"
30+
"gopkg.in/yaml.v3"
3131
)
3232

3333
var _ = Describe("Transfer Command test", func() {
@@ -120,7 +120,7 @@ var _ = Describe("Transfer Command test", func() {
120120
Context("when no instance id is provided", func() {
121121
It("should require flag for instance id", func() {
122122
err := invalidTransferCommandExecution("instance-name", "--from", "from_platform", "--to", "to_platform")
123-
Expect(err.Error()).To(Equal(fmt.Sprintf(cmd.FOUND_TOO_MANY_INSTANCES,"instance-name","transfer")))
123+
Expect(err.Error()).To(Equal(fmt.Sprintf(cmd.FOUND_TOO_MANY_INSTANCES, "instance-name", "transfer")))
124124
})
125125
})
126126

@@ -141,7 +141,7 @@ var _ = Describe("Transfer Command test", func() {
141141

142142
It("should fail to transfer", func() {
143143
err := invalidTransferCommandExecution("no-instance", "--from", "from_platform", "--to", "to_platform")
144-
message:=fmt.Sprintf(cmd.NO_INSTANCES_FOUND,"no-instance")
144+
message := fmt.Sprintf(cmd.NO_INSTANCES_FOUND, "no-instance")
145145
Expect(err.Error()).To(Equal(message))
146146
})
147147
})

0 commit comments

Comments
 (0)