Pouchdb Versions Save

:koala: - PouchDB is a pocket-sized database.

6.4.1

6 years ago

6.4.0

6 years ago

I'm happy to announce the release of PouchDB 6.4.0, bringing in a number of important features and fixes. For a full changelog from 6.3.0 to 6.4.0 please see the releases page. Some of the highlights:

Add update_seq option to allDocs() and query()

#6230 - Dale Harders added support for passing update_seq: true to either allDocs() or query() or will return the current databases update_seq.

Add pending pending property

#5710 - Dale also added support for passing through the pending property newly implemented in CouchDB that reports the number of pending documents to replicate.

Use a single transaction for allDocs with keys requests

#6854 - @nename0 implemented an optimisation to use a single transaction in indexedDB and WebSQL for allDocs requests with keys. This seen a huge 8X speedup in Chrome and 2X in Firefox.

Add support to store cookies on Node.js

#6814 - @ptitjes fixed HTTP requests in Node.JS to ensure they use a cookie jar.

Full changelog

Bug fixes and performance improvements

  • #6443 - Support seq_interval for changes and use during replication
  • #6890 - Preventing SecurityError on Firefox
  • #6855 - Cache bust GET requests on IE11
  • #6736 - Fix {binary: true} in db.get() with open_revs and HTTP adapter
  • #6730 - Fix single-sided checkpointing
  • #6766 - Prevent field lookup on undefined value
  • #6793 - Fix incompatibility with pouchdb-wrappers

Get in touch

As always, we welcome feedback from the community and would love to hear what you think of this release as well as PouchDB's future direction. Please don't hesitate to file issues or get in touch. And of course, a big thanks to all of our new and existing contributors!

6.3.4

6 years ago

Full changelog

New features

  • Stefan du Fresne: #6565 - Replacing uuid function with node-uuid
  • Alex Anderson: #5490 - Include doc ID in conflict errors
  • Hadrien de Cuzey: #6308 - Add option to disable checkpoints
  • Alex Anderson: #6529 - Include doc ID in 404 (not_found) errors for IDB adapter
  • Samuel Zhang: #5832 - Force update
  • Garren Smith: #6452 - Add support for use_index in pouchdb-find
  • Garren Smith: #6495 - Add explain endpoint for pouchdb-find
  • Garren Smith: #6443 - Add $allMatch support for pouchdb-find

Bug fixes and performance improvements

  • Will Holley: #6510 - validate _changes timing parameters
  • Alex Anderson: #6545 - throw Errors, not Strings
  • Adrien Vergé: #6504 - fix possible "EventEmitter memory leak detected"
  • Stéphane Alnet: #5981 - ensure close() doesn't block destroyed events
  • Garren Smith: #6472 - pouchdb-find: don't return design docs with all_docs index
  • Will Holley: #6458 - consistent error handling for mapreduce

6.3.2

6 years ago

Broken, please use 6.3.4

6.3.1

6 years ago

Broken, please use 6.3.4

6.3.0

6 years ago

Broken, please use 6.3.4

6.2.0

7 years ago

Full changelog

New features

  • #6289 - Merge in PouchDB-find
  • #5717 - Selector filter in changes feed and replication
  • #6106 - deprecate .type() in favor of ._remote

Bug fixes and performance improvements

  • #5987 - remove references to "db" option
  • #6338 - pouchdb-find: don't emit missing fields
  • #6345 - fix nextTick ES6 import in pouchdb-utils
  • #6358 - fix pouchdb-find null error
  • #6366 - fix $or/$nor without explicit $eq
  • #6422 - Add export of in-memory-logic

6.1.2

7 years ago

Bugfixes

  • 97400dd: Nolan Lawson: (#6203) - fix conflict error in delete-then-update-then-undelete
  • 3e454a3: kartikagarwal1993: (#6053) - assign defaults to new pouch db instance in PouchDB.plugin()
  • c331d90: Jonathan Hall: (#6178) - Add missing space to an error message.
  • 62f00fc: Will Holley: (#6132) - merge user-specified and default headers
  • 36bbda8: Nolan Lawson: (#6144) - make stemming use up less memory

Documentation

  • 1739f51: Nolan Lawson: (#6171) - update docs re: attachment blobs
  • a46bca8: Nolan Lawson: (#6121) - remove nightly build references from README
  • 950bea3: Dale Harvey: (#6094) - Update site version and fix typos

Miscellaneous

  • 9d962b7: Nolan Lawson: (#6170) - don't expose src directory to npm
  • 0a39bbf: Nolan Lawson: (#6162) - make polyfills extractable
  • 7089d39: Nolan Lawson: (#6167) - fix and improve test scripts
  • 1f6debc: Nolan Lawson: (#6020) - separate mapreduce into mapreduce & abstract-mapreduce
  • dadbbef: Nolan Lawson: (#6143) - perf tests: use marky, measure median, add iterations param
  • fbc311b: Dale Harvey: (#6114) - Remove passing tests from expected failures

6.1.1

7 years ago

Full changelog

New features

  • #6039 - include id in all bulk_docs results

Bug fixes and performance improvements

  • #5987 - remove references to "db" option
  • #6002 - remove excessive debug dep
  • #5962 - fix broken verify-bundle-size.sh script
  • #5990 - Use native Map/Set
  • #6012 - replace js-extend with Object.assign
  • #6018 - simplify processNextBatch in mapreduce
  • #5501 - fall back from bulk_get on any error
  • #6027 - remove unused utils.extend
  • #6015 - use Map and Set in mapreduce
  • #6016 - separate funcs for map vs reduce
  • #6031 - faster IDB changes() with batched cursor
  • #5930 - use travis_retry
  • #6055 - remove docCount optimization from IDB
  • #6055 - remove docCount optimization from WebSQL
  • #6089 - Don't add default heartbeat to non-live _changes requests
  • #6068 - safely reimplement IDB docCount optimization
  • #6096 - clean up and reduce memory usage of mapreduce
  • #6099 - use Map/Set in viewCleanup()
  • #6101 - add perf test for building secondary indexes

6.1.0

7 years ago

Full changelog

New features

  • #5857 - add latest:true

Bug fixes and performance improvements

  • #5857 - use latest:true during replication
  • #5904 - more helpful error message for invalid plugin
  • #5736 - warn about attachments without content_type
  • #5925 - remove peerDependency on pouchdb-core
  • #5922 - transitive default
  • #5930 #5898 - simplify timeouts
  • #5934 - simplify parseAdapter
  • #5905 - remove es6-promise-pool
  • #5899 - simplify PouchError code
  • #5902 - fix fetch() implementation
  • #5886 - fix bulkGet() with reserved _id
  • #5855 - fix JSON.parse() overflows
  • #5883 - retrieve appropriate _revisions when there are duplicate rev hashes
  • #5832 - return correct revision after doc update
  • #5479 - ensure sync events are called the correct number of times
  • #5812 - fix memory leaks in pouchdb-core
  • #5793 - fixes for Couchbase Sync Gateway
  • #5988 - remove unsafe new Buffer() usages