From: Christopher Jones Date: Mon, 21 Dec 2020 04:15:16 +0000 (+1100) Subject: Bundle PECL OCI8 3.0.1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74959b47cd4816d9e32679502d26642184f4e86f;p=php Bundle PECL OCI8 3.0.1 --- diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml index 4dca8f31bf..7663ee05c9 100644 --- a/ext/oci8/package.xml +++ b/ext/oci8/package.xml @@ -53,12 +53,12 @@ Oracle's standard cross-version connectivity applies. For example, PHP OCI8 lin no - 2020-11-26 + 2020-12-21 - 3.0.0 - 3.0.0 + 3.0.1 + 3.0.1 stable @@ -68,15 +68,7 @@ Oracle's standard cross-version connectivity applies. For example, PHP OCI8 lin This version is for PHP 8 only. - Deprecated old OCI8 function aliases. (Jens de Nies) - - Removed obsolete no-op function oci_internal_debug(). (Jens de Nies) - - The OCI-Lob class is now called OCILob for standards compliance. - - The OCI-Collection class is now called OCICollection for standards compliance. - - Generate arginfo from function stubs. (Jens de Nies) + Updated Windows build environment to build with newer Oracle Client libraries. (cmb) @@ -451,7 +443,7 @@ Oracle's standard cross-version connectivity applies. For example, PHP OCI8 lin - 7.0.0 + 8.0.0 1.4.0b1 @@ -484,6 +476,31 @@ Internal change: Convert some parameter parsing to the Fast Parameter Parsing AP + + + 3.0.0 + 3.0.0 + + + stable + stable + + PHP + + This version is for PHP 8 only. + + Deprecated old OCI8 function aliases. (Jens de Nies) + + Removed obsolete no-op function oci_internal_debug(). (Jens de Nies) + + The OCI-Lob class is now called OCILob for standards compliance. + + The OCI-Collection class is now called OCICollection for standards compliance. + + Generate arginfo from function stubs. (Jens de Nies) + + + 2.1.8 diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h index e3e294ef4f..25c76a6d18 100644 --- a/ext/oci8/php_oci8.h +++ b/ext/oci8/php_oci8.h @@ -41,7 +41,7 @@ */ #undef PHP_OCI8_VERSION #endif -#define PHP_OCI8_VERSION "3.0.0" +#define PHP_OCI8_VERSION "3.0.1" extern zend_module_entry oci8_module_entry; #define phpext_oci8_ptr &oci8_module_entry diff --git a/ext/oci8/tests/driver_name.phpt b/ext/oci8/tests/driver_name.phpt index 006f7abfa4..3bb52779ca 100644 --- a/ext/oci8/tests/driver_name.phpt +++ b/ext/oci8/tests/driver_name.phpt @@ -57,11 +57,11 @@ function get_attr($conn) ?> --EXPECT-- **Test 1.1 - Default values for the attribute ************** -The value of DRIVER_NAME is PHP OCI8 : 3.0.0 +The value of DRIVER_NAME is PHP OCI8 : 3.0.1 ***Test 1.2 - Get the values from different connections ************** Testing with oci_pconnect() -The value of DRIVER_NAME is PHP OCI8 : 3.0.0 +The value of DRIVER_NAME is PHP OCI8 : 3.0.1 Testing with oci_new_connect() -The value of DRIVER_NAME is PHP OCI8 : 3.0.0 +The value of DRIVER_NAME is PHP OCI8 : 3.0.1 Done