mirror of
https://github.com/anchore/syft.git
synced 2026-07-05 10:38:33 +02:00
* origin/main: (21 commits) added macOS .app cataloger (#4490) fix: composite action version parsing (#4616) fixed dotnet cataloger can't find packages from deps.json in linux el… (#4517) fix(template): expose sprig date/time functions in Go templates (#4644) Add support for MIT and Heimdal Kerberos 5 library detection (#4781) fix: correct typos and update examples README (#4703) ruby/gemspec: resolve simple #{s.name}/#{s.version} interpolation (#4782) feat(elixir): emit dependency relationships from mix.lock (#4985) fix: add .bpl file extension support to PE/DLL cataloger (closes #4664) (#4688) chore(deps): update anchore dependencies (#4960) Update go-make to v0.8.0 (#5010) fixes the wrapped taskfile-tasks (#5013) fix(purl-backfill): respect arch qualifier (#4987) feat: deno cataloger #4417 (#4523) chore(deps): bump golang.org/x/tools from 0.45.0 to 0.46.0 (#5008) chore(deps): bump golang.org/x/net from 0.55.0 to 0.56.0 (#5004) chore(deps): bump golang.org/x/mod from 0.36.0 to 0.37.0 (#5007) chore(deps): bump github.com/jedib0t/go-pretty/v6 from 6.7.10 to 6.8.1 (#5006) refactor release pipeline: TAG_TOKEN, skip-checks gate, dependabot/zizmor cleanup (#5003) feat: support envoy bin classifier ... Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
20 lines
1012 B
Go
20 lines
1012 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.8"
|
|
|
|
// 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
|
|
// 16.1.8 - add SafeTensorsModelInfo metadata type for the safetensors AI model cataloger
|
|
|
|
)
|