8000 6.0.2 · phpredis/phpredis@62cf943 · GitHub
[go: up one dir, main page]

Skip to content

Commit 62cf943

Browse files
committed
6.0.2
1 parent c9e9236 commit 62cf943

File tree

3 files changed

+42
-13
lines changed

3 files changed

+42
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
77

88
## [Unreleased]
99

10+
## [6.0.2] - 2023-10-22 ([GitHub](https://github.com/phpredis/phpredis/releases/6.0.2), [PECL](https://pecl.php.net/package/redis/6.0.2))
11+
1012
### Sponsors :sparkling_heart:
1113

1214
- [Audiomack](https://audiomack.com)

package.xml

Lines changed: 39 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>n.favrefelix@gmail.com</email>
2828
<active>no</active>
2929
</lead>
30-
<date>2023-09-23</date>
30+
<date>2023-10-22</date>
3131
<version>
32-
<release>6.0.1</release>
32+
<release>6.0.2</release>
3333
<api>6.0.0</api>
3434
</version>
3535
<stability>
@@ -53,19 +53,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
5353

5454
---
5555

56-
phpredis 6.0.1
57-
58-
This release contains fix for unknown expiration modifier issue
59-
as well as memory leak and segfault in exec function
60-
and small documentation improvements.
56+
phpredis 6.0.2
6157

58+
This release contains fixes for OBJECT, PSUBSCRIBE and SCAN commands.
6259
You can find a detailed list of changes in CHANGELOG.md and package.xml
6360
or by inspecting the git commit logs.
6461

65-
* Fix memory leak and segfault in Redis::exec [362e1141] (Pavlo Yatsukhnenko), (Markus Podar)
66-
* Fix unknown expiration modifier [264c0c7e, 95bd184b] (Pavlo Yatsukhnenko)
67-
* Update documentation [3674d663, 849bedb6, 1ad95b63] (Till Kruss), (Joost OrangeJuiced)
68-
62+
* Fix deprecation error when passing null to match_type parameter.[b835aaa3] (Pavlo Yatsukhnenko)
63+
* Fix flaky test and OBJECT in a pipeline. [a7f51f70] (Michael Grunder)
64+
* Find our callback by pattern with PSUBSCRIBE [2f276dcd] (Michael Grunder)
6965
</notes>
7066
<contents>
7167
<dir name="/">
@@ -159,7 +155,38 @@ http://pear.php.net/dtd/package-2.0.xsd">
159155
<changelog>
160156
<release>
161157
<stability><release>stable</release><api>stable</api></stability>
162-
<version><release>6.0.1</release><api>6.0.1</api></version>
158+
<version><release>6.0.2</release><api>6.0.0</api></version>
159+
<date>2023-10-22</date>
160+
<notes>
161+
--- Sponsors ---
162+
163+
Audiomack - https://audiomack.com
164+
Open LMS - https://openlms.net
165+
BlueHost - https://bluehost.com
166+
Object Cache Pro for WordPress - https://objectcache.pro
167+
Avtandil Kikabidze - https://github.com/akalongman
168+
Zaher Ghaibeh - https://github.com/zaherg
169+
BatchLabs - https://batch.com
170+
Stackhero - https://github.com/stackhero-io
171+
Florian Levis - https://github.com/Gounlaf
172+
Luis Zarate - https://github.com/jlzaratec
173+
174+
---
175+
176+
phpredis 6.0.2
177+
178+
This release contains fixes for OBJECT, PSUBSCRIBE and SCAN commands.
179+
You can find a detailed list of changes in CHANGELOG.md and package.xml
180+
or by inspecting the git commit logs.
181+
182+
* Fix deprecation error when passing null to match_type parameter.[b835aaa3] (Pavlo Yatsukhnenko)
183+
* Fix flaky test and OBJECT in a pipeline. [a7f51f70] (Michael Grunder)
184+
* Find our callback by pattern with PSUBSCRIBE [2f276dcd] (Michael Grunder)
185+
</notes>
186+
</release>
187+
<release>
188+
<stability><release>stable</release><api>stable</api></stability>
189+
<version><release>6.0.1</release><api>6.0.0</api></version>
163190
<date>2023-09-23</date>
164191
<notes>
165192
--- Sponsors ---

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PHP_REDIS_H
2424

2525
/* phpredis version */
26-
#define PHP_REDIS_VERSION "6.0.1"
26+
#define PHP_REDIS_VERSION "6.0.2"
2727

2828
/* For convenience we store the salt as a printable hex string which requires 2
2929
* characters per byte + 1 for the NULL terminator */

0 commit comments

Comments
 (0)
0