Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2014-03-19 20:40:20 +0400
committermichael-grunder <michael.grunder@gmail.com>2014-03-19 20:40:20 +0400
commitf07110ba6aae886c94cfc10f9f35dde90b055188 (patch)
tree1fe434a289874765ce6e682b04072feec2947f1a /package.xml
parent39b8f0c75be3f20c0d8cf7ebc488ea665e72b84c (diff)
Update package.xml for the next PECL update
Diffstat (limited to 'package.xml')
-rw-r--r--package.xml73
1 files changed, 70 insertions, 3 deletions
diff --git a/package.xml b/package.xml
index 573fb908..3bf3e609 100644
--- a/package.xml
+++ b/package.xml
@@ -32,7 +32,25 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Third public release
+ phpredis 2.2.5
+
+ This is a minor release with several bug fixes as well as additions to support
+ new commands that have been introduced to Redis since our last release.
+
+ A special thanks to everyone who helps the project by commenting on issues and
+ submitting pull requests! :)
+
+ [NEW] Support for the BITPOS command
+ [NEW] Connection timeout option for RedisArray (@MikeToString)
+ [NEW] A _serialize method, to complement our existing _unserialize method
+ [NEW] Support for the PUBSUB command
+ [NEW] Support for SCAN, SSCAN, HSCAN, and ZSCAN
+ [NEW] Support for the WAIT command
+
+ [FIX] Handle the COPY and REPLACE arguments for the MIGRATE command
+
+ [DOC] Fix syntax error in documentation for the SET command (@mithunsatheesh)
+ [DOC] Homebrew documentation instructions (@mathias)
</notes>
<contents>
<dir name="/">
@@ -75,7 +93,26 @@ http://pear.php.net/dtd/package-2.0.xsd">
<version><release>2.2.5</release><api>2.2.5</api></version>
<date>2014-03-15</date>
<notes>
- See GitHub for release notes
+ phpredis 2.2.5
+
+ This is a minor release with several bug fixes as well as additions to support
+ new commands that have been introduced to Redis since our last release.
+
+ A special thanks to everyone who helps the project by commenting on issues and
+ submitting pull requests! :)
+
+ [NEW] Support for the BITPOS command
+ [NEW] Connection timeout option for RedisArray (@MikeToString)
+ [NEW] A _serialize method, to complement our existing _unserialize method
+ [NEW] Support for the PUBSUB command
+ [NEW] Support for SCAN, SSCAN, HSCAN, and ZSCAN
+ [NEW] Support for the WAIT command
+
+ [FIX] Handle the COPY and REPLACE arguments for the MIGRATE command
+
+ [DOC] Fix syntax error in documentation for the SET command (@mithunsatheesh)
+ [DOC] Homebrew documentation instructions (@mathias)
+
</notes>
</release>
<release>
@@ -83,7 +120,37 @@ http://pear.php.net/dtd/package-2.0.xsd">
<version><release>2.2.4</release><api>2.2.4</api></version>
<date>2013-09-01</date>
<notes>
- See GitHub for release notes
+ **
+ ** Features / Improvements
+ **
+
+ * Randomized reconnect delay for RedisArray @mobli
+ This feature adds an optional parameter when constructing a RedisArray object
+ such that a random delay will be introduced if reconnections are made,
+ mitigating any &apos;thundering herd&apos; type problems.
+
+ * Lazy connections to RedisArray servers @mobli
+ By default, RedisArray will attempt to connect to each server you pass in
+ the ring on construction. This feature lets you specify that you would
+ rather have RedisArray only attempt a connection when it needs to get data
+ from a particular node (throughput/performance improvement).
+
+ * Allow LONG and STRING keys in MGET/MSET
+ * Extended SET options for Redis &gt;= 2.6.12
+ * Persistent connections and UNIX SOCKET support for RedisArray
+ * Allow aggregates for ZUNION/ZINTER without weights @mheijkoop
+ * Support for SLOWLOG command
+ * Reworked MGET algorithm to run in linear time regardless of key count.
+ * Reworked ZINTERSTORE/ZUNIONSTORE algorithm to run in linear time
+
+ **
+ ** Bug fixes
+ **
+
+ * C99 Compliance (or rather lack thereof) fix @mobli
+ * Added ZEND_ACC_CTOR and ZEND_ACC_DTOR @euskadi31
+ * Stop throwing and clearing an exception on connect failure @matmoi
+ * Fix a false positive unit test failure having to do with TTL returns
</notes>
</release>
<release>