Skip to content

Commit 73ee344

Browse files
authored
Update changelog and bump versions (#1028)
1 parent 7c36fb2 commit 73ee344

File tree

6 files changed

+32
-7
lines changed

6 files changed

+32
-7
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
## Changelog
22

3+
### `@jupyter-lsp/jupyterlab-lsp 5.0.1`
4+
5+
- bug fixes:
6+
- fix false “undefined name” in `%%time` and `%%capture` magics #1007 (thanks @i-aki-y!)
7+
- fix completion items for paths and other long items being cut off #1025
8+
- workaround issue with markdown lost on edit #1016
9+
- fix latex/Greek letters insertion and other completions which do not match prefix (do not pre-filter completions from kernel) #1022
10+
- fix completions in Console #1023
11+
- fix customising `priority` after pre-setting it with `overrides.json` #1027
12+
- fix jump to definitions in a file inside root in Pyright on Windows #1024
13+
- fix typos in setting title and help message #999 and #1010
14+
- maintenance:
15+
- fix bootstrap script #1021
16+
- bump axios from 1.2.1 to 1.6.2 #1019
17+
- bump @babel/traverse from 7.22.5 to 7.23.4 #1020
18+
19+
### `jupyter-lsp 2.2.1`
20+
21+
- bug fixes:
22+
- use `APIHandler` over `JupyterHandler` to get CORS OPTIONS #952 (thanks @zhanba!)
23+
- use `shutil.which` to discover `npm` executable on Windows (thanks @jameshurst!)
24+
- maintenance:
25+
- resolve traitlets type warnings, lint, remove six #1015
26+
- use `sys.executable` in stdio tests #998
27+
328
### `@jupyter-lsp/jupyterlab-lsp 5.0.0`
429

530
- enhancements:

packages/completion-theme/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/completion-theme",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Completion theme manager for JupyterLab-LSP",
55
"keywords": [
66
"jupyter",

packages/jupyterlab-lsp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-lsp/jupyterlab-lsp",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",
@@ -61,7 +61,7 @@
6161
},
6262
"dependencies": {
6363
"@jupyter-lsp/code-jumpers": "~2.0.0",
64-
"@jupyter-lsp/completion-theme": "~4.0.0",
64+
"@jupyter-lsp/completion-theme": "~4.0.1",
6565
"@jupyter-lsp/theme-material": "~3.0.0",
6666
"@jupyter-lsp/theme-vscode": "~3.0.0",
6767
"@jupyterlab/lsp": "^4.0.6",

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.0",
3+
"version": "5.0.1",
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,3 +1,3 @@
11
""" single source of truth for jupyter_lsp version
22
"""
3-
__version__ = "2.2.0"
3+
__version__ = "2.2.1"

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2223,7 +2223,7 @@ __metadata:
22232223
languageName: unknown
22242224
linkType: soft
22252225

2226-
"@jupyter-lsp/completion-theme@^4.0.0-rc.0, @jupyter-lsp/completion-theme@workspace:*, @jupyter-lsp/completion-theme@workspace:packages/completion-theme, @jupyter-lsp/completion-theme@~4.0.0":
2226+
"@jupyter-lsp/completion-theme@^4.0.0-rc.0, @jupyter-lsp/completion-theme@workspace:*, @jupyter-lsp/completion-theme@workspace:packages/completion-theme, @jupyter-lsp/completion-theme@~4.0.1":
22272227
version: 0.0.0-use.local
22282228
resolution: "@jupyter-lsp/completion-theme@workspace:packages/completion-theme"
22292229
dependencies:
@@ -2281,7 +2281,7 @@ __metadata:
22812281
dependencies:
22822282
"@codemirror/lint": ^6.4.0
22832283
"@jupyter-lsp/code-jumpers": ~2.0.0
2284-
"@jupyter-lsp/completion-theme": ~4.0.0
2284+
"@jupyter-lsp/completion-theme": ~4.0.1
22852285
"@jupyter-lsp/theme-material": ~3.0.0
22862286
"@jupyter-lsp/theme-vscode": ~3.0.0
22872287
"@jupyter-notebook/application": ^7.0.3

0 commit comments

Comments
 (0)