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 55## 1.17.1 - 23 January 2025
66
77- 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 )
89
910## 1.17.0 - 20 December 2024
1011
Original file line number Diff line number Diff line change @@ -1065,7 +1065,7 @@ repository:
10651065 beginPattern : ' #as'
10661066 # Ends after the first identifier we encounter.
10671067 # REVIEW: Make similar to import-as-clause.
1068- end : ' (?<=(?#id-character)(?#end-of-id) )'
1068+ end : ' (?<=(?#id-character)) (?#end-of-id)'
10691069 match : meta.block.select-as-clause.ql
10701070 patterns :
10711071 - include : ' #non-context-sensitive'
Original file line number Diff line number Diff line change 675675 "begin" : " (?x)(?<=/\\ *\\ *)([^*]|\\ *(?!/))*$" ,
676676 "while" : " (?x)(^|\\ G)\\ s*([^*]|\\ *(?!/))(?=([^*]|[*](?!/))*$)" ,
677677 "patterns" : [
678-
679-
680-
681678 {
682679 "match" : " (?x)\\ G\\ s* (@\\ S+)" ,
683680 "name" : " keyword.tag.ql"
14691466 }
14701467 },
14711468 "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_])))" ,
14731470 "match" : " (?x)meta.block.select-as-clause.ql" ,
14741471 "patterns" : [
14751472 {
15401537 "name" : " constant.character.escape.ql"
15411538 }
15421539 }
1543- }
1540+ }
You can’t perform that action at this time.
0 commit comments