Skip to content

Commit

Permalink
chore(release): prepare for release (#9239)
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley authored Jul 27, 2022
1 parent ae7ebaf commit 6737310
Show file tree
Hide file tree
Showing 14 changed files with 89 additions and 12 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,55 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2022-07-27

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`firebase_auth` - `v3.6.0`](#firebase_auth---v360)
- [`firebase_auth_platform_interface` - `v6.5.0`](#firebase_auth_platform_interface---v650)
- [`firebase_auth_web` - `v4.2.0`](#firebase_auth_web---v420)
- [`firebase_storage_web` - `v3.3.2`](#firebase_storage_web---v332)
- [`flutterfire_ui` - `v0.4.3+2`](#flutterfire_ui---v0432)
- [`firebase_storage` - `v10.3.4`](#firebase_storage---v1034)

Packages with dependency updates only:

> 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.
- `flutterfire_ui` - `v0.4.3+2`
- `firebase_storage` - `v10.3.4`

---

#### `firebase_auth` - `v3.6.0`

- **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))
- **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))
- **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))

#### `firebase_auth_platform_interface` - `v6.5.0`

- **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))
- **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))

#### `firebase_auth_web` - `v4.2.0`

- **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))
- **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))

#### `firebase_storage_web` - `v3.3.2`

- **FIX**: fix UploadTask by fixing TaskEvent Web Interop ([#9212](https://github.com/firebase/flutterfire/issues/9212)). ([6df75ca0](https://github.com/firebase/flutterfire/commit/6df75ca09b0ae1334d2f80804c1386f8baac13fa))


## 2022-07-25

### Changes
Expand Down
6 changes: 6 additions & 0 deletions packages/firebase_auth/firebase_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.6.0

- **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))
- **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))
- **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))

## 3.5.1

- Update a dependency to the latest release.
Expand Down
6 changes: 3 additions & 3 deletions packages/firebase_auth/firebase_auth/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Flutter plugin for Firebase Auth, enabling Android and iOS
like Google, Facebook and Twitter.
homepage: https://firebase.google.com/docs/auth
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth
version: 3.5.1
version: 3.6.0

false_secrets:
- example/**
Expand All @@ -14,8 +14,8 @@ environment:
flutter: ">=1.12.13+hotfix.5"

dependencies:
firebase_auth_platform_interface: ^6.4.0
firebase_auth_web: ^4.1.1
firebase_auth_platform_interface: ^6.5.0
firebase_auth_web: ^4.2.0
firebase_core: ^1.10.0
firebase_core_platform_interface: ^4.5.0
flutter:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.5.0

- **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))
- **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.4.0

- **FEAT**: add phone MFA ([#9044](https://github.com/firebase/flutterfire/issues/9044)). ([1b85c8b7](https://github.com/firebase/flutterfire/commit/1b85c8b7fbcc3f21767f23981cb35061772d483f))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ homepage: https://github.com/firebase/flutterfire/tree/master/packages/firebase_
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth_platform_interface
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 6.4.0
version: 6.5.0

environment:
sdk: '>=2.16.0 <3.0.0'
Expand Down
5 changes: 5 additions & 0 deletions packages/firebase_auth/firebase_auth_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 4.2.0

- **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))
- **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))

## 4.1.1

- **FIX**: provide `browserPopupRedirectResolver` on init ([#9146](https://github.com/firebase/flutterfire/issues/9146)). ([bf1d9be1](https://github.com/firebase/flutterfire/commit/bf1d9be11a59475be173b01184efb53d92d152fe))
Expand Down
4 changes: 2 additions & 2 deletions packages/firebase_auth/firebase_auth_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: firebase_auth_web
description: The web implementation of firebase_auth
homepage: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth_web
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_auth/firebase_auth_web
version: 4.1.1
version: 4.2.0

environment:
sdk: ">=2.16.0 <3.0.0"
flutter: ">=1.12.13+hotfix.4"

dependencies:
firebase_auth_platform_interface: ^6.4.0
firebase_auth_platform_interface: ^6.5.0
firebase_core: ^1.10.0
firebase_core_web: ^1.7.1
flutter:
Expand Down
4 changes: 4 additions & 0 deletions packages/firebase_storage/firebase_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 10.3.4

- Update a dependency to the latest release.

## 10.3.3

- Update a dependency to the latest release.
Expand Down
4 changes: 2 additions & 2 deletions packages/firebase_storage/firebase_storage/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Cloud Storage, a powerful, simple, and
cost-effective object storage service for Android and iOS.
homepage: https://firebase.flutter.dev/docs/storage/overview
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_storage/firebase_storage
version: 10.3.3
version: 10.3.4

false_secrets:
- example/**
Expand All @@ -16,7 +16,7 @@ dependencies:
firebase_core: ^1.10.0
firebase_core_platform_interface: ^4.5.0
firebase_storage_platform_interface: ^4.1.12
firebase_storage_web: ^3.3.1
firebase_storage_web: ^3.3.2
flutter:
sdk: flutter

Expand Down
4 changes: 4 additions & 0 deletions packages/firebase_storage/firebase_storage_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.3.2

- **FIX**: fix UploadTask by fixing TaskEvent Web Interop ([#9212](https://github.com/firebase/flutterfire/issues/9212)). ([6df75ca0](https://github.com/firebase/flutterfire/commit/6df75ca09b0ae1334d2f80804c1386f8baac13fa))

## 3.3.1

- Update a dependency to the latest release.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: firebase_storage_web
description: The web implementation of firebase_storage
homepage: https://github.com/firebase/flutterfire/tree/master/packages/firebase_storage/firebase_storage_web
repository: https://github.com/firebase/flutterfire/tree/master/packages/firebase_storage/firebase_storage_web
version: 3.3.1
version: 3.3.2

environment:
sdk: ">=2.16.0 <3.0.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/flutterfire_ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.3+2

- Update a dependency to the latest release.

## 0.4.3+1

- Update a dependency to the latest release.
Expand Down
2 changes: 1 addition & 1 deletion packages/flutterfire_ui/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
cloud_firestore: ^3.4.1
crypto: ^3.0.1
cupertino_icons: ^1.0.2
firebase_auth: ^3.5.1
firebase_auth: ^3.6.0
firebase_core: ^1.10.3
firebase_database: ^9.0.20
firebase_dynamic_links: ^4.3.3
Expand Down
4 changes: 2 additions & 2 deletions packages/flutterfire_ui/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutterfire_ui
description: UI library built on top of firebase services
version: 0.4.3+1
version: 0.4.3+2
repository: https://github.com/firebase/flutterfire/tree/master/packages/flutterfire_ui
homepage: https://github.com/firebase/flutterfire/tree/master/packages/flutterfire_ui

Expand All @@ -17,7 +17,7 @@ dependencies:
crypto: ^3.0.1
desktop_webview_auth: ^0.0.5
email_validator: ^2.0.1
firebase_auth: ^3.5.1
firebase_auth: ^3.6.0
firebase_core: ^1.10.2
firebase_database: ^9.0.20
firebase_dynamic_links: ^4.3.3
Expand Down

0 comments on commit 6737310

Please sign in to comment.