File tree Expand file tree Collapse file tree 4 files changed +17
-15
lines changed Expand file tree Collapse file tree 4 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 1
- ## 1.1.0-alpha.2
1
+ ## 1.1.0
2
2
3
- * Fixed an initialization error.
4
- * Included an initialization test.
5
-
6
- ## 1.1.0-alpha
7
-
8
- * Updated to match firebase_auth v0.18.0.
3
+ * Update to match firebase_auth v0.18.0.
4
+ * Fix initialization error.
5
+ * Include initialization test.
6
+ * Add Readme section explaining why this library isn't needed anymore.
9
7
10
8
## 1.0.0
11
9
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ A Package for subscribing to User reload updates.
8
8
Since ` firebase_auth ` version 0.18.0 this library is mostly pointless as ` firebase_auth ` (finally) adds
9
9
` authStateChanges() ` which mostly substitutes this package, fixing the problem described below.
10
10
11
- I mean mostly because here we can further functionality like: reloading based on a predicate, reload and get the user in
12
- the same line, and have separate streams for authentication and user changes. Although that's not useful to most people.
11
+ I mean mostly because here we can have further functionality like:
13
12
14
- ## The (old, pre 0.18.0) problem
13
+ * Reloading based on a predicate
14
+ * Reload and get the user in the same line.
15
+
16
+ Although that's not useful to most people.
17
+
18
+ ## The (old, pre firebase_auth version 0.18.0) problem
15
19
The FirebaseAuth Flutter plugin provides a ` Stream<FirebaseUser> ` with
16
20
` onAuthStateChanged ` , which is useful for getting updates when a user signs-in
17
21
or signs-out, but it fails to provide an update when the user data itself changes.
Original file line number Diff line number Diff line change @@ -63,21 +63,21 @@ packages:
63
63
name: firebase_auth
64
64
url: "https://pub.dartlang.org"
65
65
source: hosted
66
- version: "0.18.0"
66
+ version: "0.18.0+1 "
67
67
firebase_auth_platform_interface:
68
68
dependency: transitive
69
69
description:
70
70
name: firebase_auth_platform_interface
71
71
url: "https://pub.dartlang.org"
72
72
source: hosted
73
- version: "2.0.0 "
73
+ version: "2.0.1 "
74
74
firebase_auth_web:
75
75
dependency: transitive
76
76
description:
77
77
name: firebase_auth_web
78
78
url: "https://pub.dartlang.org"
79
79
source: hosted
80
- version: "0.3.0"
80
+ version: "0.3.0+1 "
81
81
firebase_core:
82
82
dependency: transitive
83
83
description:
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: firebase_user_stream
2
2
description : >
3
3
This package aims to provide a functionality missing from firebase_auth, which is to be able to reload user data from
4
4
the server and get Stream updates with the new data.
5
- version : 1.1.0-alpha.2
5
+ version : 1.1.0
6
6
homepage : https://github.com/feinstein/firebase_user_stream
7
7
repository : https://github.com/feinstein/firebase_user_stream
8
8
@@ -13,7 +13,7 @@ dependencies:
13
13
flutter :
14
14
sdk : flutter
15
15
16
- firebase_auth : ^0.18.0
16
+ firebase_auth : ^0.18.0+1
17
17
rxdart : ^0.24.1
18
18
19
19
dev_dependencies :
You can’t perform that action at this time.
0 commit comments