File tree 5 files changed +54
-19
lines changed
5 files changed +54
-19
lines changed Original file line number Diff line number Diff line change 3
3
## [ UNRELEASED]
4
4
5
5
- Add new supported source and sink kinds in the CodeQL Model Editor [ #3511 ] ( https://github.com/github/vscode-codeql/pull/3511 )
6
+ - Fix a bug where the test explorer wouldn't display certain tests. [ #3527 ] ( https://github.com/github/vscode-codeql/pull/3527 )
6
7
7
8
## 1.12.4 - 20 March 2024
8
9
Original file line number Diff line number Diff line change 67
67
"$ref" : " #/definitions/SuiteInstruction"
68
68
}
69
69
},
70
+ {
71
+ "$ref" : " #/definitions/SuiteInstruction"
72
+ },
70
73
{
71
74
"type" : " null"
72
75
}
93
96
"include" : {
94
97
"type" : " object" ,
95
98
"additionalProperties" : {
96
- "type" : " array" ,
97
- "items" : {
98
- "type" : " string"
99
- }
99
+ "anyOf" : [
100
+ {
101
+ "type" : " array" ,
102
+ "items" : {
103
+ "type" : " string"
104
+ }
105
+ },
106
+ {
107
+ "type" : " string"
108
+ }
109
+ ]
100
110
}
101
111
},
102
112
"exclude" : {
103
113
"type" : " object" ,
104
114
"additionalProperties" : {
105
- "type" : " array" ,
106
- "items" : {
107
- "type" : " string"
108
- }
115
+ "anyOf" : [
116
+ {
117
+ "type" : " array" ,
118
+ "items" : {
119
+ "type" : " string"
120
+ }
121
+ },
122
+ {
123
+ "type" : " string"
124
+ }
125
+ ]
109
126
}
110
127
},
111
128
"description" : {
Original file line number Diff line number Diff line change 51
51
"$ref" : " #/definitions/SuiteInstruction"
52
52
}
53
53
},
54
+ {
55
+ "$ref" : " #/definitions/SuiteInstruction"
56
+ },
54
57
{
55
58
"type" : " null"
56
59
}
93
96
"include" : {
94
97
"type" : " object" ,
95
98
"additionalProperties" : {
96
- "type" : " array" ,
97
- "items" : {
98
- "type" : " string"
99
- }
99
+ "anyOf" : [
100
+ {
101
+ "type" : " array" ,
102
+ "items" : {
103
+ "type" : " string"
104
+ }
105
+ },
106
+ {
107
+ "type" : " string"
108
+ }
109
+ ]
100
110
}
101
111
},
102
112
"exclude" : {
103
113
"type" : " object" ,
104
114
"additionalProperties" : {
105
- "type" : " array" ,
106
- "items" : {
107
- "type" : " string"
108
- }
115
+ "anyOf" : [
116
+ {
117
+ "type" : " array" ,
118
+ "items" : {
119
+ "type" : " string"
120
+ }
121
+ },
122
+ {
123
+ "type" : " string"
124
+ }
125
+ ]
109
126
}
110
127
},
111
128
"description" : {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export interface QlPackFile {
10
10
extensionTargets ?: Record < string , string > | null ;
11
11
dbscheme ?: string | null ;
12
12
library ?: boolean | null ;
13
- defaultSuite ?: SuiteInstruction [ ] | null ;
13
+ defaultSuite ?: SuiteInstruction [ ] | SuiteInstruction | null ;
14
14
defaultSuiteFile ?: string | null ;
15
15
dataExtensions ?: string [ ] | string | null ;
16
16
}
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ export interface SuiteInstruction {
5
5
qlpack ?: string ;
6
6
query ?: string ;
7
7
queries ?: string ;
8
- include ?: Record < string , string [ ] > ;
9
- exclude ?: Record < string , string [ ] > ;
8
+ include ?: Record < string , string [ ] | string > ;
9
+ exclude ?: Record < string , string [ ] | string > ;
10
10
description ?: string ;
11
11
import ?: string ;
12
12
from ?: string ;
You can’t perform that action at this time.
0 commit comments