* Update schemas/

* Bump change log

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Bernie White 2024-01-18 00:28:32 +10:00 коммит произвёл GitHub
Родитель f403808f4f
Коммит e2d8b150e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -32,6 +32,7 @@ What's changed since v2.9.0:
[#1209](https://github.com/microsoft/PSRule-vscode/pull/1209)
[#1261](https://github.com/microsoft/PSRule-vscode/pull/1261)
[#1314](https://github.com/microsoft/PSRule-vscode/pull/1314)
[#1330](https://github.com/microsoft/PSRule-vscode/pull/1330)
- Bump vscode engine to v1.85.0.
[#1303](https://github.com/microsoft/PSRule-vscode/pull/1303)
- Bump typescript to v5.3.3.

Просмотреть файл

@ -4,15 +4,25 @@
"title": "PSRule lock",
"description": "A schema for the PSRule lock file.",
"properties": {
"version": {
"type": "integer",
"title": "Version",
"description": "The version of the lock file schema.",
"enum": [
1
]
},
"modules": {
"type": "object",
"title": "Modules",
"description": "A list of specific module versions for PSRule to restore.",
"additionalProperties": {
"type": "object",
"properties": {
"version": {
"type": "string",
"title": "Version"
"title": "Module version",
"description": "The version of the module to use."
}
},
"required": [
@ -23,6 +33,7 @@
}
},
"required": [
"version",
"modules"
],
"additionalProperties": false