-
Notifications
You must be signed in to change notification settings - Fork 320
Start Requiring Zulip Server 5 #904
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
de9d000
to
6984723
Compare
The PR itself is ready, but we won't be ready to merge it until we refuse to connect to older servers. Going through some reviews will still be helpful, though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for going ahead with this! This will be good to have ready to merge once #267 is done (that's on my plate right now). Small comments below.
lib/api/model/model.dart
Outdated
@@ -205,7 +205,7 @@ class User { | |||
// bool isOwner; // obsoleted by [role]; ignore | |||
// bool isAdmin; // obsoleted by [role]; ignore | |||
// bool isGuest; // obsoleted by [role]; ignore | |||
bool? isBillingAdmin; // TODO(server-5) | |||
bool isBillingAdmin; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
api: Mark isBillingAdmin as requried, relying on server 5+, FL 73+
While `realm_user` update events also have this field added at the same
feature level, it remains optional.
See "Feature level 73" from Zulip API changelog:
https://zulip.com/api/changelog
Signed-off-by: Zixuan James Li <[email protected]>
I would just leave out the sentence about how isBillingAdmin
remains optional in RealmUserUpdateEvent
. That's the normal, expected thing to happen; it matches all the other person
fields, in that they might be null if they didn't change in the event.
Also nit in summary line: 'required"
// This field is absent in `realm_users` and `realm_non_active_users`, | ||
// which contain no system bots; it's present in `cross_realm_bots`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
api: Drop _readIsSystemBot, relying on server 5+, FL 83+
This comment still applies, right? The change made in FL 83 is just that is_cross_realm_bot
stops being a name we have to care about. The comment can go above the defaultValue: false
, and it seems like we should keep the test that confirms that false
is chosen if is_system_bot
is absent.
lib/api/model/model.dart
Outdated
} | ||
if (topic != null || prevTopic != null) { | ||
// Both are present if the topic was edited | ||
assert(topic != null && prevTopic != null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The condition in this assert
might happen because of unexpected data from the server. To validate data from the server, we'll want code that runs in production, and reserve assert
s to check our own invariants that we maintain within the bounds of the app. Could replace the assert and comment with:
// Crunch-shell validation: both are present if the topic was edited
topic as String;
prevTopic as String;
Thanks! Updated the PR. |
Thanks! LGTM except bump on this part of #904 (comment) :
|
Got that test back. Thanks for the review! |
Great! Marking for Greg's review once he's back from vacation. |
BTW there's generally no need to push a revision when it's a pure rebase, with no merge conflicts or other changes. The update causes notifications, and doesn't really save effort later — there'll typically be another rebase anyway just before merge, and (As it happens I'm just about to take a look at this PR, but it wasn't because of the notification from the revision just now; it was from scanning the list of PRs marked for my review.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @PIG208 for taking care of these, and thanks @chrisbobbe for the previous reviews!
Generally this looks great. Small comments below.
lib/api/model/model.dart
Outdated
bool? isBillingAdmin; // TODO(server-5) | ||
bool isBillingAdmin; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit in commit message:
api: Mark isBillingAdmin as required, relying on server 5+, FL 73+
See "Feature level 73" from Zulip API changelog:
https://zulip.com/api/changelog
Signed-off-by: Zixuan James Li <[email protected]>
In the summary line, let's say User.isBillingAdmin rather than just isBillingAdmin. Similarly for fields in later commits.
That helps the reader place the field in the relevant context within the overall model.
In this case it also disambiguates things: there's an isBillingAdmin
field over on RealmUserUpdateEvent too, and as a previous revision noted (as discussed in a previous review above), that one remains optional.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think the context info is pretty helpful. While the commit summaries get longer, it is justified for this kind of migration changes.
// This field is absent in `realm_users` and `realm_non_active_users`, | ||
// which contain no system bots; it's present in `cross_realm_bots`. | ||
return (json[key] as bool?) | ||
?? (json['is_cross_realm_bot'] as bool?) // TODO(server-5): renamed to `is_system_bot` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit in commit message:
api: Drop _readIsSystemBot, relying on server 5+, FL 83+
Can focus the summary on what changed in the API, rather than on the method name which is an implementation detail of our (now-deleted) code:
api: Drop is_cross_realm_bot fallback, relying on server 5+, FL 83+
final String? zulipMergeBase; // TODO(server-5) | ||
final String zulipMergeBase; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes in the GetServerSettingsResult type are a bit sticky because this is where we learn the version of a server in the first place. For #267 we'll want to give a reasonable error message when the server is too old, and that'll probably include saying what version the server actually is (as well as the minimum version we support).
Ultimately we do want to keep modernizing this type, like the others. But there might be some wrinkles around how we handle it. I guess the bottom line is that the details of these particular changes might shift once we have an implementation of #267 in hand. (/cc @chrisbobbe)
lib/model/store.dart
Outdated
final UserSettings? userSettings; // TODO(server-5) | ||
final UserSettings userSettings; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should get a corresponding update in PerAccountStoreChecks.
(Similarly in other commits.)
final int? userId; // TODO(server-5) new in FL 108 | ||
final int userId; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is one that especially benefits from identifying the class:
login: Mark userId as required, relying on server 5+, FL 108+.
so e.g.:
api: Mark WebAuthPayload.userId as required, relying on server 5+, FL 108+
Otherwise "userId" could be all sorts of things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bump / nit: use api:
for prefix, like for other API changes
(in this revision it's:
login: Mark WebAuthPayload.userId as required, relying on server 5+, FL 108+.
)
lib/api/model/web_auth.dart
Outdated
userId = int.tryParse(userIdStr, radix: 10); | ||
if (userId == null) throw const FormatException(); | ||
} | ||
int? userId = int.tryParse(userIdStr, radix: 10); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: since this is now initialized just once, make it final:
int? userId = int.tryParse(userIdStr, radix: 10); | |
final userId = int.tryParse(userIdStr, radix: 10); |
lib/api/model/events.dart
Outdated
final int? userId; // TODO(server-5) | ||
final bool? renderingOnly; // TODO(server-5) | ||
final int userId; | ||
final bool renderingOnly; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this summary line seems to cover only one of the three changes here:
api: Mark renderingOnly as required, relying on server 5+, FL 114+
Can say "fields on UpdateMessageEvent" to skip listing all three of them in the crowded space of the summary line.
test/example_data.dart
Outdated
@@ -489,8 +489,8 @@ DeleteMessageEvent deleteMessageEvent(List<StreamMessage> messages) { | |||
|
|||
UpdateMessageEvent updateMessageEditEvent( | |||
Message origMessage, { | |||
int? userId = -1, // null means null; default is [selfUser.userId] | |||
bool? renderingOnly = false, | |||
int userId = -1, // default is [selfUser.userId] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about:
int userId = -1, // default is [selfUser.userId] | |
int? userId, // default is [selfUser.userId] |
That seems more conventional. The old code was odder because it had to deal with null being a valid value for the underlying field, and so not available to signify "use the default".
/// | ||
/// Gives null if the server reports that the message doesn't exist. | ||
// TODO(server-5) Simplify this away; just use getMessage. | ||
Future<Message?> getMessageCompat(ApiConnection connection, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit in commit message:
See also: 631f4d68c58a84dff66a6a9a80322584f0d60152
Instead say:
See also commit 631f4d68c58a84dff66a6a9a80322584f0d60152.
That way it's clear this hex blob refers to a commit (implicitly one in this same repo).
Marked as TODO as this might change in the future. See zulip#904 (comment). See "Feature level 88" from Zulip API changelog: https://zulip.com/api/changelog Signed-off-by: Zixuan James Li <[email protected]>
Marked as TODO as this might change in the future. See zulip#904 (comment). See "Feature level 88" from Zulip API changelog: https://zulip.com/api/changelog Signed-off-by: Zixuan James Li <[email protected]>
… required, relying on server 5+, FL 116+ See zulip#904 (comment). See "Feature level 116" from Zulip API changelog: https://zulip.com/api/changelog Signed-off-by: Zixuan James Li <[email protected]>
Thanks for the review! Added some TODOs commits for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the revisions! Just a few comments below.
lib/api/route/realm.g.dart
Outdated
zulipMergeBase: json['zulip_merge_base'] as String?, | ||
zulipMergeBase: json['zulip_merge_base'] as String, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem to have a corresponding change in realm.dart.
Presumably this came about as you made some edits and missed rerunning build_runner
for one of them, or something like that. I am puzzled that our CI didn't complain, though — tools/check build_runner
should have failed because this doesn't match what a freshly-generated file should say. So that would be worth trying to debug.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For future reference, this was fixed in #947.
lib/api/route/realm.dart
Outdated
// TODO: Modernize this once we get to #267 | ||
final String? zulipMergeBase; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should keep a TODO(server-5)
comment until we do actually modernize it. That way it naturally shows up in any future round of grepping for opportunities to modernize our API usage.
final int? userId; // TODO(server-5) new in FL 108 | ||
final int userId; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bump / nit: use api:
for prefix, like for other API changes
(in this revision it's:
login: Mark WebAuthPayload.userId as required, relying on server 5+, FL 108+.
)
final int? editTimestamp; // TODO(server-5) | ||
final int editTimestamp; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this doesn't seem accurate:
Fields including `userId` and `editTimestamp` are optional and act
as alternatives to `renderingOnly` for older server versions.
since those fields are no longer optional.
I think the commit message can skip explaining the fallback that previously existed for renderingOnly. It's directly relevant only when looking at the past; and the details are in this commit's diff.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, "were" would be more accurate here. Leaving this out makes sense.
class UnreadDmSnapshot { | ||
@JsonKey(readValue: _readOtherUserId) | ||
final int otherUserId; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
api: Remove sender_id fallback for UnreadMessagesSnapshot.otherUserId, relying on server 5+, FL 119+
that's not the class this field is on 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good find! I should learn to not trust the diffs heading and be more careful from now on 😓
diff --git a/lib/api/model/initial_snapshot.dart b/lib/api/model/initial_snapshot.dart
index 565d89fe..6be29e78 100644
--- a/lib/api/model/initial_snapshot.dart
+++ b/lib/api/model/initial_snapshot.dart
@@ -269,15 +269,9 @@ class UnreadMessagesSnapshot {
/// An item in [UnreadMessagesSnapshot.dms].
@JsonSerializable(fieldRename: FieldRename.snake)
class UnreadDmSnapshot {
- @JsonKey(readValue: _readOtherUserId)
final int otherUserId;
final List<int> unreadMessageIds;
- // TODO(server-5): Simplify away.
- static dynamic _readOtherUserId(Map<dynamic, dynamic> json, String key) {
- return json[key] ?? json['sender_id'];
- }
-
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yeah, the diff-hunk headers can be misleading like that sometimes 🙂
… required, relying on server 5+, FL 116+ See zulip#904 (comment). See "Feature level 116" from Zulip API changelog: https://zulip.com/api/changelog Signed-off-by: Zixuan James Li <[email protected]>
We have #267 now, so this is something we could potentially merge when its code is ready. I've just rebased it atop current main. |
The comments in my previous round #904 (review) above were all addressed. Skimming now, there are a few commits whose summary lines indicate they're not ready: Other than that, it seems like these changes are probably ready. I guess I'll want to reread, though, at least briefly, since it's been most of a year since we put it on hold (awaiting #267). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @PIG208!
Here's a review, since this is marked for maintainer review—but probably Greg or I will end up making new revisions?
There are three TODO(server-5)
comments left at the tip of the branch; I've commented on one in my review, and the other two are also small but snuck in after this PR was first written almost a year ago.
lib/api/route/realm.dart
Outdated
final String? zulipMergeBase; // TODO(server-5) | ||
// TODO(server-5): Modernize this once we get to #267. | ||
final String? zulipMergeBase; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO api: Add TODO to modernize GetServerSettingsResult.zulipMergeBase
Marked as TODO as this might change in the future.
See https://github.com/zulip/zulip-flutter/pull/904#discussion_r1747943940.
See "Feature level 88" from Zulip API changelog:
https://zulip.com/api/changelog
Signed-off-by: Zixuan James Li <[email protected]>
I read the linked discussion, and this change can go ahead; it doesn't interfere with what we've implemented for disallow-connecting-to-ancient-servers.
(Ditto the corresponding change in the initial snapshot, which would have been more likely to have a conflict but also doesn't.)
lib/api/model/events.dart
Outdated
@@ -797,13 +797,13 @@ class UpdateMessageEvent extends Event { | |||
@JsonKey(includeToJson: true) | |||
String get type => 'update_message'; | |||
|
|||
final int? userId; // TODO(server-5) | |||
final bool? renderingOnly; // TODO(server-5) | |||
final int userId; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussion on this userId
change: #api documentation > `user_id` in `update_message` event @ 💬
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From that discussion (thanks @PIG208!) it sounds like we don't want to make userId
required: we can expect the user_id
key to always be present in the JSON, but it'll be null for rendering-only events.
So I think the change here is just to remove the TODO(server-5)
, in a separate commit that explains why we're not making it required.
@@ -51,7 +51,7 @@ class GetServerSettingsResult { | |||
final String realmName; | |||
final String realmIcon; | |||
final String realmDescription; | |||
final bool? realmWebPublicAccessEnabled; // TODO(server-5) | |||
final bool realmWebPublicAccessEnabled; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO api: Mark GetServerSettingsResult.realmWebPublicAccessEnabled as required, relying on server 5+, FL 116+
See https://github.com/zulip/zulip-flutter/pull/904#discussion_r1747943940.
See "Feature level 116" from Zulip API changelog:
https://zulip.com/api/changelog
Signed-off-by: Zixuan James Li <[email protected]>
as in a previous comment of mine: this is fine; no interaction with disallow-ancient-servers
Yeah. I think this mainly needs an update resolving the TODOs/new comments and a reread. I can get back to this tomorrow night (don't have my laptop with me today). Feel free to beat me to it if needed. |
Pushed an update addressing the new TODOs and the comments above. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I've just read the whole PR; a few comments below.
Pushed one added commit:
f192a63 api: Cut User.isBillingAdmin, obsolete and gone in current servers
I'll also see about making the small other changes and rebasing.
lib/api/model/model.dart
Outdated
bool? isBillingAdmin; // TODO(server-5) | ||
bool? isBillingAdmin; // TODO(server-10) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we didn't have any logic using this now-obsolete field, we don't have to wait before removing our code for it; we can go ahead and stop looking for the field now.
I'll add a commit to that effect.
userId = int.tryParse(userIdStr, radix: 10); | ||
if (userId == null) throw const FormatException(); | ||
} | ||
final int? userId = int.tryParse(userIdStr, radix: 10); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: omit boring types
final int? userId = int.tryParse(userIdStr, radix: 10); | |
final userId = int.tryParse(userIdStr, radix: 10); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
… I guess the existing code just above for Uri.tryParse does the same thing, so this matches. Whatever, then; we can clean up them both if we're touching this code in the future.
// Crunchy-shell validation: Both are present if the topic was edited | ||
topic as TopicName; | ||
prevTopic as TopicName; | ||
hasMoved |= !topicMoveWasResolveOrUnresolve(topic, prevTopic); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be simpler:
final prevTopicStr = entry['prev_topic'] as String?;
if (prevTopicStr != null) {
final prevTopic = TopicName.fromJson(prevTopicStr);
final topic = TopicName.fromJson(entry['topic'] as String);
hasMoved |= !topicMoveWasResolveOrUnresolve(topic, prevTopic);
The one difference in behavior that way is that with this version, if a history entry has topic
but not prev_topic
, this code won't notice the mismatch; the other version would throw.
Which is fine. In general our API bindings don't aim to be a validator for correct server behavior; if the server includes something extraneous that they weren't looking for, they won't notice or complain.
The "crunchy shell" concept would come in if this layer of our code were going to pass this data on, to be consumed by other code deeper in the app (the "soft center"). When that's happening, it's important that the data that gets passed on be internally coherent. But here topic
and prevTopic
don't get passed on anywhere, except to this topicMoveWasResolveOrUnresolve
call; and we don't make that call anyway unless they're both present.
lib/api/core.dart
Outdated
@@ -14,7 +14,7 @@ import 'exception.dart'; | |||
/// | |||
/// When updating this, also update [kMinSupportedZulipFeatureLevel] | |||
/// and the README. | |||
// TODO(#268) address all TODO(server-5), TODO(server-6), and TODO(server-7) | |||
// TODO(#992) address all TODO(server-6), and TODO(server-7) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
// TODO(#992) address all TODO(server-6), and TODO(server-7) | |
// TODO(#992) address all TODO(server-6) and TODO(server-7) |
/// | ||
/// Gives null if the server reports that the message doesn't exist. | ||
// TODO(server-5) Simplify this away; just use getMessage. | ||
Future<Message?> getMessageCompat(ApiConnection connection, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit in commit message: use 9 hex digits for commit IDs (https://github.com/zulip/zulip-mobile/blob/main/docs/style.md#mentioning-commits)
See also commit 631f4d68 .
While is_billing_admin has become required since feature level 73, it then got removed at feature level 363. See "Feature level 73" and "Feature level 363": https://zulip.com/api/changelog
We weren't using this; and since it's deprecated, we don't expect to ever use it in the future. Because this doesn't appear in the current API docs (except in a "Changes" note saying how it used to be there), it doesn't need even a commented-out tombstone, either, like we have for isGuest and some others. (This change is NFC on all well-behaved servers; it's not quite NFC only in that if a server now sends this field but with a value of an unexpected type, the old code would reject that as malformed and the new code won't notice or care.)
…n server 5+, FL 83+ See "Feature level 83" from Zulip API changelog: https://zulip.com/api/changelog
See "Feature level 88" from Zulip API changelog: https://zulip.com/api/changelog This does not interfere with our handling of disallow-connecting-to-ancient-servers, which does not rely on GetServerSettingsResult.
…er 5+, FL 88+ See "Feature level 88" from Zulip API changelog: https://zulip.com/api/changelog This does not interfere with our handling of disallow-connecting-to-ancient-servers, which does not rely on InitialSnapshot.
This was done at the API boundary in commit e6f4576. But the resulting simplifications can be propagated a bit further. See "Feature level 89" from Zulip API changelog: https://zulip.com/api/changelog
… 108+. See "Feature level 108" from Zulip API changelog: https://zulip.com/api/changelog
It is true that userId will always be present after feature level 114, but it can still be null (as of July 2025). So supporting Zulip 5.0+ only does not require changing the type of UpdateMessageEvent.userId. See CZO discussion: https://chat.zulip.org/#narrow/channel/412-api-documentation/topic/.60user_id.60.20in.20.60update_message.60.20event/near/2215174 API documentation: https://zulip.com/api/get-events#update_message
…d, relying on server 5+, FL 114+ See "Feature level 114" from Zulip API changelog: https://zulip.com/api/changelog See also: https://zulip.com/api/get-events#update_message
…relying on server 5+, FL 115+. See "Feature level 115" from Zulip API changelog: https://zulip.com/api/changelog See also: zulip/zulip#18067
…relying on server 5+, FL 115+ See "Feature level 115" from Zulip API changelog: https://zulip.com/api/changelog
…ired, relying on server 5+, FL 116+ See "Feature level 116" from Zulip API changelog: https://zulip.com/api/changelog
…, relying on server 5+, FL 118+ "topic" is no longer optional when the topic was edited, we also don't need to expect "prev_subject" as opposed to "prev_topic". See "Feature level 118" from Zulip API changelog: https://zulip.com/api/changelog See also: https://zulip.com/api/get-messages#response
…ing on server 5+, FL 119+ See "Feature level 119" from Zulip API changelog: https://zulip.com/api/changelog See also: https://chat.zulip.org/#narrow/stream/412-api-documentation/topic/register.3A.20When.20was.20.60unread_msgs.2Epms.5B.5D.2Eother_user_id.60.20added.3F
See "Feature level 120" from Zulip API changelog: https://zulip.com/api/changelog See also commit 631f4d6, which introduced this wrapper. Fixes: zulip#268
OK, revised and updated. @chrisbobbe would you take a look at the revision? |
Blocked by #267, but these are migrations that can happen in parallel. I imagine that there won't be much overhead rebasing this kind of changes.
Fixes: #268