rxdb

A fast, local first, reactive Database for JavaScript Applications https://rxdb.info/

APACHE-2.0 License

Downloads
69.4K
Stars
20.7K
Committers
235

Bot releases are hidden (Show)

rxdb - 7.4.1

Published by pubkey over 6 years ago

Bugfixes:

rxdb - 7.4.0

Published by pubkey over 6 years ago

Features:

  • Added RxDatabase.server() to quickly spawn couchdb-compatible endpoint out of RxDB. Read this
  • Use CustomIdleQueue for atomic updates to enable #494

Bugfixes:

rxdb - 7.3.3

Published by pubkey over 6 years ago

Other:

  • Update to pouchdb version 6.4.3
  • Improve performance by using the profiler
  • Added typings for internal pouchdb-instance
rxdb - 7.3.2

Published by pubkey over 6 years ago

Features:

Typings:

  • Fix RxCollection.findOne() can return null

Other:

rxdb - 7.3.1

Published by pubkey almost 7 years ago

Bugfixes:

  • Allow number-fields as index #438
  • Ensure typescript strict: true works #448
rxdb - 7.3.0

Published by pubkey almost 7 years ago

Features:

Bugfixes:

  • inMemory() throws error when using primary-key #401

Other:

  • Update to pouchdb 6.4.0
  • Optimize socket-pull by comparing internal last-change-time
  • do not hide fields with value: undefined in error-message #403
rxdb - 7.2.0

Published by pubkey almost 7 years ago

Warning:

  • Removed automatic import of pouchdb-adapter-memory for in-memory-collections. Read this

Features:

Bugfixes:

  • Query-Cache not used when declaring queries without mango-chain

Other:

  • Do not throw errors if the same plugin is added multiple times
  • Allow getting the collection via RxDatabase().collection(name: string)
  • Allow recreating the collection with different schema, if it has no documents
  • Split out error-messages into separate own plugin

7.1.1 (November 27, 2017)

Bugfixes:

  • Error on key-compression when nested value is null
  • Fix typings of RxDocument.putAttachment()
rxdb - 7.1.1

Published by pubkey almost 7 years ago

Bugfixes:

  • Error on key-compression when nested value is null
  • Fix typings of RxDocument.putAttachment()
rxdb - 7.1.0

Published by pubkey almost 7 years ago

Other:

rxdb - 7.0.1

Published by pubkey almost 7 years ago

Bugfixes:

  • Include pouchdb-adapter-memory as dependency #365
rxdb - 7.0.0

Published by pubkey almost 7 years ago

Breaking:

  • Renamed ingoreDuplicate to ingoreDuplicate #314
  • Improved typings #329 by @ihadeed

Features:

Bugfixes:

  • Added error-message when you json-import on a non-existing collection #319
  • Allow windows-foldernames (with backslash) as collection-name 343

Other:

  • Split out idle-queue into own npm-module
  • Enfore usage of strict-equality via eslint
rxdb - 6.0.1

Published by pubkey about 7 years ago

Bugfixes:

  • Fix core is not defined #296
rxdb - 6.0.0

Published by pubkey about 7 years ago

Breaking:

  • Filenames are now kebab-case
  • pouchdb-replication-plugin is now imported by default, do not import it by your own.
  • RxDB.create() throws if you create the same database twice. (You can use ingoreDuplicate)

Features:

Custom-Build:

  • Custom-build is now out of beta
  • If you use a custom-build, you have to change the import-paths. See custom-build
  • Replication is now its own module see
  • Json import/exportis now its own module see

Bugfixes:

  • Allow null-selector #267
  • RxQuery.exec() throws when out of change-event-buffer-bounds #278
  • Fix deprecated warning that sometimes occurs with indexeddb-adapter db.type()
  • Add fallback to leader-election when unload not works (mostly when you use RxDB inside of an iFrame)

Other:

  • Use RxError-class to throw Custom errors with the parameters-attribute
  • Optimize leader-election to not waste resources when many tabs open
  • Optimize schema-parsing when multiple collections have the same schema
  • Reduced build-size by only using async/await if it makes sense
  • Pre-Parse schema to validator when requestIdleCallback available
  • Optimize socket-cleanup by using requestIdlePromise
  • Added plugin-hook for preCreatePouchDb