File tree Expand file tree Collapse file tree 6 files changed +676
-548
lines changed Expand file tree Collapse file tree 6 files changed +676
-548
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
- ### ` jupyter -lsp 1.6.0 ` (unreleased )
3
+ ### ` @krassowski/jupyterlab -lsp 3.9.3 ` (2021-12-19 )
4
4
5
- - compatibility:
6
- - raises the minimum supported Python to 3.7 as 3.6 reaches its end-of-life ([ #723 ] )
7
- - maintenance and upkeep:
8
- - adds Python 3.10, PyPy 3.7, and R 4.x to the automated tests ([ #723 ] )
5
+ - bug fixes:
6
+ - workaround upstream issue in merging translation ([ #726 ] , thanks @fcollonval )
9
7
10
- [ #768 ] : https://github.com/jupyter-lsp/jupyterlab-lsp/pull/723
8
+ [ #726 ] : https://github.com/jupyter-lsp/jupyterlab-lsp/pull/726
11
9
12
10
### ` @krassowski/jupyterlab-lsp 3.9.2 ` (2021-12-12)
13
11
Original file line number Diff line number Diff line change 13
13
"eslint-plugin-prettier" : " ^3.1.4" ,
14
14
"eslint-plugin-react" : " ^7.21.5" ,
15
15
"husky" : " ^3.0.9" ,
16
- "typescript-language-server" : " ^0.6.4" ,
17
16
"jest-github-actions-reporter" : " ^1.0.2" ,
18
17
"lerna" : " ^3.13.2" ,
19
18
"npm-run-all" : " ^4.1.5" ,
22
21
"pyright" : " ^1.1" ,
23
22
"sql-language-server" : " ^1.1.0" ,
24
23
"typescript" : " ~4.1.3" ,
24
+ "typescript-language-server" : " ^0.6.4" ,
25
25
"unified-language-server" : " ^0.3.0" ,
26
26
"vscode-css-languageserver-bin" : " ^1.4.0" ,
27
27
"vscode-html-languageserver-bin" : " ^1.4.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @krassowski/jupyterlab-lsp" ,
3
- "version" : " 3.9.2 " ,
3
+ "version" : " 3.9.3 " ,
4
4
"description" : " Language Server Protocol integration for JupyterLab" ,
5
5
"keywords" : [
6
6
" jupyter" ,
Original file line number Diff line number Diff line change @@ -844,7 +844,8 @@ export namespace LSPStatus {
844
844
uninitialized . delete ( initialized ) ;
845
845
}
846
846
// servers for n documents did not respond to the initialization request
847
- msg = this . trans . _n (
847
+ msg = this . trans . _np (
848
+ 'pluralized' ,
848
849
'Fully connected, but %2/%3 virtual document stuck uninitialized: %4' ,
849
850
'Fully connected, but %2/%3 virtual documents stuck uninitialized: %4' ,
850
851
status . detected_documents . size ,
@@ -858,7 +859,8 @@ export namespace LSPStatus {
858
859
unconnected . delete ( connected ) ;
859
860
}
860
861
861
- msg = this . trans . _n (
862
+ msg = this . trans . _np (
863
+ 'pluralized' ,
862
864
'%2/%3 virtual document connected (%4 connections; waiting for: %5)' ,
863
865
'%2/%3 virtual documents connected (%4 connections; waiting for: %5)' ,
864
866
status . detected_documents . size ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @krassowski/jupyterlab-lsp-metapackage" ,
3
- "version" : " 3.9.2 " ,
3
+ "version" : " 3.9.3 " ,
4
4
"description" : " JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP" ,
5
5
"homepage" : " https://github.com/jupyter-lsp/jupyterlab-lsp" ,
6
6
"bugs" : {
You can’t perform that action at this time.
0 commit comments