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>2018-10-11 23:10:33 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-10-11 23:10:33 +0300
commite26fdd43539aeadaa30e17be694dec029b08b275 (patch)
tree946506b09808a1d84650aa66a33e6a40c63fea77
parentcd6ebc6d7f56ef652cb1dbe5e02126e95aa30156 (diff)
4.2.0RC14.2.0RC1
-rw-r--r--package.xml75
-rw-r--r--php_redis.h2
2 files changed, 58 insertions, 19 deletions
diff --git a/package.xml b/package.xml
index 88bd6256..34af5a5e 100644
--- a/package.xml
+++ b/package.xml
@@ -27,30 +27,31 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>p.yatsukhnenko@gmail.com</email>
<active>yes</active>
</lead>
- <date>2018-07-10</date>
+ <date>2018-10-11</date>
<version>
- <release>4.1.0</release>
- <api>4.1.0</api>
+ <release>4.2.0RC1</release>
+ <api>4.2.0RC1</api>
</version>
<stability>
- <release>stable</release>
- <api>stable</api>
+ <release>alpha</release>
+ <api>alpha</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 4.1.0
-
- The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
-
- * Add callbacks validate_sid and update_timestamp to session handler [aaaf0f23] (@hongboliu)
- * Call cluster_disconnect before destroying cluster object. [28ec4322] (Pavlo Yatsukhnenko)
- * Bulk strings can be zero length. (Michael Grunder)
- * Handle async parameter for flushDb and flushAll [beb6e8f3,acd10409,742cdd05] (Pavlo Yatsukhnenko)
- * Split INSTALL and add more instructions [43613d9e,80d2a917] (@remicollet, Pavlo Yatsukhnenko)
- * Only the first arg of connect and pconnect is required [063b5c1a] (@mathroc)
- * Add session locking functionality [300c7251] (@SkydiveMarius, Michael Grunder, Pavlo Yatsukhnenko)
- * Fix compression in RedisCluster [1aed74b4] (Pavlo Yatsukhnenko)
- * Refactor geo* commands + documentation improvements (Michael Grunder)
+ phpredis 4.2.0RC1
+
+ The main feature of this release is new Streams API implemented by Michael Grunder.
+
+ * Streams API [2c9e0572] (Michael Grunder)
+ * Reset the socket after a timeout to make sure no wrong data is received [cd6ebc6d] (@marcdejonge)
+ * Modify session testing logic [bfd27471] (Michael Grunder)
+ * Allow '-' and '+' arguments and add tests for zLexCount and zRemRangeByLex [d4a08697] (Michael Grunder)
+ * Fix printf format warnings [dcde9331] (Pavlo Yatsukhnenko)
+ * Session module is required [58bd8cc8] (@remicollet)
+ * Set default values for ini entries [e206ce9c] (Pavlo Yatsukhnenko)
+ * Display ini entries in output of phpinfo [908ac4b3] (Pavlo Yatsukhnenko)
+ * Persistant connections can be closed via close method + change reconnection logic [1d997873] (Pavlo Yatsukhnenko)
+ * Documentation improvements (@mg, @elcheco, @lucascourot, @nolimitdev, Michael Grunder)
</notes>
<contents>
<dir name="/">
@@ -120,6 +121,44 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
+ <stability><release>alpha</release><api>alpha</api></stability>
+ <version><release>4.2.0RC1</release><api>4.2.0RC1</api></version>
+ <date>2018-10-11</date>
+ <notes>
+ phpredis 4.2.0RC1
+
+ The main feature of this release is new Streams API implemented by Michael Grunder.
+
+ * Streams API [2c9e0572] (Michael Grunder)
+ * Reset the socket after a timeout to make sure no wrong data is received [cd6ebc6d] (@marcdejonge)
+ * Modify session testing logic [bfd27471] (Michael Grunder)
+ * Allow '-' and '+' arguments and add tests for zLexCount and zRemRangeByLex [d4a08697] (Michael Grunder)
+ * Fix printf format warnings [dcde9331] (Pavlo Yatsukhnenko)
+ * Session module is required [58bd8cc8] (@remicollet)
+ * Set default values for ini entries [e206ce9c] (Pavlo Yatsukhnenko)
+ * Display ini entries in output of phpinfo [908ac4b3] (Pavlo Yatsukhnenko)
+ * Persistant connections can be closed via close method + change reconnection logic [1d997873] (Pavlo Yatsukhnenko)
+ * Documentation improvements (@mg, @elcheco, @lucascourot, @nolimitdev, Michael Grunder)
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
+ <version><release>4.1.1</release><api>4.1.1</api></version>
+ <date>2018-08-01</date>
+ <notes>
+ phpredis 4.1.1
+
+ This release contains only bugfixes and documentation improvements
+
+ * Fix arginfo for Redis::set method [0c5e7f4d] (Pavlo Yatsukhnenko)
+ * Fix compression in RedisCluster [a53e1a34] (Pavlo Yatsukhnenko)
+ * Fix TravisCI builds [9bf32d30] (@jrchamp)
+ * Highlight php codes in documentation [c3b023b0] (@ackintosh)
+ </notes>
+ </release>
+
+ <release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>4.1.0</release><api>4.1.0</api></version>
<date>2018-01-10</date>
diff --git a/php_redis.h b/php_redis.h
index d85c13ff..88dd1121 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "develop"
+#define PHP_REDIS_VERSION "4.2.0RC1"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);