Skip to content

Commit 2d01a6d

Browse files
committed
Merge branch 'main' into ddb-firestore-result-serialization
2 parents e34353d + e055e90 commit 2d01a6d

File tree

132 files changed

+1397
-315
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+1397
-315
lines changed

.changeset/cyan-frogs-relate.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/firestore': patch
3+
'firebase': patch
4+
---
5+
6+
Fixed the `null` value handling in `!=` and `not-in` filters.

.changeset/gentle-rocks-repeat.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/firestore': patch
3+
'firebase': patch
4+
---
5+
6+
Fix 'window is not defined' error when calling `clearIndexedDbPersistence` from a service worker

.changeset/sharp-nails-glow.md renamed to .changeset/hungry-snails-drive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"@firebase/data-connect": patch
33
---
44

5-
Expose partial errors to the user.
5+
Fix DataConnectOperationError.

.changeset/odd-wolves-sit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@firebase/firestore": patch
3+
---
4+
5+
Add unique IDs and state information into fatal error messages instead of the generic "unexpected state" message.

.changeset/orange-turtles-taste.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/red-hornets-peel.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tricky-geese-shout.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

common/api-review/data-connect.api.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@ export const CallerSdkTypeEnum: {
2424
readonly GeneratedAngular: "GeneratedAngular";
2525
};
2626

27+
// @public (undocumented)
28+
export type Code = DataConnectErrorCode;
29+
30+
// @public (undocumented)
31+
export const Code: {
32+
OTHER: DataConnectErrorCode;
33+
ALREADY_INITIALIZED: DataConnectErrorCode;
34+
NOT_INITIALIZED: DataConnectErrorCode;
35+
NOT_SUPPORTED: DataConnectErrorCode;
36+
INVALID_ARGUMENT: DataConnectErrorCode;
37+
PARTIAL_ERROR: DataConnectErrorCode;
38+
UNAUTHORIZED: DataConnectErrorCode;
39+
};
40+
2741
// @public
2842
export function connectDataConnectEmulator(dc: DataConnect, host: string, port?: number, sslEnabled?: boolean): void;
2943

@@ -54,7 +68,9 @@ export class DataConnect {
5468

5569
// @public
5670
export class DataConnectError extends FirebaseError {
57-
}
71+
/* Excluded from this release type: name */
72+
constructor(code: Code, message: string);
73+
}
5874

5975
// @public (undocumented)
6076
export type DataConnectErrorCode = 'other' | 'already-initialized' | 'not-initialized' | 'not-supported' | 'invalid-argument' | 'partial-error' | 'unauthorized';

integration/compat-interop/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"test:debug": "karma start --browsers Chrome --auto-watch"
99
},
1010
"dependencies": {
11-
"@firebase/app": "0.11.3",
12-
"@firebase/app-compat": "0.2.52",
11+
"@firebase/app": "0.11.4",
12+
"@firebase/app-compat": "0.2.53",
1313
"@firebase/analytics": "0.10.12",
1414
"@firebase/analytics-compat": "0.2.18",
15-
"@firebase/auth": "1.9.1",
16-
"@firebase/auth-compat": "0.5.19",
15+
"@firebase/auth": "1.10.0",
16+
"@firebase/auth-compat": "0.5.20",
1717
"@firebase/functions": "0.12.3",
1818
"@firebase/functions-compat": "0.3.20",
1919
"@firebase/messaging": "0.12.17",

integration/firestore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
1515
},
1616
"dependencies": {
17-
"@firebase/app": "0.11.3",
17+
"@firebase/app": "0.11.4",
1818
"@firebase/firestore": "4.7.10"
1919
},
2020
"devDependencies": {

0 commit comments

Comments
 (0)