File tree Expand file tree Collapse file tree 4 files changed +24
-7
lines changed
python_packages/jupyter_lsp/jupyter_lsp Expand file tree Collapse file tree 4 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### ` @jupyter-lsp/jupyterlab-lsp 5.1.0 `
4
4
5
- > TBD
5
+ Requires JupyterLab ` >=4.1.0,<5.0.0a0 `
6
6
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 )
8
24
9
- > TBD
25
+ ### ` jupyter-lsp 2.2.3 `
10
26
11
- Requires JupyterLab ` >=4.1.0,<5.0.0a0 `
27
+ - maintenance:
28
+ - updates pyright config schema to v1.1.350
12
29
13
30
### ` @jupyter-lsp/jupyterlab-lsp 5.0.3 `
14
31
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @jupyter-lsp/jupyterlab-lsp" ,
3
- "version" : " 5.0.3 " ,
3
+ "version" : " 5.1.0 " ,
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 1
1
{
2
2
"name" : " @jupyter-lsp/jupyterlab-lsp-metapackage" ,
3
- "version" : " 5.0.3 " ,
3
+ "version" : " 5.1.0 " ,
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" : {
Original file line number Diff line number Diff line change 1
1
""" single source of truth for jupyter_lsp version
2
2
"""
3
3
4
- __version__ = "2.2.2 "
4
+ __version__ = "2.2.3 "
You can’t perform that action at this time.
0 commit comments