From c814b99fcb9795c9a815bcc088ab5db452fc7230 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 15 Oct 2025 08:30:58 -0600 Subject: [PATCH] Bump collab min version (#40198) Release Notes: - Prevent using Zed before the auto-update bug when collaborating. --- crates/collab/src/rpc/connection_pool.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/collab/src/rpc/connection_pool.rs b/crates/collab/src/rpc/connection_pool.rs index 729e7c8533460c0789d74040e883d48c8b94af92..417edd66d66d7479f42fb09b01c7a5d9f05a6223 100644 --- a/crates/collab/src/rpc/connection_pool.rs +++ b/crates/collab/src/rpc/connection_pool.rs @@ -30,9 +30,9 @@ impl fmt::Display for ZedVersion { impl ZedVersion { pub fn can_collaborate(&self) -> bool { - // v0.198.4 is the first version where we no longer connect to Collab automatically. - // We reject any clients older than that to prevent them from connecting to Collab just for authentication. - if self.0 < SemanticVersion::new(0, 198, 4) { + // v0.204.1 was the first version after the auto-update bug. + // We reject any clients older than that to hope we can persuade them to upgrade. + if self.0 < SemanticVersion::new(0, 204, 1) { return false; }