File tree Expand file tree Collapse file tree 6 files changed +27
-12
lines changed Expand file tree Collapse file tree 6 files changed +27
-12
lines changed Original file line number Diff line number Diff line change 18
18
</lead >
19
19
<date >2020-06-05</date >
20
20
<version >
21
- <release >1.19.0 </release >
21
+ <release >1.19.1dev </release >
22
22
<api >2.8.0</api >
23
23
</version >
24
24
<stability >
27
27
</stability >
28
28
<license >PHP 3.01</license >
29
29
<notes >
30
- - add ZipArchive::EM_TRAD_PKWARE and ZipArchive::EM_UNKNOWN constants
31
- - Fix #79424 don't use gl_pathc after call to globfree (Max Rees)
32
- - add ZipArchive::isCompressionMethodSupported() method (libzip 1.7.0)
33
- - add ZipArchive::isEncryptionMethodSupported() method (libzip 1.7.0)
34
- - initial PHP 8 support
30
+ - encode parameter is optional (PHP 8)
35
31
</notes >
36
32
<contents >
37
33
<dir name =" /" >
206
202
<providesextension >zip</providesextension >
207
203
<extsrcrelease />
208
204
<changelog >
205
+ <release >
206
+ <date >2020-06-05</date >
207
+ <version >
208
+ <release >1.19.0</release >
209
+ <api >2.8.0</api >
210
+ </version >
211
+ <stability >
212
+ <release >stable</release >
213
+ <api >stable</api >
214
+ </stability >
215
+ <license >PHP 3.01</license >
216
+ <notes >
217
+ - add ZipArchive::EM_TRAD_PKWARE and ZipArchive::EM_UNKNOWN constants
218
+ - Fix #79424 don't use gl_pathc after call to globfree (Max Rees)
219
+ - add ZipArchive::isCompressionMethodSupported() method (libzip 1.7.0)
220
+ - add ZipArchive::isEncryptionMethodSupported() method (libzip 1.7.0)
221
+ - initial PHP 8 support
222
+ </notes >
223
+ </release >
209
224
<release >
210
225
<date >2020-03-20</date >
211
226
<version >
218
233
</stability >
219
234
<license >PHP 3.01</license >
220
235
<notes >
221
- - Fixed Bug #79296 ZipArchive::open fails on empty file with libzip 1.6.0.
236
+ - Fixed Bug #79296 ZipArchive::open fails on empty file with libzip 1.6.0.
222
237
</notes >
223
238
</release >
224
239
<release >
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
33
33
#define ZIP_OVERWRITE ZIP_TRUNCATE
34
34
#endif
35
35
36
- #define PHP_ZIP_VERSION "1.19.0 "
36
+ #define PHP_ZIP_VERSION "1.19.1-dev "
37
37
38
38
/* {{{ ZIP_OPENBASEDIR_CHECKPATH(filename) */
39
39
#define ZIP_OPENBASEDIR_CHECKPATH (filename ) \
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
33
33
#define ZIP_OVERWRITE ZIP_TRUNCATE
34
34
#endif
35
35
36
- #define PHP_ZIP_VERSION "1.19.0 "
36
+ #define PHP_ZIP_VERSION "1.19.1-dev "
37
37
38
38
#define ZIP_OPENBASEDIR_CHECKPATH (filename ) php_check_open_basedir(filename)
39
39
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
33
33
#define ZIP_OVERWRITE ZIP_TRUNCATE
34
34
#endif
35
35
36
- #define PHP_ZIP_VERSION "1.19.0 "
36
+ #define PHP_ZIP_VERSION "1.19.1-dev "
37
37
38
38
#define ZIP_OPENBASEDIR_CHECKPATH (filename ) php_check_open_basedir(filename)
39
39
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
33
33
#define ZIP_OVERWRITE ZIP_TRUNCATE
34
34
#endif
35
35
36
- #define PHP_ZIP_VERSION "1.19.0 "
36
+ #define PHP_ZIP_VERSION "1.19.1-dev "
37
37
38
38
#define ZIP_OPENBASEDIR_CHECKPATH (filename ) php_check_open_basedir(filename)
39
39
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern zend_module_entry zip_module_entry;
31
31
#define ZIP_OVERWRITE ZIP_TRUNCATE
32
32
#endif
33
33
34
- #define PHP_ZIP_VERSION "1.19.0 "
34
+ #define PHP_ZIP_VERSION "1.19.1-dev "
35
35
36
36
#define ZIP_OPENBASEDIR_CHECKPATH (filename ) php_check_open_basedir(filename)
37
37
You can’t perform that action at this time.
0 commit comments