chore: bump version
This commit is contained in:
parent
85bf49ddba
commit
e5fde4f801
|
|
@ -1,3 +1,12 @@
|
||||||
|
## [0.7.1] - 08nd Dec 2021
|
||||||
|
- fix: fallback in body for replies to replies (Nicolas Werner)
|
||||||
|
- fix: ignore 4xx errors when re-sending the to_device queue The to_device queue was introduced to ensure integrity if e.g. the server temporarily failed when attempting to send a to_device message. If, for whatever reason, the server responds with a 4xx error, though, then we want to ignore that to_device message from the queue and move on, as that means that something different was fundamentally wrong. This helps to fix the to_device queue clogging up, making clients incapable of sending to_device events anymore, should such clogging happen. (Sorunome)
|
||||||
|
- fix: Database corruptions by updating FluffyBox (Krille Fear)
|
||||||
|
- fix: Store the call state, fix the invite cannot be sent. (cloudwebrtc)
|
||||||
|
- fix: Allow consecutive edits for state events in-memory The lastEvent was incorrect when trying to process an edit of an edit. This fixes that by allowing consecutive edits for the last event. (Sorunome)
|
||||||
|
- fix: Only save state events from sync processing in-memory if needed If we dump all state events from sync into memory then we needlessly clog up our memory, potentially running out of ram. This is useless as when opening the timeline we post-load the unimportant state events anyways. So, this PR makes sure that only the state events of post-loaded rooms and important state events land in-memory when processing a sync request. (Sorunome)
|
||||||
|
- fix(ssss): Strip all whitespace characters from recovery keys upon decode Previously we stripped all spaces off of the recovery when decoding it, so that we could format the recovery key nicely. It turns out, however, that some element flavours also format with linebreaks, leading to the user having to manually remove them. We fix this by just stripping *all* whitespace off of the recovery key. (Sorunome)
|
||||||
|
|
||||||
## [0.7.0] - 03nd Dec 2021
|
## [0.7.0] - 03nd Dec 2021
|
||||||
- feat: Support for webRTC
|
- feat: Support for webRTC
|
||||||
- fix: Add missing calcDisplayname global rules to client constructor
|
- fix: Add missing calcDisplayname global rules to client constructor
|
||||||
|
|
|
||||||
|
|
@ -22,13 +22,12 @@ import 'dart:math';
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
import 'package:fluffybox/fluffybox.dart';
|
import 'package:fluffybox/fluffybox.dart';
|
||||||
import 'package:hive/hive.dart' show HiveCipher;
|
import 'package:fluffybox/hive.dart' show HiveCipher;
|
||||||
import 'package:matrix/encryption/utils/olm_session.dart';
|
import 'package:matrix/encryption/utils/olm_session.dart';
|
||||||
import 'package:matrix/encryption/utils/outbound_group_session.dart';
|
import 'package:matrix/encryption/utils/outbound_group_session.dart';
|
||||||
import 'package:matrix/encryption/utils/ssss_cache.dart';
|
import 'package:matrix/encryption/utils/ssss_cache.dart';
|
||||||
import 'package:matrix/encryption/utils/stored_inbound_group_session.dart';
|
import 'package:matrix/encryption/utils/stored_inbound_group_session.dart';
|
||||||
import 'package:matrix/matrix.dart';
|
import 'package:matrix/matrix.dart';
|
||||||
import 'package:matrix/src/event_status.dart';
|
|
||||||
import 'package:matrix/src/utils/queued_to_device_event.dart';
|
import 'package:matrix/src/utils/queued_to_device_event.dart';
|
||||||
import 'package:matrix/src/utils/run_benchmarked.dart';
|
import 'package:matrix/src/utils/run_benchmarked.dart';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.7.0
|
version: 0.7.1
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -25,7 +25,7 @@ dependencies:
|
||||||
collection: ^1.15.0
|
collection: ^1.15.0
|
||||||
webrtc_interface: ^1.0.1
|
webrtc_interface: ^1.0.1
|
||||||
sdp_transform: ^0.3.2
|
sdp_transform: ^0.3.2
|
||||||
fluffybox: ^0.3.5
|
fluffybox: ^0.4.1
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
dart_code_metrics: ^4.4.0
|
dart_code_metrics: ^4.4.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue