mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-19 10:42:43 -08:00
Compare commits
2 Commits
release/v0
...
v0.56.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
95dbf1152b | ||
|
|
5dbdadfe45 |
@@ -1 +1 @@
|
||||
{".":"0.56.0"}
|
||||
{".":"0.56.1"}
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## [0.56.1](https://github.com/aquasecurity/trivy/compare/v0.56.0...v0.56.1) (2024-10-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **db:** fix javadb downloading error handling [backport: release/v0.56] ([#7646](https://github.com/aquasecurity/trivy/issues/7646)) ([5dbdadf](https://github.com/aquasecurity/trivy/commit/5dbdadfe4578288d5c3f2a5b625fff4a3580f8c5))
|
||||
|
||||
## [0.56.0](https://github.com/aquasecurity/trivy/compare/v0.55.0...v0.56.0) (2024-10-03)
|
||||
|
||||
|
||||
|
||||
@@ -104,10 +104,10 @@ func (u *Updater) downloadDB(ctx context.Context) error {
|
||||
Quiet: u.quiet,
|
||||
}
|
||||
if err := artifacts.Download(ctx, u.dbDir, downloadOpt); err != nil {
|
||||
return xerrors.Errorf("failed to download vulnerability DB: %w", err)
|
||||
return xerrors.Errorf("failed to download Java DB: %w", err)
|
||||
}
|
||||
|
||||
return xerrors.New("failed to download Java DB from any source")
|
||||
return nil
|
||||
}
|
||||
|
||||
func Init(cacheDir string, javaDBRepositories []name.Reference, skip, quiet bool, registryOption ftypes.RegistryOptions) {
|
||||
|
||||
Reference in New Issue
Block a user