Navigation Menu

Skip to content

Commit

Permalink
Update for PECL release
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbj committed Feb 19, 2008
1 parent 4ade018 commit 23a43bb
Showing 1 changed file with 71 additions and 13 deletions.
84 changes: 71 additions & 13 deletions ext/oci8/package2.xml
Expand Up @@ -35,16 +35,24 @@ the Oracle Call Interface (OCI8).
</lead>
<date>2007-10-05</date>
<time>10:00:00</time>

<version>
<release>1.3.0</release>
<api>1.3.0</api>
<release>1.3.1</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>Added DRCP and FAN support.
<notes>Fixed bug #44113 (New collection creation can fail with OCI-22303)
Fixed bug #42841 (Crash with REF CURSORS when statement caching enabled)
Fixed bug #42496 (Cursor leak selecting LOBs
Fixed bug #43497 (Temporary LOB leak)
Fixed PECL bug #12431 (ping functionality is broken)
Allow compilation with 64bit Instant Client RPMs
Allow -with-oci8=instantclient with no directory specified look for RPM install
Refine DRCP connection pooling functionality
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -84,13 +92,20 @@ the Oracle Call Interface (OCI8).
<file name="bug35973.phpt" role="test" />
<file name="bug36010.phpt" role="test" />
<file name="bug36096.phpt" role="test" />
<file name="bug37220.phpt" role="test" />
<file name="bug37581.phpt" role="test" />
<file name="bug38161.phpt" role="test" />
<file name="bug38173.phpt" role="test" />
<file name="bug40078.phpt" role="test" />
<file name="bug40415.phpt" role="test" />
<file name="bug42134.phpt" role="test" />
<file name="bug42173.phpt" role="test" />
<file name="bug42496_1.phpt" role="test" />
<file name="bug42496_2.phpt" role="test" />
<file name="bug42841.phpt" role="test" />
<file name="bug43492.phpt" role="test" />
<file name="bug43497.phpt" role="test" />
<file name="bug44113.phpt" role="test" />
<file name="close.phpt" role="test" />
<file name="coll_001.phpt" role="test" />
<file name="coll_002_func.phpt" role="test" />
Expand Down Expand Up @@ -153,6 +168,18 @@ the Oracle Call Interface (OCI8).
<file name="define.phpt" role="test" />
<file name="descriptors.phpt" role="test" />
<file name="details.inc" role="test" />
<file name="drcp_characterset.phpt" role="test" />
<file name="drcp_conn_close1.phpt" role="test" />
<file name="drcp_conn_close2.phpt" role="test" />
<file name="drcp_connect1.phpt" role="test" />
<file name="drcp_connection_class.phpt" role="test" />
<file name="drcp_functions.inc" role="test" />
<file name="drcp_newconnect.phpt" role="test" />
<file name="drcp_pconn_close1.phpt" role="test" />
<file name="drcp_pconn_close2.phpt" role="test" />
<file name="drcp_privileged.phpt" role="test" />
<file name="drcp_scope1.phpt" role="test" />
<file name="drcp_scope2.phpt" role="test" />
<file name="drop_table.inc" role="test" />
<file name="drop_type.inc" role="test" />
<file name="error1.phpt" role="test" />
Expand Down Expand Up @@ -218,6 +245,8 @@ the Oracle Call Interface (OCI8).
<file name="lob_038.phpt" role="test" />
<file name="lob_039.phpt" role="test" />
<file name="lob_040.phpt" role="test" />
<file name="lob_041.phpt" role="test" />
<file name="lob_042.phpt" role="test" />
<file name="lob_aliases.phpt" role="test" />
<file name="lob_null.phpt" role="test" />
<file name="lob_temp1.phpt" role="test" />
Expand All @@ -240,6 +269,7 @@ the Oracle Call Interface (OCI8).
<file name="prefetch.phpt" role="test" />
<file name="privileged_connect1.phpt" role="test" />
<file name="privileged_connect.phpt" role="test" />
<file name="rowid_bind.phpt" role="test" />
<file name="select_null.phpt" role="test" />
<file name="serverversion.phpt" role="test" />
<file name="skipif.inc" role="test" />
Expand All @@ -249,6 +279,7 @@ the Oracle Call Interface (OCI8).
<file name="test.gif" role="test" />
<file name="test.txt" role="test" />
<file name="uncommitted.phpt" role="test" />
<file name="xmltype_01.phpt" role="test" />
</dir> <!-- //tests -->
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
Expand Down Expand Up @@ -278,10 +309,30 @@ the Oracle Call Interface (OCI8).
</dependencies>
<providesextension>oci8</providesextension>
<extsrcrelease>
<configureoption default="autodetect" name="with-oci8" prompt="Please provide the path to ORACLE_HOME dir. Use &apos;instantclient,/path/to/instant/client/lib&apos; if you&apos;re compiling against Oracle Instant Client" />
<configureoption default="autodetect" name="with-oci8" prompt="Please provide the path to ORACLE_HOME dir. Use &apos;instantclient,/path/to/instant/client/lib&apos; if you&apos;re compiling with Oracle Instant Client" />
</extsrcrelease>
<changelog>

