summary refs log tree commit diff
diff options
context:
space:
mode:
authorH. Shay <hillerys@element.io>2023-03-22 08:30:23 -0700
committerH. Shay <hillerys@element.io>2023-03-22 08:30:23 -0700
commit7655bc054296ced0810d0a649ac7993c9443658b (patch)
tree211ee39fee173cdbf6dde426301e2a3cbfbaab83
parentMerge commit '96bcc5d902' into release-v1.80 (diff)
downloadsynapse-7655bc054296ced0810d0a649ac7993c9443658b.tar.xz
1.80.0rc2 v1.80.0rc2
-rw-r--r--CHANGES.md11
-rw-r--r--changelog.d/15298.bugfix1
-rw-r--r--changelog.d/15300.bugfix1
-rw-r--r--changelog.d/15301.bugfix3
-rw-r--r--debian/changelog6
-rw-r--r--pyproject.toml2
6 files changed, 18 insertions, 6 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 1d15bacb90..88cb2bdf25 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,14 @@
+Synapse 1.80.0rc2 (2023-03-22)
+==============================
+
+Bugfixes
+--------
+
+- Fix a bug in which the [`POST /_matrix/client/v3/rooms/{roomId}/report/{eventId}`](https://spec.matrix.org/v1.6/client-server-api/#post_matrixclientv3roomsroomidreporteventid) endpoint would return the wrong error if the user did not have permission to view the event. This aligns Synapse's implementation with [MSC2249](https://github.com/matrix-org/matrix-spec-proposals/pull/2249). ([\#15298](https://github.com/matrix-org/synapse/issues/15298), [\#15300](https://github.com/matrix-org/synapse/issues/15300))
+- Fix a bug introduced in Synapse 1.75.0rc1 where the [SQLite port_db script](https://matrix-org.github.io/synapse/latest/postgres.html#porting-from-sqlite)
+  would fail to open the SQLite database. ([\#15301](https://github.com/matrix-org/synapse/issues/15301))
+
+
 Synapse 1.80.0rc1 (2023-03-21)
 ==============================
 
diff --git a/changelog.d/15298.bugfix b/changelog.d/15298.bugfix
deleted file mode 100644
index 8f29b08444..0000000000
--- a/changelog.d/15298.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix a bug in which the [`POST /_matrix/client/v3/rooms/{roomId}/report/{eventId}`](https://spec.matrix.org/v1.6/client-server-api/#post_matrixclientv3roomsroomidreporteventid) endpoint would return the wrong error if the user did not have permission to view the event. This aligns Synapse's implementation with [MSC2249](https://github.com/matrix-org/matrix-spec-proposals/pull/2249).
\ No newline at end of file
diff --git a/changelog.d/15300.bugfix b/changelog.d/15300.bugfix
deleted file mode 100644
index 8f29b08444..0000000000
--- a/changelog.d/15300.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix a bug in which the [`POST /_matrix/client/v3/rooms/{roomId}/report/{eventId}`](https://spec.matrix.org/v1.6/client-server-api/#post_matrixclientv3roomsroomidreporteventid) endpoint would return the wrong error if the user did not have permission to view the event. This aligns Synapse's implementation with [MSC2249](https://github.com/matrix-org/matrix-spec-proposals/pull/2249).
\ No newline at end of file
diff --git a/changelog.d/15301.bugfix b/changelog.d/15301.bugfix
deleted file mode 100644
index c8f3628d34..0000000000
--- a/changelog.d/15301.bugfix
+++ /dev/null
@@ -1,3 +0,0 @@
-Fix a bug introduced in Synapse 1.75.0rc1 where the [SQLite port_db script](https://matrix-org.github.io/synapse/latest/postgres.html#porting-from-sqlite)
-would fail to open the SQLite database.
-
diff --git a/debian/changelog b/debian/changelog
index 32df14add6..ca23160308 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+matrix-synapse-py3 (1.80.0~rc2) stable; urgency=medium
+
+  * New Synapse release 1.80.0rc2.
+
+ -- Synapse Packaging team <packages@matrix.org>  Wed, 22 Mar 2023 08:30:16 -0700
+
 matrix-synapse-py3 (1.80.0~rc1) stable; urgency=medium
 
   * New Synapse release 1.80.0rc1.
diff --git a/pyproject.toml b/pyproject.toml
index 0ba5c9480a..19dc7c1536 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -89,7 +89,7 @@ manifest-path = "rust/Cargo.toml"
 
 [tool.poetry]
 name = "matrix-synapse"
-version = "1.80.0rc1"
+version = "1.80.0rc2"
 description = "Homeserver for the Matrix decentralised comms protocol"
 authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
 license = "Apache-2.0"