diff --git a/changelog.txt b/changelog.txt index dca245ae..04c8c106 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,9 +3,11 @@ fixed - Fixed Firestore emulator bug regarding array ordering during writing/rea fixed - Fixed Firestore emulator handling of query cursors using document names fixed - Fixed a race condition when deploying Firestore indexes (issues #1080 and #1081) fixed - Fixed an error that occurs when a Firestore field override removes all indexes +fixed - Fixed Firestore emulator `getDocument` RPC to now support a read_time consistency selector feature - Firestore emulator now has the ability to produce rule-coverage reports +feature - Firestore emulator now has a clearDatabase RPC to delete all data in a database changed - Firestore emulator now exposes the v1 service definition changed - Firestore emulator has various runtime improvements changed - Clearer empty state when pretty-printing Firestore indexes changed - JavasSript functions template now includes gitignore -changed - Added node_modules/ to TypeScript functions template gitignore \ No newline at end of file +changed - Added node_modules/ to TypeScript functions template gitignore diff --git a/src/emulator/constants.js b/src/emulator/constants.js index 67e324db..ddf758ca 100644 --- a/src/emulator/constants.js +++ b/src/emulator/constants.js @@ -24,8 +24,8 @@ const _emulators = { stdout: null, cacheDir: CACHE_DIR, remoteUrl: - "https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.2.3.jar", - localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.2.3.jar"), + "https://storage.googleapis.com/firebase-preview-drop/emulator/cloud-firestore-emulator-v1.3.0.jar", + localPath: path.join(CACHE_DIR, "cloud-firestore-emulator-v1.3.0.jar"), }, };