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:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2016-12-15 00:06:31 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2016-12-15 00:06:31 +0300
commit92a3a52942d770697d0891cc14e24d534a4ab9f4 (patch)
treeeb7bff895e06f590f45dadc31cdf0fa3183194fa /package.xml
parentf192389368bfc4e169285186c8704db494c9d190 (diff)
release 3.1.03.1.0
Diffstat (limited to 'package.xml')
-rw-r--r--package.xml88
1 files changed, 51 insertions, 37 deletions
diff --git a/package.xml b/package.xml
index 921703fc..4d41fed7 100644
--- a/package.xml
+++ b/package.xml
@@ -21,10 +21,16 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>michael.grunder@gmail.com</email>
<active>yes</active>
</lead>
- <date>2016-06-02</date>
+ <lead>
+ <name>Pavlo Yatsukhnenko</name>
+ <user>yatsukhnenko</user>
+ <email>p.yatsukhnenko@gmail.com</email>
+ <active>yes</active>
+ </lead>
+ <date>2016-12-14</date>
<version>
- <release>2.2.8</release>
- <api>2.2.8</api>
+ <release>3.1.0</release>
+ <api>3.1.0</api>
</version>
<stability>
<release>stable</release>
@@ -32,45 +38,26 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 2.2.8
-
- The main improvement in this version of phpredis is support for Redis
- Cluster. This version of phpredis is intended for versions of php older
- than 7.
-
- In addition there have been many bug fixes and improvements to non cluster
- related commands, which are listed below.
-
- I've attempted to include everyone who contribued to the project in each fix
- description and have included names or github user ids.
-
- Thanks to everyone for submitting bug reports and pull requests. A special
- thanks to Remi Collet for helping with any and all packaging related issues
+ phpredis 3.1.0
- \o/
+ In this version of phpredis codebase was unified to work with all versions of php \o/
+ Also many bug fixes and some improvements has been made.
--- Improvements ---
- * Added randomization to our seed nodes to balance which instance is used
- to map the keyspace (Vitaliy Stepanyuk) [32eb1c5f]
- * Added support for IPv6 addresses
+ * Support the client to Redis Cluster just having one master (andyli) [892e5646]
+ * Allow both long and strings that are longs for zrangebyscore offset/limit (Michael Grunder) [bdcdd2aa]
+ * Process NX|XX, CH and INCR options in zAdd command (Pavlo Yatsukhnenko) [71c9f7c8]
--- Fixes ---
- * PHP liveness checking workaround (Shafreeck Sea) [c18d58b9]
- * Various documentation and code formatting and style fixes (ares333,
- sanpili, Bryan Nelson, linfangrong, Romero Malaquias, Viktor Szépe)
- * Fix scan reply processing to use long instead of int to avoid overflow
- (mixiaojiong).
- * Fix potential segfault in Redis Cluster session storage (Sergei Lomakov)
- [cc15aae]
- * Fixed memory leak in discard function [17b1f427]
- * Sanity check for igbinary unserialization (Maurus Cuelenaere) [3266b222,
- 5528297a]
- * Fix segfault occuring from unclosed socket connection for Redis Cluster
- (CatKang) [04196aee]
- * Case insensitive zRangeByScore options
- * Fixed dreaded size_t vs long long compiler warning
+ * Fix incrby/decrby for large integers (Michael Grunder) [3a12758a]
+ * Use static declarations for spl_ce_RuntimeException decl (Jeremy Mikola) [a9857d69]
+ * Fixed method call problem causes session handler to display two times (ZiHang Gao) [24f86c49]
+ * psetex method returns '+OK' on success, not true (sitri@ndxbn) [afcd8445]
+ * Fix integer overflow for long (>32bit) increments in hIncrBy (iyesin) [58e1d799]
+ * Move zend_object handler to the end (Michael Grunder) [34107966]
+ * Using setOption on redis array causes immediate connection (Pavlo Yatsukhnenko) [f1a85b38]
</notes>
<contents>
<dir name="/">
@@ -114,8 +101,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
<required>
<php>
<min>5.2.0</min>
- <max>6.0.0</max>
- <exclude>6.0.0</exclude>
+ <max>7.1.0</max>
</php>
<pearinstaller>
<min>1.4.0b1</min>
@@ -127,6 +113,34 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>stable</release><api>stable</api></stability>
+ <version><release>3.1.0</release><api>3.1.0</api></version>
+ <date>2016-12-14</date>
+ <notes>
+ phpredis 3.1.0
+
+ In this version of phpredis codebase was unified to work with all versions of php \o/
+ Also many bug fixes and some improvements has been made.
+
+ --- Improvements ---
+
+ * Support the client to Redis Cluster just having one master (andyli) [892e5646]
+ * Allow both long and strings that are longs for zrangebyscore offset/limit (Michael Grunder) [bdcdd2aa]
+ * Process NX|XX, CH and INCR options in zAdd command (Pavlo Yatsukhnenko) [71c9f7c8]
+
+ --- Fixes ---
+
+ * Fix incrby/decrby for large integers (Michael Grunder) [3a12758a]
+ * Use static declarations for spl_ce_RuntimeException decl (Jeremy Mikola) [a9857d69]
+ * Fixed method call problem causes session handler to display two times (ZiHang Gao) [24f86c49]
+ * psetex method returns '+OK' on success, not true (sitri@ndxbn) [afcd8445]
+ * Fix integer overflow for long (>32bit) increments in hIncrBy (iyesin) [58e1d799]
+ * Move zend_object handler to the end (Michael Grunder) [34107966]
+ * Using setOption on redis array causes immediate connection (Pavlo Yatsukhnenko) [f1a85b38]
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
<version><release>2.2.8</release><api>2.2.8</api></version>
<date>2016-06-02</date>
<notes>