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>2017-06-01 13:32:13 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2017-06-01 13:32:13 +0300
commit0393187bfa8da474abce8122a0a4422a42b58ec1 (patch)
tree8403846f8b3ca6c1f67b48423c6ed3a546029318
parent7509636efb5460a528b1896f75e5f3f158d7d518 (diff)
3.1.3RC13.1.3RC1
-rw-r--r--package.xml81
-rw-r--r--php_redis.h2
2 files changed, 69 insertions, 14 deletions
diff --git a/package.xml b/package.xml
index 0f15f31c..6a0707e8 100644
--- a/package.xml
+++ b/package.xml
@@ -27,25 +27,45 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>p.yatsukhnenko@gmail.com</email>
<active>yes</active>
</lead>
- <date>2017-03-24</date>
+ <date>2017-06-01</date>
<version>
- <release>3.1.2</release>
- <api>3.1.2</api>
+ <release>3.1.3RC1</release>
+ <api>3.1.3RC1</api>
</version>
<stability>
- <release>stable</release>
- <api>stable</api>
+ <release>beta</release>
+ <api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 3.1.2
-
- * RedisArray segfault fix [564ce3] (Pavlo Yatsukhnenko)
- * Small memory leak fix [645888b] (Mike Grunder)
- * Segfault fix when recreating RedisCluster objects [abf7d4] (Michael Grunder)
- * Fix for RedisCluster bulk response parsing [4121c4] (Alberto Fernández)
- * Re allow single array for sInterStore [6ef0c2, d01966] (Michael Grunder)
- * Better TravisCI integration [4fd2f6] (Pavlo Yatsukhnenko)
+ phpredis 3.1.3RC1
+
+ This release contains two big improvements:
+ 1. Adding a new printf like command construction function with additionaly format specifiers specific to phpredis.
+ 2. Implementation of custom objects for Redis and RedisArray wich eliminates double hash lookup.
+ Also many small improvements and bug fixes were made.
+
+ * A printf like method to construct a Redis RESP command [a4a0ed, d75081, bdd287, 0eaeae, b3d00d] (Michael Grunder)
+ * Use custom objects instead of zend_list for storing Redis/RedisArray [a765f8, 8fa85a] (Pavlo Yatsukhnenko)
+ * Make sure redisCluster members are all initialized on (re)creation [162d88] (Michael Grunder)
+ * Fix Null Bulk String response parsing in cluster library [058753] (Alberto Fernández)
+ * Add hStrLen command [c52077, fb88e1] (Pavlo Yatsukhnenko)
+ * Add optional COUNT argument to sPop [d2e203] (Michael Grunder)
+ * Allow sInterStore to take one arg [26aec4, 4cd06b] (Michael Grunder)
+ * Allow MIGRATE to accept multiple keys [9aa3db] (Michael Grunder)
+ * Allow using numeric string in zInter command [ba0070] (Pavlo Yatsukhnenko)
+ * Use crc32 table from PHP distro [f81694] (Pavlo Yatsukhnenko)
+ * Use ZVAL_DEREF macros for dereference input variables [ad4596] (Pavlo Yatsukhnenko)
+ * Add configureoption tag to package.xml [750963] (Pavlo Yatsukhnenko)
+ * Fix read_timeout [18149e, b56dc4] (Pavlo Yatsukhnenko)
+ * Fix zval_get_string impl for PHP5 [4e56ba] (Pavlo Yatsukhnenko)
+ * Fix Redis/RedisArray segfaults [be5c1f, 635c3a, 1f8dde, 43e1e0] (Pavlo Yatsukhnenko)
+ * Fix memory leak and potential segfault [aa6ff7, 88efaa] (Michael Grunder)
+ * Throw exception for all non recoverable errors [e37239] (Pavlo Yatsukhnenko)
+ * Increase read buffers size [520e06] (Pavlo Yatsukhnenko)
+ * Better documentation [f0c25a, c5991f, 9ec9ae] (Michael Grunder)
+ * Better TravisCI integration [e37c08] (Pavlo Yatsukhnenko)
+ * Refactoring (Pavlo Yatsukhnenko, Michael Grunder)
</notes>
<contents>
<dir name="/">
@@ -101,6 +121,41 @@ http://pear.php.net/dtd/package-2.0.xsd">
<configureoption name="enable-redis-igbinary" prompt="enable igbinary serializer support?" default="no"/>
</extsrcrelease>
<changelog>
+ <release>
+ <stability><release>beta</release><api>beta</api></stability>
+ <version><release>3.1.3RC1</release><api>3.1.3RC1</api></version>
+ <date>2017-06-01</date>
+ <notes>
+ phpredis 3.1.3RC1
+
+ This release contains two big improvements:
+ 1. Adding a new printf like command construction function with additionaly format specifiers specific to phpredis.
+ 2. Implementation of custom objects for Redis and RedisArray wich eliminates double hash lookup.
+ Also many small improvements and bug fixes were made.
+
+ * A printf like method to construct a Redis RESP command [a4a0ed, d75081, bdd287, 0eaeae, b3d00d] (Michael Grunder)
+ * Use custom objects instead of zend_list for storing Redis/RedisArray [a765f8, 8fa85a] (Pavlo Yatsukhnenko)
+ * Make sure redisCluster members are all initialized on (re)creation [162d88] (Michael Grunder)
+ * Fix Null Bulk String response parsing in cluster library [058753] (Alberto Fernández)
+ * Add hStrLen command [c52077, fb88e1] (Pavlo Yatsukhnenko)
+ * Add optional COUNT argument to sPop [d2e203] (Michael Grunder)
+ * Allow sInterStore to take one arg [26aec4, 4cd06b] (Michael Grunder)
+ * Allow MIGRATE to accept multiple keys [9aa3db] (Michael Grunder)
+ * Allow using numeric string in zInter command [ba0070] (Pavlo Yatsukhnenko)
+ * Use crc32 table from PHP distro [f81694] (Pavlo Yatsukhnenko)
+ * Use ZVAL_DEREF macros for dereference input variables [ad4596] (Pavlo Yatsukhnenko)
+ * Add configureoption tag to package.xml [750963] (Pavlo Yatsukhnenko)
+ * Fix read_timeout [18149e, b56dc4] (Pavlo Yatsukhnenko)
+ * Fix zval_get_string impl for PHP5 [4e56ba] (Pavlo Yatsukhnenko)
+ * Fix Redis/RedisArray segfaults [be5c1f, 635c3a, 1f8dde, 43e1e0] (Pavlo Yatsukhnenko)
+ * Fix memory leak and potential segfault [aa6ff7, 88efaa] (Michael Grunder)
+ * Throw exception for all non recoverable errors [e37239] (Pavlo Yatsukhnenko)
+ * Increase read buffers size [520e06] (Pavlo Yatsukhnenko)
+ * Better documentation [f0c25a, c5991f, 9ec9ae] (Michael Grunder)
+ * Better TravisCI integration [e37c08] (Pavlo Yatsukhnenko)
+ * Refactoring (Pavlo Yatsukhnenko, Michael Grunder)
+ </notes>
+ </release>
<release>
<stability><release>stable</release><api>stable</api></stability>
diff --git a/php_redis.h b/php_redis.h
index f20c7397..44b1defb 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "3.1.2"
+#define PHP_REDIS_VERSION "3.1.3RC1"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);