Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.76 KB

CHANGELOG.md

File metadata and controls

41 lines (28 loc) · 1.76 KB

Next Release

  • Compatibility with Mongoid 5 - @dblock.
  • Your contribution here.

1.1.0

  • #11: Added support for accessing snapshot collection documents via Mongoid::CollectionSnapshot#documents - @dblock.
  • #11: Upgraded RSpec - @dblock.

1.0.1

  • #8: Fixed .gemspec for compatibility with Mongoid 4.x - @dblock.

1.0.0

  • Expose snapshot_session for custom snapshot storage - @joeyAghion
  • Compatibility with Mongoid 4.x - @dblock.

0.2.0

Important note for those upgrading from 0.1.0 (pre-Mongoid 3.0) to 0.2.0 (Mongoid 3.x): you'll need to upgrade any existing snapshots created by mongoid_collection_snapshot 0.1.0 in your database before they're usable. You can do this by renaming the 'workspace_slug' attribute to 'slug' in MongoDB after upgrading. For example, to upgrade the snapshot class "MySnapshot", you'd enter the following at the mongo shell:

db.my_snapshot.rename({'workspace_slug': {'$exists': true}}, {'$rename': {'workspace_slug': 'slug'}})

0.1.0

  • Initial public release - @aaw.