Release Zulip Server 8.5.

This commit is contained in:
Tim Abbott
2024-07-31 18:13:27 -07:00
parent 5f6f4dab0d
commit 65a502845b
2 changed files with 20 additions and 2 deletions

View File

@@ -7,6 +7,24 @@ up-to-date list of all changes.
## Zulip Server 8.x series ## Zulip Server 8.x series
### Zulip Server 8.5
_Released 2024-07-31_
- Fixed failures installing/upgrading Debian systems by removing the
Apache Arrow apt repository as a dependency, which suffers from an
annual problem with expired GPG signatures.
- Improved documentation for upgrading the Ubuntu version.
- Fixed `manage.py register_server --rotate-key` crashing without
having written its secrets if the `zulip` user had permission to write
to `/etc/zulip/zulip-secrets.conf`, but not its parent directory.
- Fixed client-provided HTTP authentication headers being incorrectly
forwarded in S3 requests, causing authentication errors.
- Removed the Gitter data import tool (Gitter no longer exports data
in the format it supported).
- Upgraded Python dependencies.
- Updated translations.
### Zulip Server 8.4 ### Zulip Server 8.4
_Released 2024-05-09_ _Released 2024-05-09_

View File

@@ -1,6 +1,6 @@
import os import os
ZULIP_VERSION = "8.4+git" ZULIP_VERSION = "8.5"
# Add information on number of commits and commit hash to version, if available # Add information on number of commits and commit hash to version, if available
zulip_git_version_file = os.path.join( zulip_git_version_file = os.path.join(
@@ -14,7 +14,7 @@ ZULIP_VERSION = lines.pop(0).strip()
ZULIP_MERGE_BASE = lines.pop(0).strip() ZULIP_MERGE_BASE = lines.pop(0).strip()
LATEST_MAJOR_VERSION = "8.0" LATEST_MAJOR_VERSION = "8.0"
LATEST_RELEASE_VERSION = "8.4" LATEST_RELEASE_VERSION = "8.5"
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2023/12/15/zulip-8-0-released/" LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2023/12/15/zulip-8-0-released/"
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be # Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be