diff --git a/CHANGELOG.md b/CHANGELOG.md index 015e87f8..9cbd7298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file. +## 3.0.0rc0 + +([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@3.0.0-beta.8...c80993047517121d207874f57412fdf2348e6afa)) + +### Enhancements made + +- Updates warning message on double file open [#375](https://github.com/jupyterlab/jupyter-collaboration/pull/375) ([@JasonWeill](https://github.com/JasonWeill)) +- Update jupyter_ydoc and pycrdt_websocket dependencies [#367](https://github.com/jupyterlab/jupyter-collaboration/pull/367) ([@brichet](https://github.com/brichet)) + +### Bugs fixed + +- Fix model format [#368](https://github.com/jupyterlab/jupyter-collaboration/pull/368) ([@davidbrochart](https://github.com/davidbrochart)) + +### Maintenance and upkeep improvements + +- Fix bump file [#343](https://github.com/jupyterlab/jupyter-collaboration/pull/343) ([@brichet](https://github.com/brichet)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-collaboration/graphs/contributors?from=2024-10-11&to=2024-10-18&type=c)) + +[@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Abrichet+updated%3A2024-10-11..2024-10-18&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Adavidbrochart+updated%3A2024-10-11..2024-10-18&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2024-10-11..2024-10-18&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3AJasonWeill+updated%3A2024-10-11..2024-10-18&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ajtpio+updated%3A2024-10-11..2024-10-18&type=Issues) + + + ## 3.0.0beta8 ([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@3.0.0-beta.6...60e55eab4613135b995c8a96f51fac68784edb29)) @@ -25,8 +50,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-09-18..2024-10-11&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Adavidbrochart+updated%3A2024-09-18..2024-10-11&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Agithub-actions+updated%3A2024-09-18..2024-10-11&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Ajtpio+updated%3A2024-09-18..2024-10-11&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-collaboration+involves%3Akrassowski+updated%3A2024-09-18..2024-10-11&type=Issues) - - ## 3.0.0beta7 ([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@3.0.0-beta.6...60e55eab4613135b995c8a96f51fac68784edb29)) diff --git a/lerna.json b/lerna.json index 8a179a56..6bdffd51 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.0.0-beta.8", + "version": "3.0.0-rc.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/package.json b/package.json index 2d6225a5..7dc2b115 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@jupyter/real-time-collaboration", "private": true, - "version": "3.0.0-beta.8", + "version": "3.0.0-rc.0", "description": "JupyterLab Extension enabling Real-Time Collaboration", "keywords": [ "jupyter", diff --git a/packages/collaboration-extension/package.json b/packages/collaboration-extension/package.json index 951415b9..ac0a7a33 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-beta.8", + "version": "3.0.0-rc.0", "description": "JupyterLab - Real-Time Collaboration Extension", "keywords": [ "jupyter", @@ -53,9 +53,9 @@ "watch:labextension": "jupyter labextension watch ." }, "dependencies": { - "@jupyter/collaboration": "^3.0.0-beta.8", - "@jupyter/collaborative-drive": "^3.0.0-beta.8", - "@jupyter/docprovider": "^3.0.0-beta.8", + "@jupyter/collaboration": "^3.0.0-rc.0", + "@jupyter/collaborative-drive": "^3.0.0-rc.0", + "@jupyter/docprovider": "^3.0.0-rc.0", "@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3", "@jupyterlab/application": "^4.2.0", "@jupyterlab/apputils": "^4.2.0", diff --git a/packages/collaboration/package.json b/packages/collaboration/package.json index 3358ddd5..8e7b211e 100644 --- a/packages/collaboration/package.json +++ b/packages/collaboration/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/collaboration", - "version": "3.0.0-beta.8", + "version": "3.0.0-rc.0", "description": "JupyterLab - Real-Time Collaboration Widgets", "homepage": "https://github.com/jupyterlab/jupyter-collaboration", "bugs": { diff --git a/packages/collaborative-drive/package.json b/packages/collaborative-drive/package.json index 5e27366c..e4220ffe 100644 --- a/packages/collaborative-drive/package.json +++ b/packages/collaborative-drive/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/collaborative-drive", - "version": "3.0.0-beta.8", + "version": "3.0.0-rc.0", "description": "JupyterLab - Collaborative Drive", "homepage": "https://github.com/jupyterlab/jupyter-collaboration", "bugs": { diff --git a/packages/docprovider-extension/package.json b/packages/docprovider-extension/package.json index 263bb74e..dc7fe25a 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-beta.8", + "version": "3.0.0-rc.0", "description": "JupyterLab - Collaborative Shared Models", "keywords": [ "jupyter", @@ -53,8 +53,8 @@ "watch:labextension": "jupyter labextension watch ." }, "dependencies": { - "@jupyter/collaborative-drive": "^3.0.0-beta.8", - "@jupyter/docprovider": "^3.0.0-beta.8", + "@jupyter/collaborative-drive": "^3.0.0-rc.0", + "@jupyter/docprovider": "^3.0.0-rc.0", "@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3", "@jupyterlab/application": "^4.2.0", "@jupyterlab/apputils": "^4.2.0", diff --git a/packages/docprovider/package.json b/packages/docprovider/package.json index 6d2b1c2a..a591cde3 100644 --- a/packages/docprovider/package.json +++ b/packages/docprovider/package.json @@ -1,6 +1,6 @@ { "name": "@jupyter/docprovider", - "version": "3.0.0-beta.8", + "version": "3.0.0-rc.0", "description": "JupyterLab - Document Provider", "homepage": "https://github.com/jupyterlab/jupyter-collaboration", "bugs": { @@ -41,7 +41,7 @@ "watch": "tsc -b --watch" }, "dependencies": { - "@jupyter/collaborative-drive": "^3.0.0-beta.8", + "@jupyter/collaborative-drive": "^3.0.0-rc.0", "@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3", "@jupyterlab/apputils": "^4.2.0", "@jupyterlab/cells": "^4.2.0", diff --git a/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py b/projects/jupyter-collaboration-ui/jupyter_collaboration_ui/_version.py index 00c75050..bcf7f897 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.0b8" +__version__ = "1.0.0rc0" diff --git a/projects/jupyter-collaboration/jupyter_collaboration/_version.py b/projects/jupyter-collaboration/jupyter_collaboration/_version.py index 19de8bca..ce971bbf 100644 --- a/projects/jupyter-collaboration/jupyter_collaboration/_version.py +++ b/projects/jupyter-collaboration/jupyter_collaboration/_version.py @@ -1 +1 @@ -__version__ = "3.0.0b8" +__version__ = "3.0.0rc0" diff --git a/projects/jupyter-collaboration/pyproject.toml b/projects/jupyter-collaboration/pyproject.toml index a4d085c9..d7057bd4 100644 --- a/projects/jupyter-collaboration/pyproject.toml +++ b/projects/jupyter-collaboration/pyproject.toml @@ -28,12 +28,12 @@ classifiers = [ "Framework :: Jupyter :: JupyterLab :: Extensions", "Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt", ] +dynamic = ["version"] dependencies = [ - "jupyter-server-ydoc>=1.0.0b8", - "jupyter-collaboration-ui>=1.0.0b8", - "jupyter-docprovider>=1.0.0b8" + "jupyter_collaboration_ui>=1.0.0rc0", + "jupyter_docprovider>=1.0.0rc0", + "jupyter_server_ydoc>=1.0.0rc0", ] -dynamic = ["version"] [tool.hatch.version] path = "jupyter_collaboration/_version.py" diff --git a/projects/jupyter-docprovider/jupyter_docprovider/_version.py b/projects/jupyter-docprovider/jupyter_docprovider/_version.py index 00c75050..bcf7f897 100644 --- a/projects/jupyter-docprovider/jupyter_docprovider/_version.py +++ b/projects/jupyter-docprovider/jupyter_docprovider/_version.py @@ -1 +1 @@ -__version__ = "1.0.0b8" +__version__ = "1.0.0rc0" diff --git a/projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py b/projects/jupyter-server-ydoc/jupyter_server_ydoc/_version.py index 00c75050..bcf7f897 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.0b8" +__version__ = "1.0.0rc0" diff --git a/yarn.lock b/yarn.lock index 3dbd53b3..4724d2ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2075,9 +2075,9 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter/collaboration-extension@workspace:packages/collaboration-extension" dependencies: - "@jupyter/collaboration": ^3.0.0-beta.8 - "@jupyter/collaborative-drive": ^3.0.0-beta.8 - "@jupyter/docprovider": ^3.0.0-beta.8 + "@jupyter/collaboration": ^3.0.0-rc.0 + "@jupyter/collaborative-drive": ^3.0.0-rc.0 + "@jupyter/docprovider": ^3.0.0-rc.0 "@jupyter/ydoc": ^2.0.0 || ^3.0.0-a3 "@jupyterlab/application": ^4.2.0 "@jupyterlab/apputils": ^4.2.0 @@ -2099,7 +2099,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter/collaboration@^3.0.0-beta.8, @jupyter/collaboration@workspace:packages/collaboration": +"@jupyter/collaboration@^3.0.0-rc.0, @jupyter/collaboration@workspace:packages/collaboration": version: 0.0.0-use.local resolution: "@jupyter/collaboration@workspace:packages/collaboration" dependencies: @@ -2123,7 +2123,7 @@ __metadata: languageName: unknown linkType: soft -"@jupyter/collaborative-drive@^3.0.0-beta.8, @jupyter/collaborative-drive@workspace:packages/collaborative-drive": +"@jupyter/collaborative-drive@^3.0.0-rc.0, @jupyter/collaborative-drive@workspace:packages/collaborative-drive": version: 0.0.0-use.local resolution: "@jupyter/collaborative-drive@workspace:packages/collaborative-drive" dependencies: @@ -2140,8 +2140,8 @@ __metadata: version: 0.0.0-use.local resolution: "@jupyter/docprovider-extension@workspace:packages/docprovider-extension" dependencies: - "@jupyter/collaborative-drive": ^3.0.0-beta.8 - "@jupyter/docprovider": ^3.0.0-beta.8 + "@jupyter/collaborative-drive": ^3.0.0-rc.0 + "@jupyter/docprovider": ^3.0.0-rc.0 "@jupyter/ydoc": ^2.0.0 || ^3.0.0-a3 "@jupyterlab/application": ^4.2.0 "@jupyterlab/apputils": ^4.2.0 @@ -2164,11 +2164,11 @@ __metadata: languageName: unknown linkType: soft -"@jupyter/docprovider@^3.0.0-beta.8, @jupyter/docprovider@workspace:packages/docprovider": +"@jupyter/docprovider@^3.0.0-rc.0, @jupyter/docprovider@workspace:packages/docprovider": version: 0.0.0-use.local resolution: "@jupyter/docprovider@workspace:packages/docprovider" dependencies: - "@jupyter/collaborative-drive": ^3.0.0-beta.8 + "@jupyter/collaborative-drive": ^3.0.0-rc.0 "@jupyter/ydoc": ^2.0.0 || ^3.0.0-a3 "@jupyterlab/apputils": ^4.2.0 "@jupyterlab/cells": ^4.2.0