-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of github.com:element-hq/synapse into dependab…
…ot/cargo/serde_json-1.0.115
- Loading branch information
Showing
19 changed files
with
793 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix various long-standing bugs which could cause incorrect state to be returned from `/sync` in certain situations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix various long-standing bugs which could cause incorrect state to be returned from `/sync` in certain situations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix various long-standing bugs which could cause incorrect state to be returned from `/sync` in certain situations. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Refactor auth chain fetching to reduce duplication. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Improve database performance by adding a missing index to `access_tokens.refresh_token_id`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Improve database performance by reducing number of receipts fetched when sending push notifications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix various long-standing bugs which could cause incorrect state to be returned from `/sync` in certain situations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix various long-standing bugs which could cause incorrect state to be returned from `/sync` in certain situations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
matrix-synapse-py3 (1.104.0) stable; urgency=medium | ||
|
||
* New Synapse release 1.104.0. | ||
|
||
-- Synapse Packaging team <[email protected]> Tue, 02 Apr 2024 17:15:45 +0100 | ||
|
||
matrix-synapse-py3 (1.104.0~rc1) stable; urgency=medium | ||
|
||
* New Synapse release 1.104.0rc1. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ module-name = "synapse.synapse_rust" | |
|
||
[tool.poetry] | ||
name = "matrix-synapse" | ||
version = "1.104.0rc1" | ||
version = "1.104.0" | ||
description = "Homeserver for the Matrix decentralised comms protocol" | ||
authors = ["Matrix.org Team and Contributors <[email protected]>"] | ||
license = "AGPL-3.0-or-later" | ||
|
@@ -321,7 +321,7 @@ all = [ | |
# This helps prevents merge conflicts when running a batch of dependabot updates. | ||
isort = ">=5.10.1" | ||
black = ">=22.7.0" | ||
ruff = "0.3.2" | ||
ruff = "0.3.5" | ||
# Type checking only works with the pydantic.v1 compat module from pydantic v2 | ||
pydantic = "^2" | ||
|
||
|
Oops, something went wrong.