diff --git a/CHANGELOG.md b/CHANGELOG.md index 09eb4eea50..2e353472ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ - **bucket:** Skip manifest validation if no manifest changes ([#5270](https://github.com/ScoopInstaller/Scoop/issues/5270)) +### Builds + +- **schema:** 'autoupdate' 'url' can now be any string ([#5296](https://github.com/ScoopInstaller/Scoop/issues/5296)) + ## [v0.3.1](https://github.com/ScoopInstaller/Scoop/compare/v0.3.0...v0.3.1) - 2022-11-15 ### Features diff --git a/schema.json b/schema.json index 239218cc23..40e32933cb 100644 --- a/schema.json +++ b/schema.json @@ -210,7 +210,7 @@ "$ref": "#/definitions/shortcutsArray" }, "url": { - "$ref": "#/definitions/autoupdateUriOrArrayOfAutoupdateUris" + "$ref": "#/definitions/stringOrArrayOfStrings" } } }, @@ -279,7 +279,7 @@ "$ref": "#/definitions/shortcutsArray" }, "url": { - "$ref": "#/definitions/autoupdateUriOrArrayOfAutoupdateUris" + "$ref": "#/definitions/stringOrArrayOfStrings" } } }, @@ -457,23 +457,6 @@ } ] }, - "autoupdateUriOrArrayOfAutoupdateUris": { - "anyOf": [ - { - "format": "uri", - "type": "string" - }, - { - "items": { - "format": "uri", - "type": "string" - }, - "minItems": 1, - "type": "array", - "uniqueItems": true - } - ] - }, "licenseIdentifiers": { "type": "string", "description": "License identifier based on SPDX License List https://spdx.org/licenses/",