You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,40 @@
2
2
3
3
All notable changes to the **kdb VS Code extension** are documented in this file.
4
4
5
+
# v1.10.0
6
+
7
+
### Enhancements
8
+
9
+
- Display GGPlot for binary data output from q queries, providing a quick way to generate charts inside VSCode, making it easier to identify patterns, trends, and outliers in your data
10
+
- Show stack trace for errors in the kdb Insights Enterprise scratchpad
11
+
- Autocomplete for [Query APIs](https://code.kx.com/insights/1.12/enterprise/analysis/queryapi.html)
12
+
- Add support for Python for KDB+ connections
13
+
- Semantic highlighting for function definitions
14
+
- Improved table headers in the results tab
15
+
- Show query progress for KDB+ connections
16
+
- Added notification for data source refresh
17
+
18
+
### Fixes
19
+
20
+
- Fixed issue with starting local q server when using WSL
21
+
- Fixed double error message when unable to connect to Insights
22
+
- Fixed query errors being written to the 'kdb' output rather than the 'q console output'
23
+
- Fixed issue with editing a connection and moving it into an existing group
24
+
- Ensured 'query is running' notification shows until the results are rendered
25
+
- Fixed unresponsiveness of the extension when displaying large tables with KDB Results
26
+
- Fixed unicode characters not displayed correctly in results table
27
+
28
+
### Internal Improvements
29
+
30
+
- Removed jwtDecode types
31
+
- Changed the output for local q queries for structured text
Copy file name to clipboardExpand all lines: README.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ This guide provides information on the following:
21
21
-[Workbooks](#workbooks)
22
22
-[Query History](#query-history)
23
23
-[Viewing results](#view-results)
24
+
-[AxLibraries](#axlibraries)
24
25
-[q REPL](#q-repl)
25
26
-[Settings](#settings)
26
27
-[Shortcuts](#shortcuts)
@@ -128,8 +129,6 @@ To add connections:
128
129
-[My q](#my-q): This is an unmanaged q session and is a connection to a remote q process.
129
130
-[Insights](#insights-connection): This accesses **kdb Insights Enterprise** API endpoints and a user-specific scratchpad process within a **kdb Insights Enterprise** deployment.
1. Set the properties appropriate to the connection type as described in the following sections.
134
133
135
134
### Bundled q
@@ -143,6 +142,8 @@ When you select **Bundled q** as the connection type and set the following prope
143
142
| Port | Set the port for the kdb server. Ensure the port used doesn't conflict with any other running q process; e.g. 5002. [Read here for more about setting a q port](https://code.kx.com/q/basics/ipc/)|
144
143
| Label Name | Select the label you want to assign the connection to |
The following features of [AxLibraries](https://code.kx.com/developer/libraries/) are integrated and can be used within the extension:
600
+
601
+
-[Grammar of Graphics](#grammar-of-graphics)
602
+
- q static linter
603
+
604
+
**Note:** To use those features, you should install AxLibraries following the [installation instructions.](https://code.kx.com/developer/libraries/#installation)
605
+
606
+
### Grammar of Graphics
607
+
608
+
Grammar of Graphics (GG) is a scripted visualization library for kdb+. For more information refer to the [documentation](https://code.kx.com/developer/ggplot/).
609
+
610
+
When executing GG scripts, calling `.qp.display` displays the plot locally.
0 commit comments