Skip to content

Commit

Permalink
Merge branch 'zulip:main' into Wr4th100/todo_widget
Browse files Browse the repository at this point in the history
  • Loading branch information
Wr4th100 committed Mar 24, 2024
2 parents 63d95f7 + e5d50d9 commit 3f972aa
Show file tree
Hide file tree
Showing 1,568 changed files with 37,599 additions and 21,066 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.json
Expand Up @@ -277,6 +277,12 @@
],
"unicorn/prefer-string-replace-all": "off"
}
},
{
"files": ["web/server/**"],
"env": {
"node": true
}
}
]
}
2 changes: 1 addition & 1 deletion analytics/tests/test_counts.py
Expand Up @@ -170,7 +170,7 @@ def create_huddle_with_recipient(self, **kwargs: Any) -> Tuple[Huddle, Recipient
for key, value in defaults.items():
kwargs[key] = kwargs.get(key, value)
huddle = Huddle.objects.create(**kwargs)
recipient = Recipient.objects.create(type_id=huddle.id, type=Recipient.HUDDLE)
recipient = Recipient.objects.create(type_id=huddle.id, type=Recipient.DIRECT_MESSAGE_GROUP)
huddle.recipient = recipient
huddle.save(update_fields=["recipient"])
return huddle, recipient
Expand Down
18 changes: 15 additions & 3 deletions api_docs/changelog.md
Expand Up @@ -20,6 +20,15 @@ format used by the Zulip server that they are interacting with.

## Changes in Zulip 9.0

**Feature level 244**

* [`POST /register`](/api/register-queue), [`GET /events`](/api/get-events),
[`POST /realm/profile_fields`](/api/create-custom-profile-field),
[`GET /realm/profile_fields`](/api/get-custom-profile-fields): Added a new
parameter `required`, on custom profile field objects, indicating whether an
organization administrator has configured the field as something users should
be required to provide.

**Feature level 243**

* [`POST /register`](/api/register-queue), [`GET
Expand Down Expand Up @@ -204,9 +213,12 @@ No changes; feature level used for Zulip 8.0 release.
**Feature level 224**

* [`GET /events`](/api/get-events), [`GET /messages`](/api/get-messages),
[`GET /messages/{message_id}`](/api/get-message): The `wildcard_mentioned`
flag was deprecated, replaced with `stream_wildcard_mentioned` and
`topic_wildcard_mentioned`, but it is still available for backwards compatibility.
[`GET /messages/{message_id}`](/api/get-message): Of the [available
message flags](/api/update-message-flags#available-flags) that a user
may have for a message, the `wildcard_mentioned` flag was
deprecated in favor of the `stream_wildcard_mentioned` and
`topic_wildcard_mentioned` flags, but it is still available for
backwards compatibility.

**Feature level 223**

Expand Down

0 comments on commit 3f972aa

Please sign in to comment.