Skip to content

Commit 2719e1e

Browse files
committed
prepare v3.3.0RC1
- Add #515 option to locally enforce payload size limit - Add #539 zstd support - Add #540 compression_level option - Mark password as a sensitive param for PHP 8.2 - Fix Windows PHP 8 compatibility - Fix #518 Windows msgpack support - Fix #522 signed integer overflow - Fix #523 incorrect PHP reflection type for Memcached::cas $cas_token - Fix #546 don't check key automatically, unless client-side verify_key is enabled - Fix #555 incompatible pointer types (32-bit)
1 parent 3ca10ec commit 2719e1e

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

package.xml

+14-6
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,27 @@ http://pear.php.net/dtd/package-2.0.xsd">
3333
<email>[email protected]</email>
3434
<active>yes</active>
3535
</lead>
36-
<date>2022-03-24</date>
36+
<date>2024-09-26</date>
3737
<version>
38-
<release>3.2.1dev</release>
39-
<api>3.2.0</api>
38+
<release>3.3.0RC1</release>
39+
<api>3.3.0</api>
4040
</version>
4141
<stability>
42-
<release>stable</release>
42+
<release>beta</release>
4343
<api>stable</api>
4444
</stability>
4545
<license uri="http://www.php.net/license">PHP</license>
4646
<notes>
47-
- mark password as a sensitive param for PHP 8.2
48-
- Fix #523 Incorrect PHP reflection type for Memcached::cas $cas_token
47+
- Add #515 option to locally enforce payload size limit
48+
- Add #539 zstd support
49+
- Add #540 compression_level option
50+
- Mark password as a sensitive param for PHP 8.2
51+
- Fix Windows PHP 8 compatibility
52+
- Fix #518 Windows msgpack support
53+
- Fix #522 signed integer overflow
54+
- Fix #523 incorrect PHP reflection type for Memcached::cas $cas_token
55+
- Fix #546 don't check key automatically, unless client-side verify_key is enabled
56+
- Fix #555 incompatible pointer types (32-bit)
4957
</notes>
5058
<contents>
5159
<dir name="/">

php_memcached.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# include "config.h"
3131
#endif
3232

33-
#define PHP_MEMCACHED_VERSION "3.2.1-dev"
33+
#define PHP_MEMCACHED_VERSION "3.3.0RC1"
3434

3535
#if defined(PHP_WIN32) && defined(MEMCACHED_EXPORTS)
3636
#define PHP_MEMCACHED_API __declspec(dllexport)

0 commit comments

Comments
 (0)