CHANGELOG 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. v0.x.x
  2. * New commands added for the Redis 2.0 (DEV) profile:
  3. - APPEND
  4. - ZCOUNT
  5. - DISCARD
  6. * The GET parameter for the SORT command now accepts also multiple key
  7. patterns by passing an array of strings.
  8. * KEYS will return a multibulk reply starting from Redis 2.0 (DEV). Predis
  9. handles this change in a backwards-compatible way.
  10. * Switched to class-based handlers instead of anonymous functions to
  11. handle the various server response types.
  12. * CommandPipeline and MultiExecBlock return their instances when invoking
  13. commands, thus allowing method chaining in pipelines and multi-exec blocks.
  14. * MultiExecBlock instances can handle the new DISCARD command.
  15. * Connections can now be identified by an alias using the "alias" parameter
  16. in the connection arguments. When connected to a cluster of Redis servers,
  17. this is useful to get a certain connection out of a cluster of connections.
  18. v0.5.1
  19. * RPOPLPUSH has been changed from bulk command to inline command in Redis
  20. 1.2.1, so ListPopLastPushHead now extends InlineCommand. The old RPOPLPUSH
  21. behavior is still available via the ListPopLastPushHeadBulk class so that
  22. you can override the server profile if you need the old (and uncorrect)
  23. behaviour when connecting to a Redis 1.2.0 instance.
  24. * Added missing support for BGREWRITEAOF for Redis >= 1.2.0
  25. * Implemented a factory method for the RedisServerProfile class to ease the
  26. creation of new server profile instances based on a version string.
  27. v0.5.0
  28. * First versioned release of Predis