Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7509636

Browse files
committed
Merge branch 'issue.1176' into develop
2 parents 79a95c2 + 0fef41a commit 7509636

2 files changed

Lines changed: 36 additions & 33 deletions

File tree

package.xml

Lines changed: 35 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -27,41 +27,25 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>yes</active>
2929
</lead>
30-
<date>2017-01-16</date>
30+
<date>2017-03-24</date>
3131
<version>
32-
<release>3.1.1RC2</release>
33-
<api>3.1.1RC2</api>
32+
<release>3.1.2</release>
33+
<api>3.1.2</api>
3434
</version>
3535
<stability>
36-
<release>beta</release>
37-
<api>beta</api>
36+
<release>stable</release>
37+
<api>stable</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
phpredis 3.1.1RC2
42-
43-
* Additional test updates for 32 bit systems (@remicollet)
44-
* ARM rounding issue in tests (@remicollet)
45-
* Use new zend_list_close instead of zend_list_delete when reconnecting.
46-
* Refactoring of redis_boolean_response_impl and redis_sock_write (@yatsukhnenko)
47-
48-
phpredis 3.1.1.RC1
49-
50-
This release contains mostly fixes for issues introduced when merging
51-
the php 5 and 7 codebase into a single branch.
52-
53-
* Fixed a segfault in igbinary serialization (@yatsukhnenko)
54-
* Restore 2.2.8/3.0.0 functionality to distinguish between an error
55-
and simply empty session data. (@remicollet)
56-
* Fix double to string conversion function (@yatsukhnenko)
57-
* Use PHP_FE_END definition when available (@remicollet)
58-
* Fixed various 'static function declared but not used' warnings
59-
* Fixes to various calls which were typecasting pointers to the
60-
wrong size. (@remicollet)
61-
62-
* Added php session unit test (@yatsukhnenko)
63-
* Added explicit module dependancy for igbinary (@remicollet)
64-
* Added phpinfo serialization information (@remicollet)
41+
phpredis 3.1.2
42+
43+
* RedisArray segfault fix [564ce3] (Pavlo Yatsukhnenko)
44+
* Small memory leak fix [645888b] (Mike Grunder)
45+
* Segfault fix when recreating RedisCluster objects [abf7d4] (Michael Grunder)
46+
* Fix for RedisCluster bulk response parsing [4121c4] (Alberto Fernández)
47+
* Re allow single array for sInterStore [6ef0c2, d01966] (Michael Grunder)
48+
* Better TravisCI integration [4fd2f6] (Pavlo Yatsukhnenko)
6549
</notes>
6650
<contents>
6751
<dir name="/">
@@ -104,7 +88,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
10488
<dependencies>
10589
<required>
10690
<php>
107-
<min>5.2.0</min>
91+
<min>5.3.0</min>
10892
<max>7.9.99</max>
10993
</php>
11094
<pearinstaller>
@@ -113,8 +97,27 @@ http://pear.php.net/dtd/package-2.0.xsd">
11397
</required>
11498
</dependencies>
11599
<providesextension>redis</providesextension>
116-
<extsrcrelease/>
100+
<extsrcrelease>
101+
<configureoption name="enable-redis-igbinary" prompt="enable igbinary serializer support?" default="no"/>
102+
</extsrcrelease>
117103
<changelog>
104+
105+
<release>
106+
<stability><release>stable</release><api>stable</api></stability>
107+
<version><release>3.1.2</release><api>3.1.2</api></version>
108+
<date>2017-03-16</date>
109+
<notes>
110+
phpredis 3.1.2
111+
112+
* RedisArray segfault fix [564ce3] (Pavlo Yatsukhnenko)
113+
* Small memory leak fix [645888b] (Mike Grunder)
114+
* Segfault fix when recreating RedisCluster objects [abf7d4] (Michael Grunder)
115+
* Fix for RedisCluster bulk response parsing [4121c4] (Alberto Fernández)
116+
* Re allow single array for sInterStore [6ef0c2, d01966] (Michael Grunder)
117+
* Better TravisCI integration [4fd2f6] (Pavlo Yatsukhnenko)
118+
</notes>
119+
</release>
120+
118121
<release>
119122
<stability><release>beta</release><api>beta</api></stability>
120123
<version><release>3.1.1RC2</release><api>3.1.1RC2</api></version>
@@ -222,7 +225,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
222225
* Fixed dreaded size_t vs long long compiler warning
223226
</notes>
224227
</release>
225-
228+
226229
<release>
227230
<stability><release>stable</release><api>stable</api></stability>
228231
<version><release>2.2.7</release><api>2.2.7</api></version>

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define PHP_REDIS_H
2626

2727
/* phpredis version */
28-
#define PHP_REDIS_VERSION "3.1.1RC2"
28+
#define PHP_REDIS_VERSION "3.1.2"
2929

3030
PHP_METHOD(Redis, __construct);
3131
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)