Skip to content
This repository was archived by the owner on Mar 26, 2023. It is now read-only.

Commit 898663e

Browse files
authored
Merge pull request #59 from Andre-lbc/main
Updated dependencies.
2 parents a355ddf + 6bfcb40 commit 898663e

File tree

9 files changed

+35
-23
lines changed

9 files changed

+35
-23
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ OAuth flows are performed by opening pop-up on top of the application to allow t
1818
dependencies:
1919
flutter:
2020
sdk: flutter
21-
firebase_auth: ^1.0.0
22-
firebase_core: ^1.0.0
23-
firebase_auth_oauth: ^1.0.1
21+
firebase_auth: ^2.0.0
22+
firebase_core: ^1.3.0
23+
firebase_auth_oauth: ^1.0.2
2424
```
2525

2626
- Then in your project just call
@@ -30,7 +30,6 @@ dependencies:
3030
FirebaseUser user = await FirebaseAuthOAuth().openSignInFlow("A provider ID", [list of scopes], {custom parameters map});
3131
3232
// Sign-in by Apple example
33-
3433
User user = await FirebaseAuthOAuth()
3534
.openSignInFlow("apple.com", ["email"], {"locale": "en"});
3635

firebase_auth_oauth/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# 1.0.1
1+
## 1.0.2
2+
* Updated `firebase_auth` to Version ^2.0.0
3+
* Updated `firebase_core` to Version ^1.3.0
4+
5+
## 1.0.1
26

37
* Fixed `linkExistingUserWithCredentials` to avoid creating two users on Firebase. Thanks to @tiagocavalli & @mateusfccp
48
.

firebase_auth_oauth/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ OAuth flows are performed by opening pop-up on top of the application to allow t
1515
dependencies:
1616
flutter:
1717
sdk: flutter
18-
firebase_auth: ^1.0.0
19-
firebase_core: ^1.0.0
20-
firebase_auth_oauth: ^1.0.1
18+
firebase_auth: ^2.0.0
19+
firebase_core: ^1.3.0
20+
firebase_auth_oauth: ^1.0.2
2121
```
2222

2323
- Then in your project just call

firebase_auth_oauth/example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ environment:
88
dependencies:
99
flutter:
1010
sdk: flutter
11-
firebase_auth: ^1.0.0
12-
firebase_core: ^1.0.0
11+
firebase_auth: ^2.0.0
12+
firebase_core: ^1.3.0
1313

1414
# The following adds the Cupertino Icons font to your application.
1515
# Use with the CupertinoIcons class for iOS style icons.

firebase_auth_oauth/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: firebase_auth_oauth
22
description: A Flutter plugin that makes it easy to perform OAuth sign in flows using FirebaseAuth. It also includes support for Sign in by Apple for Firebase.
3-
version: 1.0.1
3+
version: 1.0.2
44
homepage: https://github.com/amrfarid140/firebase_auth_oauth/tree/master/firebase_auth_oauth
55

66
environment:
@@ -10,10 +10,10 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
firebase_auth: ^1.0.0
14-
firebase_core: ^1.0.0
15-
firebase_auth_oauth_platform_interface: ^1.0.0
16-
firebase_auth_oauth_web: ^1.0.0
13+
firebase_auth: ^2.0.0
14+
firebase_core: ^1.3.0
15+
firebase_auth_oauth_platform_interface: ^1.0.1
16+
firebase_auth_oauth_web: ^1.0.1
1717

1818
dev_dependencies:
1919
flutter_test:

firebase_auth_oauth_platform_interface/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.1
2+
* Updated `firebase_auth` to Version ^2.0.0
3+
* Updated `firebase_core` to Version ^1.3.0
4+
15
## 1.0.0
26

37
* Migrated to null safety

firebase_auth_oauth_platform_interface/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: firebase_auth_oauth_platform_interface
22
description: Platform interface plugin for firebase_auth_oauth. This includes
33
API definition which will be implemented for android, ios and web.
4-
version: 1.0.0
4+
version: 1.0.1
55
homepage: https://github.com/amrfarid140/firebase_auth_oauth/tree/master/firebase_auth_oauth_platform_interface
66

77
environment:
@@ -10,8 +10,8 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
firebase_auth: ^1.0.0
14-
firebase_core: ^1.0.0
13+
firebase_auth: ^2.0.0
14+
firebase_core: ^1.3.0
1515

1616
dev_dependencies:
1717
flutter_test:

firebase_auth_oauth_web/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.1
2+
* Updated `firebase_auth` to Version ^2.0.0
3+
* Updated `firebase_core` to Version ^1.3.0
4+
* Updated `firebase` to Version ^9.0.1
5+
16
## 1.0.0
27

38
* Migrated to null safety

firebase_auth_oauth_web/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: firebase_auth_oauth_web
22
description: Web implementation for `firebase_auth_oauth`. Don't use directly. Instead import `firebase_auth_oauth` plugin.
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://github.com/amrfarid140/firebase_auth_oauth/tree/master/firebase_auth_oauth_web
55

66
environment:
@@ -12,10 +12,10 @@ dependencies:
1212
sdk: flutter
1313
flutter_web_plugins:
1414
sdk: flutter
15-
firebase: ^9.0.0
16-
firebase_auth: ^1.0.0
17-
firebase_core: ^1.0.0
18-
firebase_auth_oauth_platform_interface: ^1.0.0
15+
firebase: ^9.0.1
16+
firebase_auth: ^2.0.0
17+
firebase_core: ^1.3.0
18+
firebase_auth_oauth_platform_interface: ^1.0.1
1919
js: ^0.6.3
2020

2121
dev_dependencies:

0 commit comments

Comments
 (0)