Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Warn that /register will soon require a type when called with an access token #9559

Merged
merged 6 commits into from
Mar 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Removal warning
---------------

Note that this release deprecates the ability for appservices to call `POST /_matrix/client/r0/register` without the body parameter `type`. Appservice developers should use a `type` value of `m.login.application_service` as per the spec. In future releases, calling this endpoint with an access token but
without a valid type will fail.

Synapse 1.29.0 (2021-03-08)
===========================

Expand Down
1 change: 1 addition & 0 deletions changelog.d/9559.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Registering an Application Service user without using the `m.login.application_service` login type will be unsupported in an upcoming Synapse release.