sixd                                     Tue, 12 Jan 2010 19:12:49 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=293466

Log:
Bump version in early preparation for release

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/oci8/package.xml
    U   php/php-src/branches/PHP_5_3/ext/oci8/php_oci8.h
    U   php/php-src/trunk/ext/oci8/php_oci8.h

Modified: php/php-src/branches/PHP_5_3/ext/oci8/package.xml
===================================================================
--- php/php-src/branches/PHP_5_3/ext/oci8/package.xml   2010-01-12 18:24:37 UTC 
(rev 293465)
+++ php/php-src/branches/PHP_5_3/ext/oci8/package.xml   2010-01-12 19:12:49 UTC 
(rev 293466)
@@ -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/ext/oci8/php_oci8.h
===================================================================
--- php/php-src/branches/PHP_5_3/ext/oci8/php_oci8.h    2010-01-12 18:24:37 UTC 
(rev 293465)
+++ php/php-src/branches/PHP_5_3/ext/oci8/php_oci8.h    2010-01-12 19:12:49 UTC 
(rev 293466)
@@ -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

Modified: php/php-src/trunk/ext/oci8/php_oci8.h
===================================================================
--- php/php-src/trunk/ext/oci8/php_oci8.h       2010-01-12 18:24:37 UTC (rev 
293465)
+++ php/php-src/trunk/ext/oci8/php_oci8.h       2010-01-12 19:12:49 UTC (rev 
293466)
@@ -39,7 +39,7 @@
 /*
  * The version of the OCI8 extension.
  */
-#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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to