Skip to content

Commit

Permalink
build: Release v0.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Dec 17, 2024
1 parent 9ae2384 commit 157fec4
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
## [0.36.0] 17th December 2024

#### How to migrate from onMigration to onInitStateChanged

**Before:**
```dart
Client('Name', onMigration: () {
print('Migrating now....');
});
```

**After:**

```dart
Client('Name', onInitStateChanged: (state) {
if (state == InitState.migratingDatabase) {
print('Migrating now....');
}
});
```

- chore: Make parse version error less sound (Krille)
- feat: (BREAKING) Replace onMigration with advanced callback onInitStateChanged (Krille)
- feat: Add deleteFile() endpoint to database (Krille)
- feat: support filtering events when requesting events history or future (Johannes Nevels)
- fix: BREAKING! missed initial updates for stream listener callbacks in P2P & mesh calls (Karthikeyan S)
- fix: clear legacy db on logout properly (Karthikeyan S)
- fix: don't reset wellknown cache on initialization (Konrad Pozniak)
- fix: rejecting a call doesn't send m.call.reject event (Karthikeyan S)
- fix: throw error on failed reaction send (Mohammad Reza Moradi)
- refactor: BREAKING Store room states as triple keys (Krille)
- refactor: Clarify Room.join() behavior and make sure DM link is purged if room not found (Krille)
- refactor: Do not set default timeout for initialSync (Krille)
- refactor: Do not set the deprecated dont_notify action in push rules (Krille)
- refactor: Fix new lints from flutter 3.27 (Krille)
- refactor: Remove unnecessary roomId parameter from decryptRoomEvent method (Krille)

## [0.35.0] 11th November 2024
Fixes a minor performance leak where the app re-requests the member list of all encrypted rooms.
For this the parameter `cache` in `Room.requestParticipants()` is now also
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: matrix
description: Matrix Dart SDK
version: 0.35.0
version: 0.36.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

0 comments on commit 157fec4

Please sign in to comment.