mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
ChangeLog update
This commit is contained in:
parent
34b620d2ff
commit
dbad89ad5e
2 changed files with 226 additions and 0 deletions
212
ChangeLog
212
ChangeLog
|
@ -1,3 +1,215 @@
|
||||||
|
2009-01-06 Pierre-Alain Joye <pierre.dev@gmail.com>
|
||||||
|
|
||||||
|
* ext/standard/dns.c:
|
||||||
|
- MFB: fix build for win
|
||||||
|
|
||||||
|
* ext/standard/dns_win32.c:
|
||||||
|
- [DOC] MFB: VC6 does not have NAPTR
|
||||||
|
|
||||||
|
2009-01-06 Ilia Alshanetsky <ilia@prohost.org>
|
||||||
|
|
||||||
|
* ext/tidy/tidy.c:
|
||||||
|
|
||||||
|
MFB: Arg parsing cleanup
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
ext/tidy/tidy.c:
|
||||||
|
Param parsing cleanup
|
||||||
|
|
||||||
|
2009-01-06 Pierre-Alain Joye <pierre.dev@gmail.com>
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
ext/standard/dns.c:
|
||||||
|
- these ifdefs are a mess, fix build on win
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
ext/standard/dns_win32.c:
|
||||||
|
- [DOC] VC6 does not have NAPTR
|
||||||
|
|
||||||
|
* ext/standard/dns.c:
|
||||||
|
- MFB: fix build
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
ext/standard/dns.c:
|
||||||
|
- fix build
|
||||||
|
|
||||||
|
* win32/build/config.w32:
|
||||||
|
- MFB: add multi threaded build support (automatic detection of the number
|
||||||
|
of cpus, add a custom number if you prefer to use only a few of your
|
||||||
|
available cores)
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
win32/build/config.w32:
|
||||||
|
- add multi threaded build support (automatic detection of the number of
|
||||||
|
cpus, add a custom number if you prefer to use only a few of your
|
||||||
|
available cores)
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
ext/standard/basic_functions.c
|
||||||
|
ext/standard/config.w32
|
||||||
|
ext/standard/dns.c
|
||||||
|
ext/standard/dns.h
|
||||||
|
ext/standard/dns_win32.c:
|
||||||
|
- [MFH]
|
||||||
|
- [DOC] add support for all DNS function on Windows
|
||||||
|
- dns_check_record (and its alias checkdnsrr)
|
||||||
|
- dns_get_record
|
||||||
|
- IPV6 specific info not available yet:
|
||||||
|
. AAAA info is available only on vista/2k8 for now
|
||||||
|
. A6 info is not available
|
||||||
|
- dns_get_mx (and its alias getmxrr)
|
||||||
|
|
||||||
|
* win32/build/config.w32
|
||||||
|
win32/build/config.w32:
|
||||||
|
- add DNSApi for the DNS functions
|
||||||
|
|
||||||
|
* ext/standard/basic_functions.c
|
||||||
|
ext/standard/config.w32
|
||||||
|
ext/standard/dns.c
|
||||||
|
ext/standard/dns.h
|
||||||
|
ext/standard/dns_win32.c
|
||||||
|
ext/standard/dns_win32.c:
|
||||||
|
- [DOC] add support for all DNS function on Windows
|
||||||
|
- dns_check_record (and its alias checkdnsrr)
|
||||||
|
- dns_get_record
|
||||||
|
- IPV6 specific info not available yet:
|
||||||
|
. AAAA info is available only on vista/2k8 for now
|
||||||
|
. A6 info is not available
|
||||||
|
- dns_get_mx (and its alias getmxrr)
|
||||||
|
|
||||||
|
2009-01-06 Uwe Schindler <uwe@thetaphi.de>
|
||||||
|
|
||||||
|
* (PHP_5_2)
|
||||||
|
sapi/nsapi/nsapi.c
|
||||||
|
sapi/nsapi/nsapi.c:
|
||||||
|
MFH: the #ifdef was never working. If Sun extends its NSAPI to support
|
||||||
|
subrequests, much of this code must be rewritten. Because of that it is
|
||||||
|
better to have a clean start. This commit does not change behaviour.
|
||||||
|
|
||||||
|
* sapi/nsapi/nsapi.c:
|
||||||
|
the #ifdef was never working. If Sun extends its NSAPI to support
|
||||||
|
subrequests, much of this code must be rewritten. Because of that it is
|
||||||
|
better to have a clean start. This commit does not change behaviour.
|
||||||
|
|
||||||
|
2009-01-06 Felipe Pena <felipensp@gmail.com>
|
||||||
|
|
||||||
|
* (PHP_5_2)
|
||||||
|
NEWS:
|
||||||
|
- BFN #46701
|
||||||
|
|
||||||
|
* (PHP_5_3)
|
||||||
|
NEWS:
|
||||||
|
- Fix for #46701 merged into 5_2
|
||||||
|
|
||||||
|
* (PHP_5_2)
|
||||||
|
ZendEngine2/zend_execute.c
|
||||||
|
ZendEngine2/zend_operators.c
|
||||||
|
ZendEngine2/zend_operators.h
|
||||||
|
ZendEngine2/zend_vm_def.h
|
||||||
|
ZendEngine2/zend_vm_execute.h
|
||||||
|
ZendEngine2/tests/bug46701.phpt:
|
||||||
|
MFH:
|
||||||
|
- Fixed bug #46701 (Creating associative array with long values in the key
|
||||||
|
fails on 32bit linux)
|
||||||
|
Patch by Shire
|
||||||
|
|
||||||
|
* ext/mysqli/tests/002.phpt
|
||||||
|
ext/mysqli/tests/003.phpt
|
||||||
|
ext/mysqli/tests/004.phpt
|
||||||
|
ext/mysqli/tests/005.phpt
|
||||||
|
ext/mysqli/tests/009.phpt
|
||||||
|
ext/mysqli/tests/011.phpt
|
||||||
|
ext/mysqli/tests/012.phpt
|
||||||
|
ext/mysqli/tests/014.phpt
|
||||||
|
ext/mysqli/tests/015.phpt
|
||||||
|
ext/mysqli/tests/016.phpt
|
||||||
|
ext/mysqli/tests/017.phpt
|
||||||
|
ext/mysqli/tests/019.phpt
|
||||||
|
ext/mysqli/tests/021.phpt
|
||||||
|
ext/mysqli/tests/022.phpt
|
||||||
|
ext/mysqli/tests/026.phpt
|
||||||
|
ext/mysqli/tests/028.phpt
|
||||||
|
ext/mysqli/tests/031.phpt
|
||||||
|
ext/mysqli/tests/032.phpt
|
||||||
|
ext/mysqli/tests/033.phpt
|
||||||
|
ext/mysqli/tests/042.phpt
|
||||||
|
ext/mysqli/tests/045.phpt
|
||||||
|
ext/mysqli/tests/047.phpt
|
||||||
|
ext/mysqli/tests/048.phpt
|
||||||
|
ext/mysqli/tests/049.phpt
|
||||||
|
ext/mysqli/tests/057.phpt
|
||||||
|
ext/mysqli/tests/058.phpt
|
||||||
|
ext/mysqli/tests/059.phpt
|
||||||
|
ext/mysqli/tests/060.phpt
|
||||||
|
ext/mysqli/tests/061.phpt
|
||||||
|
ext/mysqli/tests/062.phpt
|
||||||
|
ext/mysqli/tests/063.phpt
|
||||||
|
ext/mysqli/tests/068.phpt
|
||||||
|
ext/mysqli/tests/069.phpt
|
||||||
|
ext/mysqli/tests/072.phpt
|
||||||
|
ext/mysqli/tests/073.phpt
|
||||||
|
ext/mysqli/tests/074.phpt
|
||||||
|
ext/mysqli/tests/bug34810.phpt
|
||||||
|
ext/mysqli/tests/bug37090.phpt
|
||||||
|
ext/mysqli/tests/bug45019.phpt
|
||||||
|
ext/mysqli/tests/mysqli_class_mysqli_interface.phpt
|
||||||
|
ext/mysqli/tests/mysqli_class_mysqli_result_interface.phpt
|
||||||
|
ext/mysqli/tests/mysqli_class_mysqli_stmt_interface.phpt
|
||||||
|
ext/mysqli/tests/mysqli_connect.phpt
|
||||||
|
ext/mysqli/tests/mysqli_connect_oo_defaults.phpt
|
||||||
|
ext/mysqli/tests/mysqli_connect_twice.phpt
|
||||||
|
ext/mysqli/tests/mysqli_debug_ini.phpt
|
||||||
|
ext/mysqli/tests/mysqli_error_unicode.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_all.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_all_oo.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_array.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_array_assoc.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_array_oo.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_assoc.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_assoc_no_alias.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_assoc_no_alias_utf8.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_assoc_oo.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_field.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_field_direct.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_field_direct_oo.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_field_oo.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_fields.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_object_no_constructor.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fetch_row.phpt
|
||||||
|
ext/mysqli/tests/mysqli_field_seek.phpt
|
||||||
|
ext/mysqli/tests/mysqli_field_tell.phpt
|
||||||
|
ext/mysqli/tests/mysqli_fork.phpt
|
||||||
|
ext/mysqli/tests/mysqli_get_cache_stats.phpt
|
||||||
|
ext/mysqli/tests/mysqli_get_client_stats.phpt
|
||||||
|
ext/mysqli/tests/mysqli_kill.phpt
|
||||||
|
ext/mysqli/tests/mysqli_pconn_kill.phpt
|
||||||
|
ext/mysqli/tests/mysqli_pconn_max_links.phpt
|
||||||
|
ext/mysqli/tests/mysqli_query.phpt
|
||||||
|
ext/mysqli/tests/mysqli_query_stored_proc.phpt
|
||||||
|
ext/mysqli/tests/mysqli_query_unicode.phpt
|
||||||
|
ext/mysqli/tests/mysqli_real_connect.phpt
|
||||||
|
ext/mysqli/tests/mysqli_real_escape_string_nobackslash.phpt
|
||||||
|
ext/mysqli/tests/mysqli_real_query.phpt
|
||||||
|
ext/mysqli/tests/mysqli_result_references.phpt
|
||||||
|
ext/mysqli/tests/mysqli_result_references_mysqlnd.phpt
|
||||||
|
ext/mysqli/tests/mysqli_set_local_infile_handler.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_bind_param_call_user_func.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_bind_param_check_param_no_change.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_bind_param_type_juggling.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_bind_result.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_bind_result_bit.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_bind_result_references.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_datatype_change.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_get_result.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_get_result2.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_get_result_metadata.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_get_result_metadata_fetch_field.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_get_result_non_select.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_result_metadata.phpt
|
||||||
|
ext/mysqli/tests/mysqli_stmt_result_metadata_sqltests.phpt:
|
||||||
|
- Removed UEXPECT(F)
|
||||||
|
- Unicodified some tests
|
||||||
|
|
||||||
2009-01-05 Felipe Pena <felipensp@gmail.com>
|
2009-01-05 Felipe Pena <felipensp@gmail.com>
|
||||||
|
|
||||||
* (PHP_5_2)
|
* (PHP_5_2)
|
||||||
|
|
|
@ -1,3 +1,17 @@
|
||||||
|
2009-01-06 Felipe Pena <felipensp@gmail.com>
|
||||||
|
|
||||||
|
* (PHP_5_2)
|
||||||
|
zend_execute.c
|
||||||
|
zend_operators.c
|
||||||
|
zend_operators.h
|
||||||
|
zend_vm_def.h
|
||||||
|
zend_vm_execute.h
|
||||||
|
tests/bug46701.phpt:
|
||||||
|
MFH:
|
||||||
|
- Fixed bug #46701 (Creating associative array with long values in the key
|
||||||
|
fails on 32bit linux)
|
||||||
|
Patch by Shire
|
||||||
|
|
||||||
2009-01-05 Felipe Pena <felipensp@gmail.com>
|
2009-01-05 Felipe Pena <felipensp@gmail.com>
|
||||||
|
|
||||||
* (PHP_5_3)
|
* (PHP_5_3)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue