Browse Source

Reword CHANGELOG.

Daniele Alessandri 10 years ago
parent
commit
34e394cc10
1 changed files with 10 additions and 9 deletions
  1. 10 9
      CHANGELOG.md

+ 10 - 9
CHANGELOG.md

@@ -1,8 +1,8 @@
 v0.8.6 (2014-xx-xx)
 ================================================================================
 
-- Switched to Redis 2.8 as the default server profile as there are no changes
-  that would break compatibility with previous releases.
+- Redis 2.8 is not the default server profile as there are no changes that would
+  break compatibility with previous releases.
 
 - Added `PFADD`, `PFCOUNT`, `PFMERGE` to the server profile for Redis 2.8 for
   handling the HyperLogLog data structure introduced in Redis 2.8.9.
@@ -10,22 +10,23 @@ v0.8.6 (2014-xx-xx)
 - Added `ZLEXCOUNT`, `ZRANGEBYLEX`, `ZREMRANGEBYLEX` to the server profile for
   Redis 2.8 for handling lexicographic operations on members of sorted sets.
 
-- Minor tweaks to make this version of Predis compatible with HHVM >= 2.4.0.
+- Added support for key hash tags when using redis-cluster (Redis 3.0.0b1).
 
-- Add support for key hash tags when using redis-cluster (Redis 3.0.0b1).
+- __FIX__: minor tweaks to make Predis compatible with HHVM >= 2.4.0.
 
-- __FIX__: redis-sentinel does not break the parsing of responses to `INFO`.
+- __FIX__: responses to `INFO` are now properly parsed and will not break when
+  redis sentinel is being used (ISSUE #154).
 
-- __FIX__: `INCRBYFLOAT` is now handled as expected in cluster and replication
+- __FIX__: added missing support for `INCRBYFLOAT` in cluster and replication
   configurations (ISSUE #159).
 
 - __FIX__: fix parsing of the output of `CLUSTER NODES` to fetch the slots map
   from a node when redis-cluster has slaves in its configuration (ISSUE #165).
 
-- __FIX__: prevent stack overflows when using the abstraction for cursor-based
-  iterators over large collections (ISSUE #182).
+- __FIX__: prevent a stack overflow when iterating over large Redis collections
+  using our abstraction for cursor-based iterators (ISSUE #182).
 
-- __FIX__: properly discards a transaction when the server immediatly returns an
+- __FIX__: properly discards transactions when the server immediately returns an
   error response (e.g. -OOM or -ERR on invalid arguments for a command) instead
   of a +QUEUED response (ISSUE #187).