Releases: pubkey/rxdb
Releases · pubkey/rxdb
9.10.1
9.10.0
Features:
- Added
RxCollection.getLocal$()
andRxDatabase.getLocal$()
to observe local documents. - Added
RxDatabase.addCollections()
to create multiple collections at once. Is faster and better typed than the now deprecatedRxDatabase.collection()
Other:
- Improved typings for
pouchdb.changes()
- Moved from travisci to github actions
9.9.0
9.8.0
Features:
- Added subscription parameters for
graphQLSchemaFromRxSchema()
- Added RxDocument.atomicPatch()
Bugfixes:
- (types) Returned values of
syncGraphQL()
did not type-match withRxGraphQLReplicationState
RxDocument.atomicUpdate()
now does a retry on 409 write conflicts
Other:
- Added authentication to graphql example
- Deprecated
RxDocument.atomicSet()
. UsedatomicPatch
instead, it works better with typescript - (docs) added workarounds for 6-connection limit at couchdb replication #2659. Thanks @MuresanSergiu
9.7.1
9.7.0
Bugfixes:
RxLocalDocument.$
emitted to often on changes #2471- Fix typings of
RxReplicationState.collection
Features:
- Allow to skip docs in push/pull modifiers with the graphql-replication. #2552 Thanks @DDoerner
- Allow to type the data of
RxLocalDocument
likemyDatabase.getLocal<{foo: string}>('bar')
Other: