Skip to content

Commit 42280db

Browse files
Merge pull request #5480 from snyk/release-candidate
Release candidate
2 parents b50372a + a9c5f6a commit 42280db

File tree

12 files changed

+251
-167
lines changed

12 files changed

+251
-167
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ __outputs__
2828
/ts-binary-wrapper/README.md
2929
/ts-binary-wrapper/SECURITY.md
3030
/ts-binary-wrapper/src/generated
31+
/ts-binary-wrapper/node_modules
3132

3233
# Diagnostic reports (https://nodejs.org/api/report.html)
3334
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

binary-releases/RELEASE_NOTES.md

+2-26
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,7 @@
1-
## [1.1293.0](https://github.com/snyk/snyk/compare/v1.1292.3...v1.1293.0) (2024-08-16)
1+
## [1.1293.1](https://github.com/snyk/snyk/compare/v1.1293.0...v1.1293.1) (2024-09-10)
22

33
The Snyk CLI is being deployed to different deployment channels, users can select the stability level according to their needs. For details please see [this documentation](https://docs.snyk.io/snyk-cli/releases-and-channels-for-the-snyk-cli)
44

55
### News
66

7-
- Starting with this version, Snyk cli binaries will be distributed via `downloads.snyk.io` instead of `static.snyk.io`. This includes intallation from `npm`, `homebrew` and `scoop` as well as many of the CI/CD integrations.
8-
9-
### Features
10-
11-
- **sbom:** add support for license issues in sbom test ([6948668](https://github.com/snyk/snyk/commit/6948668d57523c2e7fd76ff363cf2d1625b6f0f3))
12-
- **auth:** Use OAuth2 as default authentication mechanism ([35949c4](https://github.com/snyk/snyk/commit/35949c4acdd3bcbd510a6ac076523f21366b91c2))
13-
**config:** Introduce config environment command ([0d8dd2b](https://github.com/snyk/snyk/commit/0d8dd2b04278e38fe5fd335ec3023f753c944988))
14-
- **container:** When docker is not installed, platform parameter is now supported ([64b405d](https://github.com/snyk/snyk/commit/64b405d02733fb2423798f4cfbff19fa04110c2d))
15-
16-
### Bug Fixes
17-
18-
- **auth:** align auth failure error messages for oauth ([e3bfec3](https://github.com/snyk/snyk/commit/e3bfec354e56499a2266a45804d0a93d17f46bce))
19-
- **auth:** ensure environment variable precedence for auth tokens ([24417d6](https://github.com/snyk/snyk/commit/24417d6e7c7661c1a288a1f01502af17fdb54e64))
20-
- **test:** fix a bug related to multi-project .NET folder structures ([755a38f](https://github.com/snyk/snyk/commit/755a38fc6b5c7b4f7631fced9e8f0fd8ed391819))
21-
- **test:** multiple pnpm workspace improvements ([da5c14f](https://github.com/snyk/snyk/commit/da5c14fc344f17c7ac8c0969f2e0cb24ba59b6cd))
22-
- **test:** fixes a bug regarding Snyk attempting to get the dependencies from the wrong nuget \*.deps.json file.([2e17434](https://github.com/snyk/snyk/commit/2e17434de99d342ea7dcedf5ba5bd250aae85eb3))
23-
- **test:** support for pipenv with python 3.12 ([09df3bc](https://github.com/snyk/snyk/commit/09df3bc7dbcb184a56021ead7703732fa66ea273))
24-
- **test:** support multi-part comparison for python pip versions. ([b625eb9](https://github.com/snyk/snyk/commit/b625eb90410d69047ef87b65cc0289f9360251fe))
25-
- **container:** container monitor with --json now outputs valid json([039c9bd](https://github.com/snyk/snyk/commit/039c9bd13efa9397a8e442e80206bfabcc529125))
26-
- **container:** support hashing large .jar files ([6f82231](https://github.com/snyk/snyk/commit/6f822317209e8b60bb07bf073bdcb9c78f402eb8))
27-
- **sbom:** fix issues in JSON output of `sbom test` command, include CWE values on `CWE` property ([#5331](https://github.com/snyk/snyk/issues/5331)) ([99773c3](https://github.com/snyk/snyk/commit/99773c3eac6c41c61c9da7fc0f1b991e5298dc37))
28-
- **sbom:** include all detected dep-graphs of a container image ([ea43977](https://github.com/snyk/snyk/commit/ea439770e88093d1a99d88957f48ea63ea82b09a))
29-
- **iac:** fixed an issue where the resource path was missing for certain Terraform resources. [IAC-3015](<[0b5823a](https://github.com/snyk/snyk/commit/0b5823ae2673bfbec7a055c881e8055eeb8c01ee)>)
30-
- **general:** map previously unhandled exit codes to exit code 2 ([9fde4fe](https://github.com/snyk/snyk/commit/9fde4fec680f2ae0650baf6b1cfed5908984e9ef))
31-
- **general:** use entitlements when signing bundled macos binaries ([bebc59c](https://github.com/snyk/snyk/commit/bebc59cbfbd20aef2e8531845579f2d78c5b07ca))
7+
- Starting with this version, Snyk cli binaries will be distributed via `downloads.snyk.io` instead of `static.snyk.io`. This includes intallation from `npm`.

cliv2/go.mod

+28-27
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ require (
2727
)
2828

2929
require (
30-
cloud.google.com/go v0.112.0 // indirect
31-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
32-
cloud.google.com/go/iam v1.1.6 // indirect
33-
cloud.google.com/go/storage v1.36.0 // indirect
30+
cloud.google.com/go v0.115.1 // indirect
31+
cloud.google.com/go/auth v0.9.1 // indirect
32+
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
33+
cloud.google.com/go/compute/metadata v0.5.0 // indirect
34+
cloud.google.com/go/iam v1.2.0 // indirect
35+
cloud.google.com/go/storage v1.43.0 // indirect
3436
dario.cat/mergo v1.0.1 // indirect
3537
github.com/Microsoft/go-winio v0.6.2 // indirect
3638
github.com/OneOfOne/xxhash v1.2.8 // indirect
@@ -45,7 +47,7 @@ require (
4547
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
4648
github.com/apparentlymart/go-versions v1.0.1 // indirect
4749
github.com/atotto/clipboard v0.1.4 // indirect
48-
github.com/aws/aws-sdk-go v1.45.6 // indirect
50+
github.com/aws/aws-sdk-go v1.55.5 // indirect
4951
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
5052
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
5153
github.com/bmatcuk/doublestar v1.3.4 // indirect
@@ -75,29 +77,28 @@ require (
7577
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
7678
github.com/go-git/go-billy/v5 v5.5.0 // indirect
7779
github.com/go-git/go-git/v5 v5.12.0 // indirect
78-
github.com/go-logr/logr v1.4.1 // indirect
80+
github.com/go-logr/logr v1.4.2 // indirect
7981
github.com/go-logr/stdr v1.2.2 // indirect
8082
github.com/go-ole/go-ole v1.3.0 // indirect
8183
github.com/go-openapi/jsonpointer v0.21.0 // indirect
8284
github.com/go-openapi/swag v0.23.0 // indirect
8385
github.com/gobwas/glob v0.2.3 // indirect
8486
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
85-
github.com/golang/protobuf v1.5.4 // indirect
8687
github.com/gomarkdown/markdown v0.0.0-20240730141124-034f12af3bf6 // indirect
8788
github.com/google/go-cmp v0.6.0 // indirect
8889
github.com/google/go-querystring v1.1.0 // indirect
89-
github.com/google/s2a-go v0.1.7 // indirect
90-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
91-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
90+
github.com/google/s2a-go v0.1.8 // indirect
91+
github.com/googleapis/enterprise-certificate-proxy v0.3.3 // indirect
92+
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
9293
github.com/hashicorp/errwrap v1.1.0 // indirect
9394
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
94-
github.com/hashicorp/go-getter v1.7.4 // indirect
95+
github.com/hashicorp/go-getter v1.7.5 // indirect
9596
github.com/hashicorp/go-hclog v1.5.0 // indirect
9697
github.com/hashicorp/go-multierror v1.1.1 // indirect
9798
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
9899
github.com/hashicorp/go-safetemp v1.0.0 // indirect
99100
github.com/hashicorp/go-uuid v1.0.3 // indirect
100-
github.com/hashicorp/go-version v1.6.0 // indirect
101+
github.com/hashicorp/go-version v1.7.0 // indirect
101102
github.com/hashicorp/hcl v1.0.0 // indirect
102103
github.com/hashicorp/hcl/v2 v2.16.0 // indirect
103104
github.com/hashicorp/logutils v1.0.0 // indirect
@@ -116,7 +117,7 @@ require (
116117
github.com/jmespath/go-jmespath v0.4.0 // indirect
117118
github.com/josharian/intern v1.0.0 // indirect
118119
github.com/kevinburke/ssh_config v1.2.0 // indirect
119-
github.com/klauspost/compress v1.17.7 // indirect
120+
github.com/klauspost/compress v1.17.9 // indirect
120121
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
121122
github.com/magiconair/properties v1.8.7 // indirect
122123
github.com/mailru/easyjson v0.7.7 // indirect
@@ -167,7 +168,7 @@ require (
167168
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
168169
github.com/tklauser/go-sysconf v0.3.14 // indirect
169170
github.com/tklauser/numcpus v0.8.0 // indirect
170-
github.com/ulikunitz/xz v0.5.11 // indirect
171+
github.com/ulikunitz/xz v0.5.12 // indirect
171172
github.com/vincent-petithory/dataurl v1.0.0 // indirect
172173
github.com/xanzy/ssh-agent v0.3.3 // indirect
173174
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
@@ -180,29 +181,29 @@ require (
180181
github.com/zclconf/go-cty-yaml v1.0.2 // indirect
181182
go.lsp.dev/uri v0.3.0 // indirect
182183
go.opencensus.io v0.24.0 // indirect
183-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
184-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
185-
go.opentelemetry.io/otel v1.22.0 // indirect
186-
go.opentelemetry.io/otel/metric v1.22.0 // indirect
187-
go.opentelemetry.io/otel/trace v1.22.0 // indirect
184+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
185+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
186+
go.opentelemetry.io/otel v1.29.0 // indirect
187+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
188+
go.opentelemetry.io/otel/trace v1.29.0 // indirect
188189
go.uber.org/multierr v1.11.0 // indirect
189190
golang.org/x/crypto v0.26.0 // indirect
190191
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
191192
golang.org/x/mod v0.20.0 // indirect
192193
golang.org/x/net v0.28.0 // indirect
193194
golang.org/x/oauth2 v0.22.0 // indirect
194195
golang.org/x/sync v0.8.0 // indirect
195-
golang.org/x/sys v0.23.0 // indirect
196+
golang.org/x/sys v0.24.0 // indirect
196197
golang.org/x/term v0.23.0 // indirect
197198
golang.org/x/text v0.17.0 // indirect
198-
golang.org/x/time v0.5.0 // indirect
199+
golang.org/x/time v0.6.0 // indirect
199200
golang.org/x/tools v0.24.0 // indirect
200-
google.golang.org/api v0.160.0 // indirect
201-
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
202-
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
203-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
204-
google.golang.org/grpc v1.63.2 // indirect
205-
google.golang.org/protobuf v1.33.0 // indirect
201+
google.golang.org/api v0.195.0 // indirect
202+
google.golang.org/genproto v0.0.0-20240827150818-7e3bb234dfed // indirect
203+
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
204+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
205+
google.golang.org/grpc v1.66.0 // indirect
206+
google.golang.org/protobuf v1.34.2 // indirect
206207
gopkg.in/ini.v1 v1.67.0 // indirect
207208
gopkg.in/warnings.v0 v0.1.2 // indirect
208209
gopkg.in/yaml.v2 v2.4.0 // indirect

0 commit comments

Comments
 (0)