Skip to content

Commit 03f5715

Browse files
Updates to schema (#1062)
* Update schemas/ * Bump change log --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 65d59f0 commit 03f5715

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ Continue reading to see the changes included in the latest version.
3030
What's changed since v2.7.0:
3131

3232
- Engineering:
33+
- Updated PSRule schema files.
34+
[#1060](https://github.com/microsoft/PSRule-vscode/pull/1060)
35+
[#1062](https://github.com/microsoft/PSRule-vscode/pull/1062)
3336
- Bump vscode engine to v1.76.0.
3437
[#1036](https://github.com/microsoft/PSRule-vscode/pull/1036)
3538
- Bump mocha to v10.2.0.

schemas/PSRule-language.schema.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,6 +1546,13 @@
15461546
"markdownDescription": "Must match the regular expression. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Expressions/#match)",
15471547
"default": ""
15481548
},
1549+
"caseSensitive": {
1550+
"type": "boolean",
1551+
"title": "Case sensitive",
1552+
"description": "Determines if the regular expression uses case-sensitive matching.",
1553+
"markdownDescription": "Determines if the regular expression uses case-sensitive matching. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Expressions/#match)",
1554+
"default": false
1555+
},
15491556
"field": {
15501557
"$ref": "#/definitions/expressions/definitions/properties/definitions/field"
15511558
},
@@ -1584,6 +1591,13 @@
15841591
"markdownDescription": "Must not match the regular expression. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Expressions/#notmatch)",
15851592
"default": ""
15861593
},
1594+
"caseSensitive": {
1595+
"type": "boolean",
1596+
"title": "Case sensitive",
1597+
"description": "Determines if the regular expression uses case-sensitive matching.",
1598+
"markdownDescription": "Determines if the regular expression uses case-sensitive matching. [See help](https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Expressions/#notmatch)",
1599+
"default": false
1600+
},
15871601
"field": {
15881602
"$ref": "#/definitions/expressions/definitions/properties/definitions/field"
15891603
},

0 commit comments

Comments
 (0)