diff --git a/CHANGES.md b/CHANGES.md
index 72091d605c..c7d6c1f129 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,38 @@
+# Synapse 1.132.0rc1 (2025-06-10)
+
+### Features
+
+- Add support for [MSC4155](https://github.com/matrix-org/matrix-spec-proposals/pull/4155) Invite Filtering. ([\#18288](https://github.com/element-hq/synapse/issues/18288))
+- Add experimental `user_may_send_state_event` module API callback. ([\#18455](https://github.com/element-hq/synapse/issues/18455))
+- Add experimental `get_media_config_for_user` and `is_user_allowed_to_upload_media_of_size` module API callbacks that allow overriding of media repository maximum upload size. ([\#18457](https://github.com/element-hq/synapse/issues/18457))
+- Add experimental `get_ratelimit_override_for_user` module API callback that allows overriding of per-user ratelimits. ([\#18458](https://github.com/element-hq/synapse/issues/18458))
+- Pass `room_config` argument to `user_may_create_room` spam checker module callback. ([\#18486](https://github.com/element-hq/synapse/issues/18486))
+- Support configuration of default and extra user types. ([\#18456](https://github.com/element-hq/synapse/issues/18456))
+- Successful requests to `/_matrix/app/v1/ping` will now force Synapse to reattempt delivering transactions to appservices. ([\#18521](https://github.com/element-hq/synapse/issues/18521))
+- Support the import of the `RatelimitOverride` type from `synapse.module_api` in modules and rename `messages_per_second` to `per_second`. ([\#18513](https://github.com/element-hq/synapse/issues/18513))
+
+### Bugfixes
+
+- Remove destinations from sending if not whitelisted. ([\#18484](https://github.com/element-hq/synapse/issues/18484))
+- Fixed room summary API incorrectly returning that a room is private in the room summary response when the join rule is omitted by the remote server. Contributed by @nexy7574. ([\#18493](https://github.com/element-hq/synapse/issues/18493))
+- Prevent users from adding themselves to their own user ignore list. ([\#18508](https://github.com/element-hq/synapse/issues/18508))
+
+### Improved Documentation
+
+- Generate config documentation from JSON Schema file. ([\#17892](https://github.com/element-hq/synapse/issues/17892))
+- Mention `CAP_NET_BIND_SERVICE` as an alternative to running Synapse as root in order to bind to a privileged port. ([\#18408](https://github.com/element-hq/synapse/issues/18408))
+- Surface hidden Admin API documentation regarding fetching of scheduled tasks. ([\#18516](https://github.com/element-hq/synapse/issues/18516))
+- Mark the new module APIs in this release as experimental. ([\#18536](https://github.com/element-hq/synapse/issues/18536))
+
+### Internal Changes
+
+- Mark dehydrated devices in the [List All User Devices Admin API](https://element-hq.github.io/synapse/latest/admin_api/user_admin_api.html#list-all-devices). ([\#18252](https://github.com/element-hq/synapse/issues/18252))
+- Reduce disk wastage by cleaning up `received_transactions` older than 1 day, rather than 30 days. ([\#18310](https://github.com/element-hq/synapse/issues/18310))
+- Distinguish all vs local events being persisted in the "Event Send Time Quantiles" graph (Grafana). ([\#18510](https://github.com/element-hq/synapse/issues/18510))
+
+
+
+
# Synapse 1.131.0 (2025-06-03)
No significant changes since 1.131.0rc1.
diff --git a/changelog.d/17892.doc b/changelog.d/17892.doc
deleted file mode 100644
index 83c03190dd..0000000000
--- a/changelog.d/17892.doc
+++ /dev/null
@@ -1 +0,0 @@
-Generate config documentation from JSON Schema file.
diff --git a/changelog.d/18252.misc b/changelog.d/18252.misc
deleted file mode 100644
index 6c76aca29c..0000000000
--- a/changelog.d/18252.misc
+++ /dev/null
@@ -1 +0,0 @@
-Mark dehydrated devices in the [List All User Devices Admin API](https://element-hq.github.io/synapse/latest/admin_api/user_admin_api.html#list-all-devices).
\ No newline at end of file
diff --git a/changelog.d/18288.feature b/changelog.d/18288.feature
deleted file mode 100644
index 6856167875..0000000000
--- a/changelog.d/18288.feature
+++ /dev/null
@@ -1 +0,0 @@
-Add support for [MSC4155](https://github.com/matrix-org/matrix-spec-proposals/pull/4155) Invite Filtering.
diff --git a/changelog.d/18310.misc b/changelog.d/18310.misc
deleted file mode 100644
index 1837b339f4..0000000000
--- a/changelog.d/18310.misc
+++ /dev/null
@@ -1 +0,0 @@
-Reduce disk wastage by cleaning up `received_transactions` older than 1 day, rather than 30 days.
\ No newline at end of file
diff --git a/changelog.d/18408.doc b/changelog.d/18408.doc
deleted file mode 100644
index d88f429381..0000000000
--- a/changelog.d/18408.doc
+++ /dev/null
@@ -1 +0,0 @@
-Mention `CAP_NET_BIND_SERVICE` as an alternative to running Synapse as root in order to bind to a privileged port.
diff --git a/changelog.d/18455.feature b/changelog.d/18455.feature
deleted file mode 100644
index f1b90e4a60..0000000000
--- a/changelog.d/18455.feature
+++ /dev/null
@@ -1 +0,0 @@
-Add user_may_send_state_event callback to spam checker module API.
\ No newline at end of file
diff --git a/changelog.d/18456.feature b/changelog.d/18456.feature
deleted file mode 100644
index 706417e341..0000000000
--- a/changelog.d/18456.feature
+++ /dev/null
@@ -1 +0,0 @@
-Support configuration of default and extra user types.
\ No newline at end of file
diff --git a/changelog.d/18457.feature b/changelog.d/18457.feature
deleted file mode 100644
index 76374dc3cd..0000000000
--- a/changelog.d/18457.feature
+++ /dev/null
@@ -1 +0,0 @@
-Add new module API callbacks that allows overriding of media repository maximum upload size.
\ No newline at end of file
diff --git a/changelog.d/18458.feature b/changelog.d/18458.feature
deleted file mode 100644
index 92f11a8a2c..0000000000
--- a/changelog.d/18458.feature
+++ /dev/null
@@ -1 +0,0 @@
-Add a new module API callback that allows overriding of per user ratelimits.
\ No newline at end of file
diff --git a/changelog.d/18484.bugfix b/changelog.d/18484.bugfix
deleted file mode 100644
index c816410da4..0000000000
--- a/changelog.d/18484.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Remove destinations from sending if not whitelisted.
diff --git a/changelog.d/18486.feature b/changelog.d/18486.feature
deleted file mode 100644
index 7e1c713081..0000000000
--- a/changelog.d/18486.feature
+++ /dev/null
@@ -1 +0,0 @@
-Pass room_config argument to user_may_create_room spam checker module callback.
diff --git a/changelog.d/18493.bugfix b/changelog.d/18493.bugfix
deleted file mode 100644
index a4fab75e69..0000000000
--- a/changelog.d/18493.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed room summary API incorrectly returning that a room is private in the room summary response when the join rule is omitted by the remote server. Contributed by @nexy7574.
diff --git a/changelog.d/18508.bugfix b/changelog.d/18508.bugfix
deleted file mode 100644
index e8d5228ac1..0000000000
--- a/changelog.d/18508.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Prevent users from adding themselves to their own ignore list.
diff --git a/changelog.d/18510.misc b/changelog.d/18510.misc
deleted file mode 100644
index 71a3549d31..0000000000
--- a/changelog.d/18510.misc
+++ /dev/null
@@ -1 +0,0 @@
-Distinguish all vs local events being persisted in the "Event Send Time Quantiles" graph (Grafana).
diff --git a/changelog.d/18513.bugfix b/changelog.d/18513.bugfix
deleted file mode 100644
index b44eaafd15..0000000000
--- a/changelog.d/18513.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Support the import of the `RatelimitOverride` type from `synapse.module_api` in modules and rename `messages_per_second` to `per_second`.
\ No newline at end of file
diff --git a/changelog.d/18516.doc b/changelog.d/18516.doc
deleted file mode 100644
index c739d32f5e..0000000000
--- a/changelog.d/18516.doc
+++ /dev/null
@@ -1 +0,0 @@
-Surface hidden Admin API documentation regarding fetching of scheduled tasks.
\ No newline at end of file
diff --git a/changelog.d/18521.feature b/changelog.d/18521.feature
deleted file mode 100644
index 29da172e91..0000000000
--- a/changelog.d/18521.feature
+++ /dev/null
@@ -1 +0,0 @@
-Successful requests to `/_matrix/app/v1/ping` will now force Synapse to reattempt delivering transactions to appservices.
diff --git a/changelog.d/18536.doc b/changelog.d/18536.doc
deleted file mode 100644
index db57be4a83..0000000000
--- a/changelog.d/18536.doc
+++ /dev/null
@@ -1 +0,0 @@
-Mark the new module APIs in this release as experimental.
\ No newline at end of file
diff --git a/debian/changelog b/debian/changelog
index 8ad7f3184a..e0d7ea20fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+matrix-synapse-py3 (1.132.0~rc1) stable; urgency=medium
+
+ * New Synapse release 1.132.0rc1.
+
+ -- Synapse Packaging team <packages@matrix.org> Tue, 10 Jun 2025 11:15:18 +0100
+
matrix-synapse-py3 (1.131.0) stable; urgency=medium
* New Synapse release 1.131.0.
diff --git a/pyproject.toml b/pyproject.toml
index d95881b53a..2359c74032 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -97,7 +97,7 @@ module-name = "synapse.synapse_rust"
[tool.poetry]
name = "matrix-synapse"
-version = "1.131.0"
+version = "1.132.0rc1"
description = "Homeserver for the Matrix decentralised comms protocol"
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
license = "AGPL-3.0-or-later"
diff --git a/schema/synapse-config.schema.yaml b/schema/synapse-config.schema.yaml
index 5ebe80f51c..88804cab8d 100644
--- a/schema/synapse-config.schema.yaml
+++ b/schema/synapse-config.schema.yaml
@@ -1,5 +1,5 @@
$schema: https://element-hq.github.io/synapse/latest/schema/v1/meta.schema.json
-$id: https://element-hq.github.io/synapse/v1.131/schema/synapse-config.schema.json
+$id: https://element-hq.github.io/synapse/schema/synapse/v1.132/synapse-config.schema.json
type: object
properties:
modules:
|