Skip to content

Commit 12b1582

Browse files
committed
Dependency upgrades
1 parent 98c3514 commit 12b1582

File tree

5 files changed

+383
-121
lines changed

5 files changed

+383
-121
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.2.7
2+
3+
- Upgrades `firebase_auth` to `6.0.0`
4+
- Upgrades `firebase_ui_oauth` to `2.0.0`
5+
16
## 0.2.6
27
- Upgrades `firebase_auth`
38

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:rexios_lints/flutter/package.yaml
1+
include: package:rexios_lints/flutter/package_extra.yaml

lib/src/provider.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ class OidcProvider extends OAuthProvider {
9898
}
9999

100100
/// An intermediate OidcToken to be sent to Firebase for authentication
101+
@immutable
101102
class OidcToken {
102103
/// The ID token
103104
final String idToken;
@@ -108,7 +109,7 @@ class OidcToken {
108109
final String? rawNonce;
109110

110111
/// Constructor
111-
OidcToken({
112+
const OidcToken({
112113
required this.idToken,
113114
this.rawNonce,
114115
});

0 commit comments

Comments
 (0)