From 90cef1186e4f0fe15184d2a6a6a23bbd6d94b59e Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Tue, 18 Oct 2022 11:40:55 +0200 Subject: [PATCH 1/2] chore: bump version --- CHANGELOG.md | 9 +++++++++ pubspec.yaml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a43d47a..b51f2380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.14.2] - 18th Oct 2022 +- Improve ice connection speed. (Duan Weiwei) +- chore: fix exception test after api_lite update (Nicolas Werner) +- feat: Add getter for own unverified devices (Christian Pauly) +- feat: Support evaluating pushrules (Nicolas Werner) +- feat: implement expire_ts in group calls and provide methods to terminate stale calls (td) +- fix: files get needlessly lowercased (Nicolas Werner) +- refactor: Use DateTime method instead of comparing milliseconds (Christian Pauly) + ## [0.14.1] - 20th Sep 2022 - chore: Fire events by default during hangup. (cloudwebrtc) - chore: Properly close usermedia/screen stream for 1v1/group calls. (cloudwebrtc) diff --git a/pubspec.yaml b/pubspec.yaml index c8ab4441..a73b9b04 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: matrix description: Matrix Dart SDK -version: 0.14.1 +version: 0.14.2 homepage: https://famedly.com repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git From 69f82b2619adcc9068a958a1ec6e3d83f1928fbd Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Tue, 18 Oct 2022 11:42:11 +0200 Subject: [PATCH 2/2] refactor: Remove unused imports --- lib/src/client.dart | 1 - test/pushevaluator_test.dart | 4 ---- 2 files changed, 5 deletions(-) diff --git a/lib/src/client.dart b/lib/src/client.dart index bc1c1bbb..b9d876a9 100644 --- a/lib/src/client.dart +++ b/lib/src/client.dart @@ -34,7 +34,6 @@ import 'package:matrix/src/models/timeline_chunk.dart'; import 'package:matrix/src/utils/cached_stream_controller.dart'; import 'package:matrix/src/utils/compute_callback.dart'; import 'package:matrix/src/utils/multilock.dart'; -import 'package:matrix/src/utils/pushrule_evaluator.dart'; import 'package:matrix/src/utils/run_benchmarked.dart'; import 'package:matrix/src/utils/run_in_root.dart'; import 'package:matrix/src/utils/sync_update_item_count.dart'; diff --git a/test/pushevaluator_test.dart b/test/pushevaluator_test.dart index 3fc6b0b5..7e4ab2a8 100644 --- a/test/pushevaluator_test.dart +++ b/test/pushevaluator_test.dart @@ -17,16 +17,12 @@ */ import 'dart:convert'; -import 'dart:typed_data'; import 'package:olm/olm.dart' as olm; import 'package:test/test.dart'; -import 'package:matrix/encryption.dart'; import 'package:matrix/matrix.dart'; -import 'package:matrix/src/models/timeline_chunk.dart'; import 'fake_client.dart'; -import 'fake_matrix_api.dart'; void main() { /// All Tests related to the Event