Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* MCP server available; run `winget mcp` for assistance on configuring your client.
* App Installer now uses WinUI 3. The package dependency on WinUI 2 has been replaced by a dependency on the Windows App Runtime 1.8.
* Manifest schema and validation updated to v1.12. This version update adds `Font` as an `InstallerType` and `NestedInstallerType`.
* Added support for up to 64 tags in manifests when using ManifestVersion 1.12+

## Bug Fixes
* Manifest validation no longer fails using `UTF-8 BOM` encoding when the schema header is on the first line
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
"items": {
"$ref": "#/definitions/Tag"
},
"maxItems": 16,
"maxItems": 64,
"uniqueItems": true,
"description": "List of additional package search terms"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
"items": {
"$ref": "#/definitions/Tag"
},
"maxItems": 16,
"maxItems": 64,
"uniqueItems": true,
"description": "List of additional package search terms"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@
"items": {
"$ref": "#/definitions/Tag"
},
"maxItems": 16,
"maxItems": 64,
"uniqueItems": true,
"description": "List of additional package search terms"
},
Expand Down