Merge release/6.3.0RC1 back into develop

This commit is contained in:
michael-grunder
2025-10-15 13:26:22 -07:00
2 changed files with 36 additions and 5 deletions
+5 -1
View File
@@ -5,7 +5,7 @@ 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/), 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). and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
# [6.3.0RC1] - TBD # [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. 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.
@@ -28,6 +28,10 @@ This release introduces support for dozens of new commands, including hash field
- Fix a possible segfault during failover - Fix a possible segfault during failover
[5ebb853e](https://github.com/phpredis/phpredis/commit/5ebb853e) [5ebb853e](https://github.com/phpredis/phpredis/commit/5ebb853e)
([rlerdorf](https://github.com/rlerdorf)) ([rlerdorf](https://github.com/rlerdorf))
- Bump version and fix XGROUP test
[f5db01b7](https://github.com/phpredis/phpredis/commit/f5db01b7),
[4517d5f9](https://github.com/phpredis/phpredis/commit/4517d5f9)
([remicollet](https://github.com/remicollet))
- Fix an overflow bug in ZADD on Windows - Fix an overflow bug in ZADD on Windows
[35df8ad7](https://github.com/phpredis/phpredis/commit/35df8ad7c2fc54fbf2a58d486cce49e712344bb2) [35df8ad7](https://github.com/phpredis/phpredis/commit/35df8ad7c2fc54fbf2a58d486cce49e712344bb2)
([michael-grunder](https://github.com/michael-grunder)) ([michael-grunder](https://github.com/michael-grunder))
+31 -4
View File
@@ -22,7 +22,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>p.yatsukhnenko@gmail.com</email> <email>p.yatsukhnenko@gmail.com</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2025-10-03</date> <date>2025-10-15</date>
<version> <version>
<release>6.3.0RC1</release> <release>6.3.0RC1</release>
<api>6.2.0</api> <api>6.2.0</api>
@@ -32,7 +32,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
<api>stable</api> <api>stable</api>
</stability> </stability>
<license uri="http://www.php.net/license">PHP</license> <license uri="http://www.php.net/license">PHP</license>
<notes> --- 6.3.0RC1 --- <notes>
--- Sponsors ---
A-VISION Advertising - 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 ---
This release introduces support for dozens of new commands, including hash This release introduces support for dozens of new commands, including hash
field expiration, Valkeys DELIFEQ, and Redis vector set operations. It also field expiration, Valkeys DELIFEQ, and Redis vector set operations. It also
@@ -42,6 +55,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
Fix possible hash field name truncation [834d2b37] (Michael Grunder) Fix possible hash field name truncation [834d2b37] (Michael Grunder)
Fix a possible segfault during failover [5ebb853e] (rlerdorf) Fix a possible segfault during failover [5ebb853e] (rlerdorf)
Bump version and fix XGROUP test [f5db01b7, 4517d5f9] remicollet
Fix an overflow bug in ZADD on Windows [35df8ad7] (Michael Grunder) Fix an overflow bug in ZADD on Windows [35df8ad7] (Michael Grunder)
Fix errors and a warning [b8de91c9] (Michael Grunder) Fix errors and a warning [b8de91c9] (Michael Grunder)
Fix `RedisCluster` segfault [f61e8cd7] (Michael Grunder) Fix `RedisCluster` segfault [f61e8cd7] (Michael Grunder)
@@ -231,8 +245,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
<release>6.3.0RC1</release> <release>6.3.0RC1</release>
<api>6.2.0</api> <api>6.2.0</api>
</version> </version>
<date>2025-10-03</date> <date>2025-10-15</date>
<notes> --- 6.3.0RC1 --- <notes>
--- Sponsors ---
A-VISION Advertising - 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 ---
Fixed: Fixed: