Skip to content

Commit 76a8b94

Browse files
committed
Publish 2.0.9
SHA256 hashes: jupyter-collaboration-2.0.9.tgz: 3b34688c38bc93c9b3f9b2778a19e90c078ddb02925bf42c4bbe78fec21847eb jupyter-collaboration-extension-2.0.9.tgz: dc0f86741c1ed37165ad57794ec54bc7044b8194f1decccff931f8354a31eef9 jupyter-docprovider-2.0.9.tgz: 6ac74acef5ed51e537c6e58c55d8220178152c7702a612360f526de9588b3021 jupyter_collaboration-2.0.9-py3-none-any.whl: 8e122502e35204ff024bf33686d7afe7f04cfb001b1a1c960dfb07cbc9fc5a1e jupyter_collaboration-2.0.9.tar.gz: 53f1c9c7f8a9d1cd484ac2b7fcfd57ba2b7dba3381ca5d655ac5879279a0692c
1 parent 0682d45 commit 76a8b94

File tree

7 files changed

+38
-15
lines changed

7 files changed

+38
-15
lines changed

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,35 @@ All notable changes to this project will be documented in this file.
44

55
<!-- <START NEW CHANGELOG ENTRY> -->
66

7-
## 2.0.8
7+
## 2.0.9
88

9-
No merged PRs
9+
([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@2.0.8...0682d45797bb0b90c3efdfb9525d485b932ba1d9))
10+
11+
### Enhancements made
12+
13+
- Make user's cursor "tooltip-on-hover" faster and wider [#259](https://github.com/jupyterlab/jupyter-collaboration/pull/259) ([@jzhang20133](https://github.com/jzhang20133))
14+
15+
### Bugs fixed
16+
17+
- Fix slow room opening [#264](https://github.com/jupyterlab/jupyter-collaboration/pull/264) ([@davidbrochart](https://github.com/davidbrochart))
18+
- Use WebSocket \_room_id attribute directly [#266](https://github.com/jupyterlab/jupyter-collaboration/pull/266) ([@davidbrochart](https://github.com/davidbrochart))
19+
20+
### Maintenance and upkeep improvements
21+
22+
- Update Release Scripts [#267](https://github.com/jupyterlab/jupyter-collaboration/pull/267) ([@blink1073](https://github.com/blink1073))
23+
24+
### Contributors to this release
25+
26+
([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-collaboration/graphs/contributors?from=2024-03-28&to=2024-03-28&type=c))
27+
28+
[@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ablink1073+updated%3A2024-03-28..2024-03-28&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Adavidbrochart+updated%3A2024-03-28..2024-03-28&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2024-03-28..2024-03-28&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Awelcome+updated%3A2024-03-28..2024-03-28&type=Issues)
1029

1130
<!-- <END NEW CHANGELOG ENTRY> -->
1231

32+
## 2.0.8
33+
34+
No merged PRs
35+
1336
## 2.0.7
1437

1538
No merged PRs

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.8",
2+
"version": "2.0.9",
33
"npmClient": "yarn",
44
"useWorkspaces": true
55
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jupyter/real-time-collaboration",
33
"private": true,
4-
"version": "2.0.8",
4+
"version": "2.0.9",
55
"description": "JupyterLab Extension enabling Real-Time Collaboration",
66
"keywords": [
77
"jupyter",

packages/collaboration-extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/collaboration-extension",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"description": "JupyterLab - Real-Time Collaboration Extension",
55
"keywords": [
66
"jupyter",
@@ -53,8 +53,8 @@
5353
"watch:labextension": "jupyter labextension watch ."
5454
},
5555
"dependencies": {
56-
"@jupyter/collaboration": "^2.0.8",
57-
"@jupyter/docprovider": "^2.0.8",
56+
"@jupyter/collaboration": "^2.0.9",
57+
"@jupyter/docprovider": "^2.0.9",
5858
"@jupyter/ydoc": "^1.1.0-a0",
5959
"@jupyterlab/application": "^4.0.5",
6060
"@jupyterlab/apputils": "^4.0.5",

packages/collaboration/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/collaboration",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"description": "JupyterLab - Real-Time Collaboration Widgets",
55
"homepage": "https://github.com/jupyterlab/jupyter-collaboration",
66
"bugs": {
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@codemirror/state": "^6.2.0",
4343
"@codemirror/view": "^6.7.0",
44-
"@jupyter/docprovider": "^2.0.8",
44+
"@jupyter/docprovider": "^2.0.9",
4545
"@jupyterlab/apputils": "^4.0.5",
4646
"@jupyterlab/coreutils": "^6.0.5",
4747
"@jupyterlab/services": "^7.0.5",

packages/docprovider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/docprovider",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"description": "JupyterLab - Document Provider",
55
"homepage": "https://github.com/jupyterlab/jupyter-collaboration",
66
"bugs": {

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2033,8 +2033,8 @@ __metadata:
20332033
version: 0.0.0-use.local
20342034
resolution: "@jupyter/collaboration-extension@workspace:packages/collaboration-extension"
20352035
dependencies:
2036-
"@jupyter/collaboration": ^2.0.8
2037-
"@jupyter/docprovider": ^2.0.8
2036+
"@jupyter/collaboration": ^2.0.9
2037+
"@jupyter/docprovider": ^2.0.9
20382038
"@jupyter/ydoc": ^1.1.0-a0
20392039
"@jupyterlab/application": ^4.0.5
20402040
"@jupyterlab/apputils": ^4.0.5
@@ -2063,13 +2063,13 @@ __metadata:
20632063
languageName: unknown
20642064
linkType: soft
20652065

2066-
"@jupyter/collaboration@^2.0.8, @jupyter/collaboration@workspace:packages/collaboration":
2066+
"@jupyter/collaboration@^2.0.9, @jupyter/collaboration@workspace:packages/collaboration":
20672067
version: 0.0.0-use.local
20682068
resolution: "@jupyter/collaboration@workspace:packages/collaboration"
20692069
dependencies:
20702070
"@codemirror/state": ^6.2.0
20712071
"@codemirror/view": ^6.7.0
2072-
"@jupyter/docprovider": ^2.0.8
2072+
"@jupyter/docprovider": ^2.0.9
20732073
"@jupyterlab/apputils": ^4.0.5
20742074
"@jupyterlab/coreutils": ^6.0.5
20752075
"@jupyterlab/services": ^7.0.5
@@ -2086,7 +2086,7 @@ __metadata:
20862086
languageName: unknown
20872087
linkType: soft
20882088

2089-
"@jupyter/docprovider@^2.0.8, @jupyter/docprovider@workspace:packages/docprovider":
2089+
"@jupyter/docprovider@^2.0.9, @jupyter/docprovider@workspace:packages/docprovider":
20902090
version: 0.0.0-use.local
20912091
resolution: "@jupyter/docprovider@workspace:packages/docprovider"
20922092
dependencies:

0 commit comments

Comments
 (0)