Skip to content

Commit 927a715

Browse files
Fix vulnerability (#1333)
Co-authored-by: cx-Margarita-LevitM <cx-margarita-levitm>
1 parent 24988cf commit 927a715

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ require (
1010
github.com/Checkmarx/manifest-parser v0.1.1
1111
github.com/Checkmarx/secret-detection v1.2.1
1212
github.com/MakeNowJust/heredoc v1.0.0
13+
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74
1314
github.com/bouk/monkey v1.0.0
1415
github.com/checkmarx/2ms/v3 v3.21.0
1516
github.com/gofrs/flock v0.12.1
@@ -19,7 +20,6 @@ require (
1920
github.com/gookit/color v1.5.4
2021
github.com/jcmturner/gokrb5/v8 v8.4.4
2122
github.com/jsumners/go-getport v1.0.0
22-
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74
2323
github.com/mssola/user_agent v0.6.0
2424
github.com/pkg/errors v0.9.1
2525
github.com/spf13/cobra v1.9.1
@@ -37,12 +37,6 @@ require (
3737
)
3838

3939
require (
40-
github.com/hashicorp/go-uuid v1.0.3 // indirect
41-
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
42-
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
43-
github.com/jcmturner/gofork v1.7.6 // indirect
44-
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
45-
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
4640
dario.cat/mergo v1.0.1 // indirect
4741
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
4842
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20240914100643-eb91380d8434 // indirect
@@ -165,11 +159,17 @@ require (
165159
github.com/h2non/filetype v1.1.3 // indirect
166160
github.com/hashicorp/errwrap v1.1.0 // indirect
167161
github.com/hashicorp/go-multierror v1.1.1 // indirect
162+
github.com/hashicorp/go-uuid v1.0.3 // indirect
168163
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
169164
github.com/huandu/xstrings v1.5.0 // indirect
170165
github.com/iancoleman/strcase v0.3.0 // indirect
171166
github.com/inconshreveable/mousetrap v1.1.0 // indirect
172167
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
168+
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
169+
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
170+
github.com/jcmturner/gofork v1.7.6 // indirect
171+
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
172+
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
173173
github.com/jinzhu/copier v0.4.0 // indirect
174174
github.com/jmoiron/sqlx v1.4.0 // indirect
175175
github.com/josharian/intern v1.0.0 // indirect

internal/commands/data/manifests/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ flask==1.1.2
5555

5656
# Range: greater than or equal and less than
5757

58-
Django>=3.0,<4.0
58+
Django>=3.0,<6.0
5959

6060
# Less than or equal
6161

@@ -79,7 +79,7 @@ package\_with\_extras\[security,docs]==0.1.0
7979

8080
# Environment marker (skip on Python>=3.8)
8181

82-
scipy==1.5.2; python\_version < "3.8"
82+
scipy==1.5.2; python_version < "3.8"
8383

8484
# Combined ranges with comma
8585

test/integration/data/manifests/requirements.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ flask==1.1.2
5555

5656
# Range: greater than or equal and less than
5757

58-
Django>=3.0,<4.0
58+
Django>=3.0,<6.0
5959

6060
# Less than or equal
6161

@@ -79,7 +79,7 @@ package\_with\_extras\[security,docs]==0.1.0
7979

8080
# Environment marker (skip on Python>=3.8)
8181

82-
scipy==1.5.2; python\_version < "3.8"
82+
scipy==1.5.2; python_version < "3.8"
8383

8484
# Combined ranges with comma
8585

@@ -90,6 +90,3 @@ celery>=4.0,<5.0
9090
gevent==21.8.0 # pinned to a known-good version
9191

9292
# Full-line comment below should be ignored
93-
94-
95-

0 commit comments

Comments
 (0)