Firestore Emulator Release v1.3.0 (#1104)

Firestore Emulator Release v1.3.0
This commit is contained in:
Scott Crossen
2019-01-11 14:54:48 -08:00
committed by GitHub
parent 97e0b4b2a0
commit 8fdca11439
2 changed files with 5 additions and 3 deletions

View File

@@ -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
changed - Added node_modules/ to TypeScript functions template gitignore

View File

@@ -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"),
},
};