This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into server-notice-room…
…-avatar
- Loading branch information
Showing
53 changed files
with
1,026 additions
and
134 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
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,52 @@ | ||
# A helper workflow to automatically fixup any linting errors on a PR. Must be | ||
# triggered manually. | ||
|
||
name: Attempt to automatically fix linting errors | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
fixup: | ||
name: Fix up | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
# We use nightly so that `fmt` correctly groups together imports, and | ||
# clippy correctly fixes up the benchmarks. | ||
toolchain: nightly-2022-12-01 | ||
components: rustfmt | ||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Setup Poetry | ||
uses: matrix-org/setup-python-poetry@v1 | ||
with: | ||
install-project: "false" | ||
|
||
- name: Import order (isort) | ||
continue-on-error: true | ||
run: poetry run isort . | ||
|
||
- name: Code style (black) | ||
continue-on-error: true | ||
run: poetry run black . | ||
|
||
- name: Semantic checks (ruff) | ||
continue-on-error: true | ||
run: poetry run ruff --fix . | ||
|
||
- run: cargo clippy --all-features --fix -- -D warnings | ||
continue-on-error: true | ||
|
||
- run: cargo fmt | ||
continue-on-error: true | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Attempt to fix linting" |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
matrix-synapse-py3 (1.98.0~rc1) stable; urgency=medium | ||
|
||
* New Synapse release 1.98.0rc1. | ||
|
||
-- Synapse Packaging team <[email protected]> Tue, 05 Dec 2023 13:08:42 +0000 | ||
|
||
matrix-synapse-py3 (1.97.0) stable; urgency=medium | ||
|
||
* New Synapse release 1.97.0. | ||
|
||
-- Synapse Packaging team <[email protected]> Tue, 28 Nov 2023 14:08:58 +0000 | ||
|
||
matrix-synapse-py3 (1.97.0~rc1) stable; urgency=medium | ||
|
||
* New Synapse release 1.97.0rc1. | ||
|
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
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
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
Oops, something went wrong.