From 85c69c2ef445902403af4ff9441ccde4c311766f Mon Sep 17 00:00:00 2001 From: Pavlo Yatsukhnenko Date: Tue, 1 Feb 2022 20:27:19 +0200 Subject: 5.3.7-rc1 --- Changelog.md | 31 +++++++++++++++++++++++++++++++ package.xml | 40 +++++++++++++++++++++++++++++++++------- php_redis.h | 2 +- 3 files changed, 65 insertions(+), 8 deletions(-) diff --git a/Changelog.md b/Changelog.md index 9df76702..6e7495e6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,6 +5,37 @@ 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). +## [Unreleased] + +## [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)) + +### Sponsors :sparkling_heart: + +- [Audiomack](https://audiomack.com) +- [Open LMS](https://openlms.net/) +- [BlueHost](https://bluehost.com) +- [Object Cache Pro for WordPress](https://objectcache.pro/) +- [Avtandil Kikabidze](https://github.com/akalongman) +- [Zaher Ghaibeh](https://github.com/zaherg) +- [BatchLabs](https://batch.com) +- [Stackhero](https://github.com/stackhero-io) +- [Florian Levis](https://github.com/Gounlaf) +- [Luis Zárate](https://github.com/jlzaratec) + +### Fixed + +- Fix RedisArray::[hsz]scan and tests + [08a9d5db](https://github.com/phpredis/phpredis/commit/08a9d5db), + [0264de18](https://github.com/phpredis/phpredis/commit/0264de18), + ([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko)), + ([Michael Grunder](https://github.com/michael-grunder)) +- Fix RedisArray::scan + [8689ab1c](https://github.com/phpredis/phpredis/commit/8689ab1c) + ([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko)) +- Fix LZF decompression logic + [0719c1ec](https://github.com/phpredis/phpredis/commit/0719c1ec) + ([Michael Grunder](https://github.com/michael-grunder)) + ## [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)) ### Sponsors :sparkling_heart: diff --git a/package.xml b/package.xml index 13a86933..ca41c8b8 100644 --- a/package.xml +++ b/package.xml @@ -27,14 +27,14 @@ http://pear.php.net/dtd/package-2.0.xsd"> n.favrefelix@gmail.com no - 2022-01-17 + 2022-02-02 - 5.3.6 - 5.3.6 + 5.3.7RC1 + 5.3.7 - stable - stable + alpha + alpha PHP @@ -51,9 +51,11 @@ http://pear.php.net/dtd/package-2.0.xsd"> --- - phpredis 5.3.6 + phpredis 5.3.7RC1 - - Fix a segfault in RedisArray::del [d2f2a7d9] (Pavlo Yatsukhnenko) + - Fix RedisArray::[hsz]scan and tests [08a9d5db, 0264de18] (Pavlo Yatsukhnenko, Michael Grunder) + - Fix RedisArray::scan [8689ab1c] (Pavlo Yatsukhnenko) + - Fix LZF decompression logic [0719c1ec] (Michael Grunder) @@ -131,6 +133,30 @@ http://pear.php.net/dtd/package-2.0.xsd"> + + stablestable + 5.3.65.3.6 + 2022-01-17 + + --- Sponsors --- + + Audiomack - https://audiomack.com + Open LMS - https://openlms.net + BlueHost - https://bluehost.com + Object Cache Pro for WordPress - https://objectcache.pro + Avtandil Kikabidze - https://github.com/akalongman + Zaher Ghaibeh - https://github.com/zaherg + BatchLabs - https://batch.com + Luis Zarate - https://github.com/jlzaratec + + --- + + phpredis 5.3.6 + + - Fix a segfault in RedisArray::del [d2f2a7d9] (Pavlo Yatsukhnenko) + + + stablestable 5.3.55.3.5 diff --git a/php_redis.h b/php_redis.h index 94f1afe4..5b0f024b 100644 --- a/php_redis.h +++ b/php_redis.h @@ -23,7 +23,7 @@ #define PHP_REDIS_H /* phpredis version */ -#define PHP_REDIS_VERSION "5.3.6" +#define PHP_REDIS_VERSION "5.3.7RC1" PHP_METHOD(Redis, __construct); PHP_METHOD(Redis, __destruct); -- cgit v1.2.3