mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Release Zulip Server 4.10.
This commit is contained in:
@@ -7,6 +7,23 @@ up-to-date list of raw changes.
|
||||
|
||||
## Zulip 4.x series
|
||||
|
||||
## Zulip 4.10 -- 2022-02-25
|
||||
|
||||
- CVE-2022-21706: Reusable invitation links could be improperly used
|
||||
for other organizations.
|
||||
- CVE-2021-3967: Enforce that regenerating an API key must be done
|
||||
with an API key, not a cookie. Thanks to nhiephon
|
||||
(twitter.com/_nhiephon) for their responsible disclosure of this
|
||||
vulnerability.
|
||||
- Fixed a bug with the `reindex-textual-data` tool, where it would
|
||||
sometimes fail to find the libraries it needed.
|
||||
- Pin PostgreSQL to 10.19, 11.14, 12.9, 13.5 or 14.1 to avoid a
|
||||
regression which caused deploys with PGroonga enabled to
|
||||
unpredictably fail database queries with the error `variable not
|
||||
found in subplan target list`.
|
||||
- Fix ARM64 support; however, the wal-g binary is not yet supported on
|
||||
ARM64 (zulip/zulip#21070).
|
||||
|
||||
## Zulip 4.9 -- 2022-01-24
|
||||
|
||||
- CVE-2021-43799: Remote execution of code involving RabbitMQ.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import os
|
||||
|
||||
ZULIP_VERSION = "4.9+git"
|
||||
ZULIP_VERSION = "4.10"
|
||||
|
||||
# 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 = "4.0"
|
||||
LATEST_RELEASE_VERSION = "4.9"
|
||||
LATEST_RELEASE_VERSION = "4.10"
|
||||
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2021/05/13/zulip-4-0-released/"
|
||||
|
||||
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
|
||||
|
Reference in New Issue
Block a user