Skip to content

Commit 218eba3

Browse files
committed
Bump version in early preparation for release
1 parent d2e14e3 commit 218eba3

File tree

2 files changed

+70
-45
lines changed

2 files changed

+70
-45
lines changed

ext/oci8/package.xml

Lines changed: 69 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -33,52 +33,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
3333
<active>no</active>
3434
</lead>
3535

36-
<date>2009-10-06</date>
36+
<date>2010-??-??</date>
3737
<time>15:00:00</time>
3838

3939
<version>
40-
<release>1.4.0</release>
41-
<api>1.4.0</api>
40+
<release>1.4.1</release>
41+
<api>1.4.1</api>
4242
</version>
4343
<stability>
44-
<release>alpha</release>
45-
<api>alpha</api>
44+
<release>stable</release>
45+
<api>stable</api>
4646
</stability>
4747
<license uri="http://www.php.net/license">PHP</license>
4848
<notes>
49-
1. Introduce connection attribute functions:
50-
51-
oci_set_module_name
52-
oci_set_action
53-
oci_set_client_info
54-
oci_set_client_identifier
55-
56-
These set values that are visible/used by the database. They
57-
are useful for tracing, authentication and auditing.
58-
59-
2. Introduce connection attribute function:
60-
61-
oci_set_edition
62-
63-
Oracle 11g R2 "editions" allow multiple versions of DB objects
64-
to exist at one time. By setting different editions, two
65-
different versions of an application can run concurrently,
66-
making upgrading easier and faster.
67-
68-
3. Set the DRIVER_NAME attribute of Oracle Database 11gR2
69-
connections to aid application tracing. The value used is to
70-
"PHP OCI8" followed by the OCI8 version number. Note the
71-
version number may get truncated in DB views such as
72-
v$session_connect_info.
73-
74-
4. Allow the oci_set_prefetch value to be 0. This is important in
75-
some cases using REF CURSORS in Oracle 11gR2.
76-
77-
5. Introduce OCI_NO_AUTO_COMMIT as an alias for the OCI_DEFAULT
78-
constant (which is not the default value) used by oci_execute().
79-
80-
6. Generate an error if an invalid resource type is used in
81-
oci_bind_by_name
49+
Fixed bug #49560 (Using LOBs causes slow PHP shutdown)
50+
Fixed bug #47281 ($php_errormsg is limited in size of characters)
8251
</notes>
8352
<contents>
8453
<dir name="/">
@@ -126,6 +95,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
12695
<file name="bug35973.phpt" role="test" />
12796
<file name="bug36010.phpt" role="test" />
12897
<file name="bug36096.phpt" role="test" />
98+
<file name="bug36403.phpt" role="test" />
12999
<file name="bug37220.phpt" role="test" />
130100
<file name="bug37581.phpt" role="test" />
131101
<file name="bug38161.phpt" role="test" />
@@ -148,6 +118,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
148118
<file name="bug45458.phpt" role="test" />
149119
<file name="bug46994.phpt" role="test" />
150120
<file name="bug47189.phpt" role="test" />
121+
<file name="bug47281.phpt" role="test" />
151122
<file name="bug6109.phpt" role="test" />
152123
<file name="close.phpt" role="test" />
153124
<file name="coll_001.phpt" role="test" />
@@ -258,12 +229,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
258229
<file name="extauth_04.phpt" role="test" />
259230
<file name="fetch_all2.phpt" role="test" />
260231
<file name="fetch_all3.phpt" role="test" />
232+
<file name="fetch_all4.phpt" role="test" />
233+
<file name="fetch_all5.phpt" role="test" />
261234
<file name="fetch_all.phpt" role="test" />
262235
<file name="fetch_array.phpt" role="test" />
263236
<file name="fetch_assoc.phpt" role="test" />
264237
<file name="fetch_into1.phpt" role="test" />
265238
<file name="fetch_into2.phpt" role="test" />
266239
<file name="fetch_into.phpt" role="test" />
240+
<file name="fetch_object_2.phpt" role="test" />
267241
<file name="fetch_object.phpt" role="test" />
268242
<file name="fetch.phpt" role="test" />
269243
<file name="fetch_row.phpt" role="test" />
@@ -315,6 +289,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
315289
<file name="lob_040.phpt" role="test" />
316290
<file name="lob_041.phpt" role="test" />
317291
<file name="lob_042.phpt" role="test" />
292+
<file name="lob_043.phpt" role="test" />
318293
<file name="lob_aliases.phpt" role="test" />
319294
<file name="lob_null.phpt" role="test" />
320295
<file name="lob_temp1.phpt" role="test" />
@@ -392,6 +367,56 @@ http://pear.php.net/dtd/package-2.0.xsd">
392367
</extsrcrelease>
393368
<changelog>
394369

