8000 5.3.7-rc1 · phpredis/phpredis@85c69c2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 85c69c2

Browse files
committed
5.3.7-rc1
1 parent d938a42 commit 85c69c2

File tree

3 files changed

+65
-8
lines changed

3 files changed

+65
-8
lines changed

Changelog.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ All changes to phpredis will be documented in this file.
55
We're basing this format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
## [5.3.7RC1] - 2021-02-02 ([GitHub](https://github.com/phpredis/phpredis/releases/5.3.7RC1), [PECL](https:/pecl.php.net/package/redis/5.3.7RC1))
11+
12+
### Sponsors :sparkling_heart:
13+
14+
- [Audiomack](https://audiomack.com)
15+
- [Open LMS](https://openlms.net/)
16+
- [BlueHost](https://bluehost.com)
17+
- [Object Cache Pro for WordPress](https://objectcache.pro/)
18+
- [Avtandil Kikabidze](https://github.com/akalongman)
19+
- [Zaher Ghaibeh](https://github.com/zaherg)
20+
- [BatchLabs](https://batch.com)
21+
- [Stackhero](https://github.com/stackhero-io)
22+
- [Florian Levis](https://github.com/Gounlaf)
23+
- [Luis Zárate](https://github.com/jlzaratec)
24+
25+
### Fixed
26+
27+
- Fix RedisArray::[hsz]scan and tests
28+
[08a9d5db](https://github.com/phpredis/phpredis/commit/08a9d5db),
29+
[0264de18](https://github.com/phpredis/phpredis/commit/0264de18),
30+
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko)),
31+
([Michael Grunder](https://github.com/michael-grunder))
32+
- Fix RedisArray::scan
33+
[8689ab1c](https://github.com/phpredis/phpredis/commit/8689ab1c)
34+
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
35+
- Fix LZF decompression logic
36+
[0719c1ec](https://github.com/phpredis/phpredis/commit/0719c1ec)
37+
([Michael Grunder](https://github.com/michael-grunder))
38+
839
## [5.3.6] - 2021-01-17 ([GitHub](https://github.com/phpredis/phpredis/releases/5.3.6), [PECL](https:/pecl.php.net/package/redis/5.3.6))
940

1041
### Sponsors :sparkling_heart:

package.xml

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>n.favrefelix@gmail.com</email>
2828
<active>no</active>
2929
</lead>
30-
<date>2022-01-17</date>
30+
<date>2022-02-02</date>
3131
<version>
32-
<release>5.3.6</release>
33-
<api>5.3.6</api>
32+
<release>5.3.7RC1</release>
33+
<api>5.3.7</api>
3434
</version>
3535
<stability>
36-
<release>stable</release>
37-
<api>stable</api>
36+
<release>alpha</release>
37+
<api>alpha</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
@@ -51,9 +51,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
5151

5252
---
5353

54-
phpredis 5.3.6
54+
phpredis 5.3.7RC1
5555

56-
- Fix a segfault in RedisArray::del [d2f2a7d9] (Pavlo Yatsukhnenko)
56+
- Fix RedisArray::[hsz]scan and tests [08a9d5db, 0264de18] (Pavlo Yatsukhnenko, Michael Grunder)
57+
- Fix RedisArray::scan [8689ab1c] (Pavlo Yatsukhnenko)
58+
- Fix LZF decompression logic [0719c1ec] (Michael Grunder)
5759

5860
</notes>
5961
<contents>
@@ -131,6 +133,30 @@ http://pear.php.net/dtd/package-2.0.xsd">
131133
<configureoption name="enable-redis-zstd" prompt="enable zstd compression support?" default="no"/>
132134
</extsrcrelease>
133135
<changelog>
136+
<release>
137+
<stability><release>stable</release><api>stable</api></stability>
138+
<version><release>5.3.6</release><api>5.3.6</api></version>
139+
<date>2022-01-17</date>
140+
<notes>
141+
--- Sponsors ---
142+
143+
Audiomack - https://audiomack.com
144+
Open LMS - https://openlms.net
145+
BlueHost - https://bluehost.com
146+
Object Cache Pro for WordPress - https://objectcache.pro
147+
Avtandil Kikabidze - https://github.com/akalongman
148+
Zaher Ghaibeh - https://github.com/zaherg
149+
BatchLabs - https://batch.com
150+
Luis Zarate - https://github.com/jlzaratec
151+
152+
---
153+
154+
phpredis 5.3.6
155+
156+
- Fix a segfault in RedisArray::del [d2f2a7d9] (Pavlo Yatsukhnenko)
157+
158+
</notes>
159+
</release>
134160
<release>
135161
<stability><release>stable</release><api>stable</api></stability>
136162
<version><release>5.3.5</release><api>5.3.5</api></version>

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PHP_REDIS_H
2424

2525
/* phpredis version */
26-
#define PHP_REDIS_VERSION "5.3.6"
26+
#define PHP_REDIS_VERSION "5.3.7RC1"
2727

2828
PHP_METHOD(Redis, __construct);
2929
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)
0