pajoye Wed, 03 Feb 2010 20:00:49 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=294445
Log: - Bump version in early preparation for release Changed paths: _U php/php-src/branches/PHP_5_3_2/ U php/php-src/branches/PHP_5_3_2/ext/oci8/package.xml U php/php-src/branches/PHP_5_3_2/ext/oci8/php_oci8.h _U php/php-src/branches/PHP_5_3_2/ext/tidy/tests/ _U php/php-src/branches/PHP_5_3_2/tests/security/open_basedir_parse_ini_file.phpt
Property changes on: php/php-src/branches/PHP_5_3_2 ___________________________________________________________________ Modified: svn:mergeinfo - /php/php-src/branches/PHP_5_3:292504,292574,292594-292595,292611,292624,292630,292632-292635,292654,292677,292682-292683,292693,292719,292762,292765,292771,292777,292823,293051,293075,293114,293126,293131,293144,293146,293152,293176,293180,293216,293268,293341,293380,293400,293442,293447,293502,293538,293548,293558,293974 /php/php-src/trunk:284726 + /php/php-src/branches/PHP_5_3:292504,292574,292594-292595,292611,292624,292630,292632-292635,292654,292677,292682-292683,292693,292719,292762,292765,292771,292777,292823,293051,293075,293114,293126,293131,293144,293146,293152,293176,293180,293216,293268,293341,293380,293400,293442,293447,293466,293502,293538,293548,293558,293974 /php/php-src/trunk:284726 Modified: php/php-src/branches/PHP_5_3_2/ext/oci8/package.xml =================================================================== --- php/php-src/branches/PHP_5_3_2/ext/oci8/package.xml 2010-02-03 19:48:04 UTC (rev 294444) +++ php/php-src/branches/PHP_5_3_2/ext/oci8/package.xml 2010-02-03 20:00:49 UTC (rev 294445) @@ -33,52 +33,21 @@ <active>no</active> </lead> - <date>2009-10-06</date> + <date>2010-??-??</date> <time>15:00:00</time> <version> - <release>1.4.0</release> - <api>1.4.0</api> + <release>1.4.1</release> + <api>1.4.1</api> </version> <stability> - <release>alpha</release> - <api>alpha</api> + <release>stable</release> + <api>stable</api> </stability> <license uri="http://www.php.net/license">PHP</license> <notes> - 1. Introduce connection attribute functions: - - oci_set_module_name - oci_set_action - oci_set_client_info - oci_set_client_identifier - - These set values that are visible/used by the database. They - are useful for tracing, authentication and auditing. - - 2. Introduce connection attribute function: - - oci_set_edition - - Oracle 11g R2 "editions" allow multiple versions of DB objects - to exist at one time. By setting different editions, two - different versions of an application can run concurrently, - making upgrading easier and faster. - - 3. Set the DRIVER_NAME attribute of Oracle Database 11gR2 - connections to aid application tracing. The value used is to - "PHP OCI8" followed by the OCI8 version number. Note the - version number may get truncated in DB views such as - v$session_connect_info. - - 4. Allow the oci_set_prefetch value to be 0. This is important in - some cases using REF CURSORS in Oracle 11gR2. - - 5. Introduce OCI_NO_AUTO_COMMIT as an alias for the OCI_DEFAULT - constant (which is not the default value) used by oci_execute(). - - 6. Generate an error if an invalid resource type is used in - oci_bind_by_name +Fixed bug #49560 (Using LOBs causes slow PHP shutdown) +Fixed bug #47281 ($php_errormsg is limited in size of characters) </notes> <contents> <dir name="/"> @@ -126,6 +95,7 @@ <file name="bug35973.phpt" role="test" /> <file name="bug36010.phpt" role="test" /> <file name="bug36096.phpt" role="test" /> + <file name="bug36403.phpt" role="test" /> <file name="bug37220.phpt" role="test" /> <file name="bug37581.phpt" role="test" /> <file name="bug38161.phpt" role="test" /> @@ -148,6 +118,7 @@ <file name="bug45458.phpt" role="test" /> <file name="bug46994.phpt" role="test" /> <file name="bug47189.phpt" role="test" /> + <file name="bug47281.phpt" role="test" /> <file name="bug6109.phpt" role="test" /> <file name="close.phpt" role="test" /> <file name="coll_001.phpt" role="test" /> @@ -258,12 +229,15 @@ <file name="extauth_04.phpt" role="test" /> <file name="fetch_all2.phpt" role="test" /> <file name="fetch_all3.phpt" role="test" /> + <file name="fetch_all4.phpt" role="test" /> + <file name="fetch_all5.phpt" role="test" /> <file name="fetch_all.phpt" role="test" /> <file name="fetch_array.phpt" role="test" /> <file name="fetch_assoc.phpt" role="test" /> <file name="fetch_into1.phpt" role="test" /> <file name="fetch_into2.phpt" role="test" /> <file name="fetch_into.phpt" role="test" /> + <file name="fetch_object_2.phpt" role="test" /> <file name="fetch_object.phpt" role="test" /> <file name="fetch.phpt" role="test" /> <file name="fetch_row.phpt" role="test" /> @@ -315,6 +289,7 @@ <file name="lob_040.phpt" role="test" /> <file name="lob_041.phpt" role="test" /> <file name="lob_042.phpt" role="test" /> + <file name="lob_043.phpt" role="test" /> <file name="lob_aliases.phpt" role="test" /> <file name="lob_null.phpt" role="test" /> <file name="lob_temp1.phpt" role="test" /> @@ -394,6 +369,56 @@ <release> <version> + <release>1.4.0</release> + <api>1.4.0</api> + </version> + <stability> + <release>alpha</release> + <api>alpha</api> + </stability> + <license uri="http://www.php.net/license">PHP</license> + <notes> + 1. Introduce connection attribute functions: + + oci_set_module_name + oci_set_action + oci_set_client_info + oci_set_client_identifier + + These set values that are visible/used by the database. They + are useful for tracing, authentication and auditing. + + 2. Introduce connection attribute function: + + oci_set_edition + + Oracle 11g R2 "editions" allow multiple versions of DB objects + to exist at one time. By setting different editions, two + different versions of an application can run concurrently, + making upgrading easier and faster. + + 3. Set the DRIVER_NAME attribute of Oracle Database 11gR2 + connections to aid application tracing. The value used is to + "PHP OCI8" followed by the OCI8 version number. Note the + version number may get truncated in DB views such as + v$session_connect_info. + + 4. Allow the oci_set_prefetch value to be 0. This is important in + some cases using REF CURSORS in Oracle 11gR2. + + 5. Introduce OCI_NO_AUTO_COMMIT as an alias for the OCI_DEFAULT + constant (which is not the default value) used by oci_execute(). + + 6. Generate an error if an invalid resource type is used in + oci_bind_by_name + + 7. Bug fixes: + PECL bug #16842 (oci_error returns false when NO_DATA_FOUND is raised) + </notes> +</release> + +<release> + <version> <release>1.3.5</release> <api>1.3.4</api> </version> @@ -403,13 +428,13 @@ </stability> <license uri="http://www.php.net/license">PHP</license> <notes> -Fixed Bug #47243 (Crash at end of request shutdown on Windows) -Fixed Bug #46994 (CLOB size does not update when using CLOB IN OUT param in stored procedure) -Fixed Bug #46623 (phpinfo doesn't show compile time ORACLE_HOME with phpize) +Fixed bug #47243 (Crash at end of request shutdown on Windows) +Fixed bug #46994 (CLOB size does not update when using CLOB IN OUT param in stored procedure) +Fixed bug #46623 (phpinfo doesn't show compile time ORACLE_HOME with phpize) Fixed bug #45458 (Numeric keys for associative arrays are not handled properly) Note: not fixed when building with PHP 4 due to lack of PHP internal helper. -Fixed PECL Bug #16035 (oci_connect without ORACLE_HOME defined causes segfault) -Fixed PECL Bug #15988 (sqlnet.ora isn't read with older Oracle libraries) -Fixed PECL Bug #14268 (Allow "pecl install oci8" command to "autodetect" an Instant Client RPM install) +Fixed PECL bug #16035 (oci_connect without ORACLE_HOME defined causes segfault) +Fixed PECL bug #15988 (sqlnet.ora isn't read with older Oracle libraries) +Fixed PECL bug #14268 (Allow "pecl install oci8" command to "autodetect" an Instant Client RPM install) </notes> </release> Modified: php/php-src/branches/PHP_5_3_2/ext/oci8/php_oci8.h =================================================================== --- php/php-src/branches/PHP_5_3_2/ext/oci8/php_oci8.h 2010-02-03 19:48:04 UTC (rev 294444) +++ php/php-src/branches/PHP_5_3_2/ext/oci8/php_oci8.h 2010-02-03 20:00:49 UTC (rev 294445) @@ -46,7 +46,7 @@ */ #undef PHP_OCI8_VERSION #endif -#define PHP_OCI8_VERSION "1.4.0 Alpha" +#define PHP_OCI8_VERSION "1.4.1" extern zend_module_entry oci8_module_entry; #define phpext_oci8_ptr &oci8_module_entry Property changes on: php/php-src/branches/PHP_5_3_2/ext/tidy/tests ___________________________________________________________________ Modified: svn:mergeinfo - /php/php-src/branches/PHP_5_3/ext/tidy/tests:292562,292566,292571,292574,292635,292719,292765,293146,293152,293176,293180,293216,293380,293400,293442,293447,293502,293538,293548,293558 /php/php-src/trunk/ext/tidy/tests:284726,287798-287941 + /php/php-src/branches/PHP_5_3/ext/tidy/tests:292562,292566,292571,292574,292635,292719,292765,293146,293152,293176,293180,293216,293380,293400,293442,293447,293466,293502,293538,293548,293558 /php/php-src/trunk/ext/tidy/tests:284726,287798-287941 Property changes on: php/php-src/branches/PHP_5_3_2/tests/security/open_basedir_parse_ini_file.phpt ___________________________________________________________________ Modified: svn:mergeinfo - /php/php-src/branches/PHP_5_3/tests/security/open_basedir_parse_ini_file.phpt:292562,292566,292571,292574,293146,293152,293176,293180,293216,293380,293400,293442,293447,293502,293538,293548,293558 /php/php-src/trunk/tests/security/open_basedir_parse_ini_file.phpt:265951 + /php/php-src/branches/PHP_5_3/tests/security/open_basedir_parse_ini_file.phpt:292562,292566,292571,292574,293146,293152,293176,293180,293216,293380,293400,293442,293447,293466,293502,293538,293548,293558 /php/php-src/trunk/tests/security/open_basedir_parse_ini_file.phpt:265951
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php