diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-16 14:55:37 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-16 14:55:37 +0000 |
commit | 95b332e90a232aadce5c8fb95284504a45c2a364 (patch) | |
tree | 2496a8636de6aa9a80d1b8a01c0cd1dc313ccddc /changelog.d | |
parent | Merge pull request #6214 from matrix-org/rav/event_auth/1 (diff) | |
parent | Remove Auth.check method (#6217) (diff) | |
download | synapse-95b332e90a232aadce5c8fb95284504a45c2a364.tar.xz |
Remove Auth.check method (#6217)
* commit '93eaeec75': Remove Auth.check method (#6217) add note about database upgrade use the right function for when we're already in runInteraction add user signature stream change cache to slaved device store black use stream ID generator instead of timestamp make isort happy apply PR review suggestions fix formatting add changelog make changes from PR review don't need to return the hidden column any more really fix queries to work with Postgres PostgreSQL, Y U no like? remove extra SQL query param add changelog file apply changes from PR review allow uploading keys for cross-signing allow devices to be marked as "hidden"
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/5759.misc | 5 | ||||
-rw-r--r-- | changelog.d/5769.feature | 1 | ||||
-rw-r--r-- | changelog.d/6217.misc | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/changelog.d/5759.misc b/changelog.d/5759.misc index c0bc566c4c..dc7e2c01bf 100644 --- a/changelog.d/5759.misc +++ b/changelog.d/5759.misc @@ -1 +1,4 @@ -Allow devices to be marked as hidden, for use by features such as cross-signing. \ No newline at end of file +Allow devices to be marked as hidden, for use by features such as cross-signing. +This adds a new field with a default value to the devices field in the database, +and so the database upgrade may take a long time depending on how many devices +are in the database. diff --git a/changelog.d/5769.feature b/changelog.d/5769.feature new file mode 100644 index 0000000000..bf994ca327 --- /dev/null +++ b/changelog.d/5769.feature @@ -0,0 +1 @@ +Allow uploading of cross-signing keys. \ No newline at end of file diff --git a/changelog.d/6217.misc b/changelog.d/6217.misc new file mode 100644 index 0000000000..503352ee0b --- /dev/null +++ b/changelog.d/6217.misc @@ -0,0 +1 @@ +Remove Auth.check method. |