Skip to content

Commit 6d1790d

Browse files
authored
chore(release): prepare for release (#9249)
1 parent b4e92ed commit 6d1790d

File tree

19 files changed

+112
-19
lines changed

19 files changed

+112
-19
lines changed

CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,60 @@
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-28
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- [`cloud_firestore_odm` - `v1.0.0-dev.24`](#cloud_firestore_odm---v100-dev24)
15+
- [`cloud_firestore_odm_generator` - `v1.0.0-dev.24`](#cloud_firestore_odm_generator---v100-dev24)
16+
17+
Packages with other changes:
18+
19+
- [`cloud_firestore_web` - `v2.8.2`](#cloud_firestore_web---v282)
20+
- [`firebase_auth_platform_interface` - `v6.5.1`](#firebase_auth_platform_interface---v651)
21+
- [`firebase_auth_web` - `v4.2.1`](#firebase_auth_web---v421)
22+
- [`cloud_firestore` - `v3.4.2`](#cloud_firestore---v342)
23+
- [`flutterfire_ui` - `v0.4.3+3`](#flutterfire_ui---v0433)
24+
- [`firebase_auth` - `v3.6.1`](#firebase_auth---v361)
25+
26+
Packages with dependency updates only:
27+
28+
> 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.
29+
30+
- `cloud_firestore` - `v3.4.2`
31+
- `flutterfire_ui` - `v0.4.3+3`
32+
- `firebase_auth` - `v3.6.1`
33+
34+
---
35+
36+
#### `cloud_firestore_odm` - `v1.0.0-dev.24`
37+
38+
- **FIX**: Correctly type `firestoreJsonConverters` as `List<JsonConverter>` instead of `List<Object>` ([#9236](https://github.com/firebase/flutterfire/issues/9236)). ([b39d87c7](https://github.com/firebase/flutterfire/commit/b39d87c7d62cc8bbaddc0b151ec987ee54706870))
39+
- **FEAT**: Add where(arrayContains) support ([#9167](https://github.com/firebase/flutterfire/issues/9167)). ([1a2f2262](https://github.com/firebase/flutterfire/commit/1a2f2262578c6230560761630d017637b99cbd6c))
40+
- **BREAKING** **FEAT**: The low-level interface of Queries/Document ([#9184](https://github.com/firebase/flutterfire/issues/9184)). ([fad4b0cd](https://github.com/firebase/flutterfire/commit/fad4b0cd0aa09e9161c64deeecf222c14603cd69))
41+
42+
#### `cloud_firestore_odm_generator` - `v1.0.0-dev.24`
43+
44+
- **FEAT**: Add where(arrayContains) support ([#9167](https://github.com/firebase/flutterfire/issues/9167)). ([1a2f2262](https://github.com/firebase/flutterfire/commit/1a2f2262578c6230560761630d017637b99cbd6c))
45+
- **BREAKING** **FEAT**: The low-level interface of Queries/Document ([#9184](https://github.com/firebase/flutterfire/issues/9184)). ([fad4b0cd](https://github.com/firebase/flutterfire/commit/fad4b0cd0aa09e9161c64deeecf222c14603cd69))
46+
47+
#### `cloud_firestore_web` - `v2.8.2`
48+
49+
- **FIX**: change the interop to fix an issue with startAt/endAt when compilating with dart2js in release mode ([#9246](https://github.com/firebase/flutterfire/issues/9246)). ([b4e92ed8](https://github.com/firebase/flutterfire/commit/b4e92ed854dc1e93cee42dc5ef748be7aeae7650))
50+
51+
#### `firebase_auth_platform_interface` - `v6.5.1`
52+
53+
- **FIX**: restore default persistence to IndexedDB that was incorrectly set to localStorage ([#9247](https://github.com/firebase/flutterfire/issues/9247)). ([785c4869](https://github.com/firebase/flutterfire/commit/785c4869a45be039d3f1b1473380a1d08609c28e))
54+
55+
#### `firebase_auth_web` - `v4.2.1`
56+
57+
- **FIX**: restore default persistence to IndexedDB that was incorrectly set to localStorage ([#9247](https://github.com/firebase/flutterfire/issues/9247)). ([785c4869](https://github.com/firebase/flutterfire/commit/785c4869a45be039d3f1b1473380a1d08609c28e))
58+
59+
660
## 2022-07-27
761

862
### Changes

packages/cloud_firestore/cloud_firestore/CHANGELOG.md

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

37
- Update a dependency to the latest release.

packages/cloud_firestore/cloud_firestore/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description:
44
live synchronization and offline support on Android and iOS.
55
homepage: https://firebase.google.com/docs/firestore
66
repository: https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore/cloud_firestore
7-
version: 3.4.1
7+
version: 3.4.2
88

99
false_secrets:
1010
- example/**
@@ -16,7 +16,7 @@ environment:
1616

1717
dependencies:
1818
cloud_firestore_platform_interface: ^5.7.0
19-
cloud_firestore_web: ^2.8.1
19+
cloud_firestore_web: ^2.8.2
2020
collection: ^1.0.0
2121
firebase_core: ^1.10.2
2222
firebase_core_platform_interface: ^4.5.0

packages/cloud_firestore/cloud_firestore_web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.8.2
2+
3+
- **FIX**: change the interop to fix an issue with startAt/endAt when compilating with dart2js in release mode ([#9246](https://github.com/firebase/flutterfire/issues/9246)). ([b4e92ed8](https://github.com/firebase/flutterfire/commit/b4e92ed854dc1e93cee42dc5ef748be7aeae7650))
4+
15
## 2.8.1
26

37
- **FIX**: fix interop on TransactionOptions ([#9188](https://github.com/firebase/flutterfire/issues/9188)). ([f0201674](https://github.com/firebase/flutterfire/commit/f0201674a3dfe1a6ce103f2aa6ad2b994dcc1da8))

packages/cloud_firestore/cloud_firestore_web/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: The web implementation of cloud_firestore
33
homepage: https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore/cloud_firestore_web
44
repository: https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore/cloud_firestore_web
55

6-
version: 2.8.1
6+
version: 2.8.2
77

88
environment:
99
sdk: ">=2.16.0 <3.0.0"

packages/cloud_firestore_odm/cloud_firestore_odm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.0.0-dev.24
2+
3+
> Note: This release has breaking changes.
4+
5+
- **FIX**: Correctly type `firestoreJsonConverters` as `List<JsonConverter>` instead of `List<Object>` ([#9236](https://github.com/firebase/flutterfire/issues/9236)). ([b39d87c7](https://github.com/firebase/flutterfire/commit/b39d87c7d62cc8bbaddc0b151ec987ee54706870))
6+
- **FEAT**: Add where(arrayContains) support ([#9167](https://github.com/firebase/flutterfire/issues/9167)). ([1a2f2262](https://github.com/firebase/flutterfire/commit/1a2f2262578c6230560761630d017637b99cbd6c))
7+
- **BREAKING** **FEAT**: The low-level interface of Queries/Document ([#9184](https://github.com/firebase/flutterfire/issues/9184)). ([fad4b0cd](https://github.com/firebase/flutterfire/commit/fad4b0cd0aa09e9161c64deeecf222c14603cd69))
8+
19
## 1.0.0-dev.23
210

311
- Update a dependency to the latest release.

packages/cloud_firestore_odm/cloud_firestore_odm/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cloud_firestore_odm
22
description: An ODM for Firebase Cloud Firestore (cloud_firestore).
33
homepage: https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore_odm
44
repository: https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore_odm/cloud_firestore_odm
5-
version: 1.0.0-dev.23
5+
version: 1.0.0-dev.24
66

77
false_secrets:
88
- example/**
@@ -11,7 +11,7 @@ environment:
1111
sdk: ">=2.16.0 <3.0.0"
1212

1313
dependencies:
14-
cloud_firestore: ^3.4.1
14+
cloud_firestore: ^3.4.2
1515
flutter:
1616
sdk: flutter
1717
json_annotation: ^4.5.0

packages/cloud_firestore_odm/cloud_firestore_odm_generator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.0.0-dev.24
2+
3+
> Note: This release has breaking changes.
4+
5+
- **FEAT**: Add where(arrayContains) support ([#9167](https://github.com/firebase/flutterfire/issues/9167)). ([1a2f2262](https://github.com/firebase/flutterfire/commit/1a2f2262578c6230560761630d017637b99cbd6c))
6+
- **BREAKING** **FEAT**: The low-level interface of Queries/Document ([#9184](https://github.com/firebase/flutterfire/issues/9184)). ([fad4b0cd](https://github.com/firebase/flutterfire/commit/fad4b0cd0aa09e9161c64deeecf222c14603cd69))
7+
18
## 1.0.0-dev.23
29

310
- Update a dependency to the latest release.

packages/cloud_firestore_odm/cloud_firestore_odm_generator/cloud_firestore_odm_generator_integration_test/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ environment:
66
sdk: ">=2.16.0 <3.0.0"
77

88
dependencies:
9-
cloud_firestore: ^3.4.1
9+
cloud_firestore: ^3.4.2
1010
cloud_firestore_odm:
1111
path: ../../cloud_firestore_odm
1212
flutter:

packages/cloud_firestore_odm/cloud_firestore_odm_generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cloud_firestore_odm_generator
22
description: A code generator for cloud_firestore_odm.
33
homepage: https://firebase.flutter.dev/docs/firestore/odm
44
repository: https://github.com/firebase/flutterfire/tree/master/packages/cloud_firestore_odm_generator/cloud_firestore_odm_generator
5-
version: 1.0.0-dev.23
5+
version: 1.0.0-dev.24
66

77
environment:
88
sdk: ">=2.16.0 <3.0.0"
@@ -11,7 +11,7 @@ dependencies:
1111
analyzer: ^4.3.0
1212
build: ^2.0.1
1313
build_config: ^1.0.0
14-
cloud_firestore_odm: ^1.0.0-dev.23
14+
cloud_firestore_odm: ^1.0.0-dev.24
1515
collection: ^1.15.0
1616
json_annotation: ^4.6.0
1717
meta: ^1.3.0

0 commit comments

Comments
 (0)