Skip to content

Commit 483602e

Browse files
committed
Merge branch 'master' into develop
2 parents 5da7081 + ac42905 commit 483602e

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
id-token: write # needed for signing the images with GitHub OIDC Token
1515
jobs:
1616
build:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Set up QEMU
2020
id: qemu

.github/workflows/release-artifacts.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,3 +221,7 @@ jobs:
221221
Sdist/*
222222
Wheel*/*
223223
debs.tar.xz
224+
# if it's not already published, keep the release as a draft.
225+
draft: true
226+
# mark it as a prerelease if the tag contains 'rc'.
227+
prerelease: ${{ contains(github.ref, 'rc') }}

CHANGES.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
1-
# Synapse 1.121.0rc1 (2024-12-04)
1+
# Synapse 1.121.1 (2024-12-11)
2+
3+
This release contains a fix for our docker build CI. It is functionally identical to 1.121.0, whose changelog is below.
4+
5+
### Internal Changes
6+
7+
- Downgrade the Ubuntu GHA runner when building docker images. ([\#18026](https://github.com/element-hq/synapse/issues/18026))
8+
9+
210

3-
This release candidate contains the security fixes from [v1.120.2](https://github.com/element-hq/synapse/releases/tag/v1.120.2).
411

5-
New changes listed below.
12+
# Synapse 1.121.0 (2024-12-11)
13+
14+
### Internal Changes
15+
16+
- Fix release process to not create duplicate releases. ([\#18025](https://github.com/element-hq/synapse/issues/18025))
17+
18+
19+
20+
# Synapse 1.121.0rc1 (2024-12-04)
621

722
### Features
823

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
matrix-synapse-py3 (1.121.1) stable; urgency=medium
2+
3+
* New Synapse release 1.121.1.
4+
5+
-- Synapse Packaging team <[email protected]> Wed, 11 Dec 2024 18:24:48 +0000
6+
7+
matrix-synapse-py3 (1.121.0) stable; urgency=medium
8+
9+
* New Synapse release 1.121.0.
10+
11+
-- Synapse Packaging team <[email protected]> Wed, 11 Dec 2024 13:12:30 +0100
12+
113
matrix-synapse-py3 (1.121.0~rc1) stable; urgency=medium
214

315
* New Synapse release 1.121.0rc1.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ module-name = "synapse.synapse_rust"
9797

9898
[tool.poetry]
9999
name = "matrix-synapse"
100-
version = "1.121.0rc1"
100+
version = "1.121.1"
101101
description = "Homeserver for the Matrix decentralised comms protocol"
102102
authors = ["Matrix.org Team and Contributors <[email protected]>"]
103103
license = "AGPL-3.0-or-later"

0 commit comments

Comments
 (0)