Prepare for 6.3.0 GA

Only functional changes:

* Make it so cloning `Redis`, `RedisCluster` or `RedisArray` will not
  segfault.
* Fix return types of `RedisCluster` `vetattr` and `vsetattr`.
This commit is contained in:
michael-grunder
2025-11-05 10:37:13 -08:00
parent 770034cc44
commit 2a0686eb3c
2 changed files with 36 additions and 1 deletions
+35
View File
@@ -5,6 +5,41 @@ 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).
# [6.3.0] - 2025-11-06 ([Github](https://github.com/phpredis/phpredis/releases/6.3.0), [PECL](https://pecl.php.net/package/redis/6.3.0))
This release introduces support for dozens of new commands, including hash field expiration, Valkeys DELIFEQ, and Redis vector set operations. It also delivers numerous bug fixes and performance improvements.
### Sponsors :sparkling_heart:
- [A-VISION](https://github.com/A-VISION-BV)
- [Avtandil Kikabidze](https://github.com/akalongman)
- [Geoffrey Hoffman](https://github.com/phpguru)
- [Object Cache Pro for WordPress](https://objectcache.pro/)
- [Open LMS](https://openlms.net/)
- [Relay](https://relay.so)
- [Salvatore Sanfilippo](https://github.com/antirez)
- [Ty Karok](https://github.com/karock)
## Fixed
- Cloning our objects should not segfault
[770034cc](https://github.com/phpredis/phpredis/commit/770034cc)
([michael-grunder](https://github.com/michael-grunder))
- Fix return type for `RedisCluster` `vgetattr` and `vsetattr`
[834d2b37](https://github.com/phpredis/phpredis/commit/ab593f01)
([michael-grunder](https://github.com/michael-grunder))
### Sponsors :sparkling_heart:
- [A-VISION](https://github.com/A-VISION-BV)
- [Avtandil Kikabidze](https://github.com/akalongman)
- [Geoffrey Hoffman](https://github.com/phpguru)
- [Object Cache Pro for WordPress](https://objectcache.pro/)
- [Open LMS](https://openlms.net/)
- [Relay](https://relay.so)
- [Salvatore Sanfilippo](https://github.com/antirez)
- [Ty Karok](https://github.com/karock)
# [6.3.0RC1] - 2025-10-15
This release introduces support for dozens of new commands, including hash field expiration, Valkeys DELIFEQ, and Redis vector set operations. It also delivers numerous bug fixes and performance improvements.
+1 -1
View File
@@ -23,7 +23,7 @@
#define PHP_REDIS_H
/* phpredis version */
#define PHP_REDIS_VERSION "6.3.0RC1"
#define PHP_REDIS_VERSION "6.3.0"
/* For convenience we store the salt as a printable hex string which requires 2
* characters per byte + 1 for the NULL terminator */