mirror of
https://github.com/zulip/zulip.git
synced 2025-11-14 19:06:09 +00:00
Release Zulip Server 3.3
This commit is contained in:
@@ -7,6 +7,24 @@ All notable changes to the Zulip server are documented in this file.
|
|||||||
This section lists notable unreleased changes; it is generally updated
|
This section lists notable unreleased changes; it is generally updated
|
||||||
in bursts.
|
in bursts.
|
||||||
|
|
||||||
|
### 3.3 -- December 1, 2020
|
||||||
|
|
||||||
|
- Guest users should not be allowed to post to streams marked “Only
|
||||||
|
organization full members can post.” This flaw has existed since
|
||||||
|
the feature was added in Zulip Server 3.0.
|
||||||
|
- Permit outgoing mail from postfix; this resolves a bug introduced in
|
||||||
|
Zulip Server 3.2 which prevented Zulip from sending outgoing mail if
|
||||||
|
the local mail server (used mostly for incoming mail) was also used
|
||||||
|
for outgoing email (`MAIL_HOST=``'``localhost``'`).
|
||||||
|
- Ensure that the `upgrade-postgres` tool upgrades the cluster’s data
|
||||||
|
to the specific PostgreSQL version requested; this resolves a bug
|
||||||
|
where, now that PostgreSQL 13 has been released, `upgrade-postgres`
|
||||||
|
would attempt to upgrade to that version and not PostgreSQL 12.
|
||||||
|
- Replace the impenetrably-named `./manage.py knight` with
|
||||||
|
`./manage.py change_user_role`, and extend it to support
|
||||||
|
“Organization owner” roles.
|
||||||
|
- Handle realm emojis that have been manually deleted more gracefully.
|
||||||
|
|
||||||
### 3.2 -- September 15, 2020
|
### 3.2 -- September 15, 2020
|
||||||
|
|
||||||
- Switched from `libmemcached` to `python-binary-memcached`, a
|
- Switched from `libmemcached` to `python-binary-memcached`, a
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
ZULIP_VERSION = "3.2+git"
|
ZULIP_VERSION = "3.3"
|
||||||
# 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(os.path.dirname(os.path.abspath(__file__)), 'zulip-git-version')
|
zulip_git_version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'zulip-git-version')
|
||||||
if os.path.exists(zulip_git_version_file):
|
if os.path.exists(zulip_git_version_file):
|
||||||
@@ -10,7 +10,7 @@ if os.path.exists(zulip_git_version_file):
|
|||||||
ZULIP_VERSION = version
|
ZULIP_VERSION = version
|
||||||
|
|
||||||
LATEST_MAJOR_VERSION = "3.0"
|
LATEST_MAJOR_VERSION = "3.0"
|
||||||
LATEST_RELEASE_VERSION = "3.2"
|
LATEST_RELEASE_VERSION = "3.3"
|
||||||
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2020/07/16/zulip-3-0-released/"
|
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2020/07/16/zulip-3-0-released/"
|
||||||
LATEST_DESKTOP_VERSION = "5.3.0"
|
LATEST_DESKTOP_VERSION = "5.3.0"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user