Skip to content

Commit

Permalink
5.3.7-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
yatsukhnenko committed Feb 2, 2022
1 parent d938a42 commit 85c69c2
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 8 deletions.
31 changes: 31 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
40 changes: 33 additions & 7 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>[email protected]</email>
<active>no</active>
</lead>
<date>2022-01-17</date>
<date>2022-02-02</date>
<version>
<release>5.3.6</release>
<api>5.3.6</api>
<release>5.3.7RC1</release>
<api>5.3.7</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
Expand All @@ -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)

</notes>
<contents>
Expand Down Expand Up @@ -131,6 +133,30 @@ http://pear.php.net/dtd/package-2.0.xsd">
<configureoption name="enable-redis-zstd" prompt="enable zstd compression support?" default="no"/>
</extsrcrelease>
<changelog>
<release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>5.3.6</release><api>5.3.6</api></version>
<date>2022-01-17</date>
<notes>
--- 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)

</notes>
</release>
<release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>5.3.5</release><api>5.3.5</api></version>
Expand Down
2 changes: 1 addition & 1 deletion php_redis.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 85c69c2

Please sign in to comment.