Skip to content

v0.24.0

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Sep 14:24
· 109 commits to main since this release
4d0c345

Highlights

File System Scanning

It's now possible to analyse and compare file system, in addition to images.

For instance to get a quick overview of the source code from the current folder

  • docker scout quickview --type fs .

scout_fs_qv

It's also possible to compare a local (non image) version to the same software embedded in an image.

  • docker scout compare --type fs . --to namespace/repository:tag

For instance if you are building a Go service and you only want to see what has changed:

  • docker scout compare --type fs . --to my/service:latest --only-package-type GoLang --ignore-unchanged

scout_fs_cmp

What's Changed

  • Add support for scanning fs by @cdupuis
  • fix: do not ask for an app name when recording to an environment by @eunomie
  • Package namespace displayed in addition to the name by @eunomie
  • improve help message if no configuration available by @eunomie