Skip to content

Commit 5c03fce

Browse files
committed
5.1.1
1 parent 9633666 commit 5c03fce

File tree

2 files changed

+57
-38
lines changed

2 files changed

+57
-38
lines changed

package.xml

Lines changed: 56 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -27,53 +27,23 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>no</active>
2929
</lead>
30-
<date>2019-07-02</date>
30+
<date>2019-11-11</date>
3131
<version>
32-
<release>5.0.0</release>
33-
<api>5.0.0</api>
32+
<release>5.1.1</release>
33+
<api>5.1.0</api>
3434
</version>
3535
<stability>
3636
<release>stable</release>
3737
<api>stable</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
This release contains important improvements and breaking changes.
42-
The most interesting are: drop PHP5 support, RedisCluster slots caching,
43-
JSON and msgpack serializers, soft deprecation of non-Redis commands.
44-
45-
phpredis 5.0.0
46-
47-
* Remove HAVE_SPL [55c5586c] (@petk)
48-
* Update Fedora installation instructions [90aa067c] (@remicollet)
41+
phpredis 5.1.1
4942

50-
phpredis 5.0.0RC2
43+
This release contains only bugfix for unix-socket connection.
5144

52-
* Allow compilation without JSON serialization enabled and fixes for deprecated
53-
helper methods. [235a27] (Pavlo Yatsukhnenko)
54-
* Fix php msgpack >= 2.0.3 version requirement. [6973478..a537df8] (Michael Grunder)
55-
56-
phpredis 5.0.0RC1
57-
58-
* Enable connection pooling by default [8206b147] (Pavlo Yatsukhnenko)
59-
* Soft deprecate methods that aren't actually Redis commands [a81b4f2d, 95c8aab9] (Pavlo Yatsukhnenko, Michael Grunder)
60-
* Enable pooling for cluster slave nodes [17600dd1] (Michael Grunder)
61-
* xInfo response format [4852a510, ac9dca0a] (Pavlo Yatsukhnenko)
62-
* Make the XREADGROUP optional COUNT and BLOCK arguments nullable [0c17bd27] (Michael Grunder)
63-
* Allow PING to take an optional argument [6e494170] (Michael Grunder)
64-
* Allow ZRANGE to be called either with `true` or `['withscores' => true]` [19f3efcf] (Michael Grunder)
65-
* Allow to specify server address as schema://host [418428fa] (Pavlo Yatsukhnenko)
66-
* Allow persistent_id to be passed as NULL with strict_types enabled [60223762] (Michael Grunder)
67-
* Add server address to exception message [e8fb49be, 34d6403d] (Pavlo Yatsukhnenko)
68-
* Adds OPT_REPLY_LITERAL for rawCommand and EVAL [5cb30fb2] (Michael Grunder)
69-
* JSON serializer [98bd2886, 96c57139] (Pavlo Yatsukhnenko, Michael Grunder)
70-
* Add support for STREAM to the type command [d7450b2f, 068ce978, 8a45d18c] (Michael Grunder, Pavlo Yatsukhnenko)
71-
* Fix TypeError when using built-in constants in `setOption` [4c7643ee] (@JoyceBabu)
72-
* Handle references in MGET [60d8b679] (Michael Grunder)
73-
* msgpack serializer [d5b8f833, 545250f3, 52bae8ab] (@bgort, Pavlo Yatsukhnenko, Michael Grunder)
74-
* Add Cluster slots caching [9f0d7bc0, ea081e05] (Michael Grunder)
75-
* Drop PHP5 support [f9928642, 46a50c12, 4601887d, 6ebb36ce, fdbe9d29] (Michael Grunder)
76-
* Documentation improvements (@alexander-schranz, @cookieguru, Pavlo Yatsukhnenko, Michael Grunder)
45+
* Fix fail to connect to redis through unix socket [2bae8010, 9f4ededa] (Pavlo Yatsukhnenko, Michael Grunder)
46+
* Documentation improvements (@fitztrev)
7747
</notes>
7848
<contents>
7949
<dir name="/">
@@ -140,8 +110,57 @@ http://pear.php.net/dtd/package-2.0.xsd">
140110
<extsrcrelease>
141111
<configureoption name="enable-redis-igbinary" prompt="enable igbinary serializer support?" default="no"/>
142112
<configureoption name="enable-redis-lzf" prompt="enable lzf compression support?" default="no"/>
113+
<configureoption name="enable-redis-zstd" prompt="enable zstd compression support?" default="no"/>
143114
</extsrcrelease>
144115
<changelog>
116+
<release>
117+
<stability><release>stable</release><api>stable</api></stability>
118+
<version><release>5.1.1</release><api>5.1.0</api></version>
119+
<date>2019-11-11</date>
120+
<notes>
121+
phpredis 5.1.1
122+
123+
This release contains only bugfix for unix-socket connection.
124+
125+
* Fix fail to connect to redis through unix socket [2bae8010, 9f4ededa] (Pavlo Yatsukhnenko, Michael Grunder)
126+
* Documentation improvements (@fitztrev)
127+
</notes>
128+
</release>
129+
130+
<release>
131+
<stability><release>stable</release><api>stable</api></stability>
132+
<version><release>5.1.0</release><api>5.1.0</api></version>
133+
<date>2019-10-31</date>
134+
<notes>
135+
This release contains important bugfixes and improvements.
136+
137+
phpredis 5.1.0
138+
139+
* Allow to specify scheme for session handler [53a8bcc7] (Pavlo Yatsukhnenko)
140+
* Add documentation for hyperloglog [75a6f3fa, 96a0f0c3, 9686757a] (@rlunar)
141+
142+
phpredis 5.1.0RC2
143+
144+
* Fix missing null byte in PHP_MINFO_FUNCTION [8bc2240c] (Remi Collet)
145+
* Remove dead code generic_unsubscribe_cmd [8ee4abbc] (Pavlo Yatsukhnenko)
146+
* Add documentation for zpopmin and zpopmax [99ec24b3, 4ab1f940] (@alexander-schranz)
147+
148+
phpredis 5.1.0RC1
149+
150+
* Fix regression for multihost_distribute_call added in 112c77e3 [fbe0f804] (Pavlo Yatsukhnenko)
151+
* Fix regression for conntecting to unix sockets with relative path added in 1f41da64 [17b139d8, 7ef17ce1] (Pavlo Yatsukhnenko)
152+
* Fix unix-socket detection logic broken in 418428fa [a080b73f] (Pavlo Yatsukhnenko)
153+
* Fix memory leak and bug with getLastError for redis_mbulk_reply_assoc and redis_mbulk_reply_zipped. [7f42d628, 3a622a07] (Pavlo Yatsukhnenko), (Michael Grunder)
154+
* Fix bug with password contain "#" for redis_session [2bb08680] (Pavlo Yatsukhnenko)
155+
* Add optional support for Zstd compression, using --enable-redis-ztsd. This requires libzstd version >= 1.3.0 [2abc61da] (Remi Collet)
156+
* Fix overallocation in RedisCluster directed node commands [cf93649] (Michael Grunder)
157+
* Also attach slaves when caching cluster slots [0d6d3fdd, b114fc26] (Michael Grunder)
158+
* Use zend_register_persistent_resource_ex for connection pooling [fdada7ae, 7c6c43a6] (Pavlo Yatsukhnenko)
159+
* Refactor redis_session [91a8e734, 978c3074] (Pavlo Yatsukhnenko)
160+
* Documentation improvements (@Steveb-p, @tangix, @ljack-adista, @jdreesen, Michael Grunder)
161+
</notes>
162+
</release>
163+
145164
<release>
146165
<stability><release>stable</release><api>stable</api></stability>
147166
<version><release>5.0.0</release><api>5.0.0</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 "5.2.0-dev"
28+
#define PHP_REDIS_VERSION "5.1.1"
2929

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

0 commit comments

Comments
 (0)