[PECL-CVS] [pecl-database-pdo_oci] main: Prepare for 1.2.0 release
[email protected] (Sharad Chandran R) Wed, 7 Jan 2026 08:09:54 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Sharad Chandran R (sharadraju) Date: 2026-01-07T13:39:35+05:30 Commit: https://github.com/php/pecl-database-pdo_oci/commit/a5e7e5a6f9b4eb17ac55be91e265d6cb6ea59308 Raw diff: https://github.com/php/pecl-database-pdo_oci/commit/a5e7e5a6f9b4eb17ac55be91e265d6cb6ea59308.diff Prepare for 1.2.0 release Changed paths: M package.xml M php_pdo_oci.h Diff: diff --git a/package.xml b/package.xml index 0e5eb21..2a66ac5 100644 --- a/package.xml +++ b/package.xml @@ -35,7 +35,7 @@ Oracle's standard cross-version connectivity applies. For example, PHP PDO <name>Christopher Jones</name> <user>sixd</user> <email>[email protected]</email> - <active>yes</active> + <active>no</active> </lead> <lead> @@ -45,12 +45,12 @@ Oracle's standard cross-version connectivity applies. For example, PHP PDO <active>yes</active> </lead> - <date>2024-08-21</date> + <date>2026-01-07</date> <time>12:00:00</time> <version> - <release>1.1.0</release> - <api>1.1.0</api> + <release>1.2.0</release> + <api>1.2.0</api> </version> <stability> <release>stable</release> @@ -58,9 +58,8 @@ Oracle's standard cross-version connectivity applies. For example, PHP PDO </stability> <license uri="http://www.php.net/license">PHP</license> <notes> - This version is for PHP 8.3 and 8.4 only. - - Requires Oracle Client libraries from 11.2 or later. + This version is for PHP 8.3 and newer versions. + Improved multiple binding and LOB handling, Added PIE migration support. </notes> <contents> <dir name="/"> @@ -90,4 +89,22 @@ Oracle's standard cross-version connectivity applies. For example, PHP PDO <extsrcrelease> <configureoption default="autodetect" name="with-pdo-oci" prompt="Please provide the path to the ORACLE_HOME directory. Use 'instantclient,/path/to/instant/client/lib' if you're compiling with Oracle Instant Client" /> </extsrcrelease> + <changelog> + <release> + <version> + <release>1.1.0</release> + <api>1.1.0</api> + </version> + <stability> + <release>stable</release> + <api>stable</api> + </stability> + <license uri="http://www.php.net/license">PHP</license> + <notes> + This version is for PHP 8.3 and 8.4 only. + + Requires Oracle Client libraries from 11.2 or later. + </notes> + </release> + </changelog> </package> diff --git a/php_pdo_oci.h b/php_pdo_oci.h index 7096823..7a44b67 100644 --- a/php_pdo_oci.h +++ b/php_pdo_oci.h @@ -21,7 +21,7 @@ extern zend_module_entry pdo_oci_module_entry; #define phpext_pdo_oci_ptr &pdo_oci_module_entry #include "php_version.h" -#define PHP_PDO_OCI_VERSION "1.1.0" +#define PHP_PDO_OCI_VERSION "1.2.0" #ifdef ZTS #include "TSRM.h" @@ -33,4 +33,4 @@ PHP_RINIT_FUNCTION(pdo_oci); PHP_RSHUTDOWN_FUNCTION(pdo_oci); PHP_MINFO_FUNCTION(pdo_oci); -#endif /* PHP_PDO_OCI_H */ +#endif /* PHP_PDO_OCI_H */