Skip to content

Commit 945a53b

Browse files
1 parent 1bfd513 commit 945a53b

File tree

12 files changed

+70
-10
lines changed

12 files changed

+70
-10
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,46 @@
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-03-15
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.3.11`](#firebase_auth---v3311)
19+
- [`firebase_dynamic_links_platform_interface` - `v0.2.2+1`](#firebase_dynamic_links_platform_interface---v0221)
20+
- [`firebase_messaging` - `v11.2.11`](#firebase_messaging---v11211)
21+
- [`flutterfire_ui` - `v0.3.6+1`](#flutterfire_ui---v0361)
22+
- [`firebase_dynamic_links` - `v4.1.1`](#firebase_dynamic_links---v411)
23+
24+
Packages with dependency updates only:
25+
26+
> 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.
27+
28+
- `flutterfire_ui` - `v0.3.6+1`
29+
- `firebase_dynamic_links` - `v4.1.1`
30+
31+
---
32+
33+
#### `firebase_auth` - `v3.3.11`
34+
35+
- **FIX**: Update APN token once auth plugin has been initialized on `iOS`. (#8201). ([ab6239dd](https://github.com/FirebaseExtended/flutterfire/commit/ab6239ddf5cb14211b76bced04ec52203919a57a))
36+
37+
#### `firebase_dynamic_links_platform_interface` - `v0.2.2+1`
38+
39+
- **FIX**: Properly type cast utmParameters coming from native side. (#8280). ([22bbd807](https://github.com/FirebaseExtended/flutterfire/commit/22bbd807d2b3c3f9d9cc8ba817ccb4da931ae887))
40+
41+
#### `firebase_messaging` - `v11.2.11`
42+
43+
- **FIX**: Ensure `onMessage` callback is consistently called on `iOS` platform. (#8202). ([54f5555e](https://github.com/FirebaseExtended/flutterfire/commit/54f5555edbedc553df30d7e32747e3b305fbe643))
44+
45+
646
## 2022-03-10
747

848
### Changes

packages/firebase_auth/firebase_auth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.3.11
2+
3+
- **FIX**: Update APN token once auth plugin has been initialized on `iOS`. (#8201). ([ab6239dd](https://github.com/FirebaseExtended/flutterfire/commit/ab6239ddf5cb14211b76bced04ec52203919a57a))
4+
15
## 3.3.10
26

37
- **FIX**: return correct error code for linkWithCredential `provider-already-linked` on Android (#8245). ([ae090719](https://github.com/FirebaseExtended/flutterfire/commit/ae090719ebbb0873cf227f76004feeae9a7d0580))

packages/firebase_auth/firebase_auth/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.flutter.dev/docs/auth/overview
66
repository: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_auth/firebase_auth
7-
version: 3.3.10
7+
version: 3.3.11
88

99
false_secrets:
1010
- example/**

packages/firebase_dynamic_links/firebase_dynamic_links/CHANGELOG.md

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

37
- **FIX**: pass through `utmParameters` on `iOS` and make property on `PendingDynamicLinkData`. (#8232). ([32d06e79](https://github.com/FirebaseExtended/flutterfire/commit/32d06e793b4fc1bc1dad9b9071f94b28c5d477ca))

packages/firebase_dynamic_links/firebase_dynamic_links/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: firebase_dynamic_links
22
description:
33
Flutter plugin for Google Dynamic Links for Firebase, an app solution for creating
44
and handling links across multiple platforms.
5-
version: 4.1.0
5+
version: 4.1.1
66
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_dynamic_links
77
repository: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_dynamic_links
88

@@ -16,7 +16,7 @@ environment:
1616
dependencies:
1717
firebase_core: ^1.10.0
1818
firebase_core_platform_interface: ^4.2.5
19-
firebase_dynamic_links_platform_interface: ^0.2.2
19+
firebase_dynamic_links_platform_interface: ^0.2.2+1
2020
flutter:
2121
sdk: flutter
2222
meta: ^1.3.0

packages/firebase_dynamic_links/firebase_dynamic_links_platform_interface/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.2+1
2+
3+
- **FIX**: Properly type cast utmParameters coming from native side. (#8280). ([22bbd807](https://github.com/FirebaseExtended/flutterfire/commit/22bbd807d2b3c3f9d9cc8ba817ccb4da931ae887))
4+
15
## 0.2.2
26

37
- **FIX**: pass through `utmParameters` on `iOS` and make property on `PendingDynamicLinkData`. (#8232). ([32d06e79](https://github.com/FirebaseExtended/flutterfire/commit/32d06e793b4fc1bc1dad9b9071f94b28c5d477ca))

packages/firebase_dynamic_links/firebase_dynamic_links_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: firebase_dynamic_links_platform_interface
22
description: A common platform interface for the firebase_dynamic_links plugin.
3-
version: 0.2.2
3+
version: 0.2.2+1
44
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_dynamic_links/firebase_dynamic_links_platform_interface
55
repository: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_dynamic_links/firebase_dynamic_links_platform_interface
66

packages/firebase_messaging/firebase_messaging/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 11.2.11
2+
3+
- **FIX**: Ensure `onMessage` callback is consistently called on `iOS` platform. (#8202). ([54f5555e](https://github.com/FirebaseExtended/flutterfire/commit/54f5555edbedc553df30d7e32747e3b305fbe643))
4+
15
## 11.2.10
26

37
- **FIX**: Update notification key to `NSApplicationLaunchUserNotificationKey` for macOS. (#8251). ([46b54ccd](https://github.com/FirebaseExtended/flutterfire/commit/46b54ccd4aee61654e36396b86ed373939569d00))

packages/firebase_messaging/firebase_messaging/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Cloud Messaging, a cross-platform
33
messaging solution that lets you reliably deliver messages on Android and iOS.
44
homepage: https://firebase.flutter.dev/docs/messaging/overview
55
repository: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_messaging/firebase_messaging
6-
version: 11.2.10
6+
version: 11.2.11
77

88
false_secrets:
99
- example/**

packages/flutterfire_ui/CHANGELOG.md

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

37
- **FEAT**: Add German localization language support (#8195). ([9976d9d6](https://github.com/FirebaseExtended/flutterfire/commit/9976d9d66b870143227b08af068da3bc2efc5411))

0 commit comments

Comments
 (0)