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

Commit 63bd48c

Browse files
committed
Merge remote-tracking branch 'origin/develop' into rei/frrj_workers_complement
2 parents 066f983 + ba4ea7d commit 63bd48c

File tree

106 files changed

+1997
-737
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+1997
-737
lines changed

.github/workflows/dependabot_changelog.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- reopened # For debugging!
77

88
permissions:
9-
# Needed to be able to push the commit. See
9+
# Needed to be able to push the commit. See
1010
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request
1111
# for a similar example
1212
contents: write
@@ -20,8 +20,11 @@ jobs:
2020
with:
2121
ref: ${{ github.event.pull_request.head.ref }}
2222
- name: Write, commit and push changelog
23+
env:
24+
PR_TITLE: ${{ github.event.pull_request.title }}
25+
PR_NUMBER: ${{ github.event.pull_request.number }}
2326
run: |
24-
echo "${{ github.event.pull_request.title }}." > "changelog.d/${{ github.event.pull_request.number }}".misc
27+
echo "${PR_TITLE}." > "changelog.d/${PR_NUMBER}".misc
2528
git add changelog.d
2629
git config user.email "github-actions[bot]@users.noreply.github.com"
2730
git config user.name "GitHub Actions"

.github/workflows/docs-pr-netlify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
1515
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
1616
- name: 📥 Download artifact
17-
uses: dawidd6/action-download-artifact@e6e25ac3a2b93187502a8be1ef9e9603afc34925 # v2.24.2
17+
uses: dawidd6/action-download-artifact@bd10f381a96414ce2b13a11bfa89902ba7cea07f # v2.24.3
1818
with:
1919
workflow: docs-pr.yaml
2020
run_id: ${{ github.event.workflow_run.id }}

.github/workflows/docs-pr.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request:
55
paths:
66
- docs/**
7+
- book.toml
8+
- .github/workflows/docs-pr.yaml
79

810
jobs:
911
pages:
@@ -32,3 +34,27 @@ jobs:
3234
path: book
3335
# We'll only use this in a workflow_run, then we're done with it
3436
retention-days: 1
37+
38+
link-check:
39+
name: Check links in documentation
40+
runs-on: ubuntu-latest
41+
steps:
42+
- uses: actions/checkout@v2
43+
44+
- name: Setup mdbook
45+
uses: peaceiris/actions-mdbook@adeb05db28a0c0004681db83893d56c0388ea9ea # v1.2.0
46+
with:
47+
mdbook-version: '0.4.17'
48+
49+
- name: Setup htmltest
50+
run: |
51+
wget https://github.com/wjdp/htmltest/releases/download/v0.17.0/htmltest_0.17.0_linux_amd64.tar.gz
52+
echo '775c597ee74899d6002cd2d93076f897f4ba68686bceabe2e5d72e84c57bc0fb htmltest_0.17.0_linux_amd64.tar.gz' | sha256sum -c
53+
tar zxf htmltest_0.17.0_linux_amd64.tar.gz
54+
55+
- name: Test links with htmltest
56+
# Build the book with `./` as the site URL (to make checks on 404.html possible)
57+
# Then run htmltest (without checking external links since that involves the network and is slow).
58+
run: |
59+
MDBOOK_OUTPUT__HTML__SITE_URL="./" mdbook build
60+
./htmltest book --skip-external

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
# Deploy to the target directory.
6060
- name: Deploy to gh pages
61-
uses: peaceiris/actions-gh-pages@de7ea6f8efb354206b205ef54722213d99067935 # v3.9.0
61+
uses: peaceiris/actions-gh-pages@64b46b4226a4a12da2239ba3ea5aa73e3163c75b # v3.9.1
6262
with:
6363
github_token: ${{ secrets.GITHUB_TOKEN }}
6464
publish_dir: ./book

.github/workflows/latest_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208

209209
steps:
210210
- uses: actions/checkout@v3
211-
- uses: JasonEtco/create-an-issue@3a8ba796516b57db8cb2ee6dfc65bc76cd39d56d # v2.8.2
211+
- uses: JasonEtco/create-an-issue@e27dddc79c92bc6e4562f268fffa5ed752639abd # v2.9.1
212212
env:
213213
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
214214
with:

.github/workflows/release-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
env:
149149
# Skip testing for platforms which various libraries don't have wheels
150150
# for, and so need extra build deps.
151-
CIBW_TEST_SKIP: pp39-* *i686* *musl* pp37-macosx*
151+
CIBW_TEST_SKIP: pp3{7,9}-* *i686* *musl*
152152
# Fix Rust OOM errors on emulated aarch64: https://github.com/rust-lang/cargo/issues/10583
153153
CARGO_NET_GIT_FETCH_WITH_CLI: true
154154
CIBW_ENVIRONMENT_PASS_LINUX: CARGO_NET_GIT_FETCH_WITH_CLI

.github/workflows/twisted_trunk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174

175175
steps:
176176
- uses: actions/checkout@v3
177-
- uses: JasonEtco/create-an-issue@3a8ba796516b57db8cb2ee6dfc65bc76cd39d56d # v2.8.2
177+
- uses: JasonEtco/create-an-issue@e27dddc79c92bc6e4562f268fffa5ed752639abd # v2.9.1
178178
env:
179179
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
180180
with:

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

changelog.d/14714.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add experimental support for [MSC3391](https://github.com/matrix-org/matrix-spec-proposals/pull/3391) (removing account data).

changelog.d/14716.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Batch up replication requests to request the resyncing of remote users's devices.

0 commit comments

Comments
 (0)