diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-09 10:34:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 10:34:10 -0400 |
commit | 4b4e0dc3cecbe9ad65c4728c1ec461321d15789f (patch) | |
tree | bba2f02650eac695bb7e1f27f552b2a9c7d60f83 /changelog.d | |
parent | Use account data constants in more places. (#15554) (diff) | |
download | synapse-4b4e0dc3cecbe9ad65c4728c1ec461321d15789f.tar.xz |
Error if attempting to set m.push_rules account data, per MSC4010. (#15555)
m.push_rules, like m.fully_read, is a special account data type that cannot be set using the normal /account_data endpoint. Return an error instead of allowing data that will not be used to be stored.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/15554.bugfix | 1 | ||||
-rw-r--r-- | changelog.d/15554.misc | 1 | ||||
-rw-r--r-- | changelog.d/15555.bugfix | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/15554.bugfix b/changelog.d/15554.bugfix new file mode 100644 index 0000000000..0fd9de8c65 --- /dev/null +++ b/changelog.d/15554.bugfix @@ -0,0 +1 @@ +Experimental support for [MSC4010](https://github.com/matrix-org/matrix-spec-proposals/pull/4010) which rejects setting the `"m.push_rules"` via account data. diff --git a/changelog.d/15554.misc b/changelog.d/15554.misc deleted file mode 100644 index 002e3f5315..0000000000 --- a/changelog.d/15554.misc +++ /dev/null @@ -1 +0,0 @@ -Use account data constants in more places. diff --git a/changelog.d/15555.bugfix b/changelog.d/15555.bugfix new file mode 100644 index 0000000000..0fd9de8c65 --- /dev/null +++ b/changelog.d/15555.bugfix @@ -0,0 +1 @@ +Experimental support for [MSC4010](https://github.com/matrix-org/matrix-spec-proposals/pull/4010) which rejects setting the `"m.push_rules"` via account data. |