Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@ SPDX-FileCopyrightText: 2019-Present Famedly GmbH

SPDX-License-Identifier: AGPL-3.0-or-later
-->
## [12.0.0] 2nd September 2026
This version changes how left rooms are stored in the client and the archive is loaded.
When calling `loadArchive()` it no longer caches the archived rooms internally and
`client.getRoomById()` would no longer return such a cached room. It is up to the
app consumer to cache them if needed at all. On the other hand the sdk now allows
to always sync and store left rooms by default easily by just adding them in the
sync filter to the constructor:

```dart
Client(
'Client Name',
syncFilter: Filter(room: RoomFilter(includeLeave: true)),
// ...
);
```

- chore: make autoRequestProfileForMissingUsers and getDisplayNameAndAvatarFromPrevContent configurable (Christian Kußowski)
- feat: (BREAKING) Store left rooms if syncfilter includes leave (Christian Kußowski)
- refactor: Remove archive cache from Client (Christian Kußowski)

## [11.0.0] 31st August 2026
- build: update to vodozemac 0.8.0 (Christian Kußowski)
- chore: add localization for incoming call (Christian Kußowski)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

name: matrix
description: Matrix Dart SDK
version: 11.0.0
version: 12.0.0
homepage: https://famedly.com
repository: https://github.com/famedly/matrix-dart-sdk.git
issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues
Expand Down
Loading