Skip to content

Commit 7bba55b

Browse files
committed
upgrade: version to 0.18.0
1 parent 30fd4ff commit 7bba55b

File tree

2 files changed

+10
-21
lines changed

2 files changed

+10
-21
lines changed

package.xml

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,23 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2025-05-19</date>
13+
<date>2025-06-16</date>
1414
<version>
15-
<release>0.17.0</release>
16-
<api>0.17.0</api>
15+
<release>0.18.0</release>
16+
<api>0.18.0</api>
1717
</version>
1818
<stability>
1919
<release>stable</release>
2020
<api>stable</api>
2121
</stability>
2222
<license>MIT</license>
2323
<notes>
24-
- experimental: dcb support in output handler
25-
- feat: dictionary support
26-
- feat: named arguments support (PHP 8.0+)
27-
- change: argumeent name for brotli_compress() and brotli_compress_init(): quality -> level
28-
- change: argumeent name for brotli_uncompress(): max -> length
29-
- change: version in info to BrotliDecoderVersion()
30-
- change: add GCC visibility hidden when include bundled
31-
- change!: incorrect parameter cause errors
32-
- refactor: output hander context start
33-
- refactor: change use php_brotli_context in brotli_uncompress()
34-
- refactor: add parameter settings for BROTLI_DECODER_PARAM_LARGE_WINDOW to brotli_uncompress_init()
35-
- refactor: change error message
36-
- refactor: change use BrotliEncoderCompressStream() in brotli_compress()
37-
- refactor: php_brotli_decoder_create() -> php_brotli_context_create_decoder()
38-
- refactor: php_brotli_encoder_create() -> php_brotli_context_create_encoder()
39-
- refactor: php_brotli_stream_data struct
40-
- refactor: php_brotli_context struct
24+
- add: BROTLI_VERSION_TEXT and BROTLI_VERSION_NUMBER constants
25+
- change!: remove length argument for brotli_uncompress()
26+
- remove: BROTLI_LIB_VERSION that is no longer needed
27+
- fix: memory leak
28+
- refactor: change library version acquisition in ZEND_MINFO_FUNCTION to constant
29+
- refactor: zend parse parameters sets the return value on error to false
4130
</notes>
4231
<contents>
4332
<dir name="/">

php_brotli.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
extern "C" {
66
#endif
77

8-
#define BROTLI_EXT_VERSION "0.17.0"
8+
#define BROTLI_EXT_VERSION "0.18.0"
99
#define BROTLI_NS "Brotli"
1010

1111
/* brotli */

0 commit comments

Comments
 (0)