Skip to content

Commit 606a33b

Browse files
fix: depandabot version upgrade (#4792)
* dependabot version upgrade * dependabot version upgrade * code refactored * code refactored * code refactored * code refactored * code refactored * code refactored * argo assets deletion reverted
1 parent 0b45f25 commit 606a33b

File tree

694 files changed

+59243
-21385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

694 files changed

+59243
-21385
lines changed

api/restHandler/ExternalCiRestHandler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package restHandler
1919

2020
import (
2121
"encoding/json"
22-
"github.com/devtron-labs/devtron/pkg/workflow/dag"
2322
util3 "github.com/devtron-labs/devtron/api/util"
23+
"github.com/devtron-labs/devtron/pkg/workflow/dag"
2424
"net/http"
2525
"strconv"
2626

go.mod

Lines changed: 29 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
github.com/Pallinder/go-randomdata v1.2.0
7-
github.com/argoproj/argo-cd/v2 v2.6.15
7+
github.com/argoproj/argo-cd/v2 v2.8.13
88
github.com/argoproj/argo-workflows/v3 v3.4.3
99
github.com/argoproj/gitops-engine v0.7.1-0.20231013183858-f15cf615b814
1010
github.com/aws/aws-sdk-go v1.44.290
@@ -16,9 +16,9 @@ require (
1616
github.com/coreos/go-oidc v2.2.1+incompatible
1717
github.com/davecgh/go-spew v1.1.1
1818
github.com/deckarep/golang-set v1.8.0
19-
github.com/devtron-labs/authenticator v0.4.35-0.20240216091211-80e10a80ce7b
20-
github.com/devtron-labs/common-lib v0.0.16-0.20240320102218-5807b1301538
21-
github.com/devtron-labs/protos v0.0.3-0.20240130061723-7b2e12ab0abb
19+
github.com/devtron-labs/authenticator v0.4.35-0.20240321064236-a95dc8d0403f
20+
github.com/devtron-labs/common-lib v0.0.16-0.20240326053557-bff4518a731d
21+
github.com/devtron-labs/protos v0.0.3-0.20240326053929-48e42d9d4534
2222
github.com/evanphx/json-patch v5.6.0+incompatible
2323
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
2424
github.com/go-git/go-billy/v5 v5.5.0
@@ -28,7 +28,7 @@ require (
2828
github.com/gogo/protobuf v1.3.2
2929
github.com/golang-jwt/jwt/v4 v4.5.0
3030
github.com/golang/mock v1.6.0
31-
github.com/golang/protobuf v1.5.3
31+
github.com/golang/protobuf v1.5.4
3232
github.com/google/go-cmp v0.6.0
3333
github.com/google/go-github v17.0.0+incompatible
3434
github.com/google/uuid v1.3.1
@@ -42,20 +42,20 @@ require (
4242
github.com/hashicorp/hcl2 v0.0.0-20191002203319-fb75b3253c80
4343
github.com/invopop/jsonschema v0.7.0
4444
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f
45-
github.com/ktrysmt/go-bitbucket v0.9.55
45+
github.com/ktrysmt/go-bitbucket v0.9.60
4646
github.com/lib/pq v1.10.4
4747
github.com/microsoft/azure-devops-go-api/azuredevops v1.0.0-b5
4848
github.com/otiai10/copy v1.0.2
4949
github.com/patrickmn/go-cache v2.1.0+incompatible
5050
github.com/pkg/errors v0.9.1
5151
github.com/posthog/posthog-go v0.0.0-20210610161230-cd4408afb35a
52-
github.com/prometheus/client_golang v1.14.0
52+
github.com/prometheus/client_golang v1.16.0
5353
github.com/robfig/cron/v3 v3.0.1
5454
github.com/satori/go.uuid v1.2.0
5555
github.com/stretchr/testify v1.8.4
5656
github.com/tidwall/gjson v1.14.3
5757
github.com/tidwall/sjson v1.2.4
58-
github.com/xanzy/go-gitlab v0.60.0
58+
github.com/xanzy/go-gitlab v0.86.0
5959
github.com/xeipuuv/gojsonschema v1.2.0
6060
github.com/yannh/kubeconform v0.5.0
6161
github.com/zclconf/go-cty v1.13.2
@@ -71,7 +71,7 @@ require (
7171
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63
7272
golang.org/x/oauth2 v0.11.0
7373
google.golang.org/grpc v1.59.0
74-
google.golang.org/protobuf v1.31.0
74+
google.golang.org/protobuf v1.33.0
7575
gopkg.in/go-playground/validator.v9 v9.30.0
7676
gopkg.in/igm/sockjs-go.v3 v3.0.0
7777
gopkg.in/yaml.v2 v2.4.0
@@ -107,24 +107,25 @@ require (
107107
github.com/MakeNowJust/heredoc v1.0.0 // indirect
108108
github.com/Masterminds/goutils v1.1.1 // indirect
109109
github.com/Masterminds/semver v1.5.0 // indirect
110-
github.com/Masterminds/semver/v3 v3.2.0 // indirect
110+
github.com/Masterminds/semver/v3 v3.2.1 // indirect
111111
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
112112
github.com/Microsoft/go-winio v0.6.1 // indirect
113113
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
114114
github.com/agext/levenshtein v1.2.1 // indirect
115-
github.com/antonmedv/expr v1.9.0 // indirect
115+
github.com/antonmedv/expr v1.12.5 // indirect
116116
github.com/apparentlymart/go-textseg v1.0.0 // indirect
117117
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
118118
github.com/argoproj/pkg v0.13.7-0.20230627120311-a4dd357b057e // indirect
119119
github.com/aws/smithy-go v1.14.2 // indirect
120120
github.com/beorn7/perks v1.0.1 // indirect
121121
github.com/blang/semver/v4 v4.0.0 // indirect
122+
github.com/bmatcuk/doublestar/v4 v4.6.0 // indirect
122123
github.com/bombsimon/logrusr/v2 v2.0.1 // indirect
123-
github.com/bradleyfalzon/ghinstallation/v2 v2.1.0 // indirect
124+
github.com/bradleyfalzon/ghinstallation/v2 v2.5.0 // indirect
124125
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
125126
github.com/cespare/xxhash/v2 v2.2.0 // indirect
126127
github.com/chai2010/gettext-go v1.0.2 // indirect
127-
github.com/cloudflare/circl v1.3.3 // indirect
128+
github.com/cloudflare/circl v1.3.7 // indirect
128129
github.com/colinmarc/hdfs v1.1.4-0.20180805212432-9746310a4d31 // indirect
129130
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
130131
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
@@ -136,7 +137,7 @@ require (
136137
github.com/fatih/camelcase v1.0.0 // indirect
137138
github.com/felixge/httpsnoop v1.0.4 // indirect
138139
github.com/fvbommel/sortorder v1.0.1 // indirect
139-
github.com/go-errors/errors v1.0.1 // indirect
140+
github.com/go-errors/errors v1.4.2 // indirect
140141
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
141142
github.com/go-logr/logr v1.3.0 // indirect
142143
github.com/go-logr/stdr v1.2.2 // indirect
@@ -145,15 +146,14 @@ require (
145146
github.com/go-openapi/swag v0.22.3 // indirect
146147
github.com/go-playground/locales v0.14.0 // indirect
147148
github.com/go-playground/universal-translator v0.18.0 // indirect
148-
github.com/go-redis/cache/v8 v8.4.2 // indirect
149-
github.com/go-redis/redis/v8 v8.11.5 // indirect
149+
github.com/go-redis/cache/v9 v9.0.0 // indirect
150150
github.com/go-sql-driver/mysql v1.6.0 // indirect
151151
github.com/go-xorm/xorm v0.7.9 // indirect
152152
github.com/gobwas/glob v0.2.3 // indirect
153153
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
154-
github.com/google/btree v1.0.1 // indirect
155-
github.com/google/gnostic v0.5.7-v3refs // indirect
156-
github.com/google/go-github/v45 v45.2.0 // indirect
154+
github.com/google/btree v1.1.2 // indirect
155+
github.com/google/gnostic v0.6.9 // indirect
156+
github.com/google/go-github/v53 v53.0.0 // indirect
157157
github.com/google/go-querystring v1.1.0 // indirect
158158
github.com/google/gofuzz v1.2.0 // indirect
159159
github.com/google/s2a-go v0.1.4 // indirect
@@ -163,16 +163,16 @@ require (
163163
github.com/gorilla/securecookie v1.1.1 // indirect
164164
github.com/gorilla/websocket v1.5.0 // indirect
165165
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
166-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
166+
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
167167
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
168168
github.com/hashicorp/errwrap v1.0.0 // indirect
169169
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
170-
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
170+
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect
171171
github.com/hashicorp/go-uuid v1.0.2 // indirect
172172
github.com/huandu/xstrings v1.3.3 // indirect
173173
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
174174
github.com/igm/sockjs-go v3.0.0+incompatible // indirect
175-
github.com/imdario/mergo v0.3.13 // indirect
175+
github.com/imdario/mergo v0.3.16 // indirect
176176
github.com/inconshreveable/mousetrap v1.1.0 // indirect
177177
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
178178
github.com/jcmturner/gofork v1.0.0 // indirect
@@ -208,13 +208,15 @@ require (
208208
github.com/nats-io/nuid v1.0.1 // indirect
209209
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect
210210
github.com/opencontainers/go-digest v1.0.0 // indirect
211+
github.com/opencontainers/image-spec v1.1.0-rc.3 // indirect
211212
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
212213
github.com/pjbgf/sha1cd v0.3.0 // indirect
213214
github.com/pmezard/go-difflib v1.0.0 // indirect
214215
github.com/pquerna/cachecontrol v0.1.0 // indirect
215216
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect
216-
github.com/prometheus/common v0.38.0 // indirect
217+
github.com/prometheus/common v0.42.0 // indirect
217218
github.com/prometheus/procfs v0.11.1 // indirect
219+
github.com/redis/go-redis/v9 v9.0.5 // indirect
218220
github.com/russross/blackfriday/v2 v2.1.0 // indirect
219221
github.com/sergi/go-diff v1.1.0 // indirect
220222
github.com/shopspring/decimal v1.2.0 // indirect
@@ -228,7 +230,7 @@ require (
228230
github.com/tidwall/pretty v1.2.0 // indirect
229231
github.com/valyala/bytebufferpool v1.0.0 // indirect
230232
github.com/valyala/fasttemplate v1.2.2 // indirect
231-
github.com/vmihailenco/go-tinylfu v0.2.1 // indirect
233+
github.com/vmihailenco/go-tinylfu v0.2.2 // indirect
232234
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
233235
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
234236
github.com/xanzy/ssh-agent v0.3.3 // indirect
@@ -240,13 +242,13 @@ require (
240242
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect
241243
go.opentelemetry.io/otel/metric v1.20.0 // indirect
242244
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
243-
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
245+
go.starlark.net v0.0.0-20220328144851-d1966c6b9fcd // indirect
244246
go.uber.org/atomic v1.10.0 // indirect
245247
go.uber.org/multierr v1.11.0 // indirect
246248
golang.org/x/mod v0.12.0 // indirect
247249
golang.org/x/net v0.19.0 // indirect
248250
golang.org/x/sync v0.3.0 // indirect
249-
golang.org/x/sys v0.15.0 // indirect
251+
golang.org/x/sys v0.18.0 // indirect
250252
golang.org/x/term v0.15.0 // indirect
251253
golang.org/x/text v0.14.0 // indirect
252254
golang.org/x/time v0.3.0 // indirect
@@ -276,6 +278,7 @@ require (
276278
k8s.io/kube-aggregator v0.26.4 // indirect
277279
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
278280
mellium.im/sasl v0.3.1 // indirect
281+
oras.land/oras-go/v2 v2.2.0 // indirect
279282
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
280283
sigs.k8s.io/kustomize/api v0.12.1 // indirect
281284
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect

0 commit comments

Comments
 (0)