Skip to content

Commit 7aadde6

Browse files
committed
ServerCompatBanner: Bump minSupportedVersion to 2.1.0, as planned.
We haven't gotten negative feedback about the banner from the smaller pool of users connecting to servers earlier than 2.0.0. The banner was introduced with that threshold (in PR zulip#4750) to beta users in v27.164 (2021-06-17) and to all users in v27.165 (2021-06-24). So, proceed with aligning our threshold with what we declare in the server stable-release doc, and update the code comment to match.
1 parent 9d71508 commit 7aadde6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/common/ServerCompatBanner.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ import { dismissCompatNotice } from '../session/sessionActions';
1414
import ZulipTextButton from './ZulipTextButton';
1515
import { openLinkWithUserPreference } from '../utils/openLink';
1616

17-
// In fact the oldest version we currently support is 2.1.0, per our docs:
18-
// https://zulip.readthedocs.io/en/4.2/overview/release-lifecycle.html
19-
// For now we only show this banner for servers older than 2.0.0, though,
20-
// in order to phase that in gradually.
21-
const minSupportedVersion = '2.0.0';
17+
// The oldest version we currently support. Should match what we say at
18+
// https://zulip.readthedocs.io/en/stable/overview/release-lifecycle.html#compatibility-and-upgrading.
19+
const minSupportedVersion = '2.1.0';
2220

2321
const styles = createStyleSheet({
2422
wrapper: {

0 commit comments

Comments
 (0)