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 ( const (
// JSONSchemaVersion is the current schema version output by the JSON encoder // 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. // 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", "$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", "$ref": "#/$defs/Document",
"$defs": { "$defs": {
"AlpmDbEntry": { "AlpmDbEntry": {
@ -1448,9 +1448,6 @@
"value": { "value": {
"type": "string" "type": "string"
}, },
"fullText": {
"type": "string"
},
"spdxExpression": { "spdxExpression": {
"type": "string" "type": "string"
}, },
@ -1476,7 +1473,6 @@
"type": "object", "type": "object",
"required": [ "required": [
"value", "value",
"fullText",
"spdxExpression", "spdxExpression",
"type", "type",
"urls", "urls",

View File

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

View File

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

View File

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

View File

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