Skip to content

Commit d46b6b6

Browse files
committed
Merge branch 'main' into johannes/msc4156
2 parents 0ec82fb + 3ca9dae commit d46b6b6

File tree

656 files changed

+5011
-8545
lines changed

Some content is hidden

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

656 files changed

+5011
-8545
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @matrix-org/dendrite-core
1+
* @element-hq/dendrite-core

.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ about: Suggest an idea for this project
66

77
<!--
88
Please do not open feature requests for missing parts of the Matrix specification.
9-
We are tracking those features under https://github.com/matrix-org/dendrite/issues?q=is%3Aissue+is%3Aopen+label%3Aare-we-synapse-yet
9+
We are tracking those features under https://github.com/element-hq/dendrite/issues?q=is%3Aissue+is%3Aopen+label%3Aare-we-synapse-yet
1010
-->
1111

1212
**Description:**

.github/workflows/dendrite.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ on:
55
branches:
66
- main
77
paths:
8-
- '**.go' # only execute on changes to go files
9-
- 'go.sum' # or dependency updates
10-
- '.github/workflows/**' # or workflow changes
8+
- "**.go" # only execute on changes to go files
9+
- "go.sum" # or dependency updates
10+
- ".github/workflows/**" # or workflow changes
1111
pull_request:
1212
paths:
13-
- '**.go'
14-
- 'go.sum' # or dependency updates
15-
- '.github/workflows/**'
13+
- "**.go"
14+
- "go.sum" # or dependency updates
15+
- ".github/workflows/**"
1616
release:
1717
types: [published]
1818
workflow_dispatch:
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Go
3434
uses: actions/setup-go@v4
3535
with:
36-
go-version-file: 'go.mod'
36+
go-version-file: "go.mod"
3737
cache: true
3838

3939
- name: Install Node
@@ -72,7 +72,7 @@ jobs:
7272
- name: Install Go
7373
uses: actions/setup-go@v4
7474
with:
75-
go-version-file: 'go.mod'
75+
go-version-file: "go.mod"
7676
- name: golangci-lint
7777
uses: golangci/golangci-lint-action@v3
7878

@@ -108,7 +108,7 @@ jobs:
108108
- name: Setup go
109109
uses: actions/setup-go@v4
110110
with:
111-
go-version-file: 'go.mod'
111+
go-version-file: "go.mod"
112112
- uses: actions/cache@v4
113113
# manually set up caches, as they otherwise clash with different steps using setup-go with cache=true
114114
with:
@@ -145,7 +145,7 @@ jobs:
145145
- name: Setup go
146146
uses: actions/setup-go@v4
147147
with:
148-
go-version-file: 'go.mod'
148+
go-version-file: "go.mod"
149149
- uses: actions/cache@v4
150150
with:
151151
path: |
@@ -178,7 +178,7 @@ jobs:
178178
- name: Setup Go
179179
uses: actions/setup-go@v4
180180
with:
181-
go-version-file: 'go.mod'
181+
go-version-file: "go.mod"
182182
- uses: actions/cache@v4
183183
with:
184184
path: |
@@ -241,7 +241,7 @@ jobs:
241241
- name: Setup go
242242
uses: actions/setup-go@v4
243243
with:
244-
go-version-file: 'go.mod'
244+
go-version-file: "go.mod"
245245
- name: Set up gotestfmt
246246
uses: gotesttools/gotestfmt-action@v2
247247
with:
@@ -279,7 +279,7 @@ jobs:
279279
- name: Setup go
280280
uses: actions/setup-go@v4
281281
with:
282-
go-version-file: 'go.mod'
282+
go-version-file: "go.mod"
283283
cache: true
284284
- uses: actions/cache@v4
285285
with:
@@ -309,7 +309,7 @@ jobs:
309309
- name: Setup go
310310
uses: actions/setup-go@v4
311311
with:
312-
go-version-file: 'go.mod'
312+
go-version-file: "go.mod"
313313
cache: true
314314
- uses: actions/cache@v4
315315
with:
@@ -474,7 +474,7 @@ jobs:
474474
upgrade_test_direct,
475475
sytest,
476476
complement,
477-
integration
477+
integration,
478478
]
479479
runs-on: ubuntu-latest
480480
if: ${{ !cancelled() }} # Run this even if prior jobs were skipped
@@ -490,8 +490,8 @@ jobs:
490490
packages: write
491491
contents: read
492492
security-events: write # To upload Trivy sarif files
493-
if: github.repository == 'matrix-org/dendrite' && github.ref_name == 'main'
493+
if: github.repository == 'element-hq/dendrite' && github.ref_name == 'main'
494494
needs: [integration-tests-done]
495-
uses: matrix-org/dendrite/.github/workflows/docker.yml@main
495+
uses: element-hq/dendrite/.github/workflows/docker.yml@main
496496
secrets:
497497
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ FROM alpine:latest
3030
RUN apk --update --no-cache add curl
3131
LABEL org.opencontainers.image.title="Dendrite"
3232
LABEL org.opencontainers.image.description="Next-generation Matrix homeserver written in Go"
33-
LABEL org.opencontainers.image.source="https://github.com/matrix-org/dendrite"
34-
LABEL org.opencontainers.image.licenses="Apache-2.0"
35-
LABEL org.opencontainers.image.documentation="https://matrix-org.github.io/dendrite/"
36-
LABEL org.opencontainers.image.vendor="The Matrix.org Foundation C.I.C."
33+
LABEL org.opencontainers.image.source="https://github.com/element-hq/dendrite"
34+
LABEL org.opencontainers.image.licenses="AGPL-3.0-only OR LicenseRef-Element-Commercial"
35+
LABEL org.opencontainers.image.documentation="https://element-hq.github.io/dendrite/"
36+
LABEL org.opencontainers.image.vendor="New Vector Ltd."
3737

3838
COPY --from=build /out/create-account /usr/bin/create-account
3939
COPY --from=build /out/generate-config /usr/bin/generate-config
@@ -45,4 +45,3 @@ WORKDIR /etc/dendrite
4545

4646
ENTRYPOINT ["/usr/bin/dendrite"]
4747
EXPOSE 8008 8448
48-

0 commit comments

Comments
 (0)