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-06-22 10:38:32 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-06-22 10:38:32 +0300
commita85dab942a1fb5c2cd3e11dd6312e6bad6abcc59 (patch)
treeb40dc8b08bd55cfa5d3d183688f58da7e6248695
parent6533700d07c029e0e59b96442a3a51245fd2886b (diff)
4.1.0RC24.1.0RC2
-rw-r--r--package.xml61
-rw-r--r--php_redis.h2
2 files changed, 48 insertions, 15 deletions
diff --git a/package.xml b/package.xml
index 48eeb157..76782ac0 100644
--- a/package.xml
+++ b/package.xml
@@ -27,18 +27,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>p.yatsukhnenko@gmail.com</email>
<active>yes</active>
</lead>
- <date>2018-06-08</date>
+ <date>2018-06-22</date>
<version>
- <release>4.1.0RC1</release>
- <api>4.1.0RC1</api>
+ <release>4.1.0RC2</release>
+ <api>4.1.0RC2</api>
</version>
<stability>
- <release>alpha</release>
- <api>alpha</api>
+ <release>beta</release>
+ <api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 4.1.0RC1
+ phpredis 4.1.0RC2
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
@@ -93,6 +93,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
<file role='test' name='RedisTest.php'/>
<file role='test' name='TestRedis.php'/>
<file role='test' name='TestSuite.php'/>
+ <file role='test' name='getSessionData.php'/>
+ <file role='test' name='regenerateSessionId.php'/>
+ <file role='test' name='startSession.php'/>
<file role='test' name='make-cluster.sh'/>
<file role='test' name='mkring.sh'/>
</dir> <!-- tests -->
@@ -116,11 +119,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
- <stability><release>alpha</release><api>alpha</api></stability>
- <version><release>4.1.0RC1</release><api>4.1.0RC1</api></version>
- <date>2018-06-08</date>
+ <stability><release>beta</release><api>beta</api></stability>
+ <version><release>4.1.0RC2</release><api>4.1.0RC2</api></version>
+ <date>2018-06-22</date>
<notes>
- phpredis 4.1.0RC1
+ phpredis 4.1.0RC2
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
@@ -136,11 +139,38 @@ http://pear.php.net/dtd/package-2.0.xsd">
</release>
<release>
- <stability><release>alpha</release><api>alpha</api></stability>
- <version><release>4.0.0RC1</release><api>4.0.0RC1</api></version>
- <date>2018-02-07</date>
+ <stability><release>stable</release><api>stable</api></stability>
+ <version><release>4.0.2</release><api>4.0.2</api></version>
+ <date>2018-04-25</date>
+ <notes>
+ phpredis 4.0.2
+
+ This release contains only fix of exists method to take multiple keys
+ and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
+ <version><release>4.0.1</release><api>4.0.1</api></version>
+ <date>2018-04-18</date>
+ <notes>
+ phpredis 4.0.1
+
+ * Fix arginfo for connect/pconnect issue #1337 [c3b228] (@mathroc)
+ * Don't leak a ZVAL [278232] (Michael Grunder)
+ * Fix config.m4 for lzf issue #1325 [20e173] (Pavlo Yatsukhnenko)
+ * Updates EXISTS documentation and notes change in 4.0.0 [bed186] (Michael Grunder)
+ * Fix typo in notes [0bed36] (@szepeviktor)
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
+ <version><release>4.0.0</release><api>4.0.0</api></version>
+ <date>2018-03-17</date>
<notes>
- phpredis 4.0.0RC1
+ phpredis 4.0.0
*** WARNING! THIS RELEASE CONTAINS BREAKING API CHANGES! ***
@@ -151,12 +181,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
* Return real connection error as exception [5b9c0c60] (Pavlo Yatsukhnenko, Michael Grunder)
* Disallow using empty string as session name. [485db46f] (Pavlo Yatsukhnenko)
* Use zend_string for storing auth and prefix members [4b8336f7] (Pavlo Yatsukhnenko)
+ * The element of z_seeds may be a reference on php7 [367bc6aa, 1e63717a] (@janic716)
* Avoid connection in helper methods [91e9cfe1] (Pavlo Yatsukhnenko)
* Add tcp_keepalive option to redis sock [68c58513, 5101172a, 010336d5, 51e48729] (@git-hulk, Michael Grunder)
* More robust GEORADIUS COUNT validation [f7edee5d] (Michael Grunder)
* Add LZF compression (experimental) [e2c51251, 8cb2d5bd, 8657557] (Pavlo Yatsukhnenko)
* Allow to use empty string as persistant_id [ec4fd1bd] (Pavlo Yatsukhnenko)
* Don't use convert_to_string in redis_hmget_cmd [99335d6] (Pavlo Yatsukhnenko)
+ * Allow mixing MULTI and PIPELINE modes (experimental) [5874b0] (Pavlo Yatsukhnenko)
+ * PHP >=7.3.0 uses zend_string to store `php_url` elements [b566fb44] (@fmk)
* Documentation improvements (Michael Grunder, @TomA-R)
</notes>
</release>
diff --git a/php_redis.h b/php_redis.h
index 8fd51729..310f4047 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "4.1.0RC1"
+#define PHP_REDIS_VERSION "4.1.0RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);