Skip to content

v0.2.0

Choose a tag to compare

@tyler-johnson tyler-johnson released this 27 Jan 01:10
· 19 commits to master since this release
  • Seriously toned down the complexity of Lazybones. Instead of a full abstraction of PouchDB, Lazybones is now more of a OOP/Backbone cousin.
  • Removed the write queue. While theoretically better, I couldn't justify all of that extra code for something PouchDB kind of already handles under the hood.
  • Added the ability to fetch documents from views. This does not load the view's values, only the documents from that view.
  • Removed .load() method. I've realized that .connect() and .fetch() are fundamentally different and shouldn't be generalized like they were. This is functionality that is good to wire up by hand, as needed.
  • Sync no longer needs access to a Lazybones instance, just a PouchDB instance. This means that Documents can be saved without needing to create a full Lazybones object.
  • Integrated with Backbone Symlink. This was going to be separate, however the two were designed for each other.