feat: remove full-text before release (#3889)

Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
This commit is contained in:
Christopher Angelo Phillips 2025-05-14 09:12:05 -04:00 committed by GitHub
parent e5d7760bb8
commit 3c7018a853
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 3054 additions and 10 deletions

View File

@ -3,5 +3,5 @@ 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.0.31"
JSONSchemaVersion = "16.0.32"
)

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "anchore.io/schema/syft/json/16.0.31/document",
"$id": "anchore.io/schema/syft/json/16.0.32/document",
"$ref": "#/$defs/Document",
"$defs": {
"AlpmDbEntry": {
@ -1448,9 +1448,6 @@
"value": {
"type": "string"
},
"fullText": {
"type": "string"
},
"spdxExpression": {
"type": "string"
},
@ -1476,7 +1473,6 @@
"type": "object",
"required": [
"value",
"fullText",
"spdxExpression",
"type",
"urls",

View File

@ -47,7 +47,6 @@ type licenses []License
type License struct {
Value string `json:"value"`
FullText string `json:"fullText"`
SPDXExpression string `json:"spdxExpression"`
Type license.Type `json:"type"`
URLs []string `json:"urls"`

View File

@ -15,7 +15,6 @@
"licenses": [
{
"value": "MIT",
"fullText": "",
"spdxExpression": "MIT",
"type": "declared",
"urls": [],

View File

@ -15,7 +15,6 @@
"licenses": [
{
"value": "MIT",
"fullText": "",
"spdxExpression": "MIT",
"type": "declared",
"urls": [],

View File

@ -16,7 +16,6 @@
"licenses": [
{
"value": "MIT",
"fullText": "",
"spdxExpression": "MIT",
"type": "declared",
"urls": [],