File tree Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- features
6
6
7
- - The virtual document folder can be configure with ` JP_LSP_VIRTUAL_DIR ` or
7
+ - The virtual document folder can be configured with ` JP_LSP_VIRTUAL_DIR ` or
8
8
` LanguageServerManager.virtual_documents_dir ` . Its default value is kept
9
9
unchanged: _ contents.root_dir_ / ` .virtual_documents ` ([ #416 ] )
10
10
19
19
20
20
[ #403 ] : https://github.com/krassowski/jupyterlab-lsp/issues/403
21
21
22
- ### ` @krassowski/jupyterlab_go_to_definition 2 .0.0 ` (???)
22
+ ### ` @krassowski/code-jumpers 1 .0.0 ` (???)
23
23
24
- - features
25
-
26
- - breaking change: renames ` uri ` to ` contents_path ` to help avoid programmer issues
24
+ - breaking change: split away from ` @krassowski/go_to_definition ` , rename to ` @krassowski/code-jumpers ` ([ #423 ] ):
25
+ - remove unused code
26
+ - refactor history operations to track files and always use global location data
27
+ - renames ` uri ` to ` contents_path ` to help avoid programmer issues
27
28
with characters requiring URI encoding ([ #406 ] )
28
29
29
30
[ #406 ] : https://github.com/krassowski/jupyterlab-lsp/pull/406
31
+ [ #423 ] : https://github.com/krassowski/jupyterlab-lsp/pull/423
30
32
31
33
### ` @krassowski/jupyterlab-lsp 2.0.8 ` (2020-10-25)
32
34
Original file line number Diff line number Diff line change 38
38
"private" : true ,
39
39
"scripts" : {
40
40
"bootstrap" : " jlpm --no-optional --prefer-offline && lerna bootstrap && jlpm lint && jlpm clean && jlpm build" ,
41
- "build" : " jlpm build:schema && jlpm build:completion-theme && jlpm build:theme-material && jlpm build:theme-vscode && jlpm build:meta && jlpm build:ws && jlpm build:jump " ,
41
+ "build" : " jlpm build:schema && jlpm build:completion-theme && jlpm build:theme-material && jlpm build:theme-vscode && jlpm build:jump && jlpm build:meta && jlpm build:ws " ,
42
42
"build:schema" : " lerna run build:schema --stream" ,
43
43
"build:meta" : " lerna run build --stream --scope @krassowski/jupyterlab-lsp-metapackage" ,
44
44
"build:completion-theme" : " lerna run build --stream --scope @krassowski/completion-theme" ,
Original file line number Diff line number Diff line change 1
- import '@krassowski/jupyterlab_go_to_definition ' ;
1
+ import '@krassowski/code-jumpers ' ;
2
2
import '@krassowski/jupyterlab-lsp' ;
3
3
import '@krassowski/completion-theme' ;
4
4
import '@krassowski/theme-material' ;
Original file line number Diff line number Diff line change 56
56
JS_LSP_NAME = "{}/jupyterlab-lsp" .format (NPM_NS )
57
57
JS_LSP_VERSION = PACKAGES [JS_LSP_NAME ][1 ]["version" ]
58
58
59
- JS_G2D_NAME = "{}/jupyterlab_go_to_definition " .format (NPM_NS )
60
- JS_G2D_VERSION = PACKAGES [JS_G2D_NAME ][1 ]["version" ]
59
+ JS_CJS_NAME = "{}/code-jumpers " .format (NPM_NS )
60
+ JS_CJS_VERSION = PACKAGES [JS_CJS_NAME ][1 ]["version" ]
61
61
62
62
# py stuff
63
63
PY_NAME = "jupyter-lsp"
@@ -117,7 +117,7 @@ def the_installation_notebook():
117
117
[
118
118
["PY_JLSP_VERSION" , PY_VERSION ],
119
119
["JS_JLLSP_VERSION" , JS_LSP_VERSION ],
120
- ["JS_JLG2D_VERSION" , JS_G2D_VERSION ],
120
+ ["JS_JLG2D_VERSION" , JS_CJS_VERSION ],
121
121
],
122
122
)
123
123
def test_ci_variables (name , version ):
@@ -179,7 +179,7 @@ def test_jlab_versions(path):
179
179
[
180
180
[PY_NAME , PY_VERSION ],
181
181
[JS_LSP_NAME , JS_LSP_VERSION ],
182
- [JS_G2D_NAME , JS_G2D_VERSION ],
182
+ [JS_CJS_NAME , JS_CJS_VERSION ],
183
183
],
184
184
)
185
185
def test_changelog_versions (pkg , version ):
You can’t perform that action at this time.
0 commit comments