Prepare for 5.3.0RC2

This commit is contained in:
michael-grunder
2020-06-26 11:45:58 -07:00
parent 3ba3f06d51
commit 5ceba7c6d9
3 changed files with 53 additions and 15 deletions
+26
View File
@@ -5,6 +5,32 @@ All changes to phpredis will be documented in this file.
We're basing this format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [5.3.0RC2]
### Sponsors :sparkling_heart:
- [Audiomack](https://audiomack.com)
- [BlueHost](https://bluehost.com)
- [Redis Cache Pro for WordPress](https://wprediscache.com/)
- [Avtandil Kikabidze](https://github.com/akalongman)
### Fixed
- Fix LZ4 configuration and use pkg-config if we have it
[df398cb0](https://github.com/phpredis/phpredis/commit/df398cb07cd10d870c6805d5834703dc39590b0f)
([Remi Collet](https://github.com/remicollet))
- Make sure persistent pool ID is NULL terminated
[0838b5bd](https://github.com/phpredis/phpredis/commit/0838b5bde7ef25d419868c7e705bf6c70d68ea20),
[57bb95bf](https://github.com/phpredis/phpredis/commit/57bb95bf5a01a2adb74e2bf73bb285488e0d1586)
([Michael Grunder](https://github.com/michael-grunder))
### Changed
- Run LZ4 tests in Travis
[3ba3f06d](https://github.com/phpredis/phpredis/commit/3ba3f06d51ff126eb51dd697381c0e56b38bbcf3)
([Michael Grunder](https://github.com/michael-grunder))
## [5.3.0RC1]
### Sponsors :sparkling_heart:
+26 -14
View File
@@ -27,32 +27,44 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
<date>2020-06-25</date>
<date>2020-06-26</date>
<version>
<release>5.3.0RC1</release>
<api>5.3.0RC1</api>
<release>5.3.0RC2</release>
<api>5.3.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 5.3.0RC1
phpredis 5.3.0RC2
This release adds the first round of support for Redis 6 functionality including,
most importantly ACLs. Other Redis 6 functionality is included as well such as
KEEPTTL and XINFO FULL command support.
This release contains initial support for Redis 6 ACLs, LZ4 compression,
and many more fixes and improvements.
Aside from the Redis 6 functionality this releasae contains many bugfixes and
improvements.
You can find a detailed list of changes in Changelog.md and package.xml
A special thanks to BlueHost for sponsoring ACL support \o/
* Sponsors
~ Audiomack.com - https://audiomack.com
~ BlueHost.com - https://bluehost.com
~ Redis Cache Pro for WordPress - https://wprediscache.com/
~ Audiomack - https://audiomack.com
~ BlueHost - https://bluehost.com
~ Redis Cache Pro for WordPress - https://wprediscache.com
~ Avtandil Kikabidze - https://github.com/akalongman
phpredis 5.3.0RC2
---
* Fix LZ4 configuration and use pkg-config if we have it [df398cb0]
(Remi Collet)
* Make sure persistent pool ID is NULL terminated [0838b5bd, 57bb95bf]
(Michael Grunder)
* Run LZ4 tests in Travis [3ba3f06d] (Michael Grunder)
phpredis 5.3.0RC1
---
* Support for Redis 6 ACLs [a311cc4e] (Michael Grunder)
+1 -1
View File
@@ -23,7 +23,7 @@
#define PHP_REDIS_H
/* phpredis version */
#define PHP_REDIS_VERSION "5.3.0RC1"
#define PHP_REDIS_VERSION "5.3.0RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);