Skip to content

Commit c5e9eff

Browse files
committed
1.1.0 Stable Release. Update to match firebase_auth v0.18.0
Update to match firebase_auth v0.18.0. Fix initialization error. Include initialization test. Add Readme section explaining why this library isn't needed anymore.
1 parent d8a0f9c commit c5e9eff

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
## 1.1.0-alpha.2
1+
## 1.1.0
22

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.
97

108
## 1.0.0
119

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ A Package for subscribing to User reload updates.
88
Since `firebase_auth` version 0.18.0 this library is mostly pointless as `firebase_auth` (finally) adds
99
`authStateChanges()` which mostly substitutes this package, fixing the problem described below.
1010

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:
1312

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
1519
The FirebaseAuth Flutter plugin provides a `Stream<FirebaseUser>` with
1620
`onAuthStateChanged`, which is useful for getting updates when a user signs-in
1721
or signs-out, but it fails to provide an update when the user data itself changes.

pubspec.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ packages:
6363
name: firebase_auth
6464
url: "https://pub.dartlang.org"
6565
source: hosted
66-
version: "0.18.0"
66+
version: "0.18.0+1"
6767
firebase_auth_platform_interface:
6868
dependency: transitive
6969
description:
7070
name: firebase_auth_platform_interface
7171
url: "https://pub.dartlang.org"
7272
source: hosted
73-
version: "2.0.0"
73+
version: "2.0.1"
7474
firebase_auth_web:
7575
dependency: transitive
7676
description:
7777
name: firebase_auth_web
7878
url: "https://pub.dartlang.org"
7979
source: hosted
80-
version: "0.3.0"
80+
version: "0.3.0+1"
8181
firebase_core:
8282
dependency: transitive
8383
description:

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: firebase_user_stream
22
description: >
33
This package aims to provide a functionality missing from firebase_auth, which is to be able to reload user data from
44
the server and get Stream updates with the new data.
5-
version: 1.1.0-alpha.2
5+
version: 1.1.0
66
homepage: https://github.com/feinstein/firebase_user_stream
77
repository: https://github.com/feinstein/firebase_user_stream
88

@@ -13,7 +13,7 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515

16-
firebase_auth: ^0.18.0
16+
firebase_auth: ^0.18.0+1
1717
rxdart: ^0.24.1
1818

1919
dev_dependencies:

0 commit comments

Comments
 (0)