File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 5
5
## 1.17.1 - 23 January 2025
6
6
7
7
- Remove support for CodeQL CLI versions older than 2.18.4. [ #3895 ] ( https://github.com/github/vscode-codeql/pull/3895 )
8
+ - Fix regex in CodeQL TextMate grammar that was silently failing. [ #3903 ] ( https://github.com/github/vscode-codeql/pull/3903 )
8
9
9
10
## 1.17.0 - 20 December 2024
10
11
Original file line number Diff line number Diff line change @@ -1065,7 +1065,7 @@ repository:
1065
1065
beginPattern : ' #as'
1066
1066
# Ends after the first identifier we encounter.
1067
1067
# REVIEW: Make similar to import-as-clause.
1068
- end : ' (?<=(?#id-character)(?#end-of-id) )'
1068
+ end : ' (?<=(?#id-character)) (?#end-of-id)'
1069
1069
match : meta.block.select-as-clause.ql
1070
1070
patterns :
1071
1071
- include : ' #non-context-sensitive'
Original file line number Diff line number Diff line change 675
675
"begin" : " (?x)(?<=/\\ *\\ *)([^*]|\\ *(?!/))*$" ,
676
676
"while" : " (?x)(^|\\ G)\\ s*([^*]|\\ *(?!/))(?=([^*]|[*](?!/))*$)" ,
677
677
"patterns" : [
678
-
679
-
680
-
681
678
{
682
679
"match" : " (?x)\\ G\\ s* (@\\ S+)" ,
683
680
"name" : " keyword.tag.ql"
1469
1466
}
1470
1467
},
1471
1468
"select-as-clause" : {
1472
- "end" : " (?x)(?<=(?:[0-9A-Za-z_])(?:(?!(?:[0-9A-Za-z_]) )))" ,
1469
+ "end" : " (?x)(?<=(?:[0-9A-Za-z_])) (?:(?!(?:[0-9A-Za-z_])))" ,
1473
1470
"match" : " (?x)meta.block.select-as-clause.ql" ,
1474
1471
"patterns" : [
1475
1472
{
1540
1537
"name" : " constant.character.escape.ql"
1541
1538
}
1542
1539
}
1543
- }
1540
+ }
You can’t perform that action at this time.
0 commit comments