redis-objects 2.0.0.alpha → 2.0.0.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.rdoc +12 -0
- data/README.md +230 -177
- data/lib/redis/list.rb +2 -10
- data/lib/redis/objects/version.rb +1 -1
- data/lib/redis/objects.rb +74 -33
- data/lib/redis/set.rb +2 -1
- data/lib/redis/sorted_set.rb +2 -2
- data/redis-objects.gemspec +1 -1
- data/spec/redis_key_naming_spec.rb +427 -0
- data/spec/redis_objects_active_record_spec.rb +1 -1
- data/spec/redis_objects_conn_spec.rb +2 -12
- data/spec/redis_objects_instance_spec.rb +41 -28
- data/spec/redis_objects_model_spec.rb +34 -12
- data/spec/spec_helper.rb +4 -3
- metadata +11 -14
- data/spec/redis_legacy_key_naming_spec.rb +0 -419
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5ed71a5605aa73fe497663140e8a2375d67d72c7045cf1bf02821d032ea9e12
|
|
4
|
+
data.tar.gz: 951c6350a050f3bd172d0c2afede90ebd81887e58187b10ae0e073e8a83fff42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cde4be16ecdd9cc0a5be403eae4b48ced1b7427a64c504695046245f318b3bee78bcc3c39444ace9fe0735bad7f271e7410197eac96d84c33d26ed8cea0d6f7
|
|
7
|
+
data.tar.gz: 51993d904b51d6fb4fd4983b1d46d6834528e8add1d274f618093b4aa738c282eeffad5ad816aa76f558cf179a1e798f5835b8cd81bdc7260849c7ffd6dc4086
|
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
= Changelog for Redis::Objects
|
|
2
2
|
|
|
3
|
+
== 2.0.0.beta2 (8 Dec 2025)
|
|
4
|
+
|
|
5
|
+
* Better approach to the legacy key naming bug that preserves backwards compat [Matthew Hively]
|
|
6
|
+
|
|
7
|
+
== 2.0.0.beta (30 Mar 2023)
|
|
8
|
+
|
|
9
|
+
* Updated internal calls to match `redis-rb`
|
|
10
|
+
|
|
11
|
+
* INCOMPAT: `Redis.current` is no longer allowed due to changes in `redis-rb`
|
|
12
|
+
|
|
13
|
+
* INCOMPAT: The order of items popped off a list by the rarely-used command `list.pop(n)` to specify multiple elements is now reversed to match redis.
|
|
14
|
+
|
|
3
15
|
== 1.7.0 (29 Apr 2022)
|
|
4
16
|
|
|
5
17
|
* Bumped version to 1.7.0 to revert redis-rb version lock [Nate Wiger]
|