Skip to content

Commit 48f3bcc

Browse files
authored
Merge pull request #21301 from dvdksn/scout-1.15.0
scout: scout-cli v1.15.0
2 parents 66d0b99 + d466672 commit 48f3bcc

File tree

7 files changed

+53
-13
lines changed

7 files changed

+53
-13
lines changed

_vendor/github.com/docker/scout-cli/docs/docker_scout_sbom.yaml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/scout-cli/docs/scout_cves.md

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/github.com/docker/scout-cli/docs/scout_sbom.md

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# github.com/docker/buildx v0.18.0
44
# github.com/docker/cli v27.3.2-0.20241008150905-cb3048fbebb1+incompatible
55
# github.com/docker/compose/v2 v2.30.1
6-
# github.com/docker/scout-cli v1.13.0
6+
# github.com/docker/scout-cli v1.15.0

content/manuals/scout/release-notes/cli.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,43 @@ This page contains information about the new features, improvements, known
99
issues, and bug fixes in the Docker Scout [CLI plugin](https://github.com/docker/scout-cli/)
1010
and the `docker/scout-action` [GitHub Action](https://github.com/docker/scout-action).
1111

12+
## 1.15.0
13+
14+
{{< release-date date="2024-10-31" >}}
15+
16+
### New
17+
18+
- New `--format=cyclonedx` flag for the `docker scout sbom` to output the SBOM in CycloneDX format.
19+
20+
### Enhancements
21+
22+
- Use high-to-low sort order for CVE summary.
23+
- Support for enabling and disabling repositories that enabled by `docker scout push` or `docker scout watch`.
24+
25+
### Bug fixes
26+
27+
- Improve messaging when analyzing `oci` directories without attestations.
28+
Only single-platform images and multi-platform image _with attestations_ are supported.
29+
Multi-platform images without attestations are not supported.
30+
- Improve classifiers and SBOM indexer:
31+
- Add classifier for Liquibase `lpm`.
32+
- Add Rakudo Star/MoarVM binary classifier.
33+
- Add binary classifiers for silverpeas utilities.
34+
- Improve reading and caching of attestations with the containerd image store.
35+
36+
## 1.14.0
37+
38+
{{< release-date date="2024-09-24" >}}
39+
40+
### New
41+
42+
- Add suppression information at the CVE level in the `docker scout cves` command.
43+
44+
### Bug fixes
45+
46+
- Fix listing CVEs for dangling images, for example: `local://sha256:...`
47+
- Fix panic when analysing a file system input, for instance with `docker scout cves fs://.`
48+
1249
## 1.13.0
1350

1451
{{< release-date date="2024-08-05" >}}

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/docker/buildx v0.18.0 // indirect
77
github.com/docker/cli v27.3.2-0.20241008150905-cb3048fbebb1+incompatible // indirect
88
github.com/docker/compose/v2 v2.30.1 // indirect
9-
github.com/docker/scout-cli v1.13.0 // indirect
9+
github.com/docker/scout-cli v1.15.0 // indirect
1010
github.com/moby/buildkit v0.17.0 // indirect
1111
github.com/moby/moby v27.3.1+incompatible // indirect
1212
)
@@ -15,7 +15,7 @@ replace (
1515
github.com/docker/buildx => github.com/docker/buildx v0.18.0
1616
github.com/docker/cli => github.com/docker/cli v27.3.1+incompatible
1717
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.30.1
18-
github.com/docker/scout-cli => github.com/docker/scout-cli v1.13.0
18+
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
1919
github.com/moby/buildkit => github.com/moby/buildkit v0.17.0
2020
github.com/moby/moby => github.com/moby/moby v27.3.1+incompatible
2121
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,8 @@ github.com/docker/scout-cli v1.12.0 h1:NhmT4BzL2lYiIk5hPFvK5FzQ8izbLDL3/Rugcyulv
228228
github.com/docker/scout-cli v1.12.0/go.mod h1:Eo1RyCJsx3ldz/YTY5yGxu9g9mwTYbRUutxQUkow3Fc=
229229
github.com/docker/scout-cli v1.13.0 h1:RThUM56yooV5izqgMEYQS+a6Yx+vGmZofJwX0qjgkco=
230230
github.com/docker/scout-cli v1.13.0/go.mod h1:Eo1RyCJsx3ldz/YTY5yGxu9g9mwTYbRUutxQUkow3Fc=
231+
github.com/docker/scout-cli v1.15.0 h1:VhA9niVftEyZ9f5KGwKnrSfQOp2X3uIU3VbE/gTVMTM=
232+
github.com/docker/scout-cli v1.15.0/go.mod h1:Eo1RyCJsx3ldz/YTY5yGxu9g9mwTYbRUutxQUkow3Fc=
231233
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM=
232234
github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
233235
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=

0 commit comments

Comments
 (0)