Skip to content

Commit 4a1bc75

Browse files
committed
Add changelog entry and update versions
1 parent 1a80997 commit 4a1bc75

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,30 @@
22

33
### `@jupyter-lsp/jupyterlab-lsp 5.1.0`
44

5-
> TBD
5+
Requires JupyterLab `>=4.1.0,<5.0.0a0`
66

7-
### `jupyter-lsp 2.2.2`
7+
- new features:
8+
- populate table of contents with code symbols outline (experimental, file editor only)
9+
- bug fixes:
10+
- fix settings reconciliation for nested properties (#1051)
11+
- fix a regression introduced in v5.0.2 which meant that overrides for native kernel and context completion providers were never active (#1057)
12+
- reduces some warnings in places known to have false positives to debug statements (#1057)
13+
- highlights no longer get instantly removed when navigating to a beginning of cell from another cell (#1057)
14+
- with the use of the new `extensionFactory` API (#1057):
15+
- LSP features work more reliably as the correct virtual document and editor is known rather than found from heuristics
16+
- LSP CodeMirror extensions are not added to editors which do not have an LSP-enabled editor reducing spurious warnings and improving performance
17+
- LSP CodeMirror extensions are only added once the LSP server was connected
18+
- maintenance:
19+
- use new `extensionFactory` API allowing to remove workarounds that were needed to make the extension work in JupyterLab 4.0 (#1057)
20+
- remove no-longer needed patches for `VirtualDocument` as these were merged upstream and released in JupyterLab 4.1 (#1057)
21+
- update coverage, robot version and reporting approaches (#1052)
22+
- build against JupyterLab 4.1, fix tests (#1057)
23+
- bump ip from 2.0.0 to 2.0.1 (#1055)
824

9-
> TBD
25+
### `jupyter-lsp 2.2.3`
1026

11-
Requires JupyterLab `>=4.1.0,<5.0.0a0`
27+
- maintenance:
28+
- updates pyright config schema to v1.1.350
1229

1330
### `@jupyter-lsp/jupyterlab-lsp 5.0.3`
1431

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": "@jupyter-lsp/jupyterlab-lsp",
3-
"version": "5.0.3",
3+
"version": "5.1.0",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",

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": "@jupyter-lsp/jupyterlab-lsp-metapackage",
3-
"version": "5.0.3",
3+
"version": "5.1.0",
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": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
""" single source of truth for jupyter_lsp version
22
"""
33

4-
__version__ = "2.2.2"
4+
__version__ = "2.2.3"

0 commit comments

Comments
 (0)