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

Commit bcdbd5c

Browse files
committed
Version 0.9.3
1 parent 65b7db6 commit bcdbd5c

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## Dendrite 0.9.3 (2022-08-15)
4+
5+
### Important
6+
7+
* This is a **security release** to fix a vulnerability within event auth, affecting all versions of Dendrite before 0.9.3. Upgrading to this version is highly recommended. For more information, [see here](https://github.com/matrix-org/gomatrixserverlib/security/advisories/GHSA-grvv-h2f9-7v9c).
8+
9+
### Fixes
10+
11+
* Dendrite will now correctly parse the `"events_default"` power level value for event auth.
12+
313
## Dendrite 0.9.2 (2022-08-12)
414

515
### Features

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/matrix-org/dugong v0.0.0-20210921133753-66e6b1c67e2e
2222
github.com/matrix-org/go-sqlite3-js v0.0.0-20220419092513-28aa791a1c91
2323
github.com/matrix-org/gomatrix v0.0.0-20210324163249-be2af5ef2e16
24-
github.com/matrix-org/gomatrixserverlib v0.0.0-20220801083850-5ff38e2c2839
24+
github.com/matrix-org/gomatrixserverlib v0.0.0-20220815094957-74b7ff4ae09c
2525
github.com/matrix-org/pinecone v0.0.0-20220803093810-b7a830c08fb9
2626
github.com/matrix-org/util v0.0.0-20200807132607-55161520e1d4
2727
github.com/mattn/go-sqlite3 v1.14.13

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ github.com/matrix-org/go-sqlite3-js v0.0.0-20220419092513-28aa791a1c91/go.mod h1
343343
github.com/matrix-org/gomatrix v0.0.0-20190528120928-7df988a63f26/go.mod h1:3fxX6gUjWyI/2Bt7J1OLhpCzOfO/bB3AiX0cJtEKud0=
344344
github.com/matrix-org/gomatrix v0.0.0-20210324163249-be2af5ef2e16 h1:ZtO5uywdd5dLDCud4r0r55eP4j9FuUNpl60Gmntcop4=
345345
github.com/matrix-org/gomatrix v0.0.0-20210324163249-be2af5ef2e16/go.mod h1:/gBX06Kw0exX1HrwmoBibFA98yBk/jxKpGVeyQbff+s=
346-
github.com/matrix-org/gomatrixserverlib v0.0.0-20220801083850-5ff38e2c2839 h1:QEFxKWH8PlEt3ZQKl31yJNAm8lvpNUwT51IMNTl9v1k=
347-
github.com/matrix-org/gomatrixserverlib v0.0.0-20220801083850-5ff38e2c2839/go.mod h1:jX38yp3SSLJNftBg3PXU1ayd0PCLIiDHQ4xAc9DIixk=
346+
github.com/matrix-org/gomatrixserverlib v0.0.0-20220815094957-74b7ff4ae09c h1:GhKmb8s9iXA9qsFD1SbiRo6Ee7cnbfcgJQ/iy43wczM=
347+
github.com/matrix-org/gomatrixserverlib v0.0.0-20220815094957-74b7ff4ae09c/go.mod h1:jX38yp3SSLJNftBg3PXU1ayd0PCLIiDHQ4xAc9DIixk=
348348
github.com/matrix-org/pinecone v0.0.0-20220803093810-b7a830c08fb9 h1:ed8yvWhTLk7+sNeK/eOZRTvESFTOHDRevoRoyeqPtvY=
349349
github.com/matrix-org/pinecone v0.0.0-20220803093810-b7a830c08fb9/go.mod h1:P4MqPf+u83OPulPJ+XTbSDbbWrdFYNY4LZ/B1PIduFE=
350350
github.com/matrix-org/util v0.0.0-20190711121626-527ce5ddefc7/go.mod h1:vVQlW/emklohkZnOPwD3LrZUBqdfsbiyO3p1lNV8F6U=

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var build string
1717
const (
1818
VersionMajor = 0
1919
VersionMinor = 9
20-
VersionPatch = 2
20+
VersionPatch = 3
2121
VersionTag = "" // example: "rc1"
2222
)
2323

0 commit comments

Comments
 (0)