mirror of
https://github.com/anchore/syft.git
synced 2026-07-05 02:28:25 +02:00
* added macOS .app cataloger, fixed #4010 Signed-off-by: Rez Moss <hi@rezmoss.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * added macOS .app cataloger, fixed #4010 Signed-off-by: Rez Moss <hi@rezmoss.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * added macOS .app cataloger, fixed #4010 Signed-off-by: Rez Moss <hi@rezmoss.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address review comments Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * bump schema to 16.1.7 Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address static analysis failures Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * migrate to testdata Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * expand fields and improve test coverage Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Rez Moss <hi@rezmoss.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
19 lines
921 B
Go
19 lines
921 B
Go
package internal
|
|
|
|
const (
|
|
// JSONSchemaVersion is the current schema version output by the JSON encoder
|
|
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
|
|
JSONSchemaVersion = "16.1.7"
|
|
|
|
// Changelog
|
|
// 16.1.0 - reformulated the python pdm fields (added "URL" and removed the unused "path" field).
|
|
// 16.1.1 - correct elf package osCpe field according to the document of systemd (also add appCpe field)
|
|
// 16.1.2 - placeholder for 16.1.2 changelog
|
|
// 16.1.3 - add GGUFFileParts to GGUFFileHeader metadata
|
|
// 16.1.4 - add BunLockEntry metadata type for bun.lock support
|
|
// 16.1.5 - add DenoLockEntry and DenoRemoteLockEntry metadata types for deno.lock support
|
|
// 16.1.6 - add Dependencies to ElixirMixLockEntry metadata
|
|
// 16.1.7 - add AppleAppBundleEntry metadata type for the apple app bundle cataloger
|
|
|
|
)
|