shati-patel
df16d1ab1d
Results view: Don't reopen webview if it's already visible
2022-01-06 19:34:29 +00:00
Dominik Bamberger
b661b2be97
Update Docs ping in issue template ( #1061 )
...
* Update Docs ping in issue template
* Update .github/pull_request_template.md
Co-authored-by: Aditya Sharad <6874315+adityasharad@users.noreply.github.com>
Co-authored-by: Aditya Sharad <6874315+adityasharad@users.noreply.github.com>
2021-12-22 08:59:25 -08:00
Andrew Eisenberg
2d39bee416
Ensure all tests are run
2021-12-17 13:22:20 -08:00
Andrew Eisenberg
56eeb1badb
Delete output folder before building
2021-12-17 13:09:02 -08:00
shati-patel
d547f81a55
Bump version to v1.5.10
2021-12-17 15:36:16 +00:00
Charis Kyriakou
e1b35cdbbc
Fix CSS file paths
2021-12-17 15:14:08 +00:00
shati-patel
c01704b8aa
v1.5.9
2021-12-17 12:04:27 +00:00
shati-patel
5a19042fc8
Update changelog
2021-12-16 17:58:55 +00:00
shati-patel
bdf8c0b9c2
Add setting to enable/disable Quick Eval codelens
2021-12-16 17:58:55 +00:00
Shati Patel
bc08cbe74f
Tidy up and add test for getting query metadata ( #1050 )
...
* Move/rename query metadata function
* Add test for `tryGetQueryMetadata`
* Split into two tests
2021-12-15 20:11:59 +00:00
Andrew Eisenberg
6e2e72a500
Be nicer about where to open the results webview ( #1037 )
...
* Be nicer about where to open the results webview
Currently, the webview _always_ opens next to the currently active
editor. This is a pain if you already have 2 columns open since this
means that the webview will open in a third column, which is rarely
what you want.
This change uses a more sophisticated approach to opening the webview:
1. If there is only one column, open webview to the right of it
2. If there are multiple columns and the active editor is _not_ the
last column, open to the right of the active editor
3. Otherwise open in the first column.
This will avoid opening a new column unless there is only one column
open right now.
There is no native API that vscode exposed to compare column locations,
so this uses the `ViewColumn` api is a slightly non-standard way.
A limitation is that if the last column is empty and the active editor
is to the left of it, then the webview will not be opened there (which
would be nice). Instead, it will be opened in column 1.
Co-authored-by: Shati Patel <42641846+shati-patel@users.noreply.github.com>
2021-12-15 19:33:53 +00:00
shati-patel
d0953fb63c
Remote queries: Get query name from metadata (if possible)
2021-12-15 11:00:41 +00:00
Charis Kyriakou
4dbd15c66d
Remote queries: No results view ( #1048 )
2021-12-15 08:55:00 +00:00
Charis Kyriakou
e9e41e07d1
Implement download behaviour in remote queries view ( #1046 )
2021-12-15 08:34:34 +00:00
Andrew Eisenberg
b435df4682
Fix type in comment
...
Co-authored-by: Shati Patel <42641846+shati-patel@users.noreply.github.com>
2021-12-14 09:39:43 -08:00
Andrew Eisenberg
a3bf9f1c71
Handle different dependencies in remote queries tests
...
Starting in CLI 2.7.5, there will no longer be any
`codeql/javascript-upgrades` pack. Change the test so that it passes
using both old and new packs.
2021-12-14 09:39:43 -08:00
shati-patel
72ff828b57
Style link text + tidy up functions
2021-12-14 12:13:20 +00:00
shati-patel
b7f86ae7a9
Display query text in "virtual" (readonly) file
2021-12-14 12:13:20 +00:00
shati-patel
3c73390a44
Save query text in a temporary file
2021-12-14 12:13:20 +00:00
shati-patel
7117faa92b
Rename properties and handle missing files
2021-12-14 12:13:20 +00:00
shati-patel
4257555c88
Remote queries: Open query file/text from webview
2021-12-14 12:13:20 +00:00
Angela P Wen
33b1465ccc
Docs: add clarification on directory for running tests via CLI
2021-12-10 12:29:15 -08:00
Andrew Eisenberg
c8ed8b2591
Add code lens for quick evaluation ( #1035 )
...
* Add code lens for quick eval command
* Ensure commented out predicates do not have code lens
* Improve conditional check for commented out predicate detection
* Refactor regex
* Move comment check to eliminate evaluating regex more than once
Co-authored-by: marcnjaramillo <mnj.webdeveloper@gmail.com>
2021-12-10 19:17:21 +00:00
Andrew Eisenberg
58f4a82616
Update changelog
2021-12-10 07:50:08 -08:00
Andrew Eisenberg
d5f0a659af
Avoid showing the alert option in the drop down
...
Only show it when there really is an alert table to see.
2021-12-10 07:50:08 -08:00
Charis Kyriakou
60c977bff9
Move GitHub actions code to separate module ( #1044 )
2021-12-10 13:59:20 +00:00
Andrew Eisenberg
73f1beac6a
Bump cli version for integration tests
2021-12-09 13:50:41 -08:00
Charis Kyriakou
6195c6552f
Made the repo list in the remote query view expandable ( #1039 )
2021-12-09 10:38:18 +00:00
Charis Kyriakou
e365744dbc
Monitor remote query run and render results ( #1033 )
2021-12-09 10:05:51 +00:00
Andrew Eisenberg
68f566dd1a
Pass `--old-eval-stats` to query server
...
This is in preparation of supporting structured query logs.
When passing this option, use the old format of query logs.
Later, when we want to add support for structured query
logs, we can add remove this option.
2021-12-07 07:53:58 -08:00
Charis Kyriakou
bf350779c9
Merge pull request #1032 from github/remote-query-submission-result
...
Expose remote query submission result
2021-12-06 09:28:14 +00:00
Charis Kyriakou
07329c9ea5
Expose remote query submission result
2021-12-03 16:16:48 +00:00
Shati Patel
7e6483490a
Merge remote queries webview outline into main ( #1027 )
2021-12-03 10:48:54 +00:00
shati-patel
749565828d
Bump version to v1.5.9
2021-12-02 14:27:37 +00:00
shati-patel
ff751cc877
v1.5.8
2021-12-02 11:26:36 +00:00
Robin Neatherway
d7ba941803
Merge pull request #1009 from github/aeisenberg/remote-nested-queries
...
Remote queries: Handle nested queries
2021-12-01 19:24:10 +00:00
Andrew Eisenberg
e58201e24b
Ensure server uses a well-known query pack name
2021-12-01 10:53:51 -08:00
Henry Mercer
81e60286f2
Require canary for loading models from packs
2021-12-01 09:40:06 +00:00
Henry Mercer
8e156d69d7
Apply suggestions from code review
...
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com>
2021-12-01 09:40:06 +00:00
Henry Mercer
dfcaa27235
Update lockfile
2021-12-01 09:40:06 +00:00
Henry Mercer
ed0553c6b6
Gate loading ML models behind a hidden setting
2021-12-01 09:40:06 +00:00
Henry Mercer
84ecbfc7a1
Resolve ML models and pass them to the queryserver
2021-12-01 09:40:06 +00:00
Andrew Eisenberg
e13349ceb0
Update changelog
2021-11-29 11:16:49 -08:00
Andrew Eisenberg
a1bcb7519f
Ensure src.zip is prioritized over src folder
...
Fixes a bug where legacy databases with both unzipped and zipped sources
were incorrectly being loaded with the src folder.
2021-11-29 11:16:49 -08:00
Andrew Eisenberg
b481441052
Emit more relevant error message when failing to add source folder ( #1021 )
...
* Emit more relevant error message when failing to add source folder
Fixes #1020
* Update changelog
* Clarify changelog and error message
Co-authored-by: Shati Patel <42641846+shati-patel@users.noreply.github.com>
Co-authored-by: Shati Patel <42641846+shati-patel@users.noreply.github.com>
2021-11-29 16:28:07 +00:00
github-actions[bot]
6a1d1a492e
Bump version to v1.5.8 ( #1017 )
...
Co-authored-by: aeisenberg <aeisenberg@users.noreply.github.com>
2021-11-23 21:13:41 +00:00
Andrew Eisenberg
1dcd9c495c
Prepare for the 1.5.7 release ( #1016 )
2021-11-23 12:52:40 -08:00
Andrew Eisenberg
a9b9502dbd
Fix failing tests on windows
...
1. Acknowledge that the CLI has a bug for path serialization on <=2.7.2.
Avoid testing the query path on that version.
2. Fix calculation of root path on windows.
2021-11-22 12:53:52 -08:00
Andrew Eisenberg
16c0bea799
Merge pull request #1004 from marcnjaramillo/fix-large-sarif-handling
...
Fix large sarif handling
2021-11-22 12:24:17 -08:00
marcnjaramillo
ad81127267
Move test files into data directory
2021-11-22 11:49:40 -08:00