Skip to content

Commit 6737310

Browse files
chore(release): prepare for release (#9239)
1 parent ae7ebaf commit 6737310

File tree

14 files changed

+89
-12
lines changed

14 files changed

+89
-12
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,55 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2022-07-27
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`firebase_auth` - `v3.6.0`](#firebase_auth---v360)
19+
- [`firebase_auth_platform_interface` - `v6.5.0`](#firebase_auth_platform_interface---v650)
20+
- [`firebase_auth_web` - `v4.2.0`](#firebase_auth_web---v420)
21+
- [`firebase_storage_web` - `v3.3.2`](#firebase_storage_web---v332)
22+
- [`flutterfire_ui` - `v0.4.3+2`](#flutterfire_ui---v0432)
23+
- [`firebase_storage` - `v10.3.4`](#firebase_storage---v1034)
24+
25+
Packages with dependency updates only:
26+
27+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
28+
29+
- `flutterfire_ui` - `v0.4.3+2`
30+
- `firebase_storage` - `v10.3.4`
31+
32+
---
33+
34+
#### `firebase_auth` - `v3.6.0`
35+
36+
- **FIX**: pass `Persistence` value to `FirebaseAuth.instanceFor(app: app, persistence: persistence)` for setting persistence on Web platform ([#9138](https://github.com/firebase/flutterfire/issues/9138)). ([ae7ebaf8](https://github.com/firebase/flutterfire/commit/ae7ebaf8e304a2676b2acfa68aadf0538468b4a0))
37+
- **FIX**: fix crash on Android where detaching from engine was not properly resetting the Pigeon handler ([#9218](https://github.com/firebase/flutterfire/issues/9218)). ([96d35df0](https://github.com/firebase/flutterfire/commit/96d35df09914fbe40515fdcd20b17a802f37270d))
38+
- **FEAT**: expose the missing MultiFactor classes through the universal package ([#9194](https://github.com/firebase/flutterfire/issues/9194)). ([d8bf8185](https://github.com/firebase/flutterfire/commit/d8bf818528c3705350cdb1b4675d600ba1d29d14))
39+
40+
#### `firebase_auth_platform_interface` - `v6.5.0`
41+
42+
- **FIX**: pass `Persistence` value to `FirebaseAuth.instanceFor(app: app, persistence: persistence)` for setting persistence on Web platform ([#9138](https://github.com/firebase/flutterfire/issues/9138)). ([ae7ebaf8](https://github.com/firebase/flutterfire/commit/ae7ebaf8e304a2676b2acfa68aadf0538468b4a0))
43+
- **FEAT**: expose the missing MultiFactor classes through the universal package ([#9194](https://github.com/firebase/flutterfire/issues/9194)). ([d8bf8185](https://github.com/firebase/flutterfire/commit/d8bf818528c3705350cdb1b4675d600ba1d29d14))
44+
45+
#### `firebase_auth_web` - `v4.2.0`
46+
47+
- **FIX**: pass `Persistence` value to `FirebaseAuth.instanceFor(app: app, persistence: persistence)` for setting persistence on Web platform ([#9138](https://github.com/firebase/flutterfire/issues/9138)). ([ae7ebaf8](https://github.com/firebase/flutterfire/commit/ae7ebaf8e304a2676b2acfa68aadf0538468b4a0))
48+
- **FEAT**: expose the missing MultiFactor classes through the universal package ([#9194](https://github.com/firebase/flutterfire/issues/9194)). ([d8bf8185](https://github.com/firebase/flutterfire/commit/d8bf818528c3705350cdb1b4675d600ba1d29d14))
49+
50+
#### `firebase_storage_web` - `v3.3.2`
51+
52+
- **FIX**: fix UploadTask by fixing TaskEvent Web Interop ([#9212](https://github.com/firebase/flutterfire/issues/9212)). ([6df75ca0](https://github.com/firebase/flutterfire/commit/6df75ca09b0ae1334d2f80804c1386f8baac13fa))
53+
54+
655
## 2022-07-25
756

857
### Changes

packages/firebase_auth/firebase_auth/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.6.0
2+
3+
- **FIX**: pass `Persistence` value to `FirebaseAuth.instanceFor(app: app, persistence: persistence)` for setting persistence on Web platform ([#9138](https://github.com/firebase/flutterfire/issues/9138)). ([ae7ebaf8](https://github.com/firebase/flutterfire/commit/ae7ebaf8e304a2676b2acfa68aadf0538468b4a0))
4+
- **FIX**: fix crash on Android where detaching from engine was not properly resetting the Pigeon handler ([#9218](https://github.com/firebase/flutterfire/issues/9218)). ([96d35df0](https://github.com/firebase/flutterfire/commit/96d35df09914fbe40515fdcd20b17a802f37270d))
5+
- **FEAT**: expose the missing MultiFactor classes through the universal package ([#9194](https://github.com/firebase/flutterfire/issues/9194)). ([d8bf8185](https://github.com/firebase/flutterfire/commit/d8bf818528c3705350cdb1b4675d600ba1d29d14))
6+
17
## 3.5.1
28

39
- Update a dependency to the latest release.

packages/firebase_auth/firebase_auth/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Flutter plugin for Firebase Auth, enabling Android and iOS
44
like Google, Facebook and Twitter.
55
homepage: https://firebase.google.com/docs/auth
66
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth
7-
version: 3.5.1
7+
version: 3.6.0
88

99
false_secrets:
1010
- example/**
@@ -14,8 +14,8 @@ environment:
1414
flutter: ">=1.12.13+hotfix.5"
1515

1616
dependencies:
17-
firebase_auth_platform_interface: ^6.4.0
18-
firebase_auth_web: ^4.1.1
17+
firebase_auth_platform_interface: ^6.5.0
18+
firebase_auth_web: ^4.2.0
1919
firebase_core: ^1.10.0
2020
firebase_core_platform_interface: ^4.5.0
2121
flutter:

packages/firebase_auth/firebase_auth_platform_interface/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 6.5.0
2+
3+
- **FIX**: pass `Persistence` value to `FirebaseAuth.instanceFor(app: app, persistence: persistence)` for setting persistence on Web platform ([#9138](https://github.com/firebase/flutterfire/issues/9138)). ([ae7ebaf8](https://github.com/firebase/flutterfire/commit/ae7ebaf8e304a2676b2acfa68aadf0538468b4a0))
4+
- **FEAT**: expose the missing MultiFactor classes through the universal package ([#9194](https://github.com/firebase/flutterfire/issues/9194)). ([d8bf8185](https://github.com/firebase/flutterfire/commit/d8bf818528c3705350cdb1b4675d600ba1d29d14))
5+
16
## 6.4.0
27

38
- **FEAT**: add phone MFA ([#9044](https://github.com/firebase/flutterfire/issues/9044)). ([1b85c8b7](https://github.com/firebase/flutterfire/commit/1b85c8b7fbcc3f21767f23981cb35061772d483f))

packages/firebase_auth/firebase_auth_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ homepage: https://github.com/firebase/flutterfire/tree/master/packages/firebase_
44
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth_platform_interface
55
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
66
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
7-
version: 6.4.0
7+
version: 6.5.0
88

99
environment:
1010
sdk: '>=2.16.0 <3.0.0'

packages/firebase_auth/firebase_auth_web/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 4.2.0
2+
3+
- **FIX**: pass `Persistence` value to `FirebaseAuth.instanceFor(app: app, persistence: persistence)` for setting persistence on Web platform ([#9138](https://github.com/firebase/flutterfire/issues/9138)). ([ae7ebaf8](https://github.com/firebase/flutterfire/commit/ae7ebaf8e304a2676b2acfa68aadf0538468b4a0))
4+
- **FEAT**: expose the missing MultiFactor classes through the universal package ([#9194](https://github.com/firebase/flutterfire/issues/9194)). ([d8bf8185](https://github.com/firebase/flutterfire/commit/d8bf818528c3705350cdb1b4675d600ba1d29d14))
5+
16
## 4.1.1
27

38
- **FIX**: provide `browserPopupRedirectResolver` on init ([#9146](https://github.com/firebase/flutterfire/issues/9146)). ([bf1d9be1](https://github.com/firebase/flutterfire/commit/bf1d9be11a59475be173b01184efb53d92d152fe))

packages/firebase_auth/firebase_auth_web/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: firebase_auth_web
22
description: The web implementation of firebase_auth
33
homepage: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth_web
44
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth_web
5-
version: 4.1.1
5+
version: 4.2.0
66

77
environment:
88
sdk: ">=2.16.0 <3.0.0"
99
flutter: ">=1.12.13+hotfix.4"
1010

1111
dependencies:
12-
firebase_auth_platform_interface: ^6.4.0
12+
firebase_auth_platform_interface: ^6.5.0
1313
firebase_core: ^1.10.0
1414
firebase_core_web: ^1.7.1
1515
flutter:

packages/firebase_storage/firebase_storage/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 10.3.4
2+
3+
- Update a dependency to the latest release.
4+
15
## 10.3.3
26

37
- Update a dependency to the latest release.

packages/firebase_storage/firebase_storage/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Cloud Storage, a powerful, simple, and
33
cost-effective object storage service for Android and iOS.
44
homepage: https://firebase.flutter.dev/docs/storage/overview
55
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_storage/firebase_storage
6-
version: 10.3.3
6+
version: 10.3.4
77

88
false_secrets:
99
- example/**
@@ -16,7 +16,7 @@ dependencies:
1616
firebase_core: ^1.10.0
1717
firebase_core_platform_interface: ^4.5.0
1818
firebase_storage_platform_interface: ^4.1.12
19-
firebase_storage_web: ^3.3.1
19+
firebase_storage_web: ^3.3.2
2020
flutter:
2121
sdk: flutter
2222

packages/firebase_storage/firebase_storage_web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.3.2
2+
3+
- **FIX**: fix UploadTask by fixing TaskEvent Web Interop ([#9212](https://github.com/firebase/flutterfire/issues/9212)). ([6df75ca0](https://github.com/firebase/flutterfire/commit/6df75ca09b0ae1334d2f80804c1386f8baac13fa))
4+
15
## 3.3.1
26

37
- Update a dependency to the latest release.

0 commit comments

Comments
 (0)