diff --git a/docs/overview/changelog.md b/docs/overview/changelog.md index 5a1e77518e..a460c4837c 100644 --- a/docs/overview/changelog.md +++ b/docs/overview/changelog.md @@ -7,6 +7,29 @@ up-to-date list of all changes. ## Zulip Server 8.x series +### Zulip Server 8.2 + +_Released 2024-02-16_ + +- Fixed an error reporting bug that caused an email to be sent to the + server administrator each time that the server had a failed attempt + to send a mobile push notification. This bug could cause a lot of + error emails on servers that are registered with the [Mobile Push + Notification Service][mobile-push], but are not signed up for a plan + that includes access to this service, or not [uploading basic + metadata][mobile-push-metadata] required to verify eligibility for + free access to the service. +- Fixed several scroll position bugs encountered when entering a + conversation view, most importantly when opening a direct message + conversation. +- Fixed a minor bug in the organization settings UI. +- Improved rate-limiting logic to avoid errors when loading the app for some users. +- Adjusted memory usage configuration to reduce memory usage to avoid + OOM kills on systems with close to 4GiB of RAM, and require less + tuning for larger systems. +- Upgraded dependencies. +- Updated translations. + ### Zulip Server 8.1 _Released 2024-01-24_ diff --git a/version.py b/version.py index 92802bf60c..94b436c37f 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ import os -ZULIP_VERSION = "8.1+git" +ZULIP_VERSION = "8.2" # 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 = "8.0" -LATEST_RELEASE_VERSION = "8.1" +LATEST_RELEASE_VERSION = "8.2" 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