Skip to content

Commit 46aaa11

Browse files
committed
deps: bump vscode webview toolkit
1 parent 0253d2f commit 46aaa11

File tree

5 files changed

+61
-43
lines changed

5 files changed

+61
-43
lines changed

.github/workflows/build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: build
2-
32
on:
43
push:
54
branches:

.github/workflows/publish.yml

+1-15
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1+
name: Publish Extension
12
on:
23
push:
34
tags: 'v*'
4-
name: Publish Extension
5-
6-
permissions:
7-
actions: none
8-
checks: none
9-
contents: read
10-
deployments: none
11-
issues: none
12-
packages: none
13-
pull-requests: none
14-
repository-projects: none
15-
security-events: none
16-
statuses: none
175

186
jobs:
197
publish:
@@ -38,9 +26,7 @@ jobs:
3826
path: sqlnotebook-${{ env.RELEASE_VERSION }}.vsix
3927
- name: Publish Extension to Microsoft Marketplace
4028
run: npx vsce publish --packagePath ./sqlnotebook-${{ env.RELEASE_VERSION }}.vsix
41-
shell: nix develop -c bash {0}
4229
env:
4330
VSCE_PAT: ${{ secrets.VSCE_CREDENTIALS }}
4431
- name: Publish to OpenVSX
4532
run: npx ovsx publish ./sqlnotebook-${{ env.RELEASE_VERSION }}.vsix -p ${{ secrets.OPEN_VSX_CREDENTIALS }}
46-
shell: nix develop -c bash {0}

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@
66
- When running on a compatible arch/os, notebooks can now
77
benefit from intelligent autocomplete and hover information
88
when connected to a valid database connection. To enable this unstable
9-
feature, set `SQLNotebook.useLanguageServer: true` in settings.
9+
feature, add the following to your `settings.json`.
10+
11+
```json
12+
{
13+
"SQLNotebook.useLanguageServer": true
14+
}
15+
```
16+
1017
- New configuration option for query timeout in milliseconds. Defaults to 30000.
1118

1219
```json

package-lock.json

+51-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
"webpack-cli": "^4.9.1"
171171
},
172172
"dependencies": {
173-
"@vscode/webview-ui-toolkit": "^0.8.4",
173+
"@vscode/webview-ui-toolkit": "^0.9.3",
174174
"mssql": "^7.2.1",
175175
"mysql2": "^2.3.0",
176176
"pg": "^8.7.1",

0 commit comments

Comments
 (0)