File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,8 @@ PHP NEWS
120
120
121
121
- Zip:
122
122
. Fixed bug #72374 (remove_path strips first char of filename). (tyage)
123
- . Add ZipArchive::setMtimeName and ZipArchive::setMtimeIndex methods
123
+ . Add ZipArchive::setMtimeName and ZipArchive::setMtimeIndex methods. (Remi)
124
+ . Add ZipArchive::setProgressCallback method (since libzip 1.3.0). (Remi)
125
+ . Add ZipArchive::setCancelCallback method (since libzip 1.6.0). (Remi)
124
126
125
127
<<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ if (PHP_ZIP != "no") {
15
15
}
16
16
17
17
AC_DEFINE ( 'HAVE_ZIP' , 1 ) ;
18
- ADD_FLAG ( "CFLAGS_ZIP" , "/D _WIN32 /D HAVE_SET_MTIME /D HAVE_ENCRYPTION /D HAVE_LIBZIP_VERSION" ) ;
18
+ ADD_FLAG ( "CFLAGS_ZIP" , "/D _WIN32 /D HAVE_SET_MTIME /D HAVE_ENCRYPTION /D HAVE_LIBZIP_VERSION /D HAVE_PROGRESS_CALLBACK " ) ;
19
19
} else {
20
20
WARNING ( "zip not enabled; libraries and headers not found" ) ;
21
21
}
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.16.1 "
34
+ #define PHP_ZIP_VERSION "1.17.0 "
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