From f36bdd7933c9b38f9ad1938524f4ca77dbcdf145 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 11 Sep 2025 18:10:26 +0000 Subject: [PATCH] Release Zulip Server 11.1. --- docs/overview/changelog.md | 45 ++++++++++++++++++++++++++++++++++++++ version.py | 4 ++-- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/docs/overview/changelog.md b/docs/overview/changelog.md index a3d9cfe9da..49285dc0b4 100644 --- a/docs/overview/changelog.md +++ b/docs/overview/changelog.md @@ -10,6 +10,51 @@ lifecycle](../overview/release-lifecycle.md). ## Zulip Server 11.x series +### Zulip Server 11.1 + +_Released 2025-09-11_ + +- Added upgrade instructions for Debian 12 → 13. +- Fixed subscriber counts after data import being incorrect in the + database, which could cause removing channel subscribers to crash + after a data import. Also added a daily refresh to cached + subscriber counts, in case of race conditions. +- Improved the label for channels not in a folder when channel folders + are in use. +- Improved visual spacing and alignment in the web app left and right + sidebars. +- Improved keyboard navigation in web app left and right sidebars. +- Improved error handling for a SAML configuration error. +- Improved dark theme colors for search suggestion pills. +- Fixed a bug that could hide the left sidebar top search widget until + browser reload. +- Fixed the compose box incorrectly closing when clicking links in the + message feed. +- Fixed multiple annoying bugs where clicking/selecting didn’t work + properly. +- Fixed a performance regression when loading the web app. +- Fixed internals of message reminder body construction. +- Fixed multiple minor issues generating Zulip internal links. +- Fixed a buggy interaction with Smokescreen preventing client reload + requests from being sent. +- Fixed broken deep links when serving redirects for a moved realm. +- Fixed a broken lightbox keyboard shortcut. +- Fixed hooks failing when upgrading the OS without having previously + upgraded Zulip. +- Fixed the copy keyboard shortcut not working for logged-out access. +- Fixed a bug introduced in 11.0 that could cause Notification Bot to + fail to notify about newly created channels (in the announcement + channel, as well as the new channel) when subscribing more than 100 + users at once. +- Fixed a bug resulting in useless extra suggestions in the search + typeahead. +- Optimized performance for processing deleted messages slightly. +- Backported several improvements to Help Center and API + documentation. +- Added configuration options to allow webhooks to access to specific + local-network IP addresses. +- Updated translations. + ### Zulip Server 11.0 _Released 2025-08-13_ diff --git a/version.py b/version.py index f11c1ee577..3b04e30386 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ import os -ZULIP_VERSION = "11.0+git" +ZULIP_VERSION = "11.1" # Add information on number of commits and commit hash to version, if available zulip_git_version_file = os.path.join( @@ -14,7 +14,7 @@ ZULIP_VERSION = lines.pop(0).strip() ZULIP_MERGE_BASE = lines.pop(0).strip() LATEST_MAJOR_VERSION = "11.0" -LATEST_RELEASE_VERSION = "11.0" +LATEST_RELEASE_VERSION = "11.1" LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/zulip-server-11-0" # Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be