This repository has been archived by the owner on Mar 11, 2023. It is now read-only.
Releases: Kesin11/Firestore-simple
Releases · Kesin11/Firestore-simple
v7.0.8
v7.0.7
v7.0.6
v7.0.5
v7.0.4
v7.0.3
v7.0.2
v7.0.1
7.0.1 (2020-06-14)
Bug Fixes
- admin: Bugfix batch methods execute unexpected commit when throw some error (154663f)
- admin: Bugfix runTransaction() execute unexpected commit when throw some error (0f72ae9)
- web: Bugfix batch methods execute unexpected commit when throw some error (c643b5c)
- web: Bugfix runTransaction() execute unexpected commit when throw some error (edb4f3d)
v7.0.0
7.0.0 (2020-03-30)
BREAKING CHANGES
- Change to monorepo and introduce
@firestore-simple/admin
and@firestore-simple/web
(#132)
firestore-simple
is moved to @firestore-simple/admin
and @firestore-simple/web
. Please use these packages insted of firestore-simple
.
If you are using firestore-simple before v7.0.0 with admin SDK, migrate your code like this.
// old
import { FirestoreSimple } from 'firestore-simple'
// new
import { FirestoreSimple } from '@firestore-simple/admin'
New feature
🎉 Introduce new @firestore-simple/web
for web SDK.
@firestore-simple/web
has almost same API as @firestore-simple/admin
. So you can use same code with @firestore-simple/web
for web SDK.