From b8ec99baea6b5ad44f1648d03f84817313656f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Tue, 2 Sep 2025 13:54:07 +0100 Subject: [PATCH 1/3] Document the breaking change in 4.0 in the changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3c73ea5..2499d1d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -131,6 +131,14 @@ No merged PRs ([Full Changelog](https://github.com/jupyterlab/jupyter-collaboration/compare/@jupyter/collaboration-extension@3.1.0...996367692c97d10a85aef21c9d76a5d44f260de5)) +> [!IMPORTANT] +> This version requires migration from `ICollaborativeDrive` to `ICollaborativeContentProvider` token for access to shared factory and forks: +> +> ```diff +> - import { ICollaborativeDrive } from '@jupyter/collaborative-drive'; +> + import { ICollaborativeContentProvider } from '@jupyter/collaborative-drive'; +> ``` + ### Enhancements made - Gracefully handling non-existing fork room [#420](https://github.com/jupyterlab/jupyter-collaboration/pull/420) ([@trungleduc](https://github.com/trungleduc)) From 37dbff836956a1dc2d115479930210ce45dd1d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Wed, 3 Sep 2025 12:22:03 +0100 Subject: [PATCH 2/3] Lint --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2499d1d2..a8d6a135 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -133,6 +133,7 @@ No merged PRs > [!IMPORTANT] > This version requires migration from `ICollaborativeDrive` to `ICollaborativeContentProvider` token for access to shared factory and forks: +> > > ```diff > - import { ICollaborativeDrive } from '@jupyter/collaborative-drive'; From 9d4f9520246e74abb857a162857eb36d4c1e5763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Wed, 3 Sep 2025 12:37:36 +0100 Subject: [PATCH 3/3] Lint --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8d6a135..c994b6df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -134,7 +134,7 @@ No merged PRs > [!IMPORTANT] > This version requires migration from `ICollaborativeDrive` to `ICollaborativeContentProvider` token for access to shared factory and forks: > -> +> > ```diff > - import { ICollaborativeDrive } from '@jupyter/collaborative-drive'; > + import { ICollaborativeContentProvider } from '@jupyter/collaborative-drive';