Browse Source

Update CHANGELOG.

Daniele Alessandri 11 years ago
parent
commit
5d40b85f10
1 changed files with 8 additions and 6 deletions
  1. 8 6
      CHANGELOG.md

+ 8 - 6
CHANGELOG.md

@@ -36,11 +36,6 @@ v0.9.0 (201x-xx-xx)
     - `fire-and-forget`: returns a pipeline that does not read back responses
       (class: `Predis\Pipeline\FireAndForget`).
 
-- It is now possible to execute "raw commands" using `Predis\Command\RawCommand`
-  and a variable list of command arguments. Input arguments are not filtered and
-  responses are not parsed, which means arguments must follow the signature of
-  the command as defined by Redis and complex responses are left untouched.
-
 - The two base abstract command classes have been renamed in the following way:
 
     - `Predis\Command\AbstractCommand` is now `Predis\Command\Command`
@@ -59,7 +54,9 @@ v0.9.0 (201x-xx-xx)
 - The key prefixing logic has been moved from command classes to the key prefix
   processor. Developers can define or override handlers used to prefix keys, but
   they can also define the needed logic in their command classes by implementing
-  `Predis\Command\PrefixableCommandInterface` just like before.
+  `Predis\Command\PrefixableCommandInterface` just like before. Prefixes are now
+  applied also to raw commands if the command ID is a recognized one and handled
+  by the key prefix processor.
 
 
 v0.8.5 (2013-xx-xx)
@@ -78,6 +75,11 @@ v0.8.5 (2013-xx-xx)
     - hashes (cursor-based iterator using `HSCAN`)
     - lists (plain iterator using `LRANGE`)
 
+- It is now possible to execute "raw commands" using `Predis\Command\RawCommand`
+  and a variable list of command arguments. Input arguments are not filtered and
+  responses are not parsed, which means arguments must follow the signature of
+  the command as defined by Redis and complex responses are left untouched.
+
 - List of deprecated methods:
 
     - `Predis\Client::multiExec()`: superseded by `Predis\Client::transaction()`