Skip to content

Commit e326ed6

Browse files
committed
merge upstream
2 parents c78c2fe + 5f5054c commit e326ed6

File tree

6 files changed

+676
-548
lines changed

6 files changed

+676
-548
lines changed

CHANGELOG.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
## Changelog
22

3-
### `jupyter-lsp 1.6.0` (unreleased)
3+
### `@krassowski/jupyterlab-lsp 3.9.3` (2021-12-19)
44

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)
97

10-
[#768]: https://github.com/jupyter-lsp/jupyterlab-lsp/pull/723
8+
[#726]: https://github.com/jupyter-lsp/jupyterlab-lsp/pull/726
119

1210
### `@krassowski/jupyterlab-lsp 3.9.2` (2021-12-12)
1311

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"eslint-plugin-prettier": "^3.1.4",
1414
"eslint-plugin-react": "^7.21.5",
1515
"husky": "^3.0.9",
16-
"typescript-language-server": "^0.6.4",
1716
"jest-github-actions-reporter": "^1.0.2",
1817
"lerna": "^3.13.2",
1918
"npm-run-all": "^4.1.5",
@@ -22,6 +21,7 @@
2221
"pyright": "^1.1",
2322
"sql-language-server": "^1.1.0",
2423
"typescript": "~4.1.3",
24+
"typescript-language-server": "^0.6.4",
2525
"unified-language-server": "^0.3.0",
2626
"vscode-css-languageserver-bin": "^1.4.0",
2727
"vscode-html-languageserver-bin": "^1.4.0",

packages/jupyterlab-lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp",
3-
"version": "3.9.2",
3+
"version": "3.9.3",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",

packages/jupyterlab-lsp/src/components/statusbar.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,8 @@ export namespace LSPStatus {
844844
uninitialized.delete(initialized);
845845
}
846846
// servers for n documents did not respond to the initialization request
847-
msg = this.trans._n(
847+
msg = this.trans._np(
848+
'pluralized',
848849
'Fully connected, but %2/%3 virtual document stuck uninitialized: %4',
849850
'Fully connected, but %2/%3 virtual documents stuck uninitialized: %4',
850851
status.detected_documents.size,
@@ -858,7 +859,8 @@ export namespace LSPStatus {
858859
unconnected.delete(connected);
859860
}
860861

861-
msg = this.trans._n(
862+
msg = this.trans._np(
863+
'pluralized',
862864
'%2/%3 virtual document connected (%4 connections; waiting for: %5)',
863865
'%2/%3 virtual documents connected (%4 connections; waiting for: %5)',
864866
status.detected_documents.size,

packages/metapackage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp-metapackage",
3-
"version": "3.9.2",
3+
"version": "3.9.3",
44
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
55
"homepage": "https://github.com/jupyter-lsp/jupyterlab-lsp",
66
"bugs": {

0 commit comments

Comments
 (0)