diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa35612..1d65fdc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file. +## 3.0.0alpha2 + +([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@3.0.0-alpha.1...5b166c49d76ed5a009ae7f5dc8c4bf9a881913b0)) + +### Enhancements made + +- Start ystore in a task [#303](https://github.com/jupyterlab/jupyter-collaboration/pull/303) ([@davidbrochart](https://github.com/davidbrochart)) + +### Bugs fixed + +- Fix writing settings in page_config [#304](https://github.com/jupyterlab/jupyter-collaboration/pull/304) ([@fcollonval](https://github.com/fcollonval)) + +### Maintenance and upkeep improvements + +- Update JupyterLab 4.2.0 and fix test start store [#305](https://github.com/jupyterlab/jupyter-collaboration/pull/305) ([@davidbrochart](https://github.com/davidbrochart)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-collaboration/graphs/contributors?from=2024-05-01&to=2024-05-08&type=c)) + +[@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Adavidbrochart+updated%3A2024-05-01..2024-05-08&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Afcollonval+updated%3A2024-05-01..2024-05-08&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2024-05-01..2024-05-08&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3AZsailer+updated%3A2024-05-01..2024-05-08&type=Issues) + + + ## 3.0.0alpha1 ([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@3.0.0-alpha.0...6753b2aaab7ce0beac29da9978d8350d1eeaaff4)) @@ -27,8 +51,6 @@ All notable changes to this project will be documented in this file. [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Abrichet+updated%3A2024-04-16..2024-04-30&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Adavidbrochart+updated%3A2024-04-16..2024-04-30&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2024-04-16..2024-04-30&type=Issues) | [@jzhang20133](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ajzhang20133+updated%3A2024-04-16..2024-04-30&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3AZsailer+updated%3A2024-04-16..2024-04-30&type=Issues) - - ## 3.0.0alpha0 ([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@2.0.11...a3b498471ace2b47f430984531ef8b98e68bc40f)) diff --git a/lerna.json b/lerna.json index 3504e1de..cfce181c 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "npmClient": "yarn", "useWorkspaces": true } diff --git a/package.json b/package.json index 16604978..19a82d01 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@jupyter/real-time-collaboration", "private": true, - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "description": "JupyterLab Extension enabling Real-Time Collaboration", "keywords": [ "jupyter", diff --git a/packages/collaboration-extension/package.json b/packages/collaboration-extension/package.json index 49c1b72a..cbb37e85 100644 --- a/packages/collaboration-extension/package.json +++ b/packages/collaboration-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/collaboration-extension", - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "description": "JupyterLab - Real-Time Collaboration Extension", "keywords": [ "jupyter", @@ -53,8 +53,8 @@ "watch:labextension": "jupyter labextension watch ." }, "dependencies": { - "@jupyter/collaboration": "^3.0.0-alpha.1", - "@jupyter/docprovider": "^3.0.0-alpha.1", + "@jupyter/collaboration": "^3.0.0-alpha.2", + "@jupyter/docprovider": "^3.0.0-alpha.2", "@jupyter/ydoc": "^2.0.0", "@jupyterlab/application": "^4.2.0", "@jupyterlab/apputils": "^4.2.0", diff --git a/packages/collaboration/package.json b/packages/collaboration/package.json index ff546b1f..6befb274 100644 --- a/packages/collaboration/package.json +++ b/packages/collaboration/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/collaboration", - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "description": "JupyterLab - Real-Time Collaboration Widgets", "homepage": "https://github.com/jupyterlab/jupyter-collaboration", "bugs": { @@ -41,7 +41,7 @@ "dependencies": { "@codemirror/state": "^6.2.0", "@codemirror/view": "^6.7.0", - "@jupyter/docprovider": "^3.0.0-alpha.1", + "@jupyter/docprovider": "^3.0.0-alpha.2", "@jupyterlab/apputils": "^4.0.5", "@jupyterlab/coreutils": "^6.0.5", "@jupyterlab/services": "^7.0.5", diff --git a/packages/docprovider-extension/package.json b/packages/docprovider-extension/package.json index 13958415..ec48bfd6 100644 --- a/packages/docprovider-extension/package.json +++ b/packages/docprovider-extension/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/docprovider-extension", - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "description": "JupyterLab - Collaborative Shared Models", "keywords": [ "jupyter", @@ -53,7 +53,7 @@ "watch:labextension": "jupyter labextension watch ." }, "dependencies": { - "@jupyter/docprovider": "^3.0.0-alpha.1", + "@jupyter/docprovider": "^3.0.0-alpha.2", "@jupyter/ydoc": "^2.0.0", "@jupyterlab/application": "^4.2.0", "@jupyterlab/apputils": "^4.2.0", diff --git a/packages/docprovider/package.json b/packages/docprovider/package.json index b002a94d..47027009 100644 --- a/packages/docprovider/package.json +++ b/packages/docprovider/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/docprovider", - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "description": "JupyterLab - Document Provider", "homepage": "https://github.com/jupyterlab/jupyter-collaboration", "bugs": { diff --git a/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py b/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py index 6e45a91d..65590392 100644 --- a/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py +++ b/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py @@ -1 +1 @@ -__version__ = "1.0.0a1" +__version__ = "1.0.0a2" diff --git a/projects/jupyter-collaboration/jupyter_collaboration/_version.py b/projects/jupyter-collaboration/jupyter_collaboration/_version.py index 7cf50d07..d1dafa84 100644 --- a/projects/jupyter-collaboration/jupyter_collaboration/_version.py +++ b/projects/jupyter-collaboration/jupyter_collaboration/_version.py @@ -1 +1 @@ -__version__ = "3.0.0a1" +__version__ = "3.0.0a2" diff --git a/projects/jupyter-docprovider/jupyter_docprovider/_version.py b/projects/jupyter-docprovider/jupyter_docprovider/_version.py index 6e45a91d..65590392 100644 --- a/projects/jupyter-docprovider/jupyter_docprovider/_version.py +++ b/projects/jupyter-docprovider/jupyter_docprovider/_version.py @@ -1 +1 @@ -__version__ = "1.0.0a1" +__version__ = "1.0.0a2" diff --git a/projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py b/projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py index 6e45a91d..65590392 100644 --- a/projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py +++ b/projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py @@ -1 +1 @@ -__version__ = "1.0.0a1" +__version__ = "1.0.0a2" diff --git a/yarn.lock b/yarn.lock index a33781d9..b1d7f55d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2087,8 +2087,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter/collaboration-extension@workspace:packages/collaboration-extension" dependencies: - "@jupyter/collaboration": ^3.0.0-alpha.1 - "@jupyter/docprovider": ^3.0.0-alpha.1 + "@jupyter/collaboration": ^3.0.0-alpha.2 + "@jupyter/docprovider": ^3.0.0-alpha.2 "@jupyter/ydoc": ^2.0.0 "@jupyterlab/application": ^4.2.0 "@jupyterlab/apputils": ^4.2.0 @@ -2110,13 +2110,13 @@ __metadata: languageName: unknown linkType: soft -"@jupyter/collaboration@^3.0.0-alpha.1, @jupyter/collaboration@workspace:packages/collaboration": +"@jupyter/collaboration@^3.0.0-alpha.2, @jupyter/collaboration@workspace:packages/collaboration": version: 0.0.0-use.local resolution: "@jupyter/collaboration@workspace:packages/collaboration" dependencies: "@codemirror/state": ^6.2.0 "@codemirror/view": ^6.7.0 - "@jupyter/docprovider": ^3.0.0-alpha.1 + "@jupyter/docprovider": ^3.0.0-alpha.2 "@jupyterlab/apputils": ^4.0.5 "@jupyterlab/coreutils": ^6.0.5 "@jupyterlab/services": ^7.0.5 @@ -2137,7 +2137,7 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter/docprovider-extension@workspace:packages/docprovider-extension" dependencies: - "@jupyter/docprovider": ^3.0.0-alpha.1 + "@jupyter/docprovider": ^3.0.0-alpha.2 "@jupyter/ydoc": ^2.0.0 "@jupyterlab/application": ^4.2.0 "@jupyterlab/apputils": ^4.2.0 @@ -2160,7 +2160,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter/docprovider@^3.0.0-alpha.1, @jupyter/docprovider@workspace:packages/docprovider": +"@jupyter/docprovider@^3.0.0-alpha.2, @jupyter/docprovider@workspace:packages/docprovider": version: 0.0.0-use.local resolution: "@jupyter/docprovider@workspace:packages/docprovider" dependencies: