Skip to content

Bump FDC local toolkit to v1.8.3. #8263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
- Add initial delay when loading python functions (#8239)
- Enforce webframeworks enablement only on webframeworks sites (#8168)
- Fix issue where `apps:init` throws an error upon app creation
- Update Firebase Data Connect local toolkit to v1.8.3, which includes the following changes: (#8263)
- Adds a `_metadata.distance` field to vector similarity search results
- Fixes `auth` and `request.auth` when the request is unauthenticated
- Fixes an issue with hanging commas in import statements in the generated Web SDK
- Fixes an issue where the additional union type `{ __angular?: true }` breaks type inference in the generated Web SDK
18 changes: 9 additions & 9 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,20 @@ const EMULATOR_UPDATE_DETAILS: { [s in DownloadableEmulators]: EmulatorUpdateDet
dataconnect:
process.platform === "darwin" // macos
? {
version: "1.8.2",
expectedSize: 25506560,
expectedChecksum: "2db676cb9d30b289897ffb7e5aa1ef63",
version: "1.8.3",
expectedSize: 25535232,
expectedChecksum: "53fb0bf52f21a84b1d6afa70371dd00c",
Comment on lines +62 to +64
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding a comment explaining where these values are sourced from (e.g., release notes, build artifacts).

}
: process.platform === "win32" // windows
? {
version: "1.8.2",
expectedSize: 25936384,
expectedChecksum: "08e6ca0ad20893b565fb57effd687eb8",
version: "1.8.3",
expectedSize: 25965568,
expectedChecksum: "d717235f244e5bbbc00158eae3aa97f0",
Comment on lines +68 to +70
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding a comment explaining where these values are sourced from (e.g., release notes, build artifacts).

}
: {
version: "1.8.2", // linux
expectedSize: 25415832,
expectedChecksum: "24e0eb78acb619ed91f6d268dd18df05",
version: "1.8.3", // linux
expectedSize: 25448600,
expectedChecksum: "cd381e329a27ff0c81c41d7e635d6733",
Comment on lines +73 to +75
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding a comment explaining where these values are sourced from (e.g., release notes, build artifacts).

},
};

Expand Down
Loading