370+
<release>
371+
<version>
372+
<release>1.4.0</release>
373+
<api>1.4.0</api>
374+
</version>
375+
<stability>
376+
<release>alpha</release>
377+
<api>alpha</api>
378+
</stability>
379+
<license uri="http://www.php.net/license">PHP</license>
380+
<notes>
381+
1. Introduce connection attribute functions:
382+
383+
oci_set_module_name
384+
oci_set_action
385+
oci_set_client_info
386+
oci_set_client_identifier
387+
388+
These set values that are visible/used by the database. They
389+
are useful for tracing, authentication and auditing.
390+
391+
2. Introduce connection attribute function:
392+
393+
oci_set_edition
394+
395+
Oracle 11g R2 "editions" allow multiple versions of DB objects
396+
to exist at one time. By setting different editions, two
397+
different versions of an application can run concurrently,
398+
making upgrading easier and faster.
399+
400+
3. Set the DRIVER_NAME attribute of Oracle Database 11gR2
401+
connections to aid application tracing. The value used is to
402+
"PHP OCI8" followed by the OCI8 version number. Note the
403+
version number may get truncated in DB views such as
404+
v$session_connect_info.
405+
406+
4. Allow the oci_set_prefetch value to be 0. This is important in
407+
some cases using REF CURSORS in Oracle 11gR2.
408+
409+
5. Introduce OCI_NO_AUTO_COMMIT as an alias for the OCI_DEFAULT
410+
constant (which is not the default value) used by oci_execute().
411+
412+
6. Generate an error if an invalid resource type is used in
413+
oci_bind_by_name
414+
415+
7. Bug fixes:
416+
PECL bug #16842 (oci_error returns false when NO_DATA_FOUND is raised)
417+
</notes>
418+
</release>
419+
395420
<release>
396421
<version>
397422
<release>1.3.5</release>
@@ -403,13 +428,13 @@ http://pear.php.net/dtd/package-2.0.xsd">
403428
</stability>
404429
<license uri="http://www.php.net/license">PHP</license>
405430
<notes>
406-
Fixed Bug #47243 (Crash at end of request shutdown on Windows)
407-
Fixed Bug #46994 (CLOB size does not update when using CLOB IN OUT param in stored procedure)
408-
Fixed Bug #46623 (phpinfo doesn't show compile time ORACLE_HOME with phpize)
431+
Fixed bug #47243 (Crash at end of request shutdown on Windows)
432+
Fixed bug #46994 (CLOB size does not update when using CLOB IN OUT param in stored procedure)
433+
Fixed bug #46623 (phpinfo doesn't show compile time ORACLE_HOME with phpize)
409434
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.
410-
Fixed PECL Bug #16035 (oci_connect without ORACLE_HOME defined causes segfault)
411-
Fixed PECL Bug #15988 (sqlnet.ora isn't read with older Oracle libraries)
412-
Fixed PECL Bug #14268 (Allow "pecl install oci8" command to "autodetect" an Instant Client RPM install)
435+
Fixed PECL bug #16035 (oci_connect without ORACLE_HOME defined causes segfault)
436+
Fixed PECL bug #15988 (sqlnet.ora isn't read with older Oracle libraries)
437+
Fixed PECL bug #14268 (Allow "pecl install oci8" command to "autodetect" an Instant Client RPM install)
413438
</notes>
414439
</release>
415440

ext/oci8/php_oci8.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*/
4747
#undef PHP_OCI8_VERSION
4848
#endif
49-
#define PHP_OCI8_VERSION "1.4.0 Alpha"
49+
#define PHP_OCI8_VERSION "1.4.1"
5050

5151
extern zend_module_entry oci8_module_entry;
5252
#define phpext_oci8_ptr &oci8_module_entry

0 commit comments

Comments
 (0)