Bump collab min version (#9521)

We made a change last week to allow creating files with names. This
means some files have null saved_mtime, which old versions of zed panic
on.

A fix is available in 0.126.3 and above

Release Notes:


- N/A
This commit is contained in:
Conrad Irwin 2024-03-18 16:59:51 -06:00 committed by GitHub
parent d8e32c3e3c
commit 0c82585ea2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 13 additions and 21 deletions

View file

@ -909,7 +909,7 @@ pub async fn handle_websocket_request(
.into_response();
};
if !version.is_supported() {
if !version.can_collaborate() {
return (
StatusCode::UPGRADE_REQUIRED,
"client must be upgraded".to_string(),
@ -1347,19 +1347,6 @@ async fn set_room_participant_role(
let user_id = UserId::from_proto(request.user_id);
let role = ChannelRole::from(request.role());
if role == ChannelRole::Talker {
let pool = session.connection_pool().await;
for connection in pool.user_connections(user_id) {
if !connection.zed_version.supports_talker_role() {
Err(anyhow!(
"This user is on zed {} which does not support unmute",
connection.zed_version
))?;
}
}
}
let (live_kit_room, can_publish) = {
let room = session
.db()