Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit c9316f9

Browse files
committed
Merge branch 'release-v1.68' into develop
2 parents f7c89c4 + 6823859 commit c9316f9

File tree

8 files changed

+360
-10
lines changed

8 files changed

+360
-10
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
!README.rst
99
!pyproject.toml
1010
!poetry.lock
11+
!Cargo.lock
1112
!build_rust.py
1213

1314
rust/target

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Install Rust
9595
uses: actions-rs/toolchain@v1
9696
with:
97-
toolchain: 1.61.0
97+
toolchain: 1.58.1
9898
override: true
9999
components: clippy
100100
- uses: Swatinem/rust-cache@v2
@@ -112,7 +112,7 @@ jobs:
112112
- name: Install Rust
113113
uses: actions-rs/toolchain@v1
114114
with:
115-
toolchain: 1.61.0
115+
toolchain: 1.58.1
116116
override: true
117117
components: rustfmt
118118
- uses: Swatinem/rust-cache@v2
@@ -204,7 +204,7 @@ jobs:
204204
- name: Install Rust
205205
uses: actions-rs/toolchain@v1
206206
with:
207-
toolchain: 1.61.0
207+
toolchain: 1.58.1
208208
override: true
209209
- uses: Swatinem/rust-cache@v2
210210

@@ -320,7 +320,7 @@ jobs:
320320
- name: Install Rust
321321
uses: actions-rs/toolchain@v1
322322
with:
323-
toolchain: 1.61.0
323+
toolchain: 1.58.1
324324
override: true
325325
- uses: Swatinem/rust-cache@v2
326326

@@ -452,7 +452,7 @@ jobs:
452452
- name: Install Rust
453453
uses: actions-rs/toolchain@v1
454454
with:
455-
toolchain: 1.61.0
455+
toolchain: 1.58.1
456456
override: true
457457
- uses: Swatinem/rust-cache@v2
458458

@@ -478,7 +478,7 @@ jobs:
478478
- name: Install Rust
479479
uses: actions-rs/toolchain@v1
480480
with:
481-
toolchain: 1.61.0
481+
toolchain: 1.58.1
482482
override: true
483483
- uses: Swatinem/rust-cache@v2
484484

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ _trial_temp*/
1515
.DS_Store
1616
__pycache__/
1717

18-
# We do want the poetry lockfile.
18+
# We do want the poetry and cargo lockfile.
1919
!poetry.lock
20+
!Cargo.lock
2021

2122
# stuff that is likely to exist when you run a server locally
2223
/*.db

CHANGES.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Synapse 1.68.0rc1 (2022-09-20)
1+
Synapse 1.68.0rc2 (2022-09-23)
22
==============================
33

44
Please note that Synapse will now refuse to start if configured to use a version of SQLite earlier than 3.27.
@@ -8,6 +8,23 @@ Those using packages will not be affected. On most platforms, installing with `p
88
See the [upgrade notes](https://matrix-org.github.io/synapse/v1.68/upgrade.html#upgrading-to-v1670).
99

1010

11+
Bugfixes
12+
--------
13+
14+
- Fix building from packaged sdist. Broke in v1.68.0rc1. ([\#13866](https://github.com/matrix-org/synapse/issues/13866))
15+
16+
17+
Internal Changes
18+
----------------
19+
20+
- Fix the release script not publishing binary wheels. ([\#13850](https://github.com/matrix-org/synapse/issues/13850))
21+
- Lower minimum supported rustc version to 1.58.1. ([\#13857](https://github.com/matrix-org/synapse/issues/13857))
22+
- Lock Rust dependencies versions. ([\#13858](https://github.com/matrix-org/synapse/issues/13858))
23+
24+
25+
Synapse 1.68.0rc1 (2022-09-20)
26+
==============================
27+
1128
Features
1229
--------
1330

0 commit comments

Comments
 (0)