<release>
<version>
<release>1.3.1</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>Fixed bug #44113 (New collection creation can fail with OCI-22303)
Fixed bug #42841 (Crash with REF CURSORS when statement caching enabled)
Fixed bug #42496 (Cursor leak selecting LOBs
Fixed bug #43497 (Temporary LOB leak)
Fixed PECL bug #12431 (ping functionality is broken)
Allow compilation with 64bit Instant Client RPMs
Allow -with-oci8=instantclient with no directory specified look for RPM install
Refine DRCP functionality
</notes>
</release>

<release>
<version>
Expand All @@ -297,7 +348,6 @@ the Oracle Call Interface (OCI8).
</notes>
</release>


<release>
<version>
<release>1.2.4</release>
Expand All @@ -308,21 +358,22 @@ the Oracle Call Interface (OCI8).
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>Fixed PECL bug #10194 (crash in Oracle client when memory limit reached in the callback).
Fixed bug #42173 (oci_field_type fixes for INTERVAL and TIMESTAMP types).
Fixed bug #42134 (oci_error() returns false after oci_new_collection() fails).
Fixed bug #41917 (oci_field_precision and oci_field_scale datatypes fixed).
Fixed bug #41711 (Null temporary lobs not supported).
Fixed bug #41594 (Statement cache is flushed too frequently).
<notes>Fixed PECL bug #10194 (crash in Oracle client when memory limit reached in the callback)
Fixed bug #42173 (oci_field_type fixes for INTERVAL and TIMESTAMP types)
Fixed bug #42134 (oci_error() returns false after oci_new_collection() fails)
Fixed bug #41917 (oci_field_precision and oci_field_scale datatypes fixed)
Fixed bug #41711 (Null temporary lobs not supported)
Fixed bug #41594 (Statement cache is flushed too frequently)
Fixed bug #40415 (oci_fetch_all and nested cursors, allocate descriptors dynamically)
Fixed segfault on rebinding and re-executing a statement with LOBs.
Fixed compile failure in ZTS mode when collections support is missing.
Allowed statement cache size to be set for non-persistent connections.
Improved oci_password_change() to close persistent connections on shutdown (to update hashed connection details).
Improved oci_password_change() to close persistent connections on shutdown (to update hashed connection details)
Changed oci_pconnect() to behave like oci_connect() when SYSDBA and SYSOPER privileges are used.
Various minor improvements.
</notes>
</release>

<release>
<version>
<release>1.2.3</release>
Expand All @@ -342,6 +393,7 @@ Fixed PECL bug #8816 (issue in php_oci_statement_fetch with more than one piecew
Various minor improvements.
</notes>
</release>

<release>
<version>
<release>1.2.2</release>
Expand All @@ -366,6 +418,7 @@ Fixed bug #34005 (oci_password_change() fails). Patch by pholdaway at technocom-
Fixed PECL bug #8112 (Persistent connections misbehave when Apache process times out)
</notes>
</release>

<release>
<version>
<release>1.2.1</release>
Expand All @@ -386,6 +439,7 @@ Fixed bug #36851 (Documentation and code discrepancies for NULL data)
Fixed bug #36820 (Privileged connection with an Oracle password file fails)
</notes>
</release>

<release>
<version>
<release>1.2.0</release>
Expand All @@ -406,6 +460,7 @@ Fixed PECL bug #5571 (oci_new_connect() not closed by oci_close())
Fixed bug #33383 (crash when retrieving empty BLOBs)
</notes>
</release>

<release>
<version>
<release>1.1.1</release>
Expand All @@ -421,6 +476,7 @@ Fixed bug #33383 (crash when retrieving empty BLOBs)
Fixed problem with oci_error() without arguments.
</notes>
</release>

<release>
<version>
<release>1.1</release>
Expand All @@ -432,11 +488,12 @@ Fixed problem with oci_error() without arguments.
</stability>
<date>2005-09-07</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>This release fixes a huge amount of bugs and adds support of
<notes>This release fixes a huge amount of bugs and adds support of
statement caching, external credentials etc.
See official announce for details.
</notes>
</release>

<release>
<version>
<release>1.0</release>
Expand All @@ -451,5 +508,6 @@ See official announce for details.
<notes>package.xml added to support installation using pear installer
</notes>
</release>

</changelog>
</package>

0 comments on commit 23a43bb

Please sign in to comment.