Skip to content

Commit 3b51904

Browse files
Removed Xray stats changes and moved test to jfrog-cli
1 parent 8c22b05 commit 3b51904

File tree

4 files changed

+355
-383
lines changed

4 files changed

+355
-383
lines changed

go.mod

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ require (
1010
github.com/chzyer/readline v1.5.1
1111
github.com/forPelevin/gomoji v1.3.1
1212
github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1
13-
github.com/golang-jwt/jwt/v4 v4.5.2
1413
github.com/google/uuid v1.6.0
1514
github.com/gookit/color v1.6.0
1615
github.com/jedib0t/go-pretty/v6 v6.6.8
@@ -21,18 +20,22 @@ require (
2120
github.com/magiconair/properties v1.8.10
2221
github.com/manifoldco/promptui v0.9.0
2322
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
23+
github.com/pterm/pterm v0.12.81
2424
github.com/spf13/viper v1.20.1
2525
github.com/stretchr/testify v1.11.1
2626
github.com/urfave/cli v1.22.17
2727
github.com/vbauerster/mpb/v8 v8.10.2
2828
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
29-
golang.org/x/sync v0.15.0
30-
golang.org/x/term v0.32.0
31-
golang.org/x/text v0.26.0
29+
golang.org/x/sync v0.17.0
30+
golang.org/x/term v0.35.0
31+
golang.org/x/text v0.29.0
3232
gopkg.in/yaml.v3 v3.0.1
3333
)
3434

3535
require (
36+
atomicgo.dev/cursor v0.2.0 // indirect
37+
atomicgo.dev/keyboard v0.2.9 // indirect
38+
atomicgo.dev/schedule v0.1.0 // indirect
3639
dario.cat/mergo v1.0.2 // indirect
3740
github.com/BurntSushi/toml v1.5.0 // indirect
3841
github.com/CycloneDX/cyclonedx-go v0.9.2 // indirect
@@ -42,6 +45,7 @@ require (
4245
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
4346
github.com/andybalholm/brotli v1.1.1 // indirect
4447
github.com/cloudflare/circl v1.6.1 // indirect
48+
github.com/containerd/console v1.0.5 // indirect
4549
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
4650
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
4751
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -56,6 +60,7 @@ require (
5660
github.com/go-logr/zapr v1.3.0 // indirect
5761
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
5862
github.com/gogo/protobuf v1.3.2 // indirect
63+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
5964
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
6065
github.com/golang/snappy v0.0.4 // indirect
6166
github.com/google/gofuzz v1.2.0 // indirect
@@ -66,6 +71,7 @@ require (
6671
github.com/klauspost/compress v1.18.0 // indirect
6772
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
6873
github.com/klauspost/pgzip v1.2.6 // indirect
74+
github.com/lithammer/fuzzysearch v1.1.8 // indirect
6975
github.com/mattn/go-colorable v0.1.13 // indirect
7076
github.com/mattn/go-isatty v0.0.17 // indirect
7177
github.com/mattn/go-runewidth v0.0.16 // indirect
@@ -99,7 +105,7 @@ require (
99105
go.uber.org/zap v1.27.0 // indirect
100106
golang.org/x/crypto v0.38.0 // indirect
101107
golang.org/x/net v0.40.0 // indirect
102-
golang.org/x/sys v0.33.0 // indirect
108+
golang.org/x/sys v0.36.0 // indirect
103109
gopkg.in/inf.v0 v0.9.1 // indirect
104110
gopkg.in/warnings.v0 v0.1.2 // indirect
105111
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -113,7 +119,7 @@ require (
113119
sigs.k8s.io/yaml v1.4.0 // indirect
114120
)
115121

116-
replace github.com/jfrog/jfrog-client-go => github.com/naveenku-jfrog/jfrog-client-go v1.54.2-0.20250914195938-7cc50dab62f4
122+
replace github.com/jfrog/jfrog-client-go => github.com/naveenku-jfrog/jfrog-client-go v1.54.2-0.20250915154721-774db72c9f8c
117123

118124
// replace github.com/jfrog/build-info-go => github.com/jfrog/build-info-go v1.8.9-0.20250611113558-c1a092f216fd
119125

0 commit comments

Comments
 (0)