identity_cache 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2692fa11451bb0243fcb3450d6f6c2550110afea
4
- data.tar.gz: dbd4fa2555037a5ddd90e36f2aea9ae03fff6907
3
+ metadata.gz: 7a3b2c0bfce28e5d4b88e8f9003b82b8b1ce6ac4
4
+ data.tar.gz: 1aeba990c3842ddebcc6ffa81e7a95610d8e797b
5
5
  SHA512:
6
- metadata.gz: 61e4b2e382f4a3706a5851ab2d8268bac77941a318b1ef81ad4babc4439b45a3e6c361a123e8d0bfeec2e136f8b0b8815825d1163a5d2a4c28f92c2bb11024d1
7
- data.tar.gz: 830d6ef767b8b62167bd7f016966d56f6c1d1bf99c501c75293d4731cd61f58683396f622a654190c39e91ab7fd5e6b6cdad5051ead943306ffff27ad86399c1
6
+ metadata.gz: 5cb1a76f43cd10bafd968cc27c3aad201ca5f10ce20e9af90231deb6b663e42f5505497ef63d8eff94f64ad60ddc05e46be79d9ff64a3671a86142d33480248a
7
+ data.tar.gz: 976d47284787e9239bf81956fbfc0e518dd2c77915752e13b57c9cd70cf398b1b1d37f5325383ef1f415d76a6ac70ec0549c6d8432fd3b10bdcaee6f0297f345
data/CHANGELOG CHANGED
@@ -1,3 +1,11 @@
1
+ 0.0.6
2
+ * Fix: bug where previously nil-cached attribute caches weren't expired on record creation
3
+ * Fix: cache key to not change when adding a non-embedded association.
4
+ * Perf: Rails 4 Only create CollectionProxy when using it
5
+
6
+ 0.0.5
7
+
8
+
1
9
  0.0.4
2
10
  * Fix: only marshal attributes, embedded associations and normalized association IDs
3
11
  * Add cache version number to cache keys
@@ -2,7 +2,7 @@
2
2
  require File.expand_path('../lib/identity_cache/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
- gem.authors = ["Camilo Lopez", "Tom Burns", "Harry Brundage", "Dylan Smith", "Tobias Lütke"]
5
+ gem.authors = ["Camilo Lopez", "Tom Burns", "Harry Brundage", "Dylan Smith", "Tobias Lutke", "Arthur Neves"]
6
6
  gem.email = ["harry.brundage@shopify.com"]
7
7
  gem.description = %q{Opt in read through ActiveRecord caching.}
8
8
  gem.summary = %q{IdentityCache lets you specify how you want to cache your model objects, at the model level, and adds a number of convenience methods for accessing those objects through the cache. Memcached is used as the backend cache store, and the database is only hit when a copy of the object cannot be found in Memcached.}
@@ -1,4 +1,4 @@
1
1
  module IdentityCache
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  CACHE_VERSION = 3
4
4
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: identity_cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Camilo Lopez
8
8
  - Tom Burns
9
9
  - Harry Brundage
10
10
  - Dylan Smith
11
- - Tobias Lütke
11
+ - Tobias Lutke
12
+ - Arthur Neves
12
13
  autorequire:
13
14
  bindir: bin
14
15
  cert_chain: []