Skip to content

Commit bb8f9dd

Browse files
committed
update flutter and fix md files
1 parent 76bf612 commit bb8f9dd

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

CHANGELOG.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818

1919
## 0.0.1-dev.6
2020

21-
* [Breaking] Remove `addListener` chaining support. If you have used chaining with `cascade` operator.
21+
* [Breaking] Remove `addListener` chaining support. If you have used chaining with `cascade`
22+
operator.
2223
* Add async support for `TokenStore`'s `save` and `clear` methods.
23-
* Abstract `AuthProvider` to `AuthService` core.
24+
* Abstract `AuthProvider` to `AuthService` core.
2425
* Refactor tests.
2526

2627
## 0.0.1-dev.5
@@ -35,7 +36,8 @@
3536
## 0.0.1-dev.3
3637

3738
* Remove initialize from constructor make it public so consumer can use when they want.
38-
* Introduce withListeners factory to construct AuthProvider with single LoginListener and LogoutListener.
39+
* Introduce withListeners factory to construct AuthProvider with single LoginListener and
40+
LogoutListener.
3941

4042
## 0.0.1-dev.1
4143

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ authentication related data.
1919

2020
You can implement your own authentication persistence logic by implementing the `Stores`.
2121

22-
* AuthStore - This is your user related data store. When you implement the AuthStore, you
23-
can also use a custom type for a User specified as a generic.
22+
* AuthStore - This is your user related data store. When you implement the AuthStore, you can also
23+
use a custom type for a User specified as a generic.
2424
* TokenStore - Implement how you store and refresh the token.
2525

2626
Example implementation with `flutter-secure-storage`.

pubspec.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "22.0.0"
10+
version: "28.0.0"
1111
analyzer:
1212
dependency: transitive
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "1.7.1"
17+
version: "2.5.0"
1818
args:
1919
dependency: transitive
2020
description:
@@ -28,7 +28,7 @@ packages:
2828
name: async
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "2.6.1"
31+
version: "2.8.1"
3232
boolean_selector:
3333
dependency: transitive
3434
description:
@@ -70,7 +70,7 @@ packages:
7070
name: charcode
7171
url: "https://pub.dartlang.org"
7272
source: hosted
73-
version: "1.2.0"
73+
version: "1.3.1"
7474
cli_util:
7575
dependency: transitive
7676
description:
@@ -192,7 +192,7 @@ packages:
192192
name: meta
193193
url: "https://pub.dartlang.org"
194194
source: hosted
195-
version: "1.3.0"
195+
version: "1.7.0"
196196
mockito:
197197
dependency: "direct dev"
198198
description:
@@ -281,7 +281,7 @@ packages:
281281
name: test_api
282282
url: "https://pub.dartlang.org"
283283
source: hosted
284-
version: "0.3.0"
284+
version: "0.4.2"
285285
typed_data:
286286
dependency: transitive
287287
description:
@@ -311,5 +311,5 @@ packages:
311311
source: hosted
312312
version: "3.1.0"
313313
sdks:
314-
dart: ">=2.12.0 <3.0.0"
314+
dart: ">=2.14.0 <3.0.0"
315315
flutter: ">=1.17.0"

0 commit comments

Comments
 (0)