CHANGELOG.md in identity_cache-0.2.5 vs CHANGELOG.md in identity_cache-0.3.0
- old
+ new
@@ -1,6 +1,28 @@
# IdentityCache changelog
+#### 0.2.6 (unreleased)
+- Add support for includes option on cache_index and fetch_by_id
+- Use ActiveRecord instantiate
+- Add association pre-fetching support for fetch_by_id
+- Remove support for 3.2
+- Fix N+1 from fetching embedded ids on a cache miss
+- Raise when trying to cache a through association. Previously it wouldn't be invalidated properly.
+- Raise if a class method is called on a scope. Previously the scope was ignored.
+- Raise if a class method is called on a subclass of one that included IdentityCache. This never worked properly.
+- Fix cache_belongs_to on polymorphic assocations.
+- Fetching a cache_belongs_to association no longer loads the belongs_to association
+
+#### 0.2.5
+
+- Fixed support for namespaced model classes
+- Added some deduplication for parent cache expiry
+- Fixed some deprecation warnings in rails 4.2
+
+#### 0.2.4
+
+- Refactoring, documentation and test changes
+
#### 0.2.3
- PostgreSQL support
- Rails 4.2 compatibility
- Fix: Don't connect to database when calling `IdentityCache.should_use_cache?`