All Versions
18
Latest Version
Avg Release Cycle
135 days
Latest Release
-

Changelog History
Page 1

  • v0.5.4 Changes

    • Your contribution here.
  • v0.5.3 Changes

    June 02, 2016
  • v0.5.2 Changes

    October 19, 2015
    • ๐Ÿ‘ #89: Added support for Mongoid 5 - @dblock.
  • v0.5.1 Changes

    November 26, 2014
    • ๐Ÿ›  Fixed #81: Garner.cache loses namespace options when calling delete when cache block yields nil - @dblock.
    • โฌ†๏ธ Upgraded RSpec to 3.x and RuboCop to 0.27.1 - @dblock.
  • v0.5.0 Changes

    July 17, 2014
    • ๐Ÿ”ง #70: Added a whiny_nils configuration variable (default: true) which determines whether Garner raises exceptions on nil bindings - @fancyremarker.
    • ๐Ÿ‘ #72: Fix: ActiveRecord 4 support, cache_key is now in :nsec format - @dblock.
    • ๐Ÿšš #74: Removed Jeweler, rewritten .gemspec - @dblock.
    • ๐Ÿ’… #76: Added Rubocop, Ruby-style linter - @dblock.
    • โœ… #77: Running tests on Ruby 2.0, 2.1.2, Rubinius and JRuby - @dblock.
  • v0.4.5 Changes

    October 18, 2013
    • Fixed #62: fix garnered_find in Garner::Mixins::Mongoid::Document.garnered_find to support finding multiple objects, matching Mongoid's find - @mzikherman.
    • ๐Ÿ›  Fixed #60: don't return cache keys for Mongoid::Document#identify(nil) - @fancyremarker.
  • v0.4.4 Changes

    July 11, 2013
    • Fixed #47: use a database index when generating proxy binding in Garner::Mixins::Mongoid::Identity with multiple Garner.config.mongoid_identity_fields - @dblock.
  • v0.4.3 Changes

    July 05, 2013
    • Stored ruby_context from which a Garner::Cache::Identity was initialized as an attr_accessor on the object - @fancyremarker.
    • ๐Ÿ›  Fixed cache_enabled? logic and added a nocache declaration to Garner::Cache::Identity - @fancyremarker.
    • ๐Ÿ›  Fixed #44, in which the BindingIndex was mistakenly storing values to cache for bindings with a nil canonical binding - @fancyremarker.
    • Added Garner.config.invalidate_mongoid_root option, to always invalidate the root document when an embedded document is invalidated - @fancyremarker.
  • v0.4.2 Changes

    June 29, 2013
  • v0.4.1 Changes

    • โž• Added a rake benchmark task to compare different binding key/invalidation strategy pairs - @fancyremarker.
    • ๐Ÿ‘Œ Improved the performance of the SafeCacheKey strategy on virtual Garner::Mixins::Mongoid::Identity bindings by properly memoizing the corresponding document - @fancyremarker.
    • ๐Ÿ‘Œ Improved the performance of the SafeCacheKey strategy on class bindings by making 1 database call per key application, instead of 3 - @fancyremarker.
    • Removed the Garner.config.mongoid_binding_key_strategy and Garner.config.mongoid_invalidation_key_strategy. Garner now uses just one default key/invalidation strategy pair for all binding types - @fancyremarker.
    • โž• Added an ActiveRecord mixin, Garner::Mixins::ActiveRecord::Base, per #35 - @fancyremarker.
    • Eliminated the need to require "garner/mixins/rack" before declaring Garner.config.rack_context_key_strategies, per #35 - @fancyremarker.
    • ๐Ÿ›  Fixed a bug in binding to classes via the SafeCacheKey and Touch strategy pair, where class-bound results would not be invalidated when an instance of the class was destroyed - @fancyremarker.
    • โž• Added BindingIndex binding key/invalidation strategy pair, which uses a two-level lookup for computing cache keys - @fancyremarker.