File tree Expand file tree Collapse file tree 6 files changed +14
-12
lines changed Expand file tree Collapse file tree 6 files changed +14
-12
lines changed Original file line number Diff line number Diff line change
1
+ ## 12.0.3
2
+
3
+ * Upgrade dependencies
4
+
1
5
## 12.0.2
2
6
3
7
* Fixed realtime multiple subscription issues
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
21
21
22
22
``` yml
23
23
dependencies :
24
- appwrite : ^12.0.2
24
+ appwrite : ^12.0.3
25
25
` ` `
26
26
27
27
You can install packages from the command line:
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
43
43
'x-sdk-name' : 'Flutter' ,
44
44
'x-sdk-platform' : 'client' ,
45
45
'x-sdk-language' : 'flutter' ,
46
- 'x-sdk-version' : '12.0.2 ' ,
46
+ 'x-sdk-version' : '12.0.3 ' ,
47
47
'X-Appwrite-Response-Format' : '1.5.0' ,
48
48
};
49
49
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class ClientIO extends ClientBase with ClientMixin {
64
64
'x-sdk-name' : 'Flutter' ,
65
65
'x-sdk-platform' : 'client' ,
66
66
'x-sdk-language' : 'flutter' ,
67
- 'x-sdk-version' : '12.0.2 ' ,
67
+ 'x-sdk-version' : '12.0.3 ' ,
68
68
'X-Appwrite-Response-Format' : '1.5.0' ,
69
69
};
70
70
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ mixin RealtimeMixin {
21
21
late WebSocketFactory getWebSocket;
22
22
GetFallbackCookie ? getFallbackCookie;
23
23
int ? get closeCode => _websok? .closeCode;
24
- int _subscriptionsCounter = 0 ;
25
24
Map <int , RealtimeSubscription > _subscriptions = {};
26
25
bool _notifyDone = true ;
27
26
StreamSubscription ? _websocketSubscription;
@@ -144,7 +143,6 @@ mixin RealtimeMixin {
144
143
channels: channels,
145
144
close: () async {
146
145
_subscriptions.remove (id);
147
- _subscriptionsCounter-- ;
148
146
controller.close ();
149
147
_cleanup (channels);
150
148
Original file line number Diff line number Diff line change 1
1
name : appwrite
2
- version : 12.0.2
2
+ version : 12.0.3
3
3
description : Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API
4
4
homepage : https://appwrite.io
5
5
repository : https://github.com/appwrite/sdk-for-flutter
@@ -19,17 +19,17 @@ dependencies:
19
19
flutter :
20
20
sdk : flutter
21
21
cookie_jar : ^4.0.8
22
- device_info_plus : ^9 .1.2
22
+ device_info_plus : ^10 .1.0
23
23
flutter_web_auth_2 : ^3.1.1
24
24
http : ' >=0.13.6 <2.0.0'
25
- package_info_plus : ^5 .0.1
26
- path_provider : ^2.1.2
27
- web_socket_channel : ^2.4.3
28
- universal_html : ^2.2.2
25
+ package_info_plus : ^8 .0.0
26
+ path_provider : ^2.1.3
27
+ web_socket_channel : ^2.4.5
28
+ universal_html : ^2.2.4
29
29
30
30
dev_dependencies :
31
31
path_provider_platform_interface : ^2.1.2
32
- flutter_lints : ^3.0.1
32
+ flutter_lints : ^3.0.2
33
33
flutter_test :
34
34
sdk : flutter
35
35
mockito : ^5.4.4
You can’t perform that action at this time.
0 commit comments