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

Commit

Permalink
Merge pull request #59 from Andre-lbc/main
Browse files Browse the repository at this point in the history
Updated dependencies.
  • Loading branch information
amrfarid140 authored Jul 11, 2021
2 parents a355ddf + 6bfcb40 commit 898663e
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 23 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ OAuth flows are performed by opening pop-up on top of the application to allow t
dependencies:
flutter:
sdk: flutter
firebase_auth: ^1.0.0
firebase_core: ^1.0.0
firebase_auth_oauth: ^1.0.1
firebase_auth: ^2.0.0
firebase_core: ^1.3.0
firebase_auth_oauth: ^1.0.2
```

- Then in your project just call
Expand All @@ -30,7 +30,6 @@ dependencies:
FirebaseUser user = await FirebaseAuthOAuth().openSignInFlow("A provider ID", [list of scopes], {custom parameters map});
// Sign-in by Apple example
User user = await FirebaseAuthOAuth()
.openSignInFlow("apple.com", ["email"], {"locale": "en"});
Expand Down
6 changes: 5 additions & 1 deletion firebase_auth_oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# 1.0.1
## 1.0.2
* Updated `firebase_auth` to Version ^2.0.0
* Updated `firebase_core` to Version ^1.3.0

## 1.0.1

* Fixed `linkExistingUserWithCredentials` to avoid creating two users on Firebase. Thanks to @tiagocavalli & @mateusfccp
.
Expand Down
6 changes: 3 additions & 3 deletions firebase_auth_oauth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ OAuth flows are performed by opening pop-up on top of the application to allow t
dependencies:
flutter:
sdk: flutter
firebase_auth: ^1.0.0
firebase_core: ^1.0.0
firebase_auth_oauth: ^1.0.1
firebase_auth: ^2.0.0
firebase_core: ^1.3.0
firebase_auth_oauth: ^1.0.2
```

- Then in your project just call
Expand Down
4 changes: 2 additions & 2 deletions firebase_auth_oauth/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ environment:
dependencies:
flutter:
sdk: flutter
firebase_auth: ^1.0.0
firebase_core: ^1.0.0
firebase_auth: ^2.0.0
firebase_core: ^1.3.0

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
Expand Down
10 changes: 5 additions & 5 deletions firebase_auth_oauth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: firebase_auth_oauth
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.
version: 1.0.1
version: 1.0.2
homepage: https://github.com/amrfarid140/firebase_auth_oauth/tree/master/firebase_auth_oauth

environment:
Expand All @@ -10,10 +10,10 @@ environment:
dependencies:
flutter:
sdk: flutter
firebase_auth: ^1.0.0
firebase_core: ^1.0.0
firebase_auth_oauth_platform_interface: ^1.0.0
firebase_auth_oauth_web: ^1.0.0
firebase_auth: ^2.0.0
firebase_core: ^1.3.0
firebase_auth_oauth_platform_interface: ^1.0.1
firebase_auth_oauth_web: ^1.0.1

dev_dependencies:
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions firebase_auth_oauth_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1
* Updated `firebase_auth` to Version ^2.0.0
* Updated `firebase_core` to Version ^1.3.0

## 1.0.0

* Migrated to null safety
Expand Down
6 changes: 3 additions & 3 deletions firebase_auth_oauth_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: firebase_auth_oauth_platform_interface
description: Platform interface plugin for firebase_auth_oauth. This includes
API definition which will be implemented for android, ios and web.
version: 1.0.0
version: 1.0.1
homepage: https://github.com/amrfarid140/firebase_auth_oauth/tree/master/firebase_auth_oauth_platform_interface

environment:
Expand All @@ -10,8 +10,8 @@ environment:
dependencies:
flutter:
sdk: flutter
firebase_auth: ^1.0.0
firebase_core: ^1.0.0
firebase_auth: ^2.0.0
firebase_core: ^1.3.0

dev_dependencies:
flutter_test:
Expand Down
5 changes: 5 additions & 0 deletions firebase_auth_oauth_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.1
* Updated `firebase_auth` to Version ^2.0.0
* Updated `firebase_core` to Version ^1.3.0
* Updated `firebase` to Version ^9.0.1

## 1.0.0

* Migrated to null safety
Expand Down
10 changes: 5 additions & 5 deletions firebase_auth_oauth_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: firebase_auth_oauth_web
description: Web implementation for `firebase_auth_oauth`. Don't use directly. Instead import `firebase_auth_oauth` plugin.
version: 1.0.0
version: 1.0.1
homepage: https://github.com/amrfarid140/firebase_auth_oauth/tree/master/firebase_auth_oauth_web

environment:
Expand All @@ -12,10 +12,10 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
firebase: ^9.0.0
firebase_auth: ^1.0.0
firebase_core: ^1.0.0
firebase_auth_oauth_platform_interface: ^1.0.0
firebase: ^9.0.1
firebase_auth: ^2.0.0
firebase_core: ^1.3.0
firebase_auth_oauth_platform_interface: ^1.0.1
js: ^0.6.3

dev_dependencies:
Expand Down

0 comments on commit 898663e

Please sign in to comment.