Skip to content

Commit 3c03820

Browse files
committed
5.3.0 RC 1
1 parent e0669bf commit 3c03820

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

NEWS

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2009, PHP 5.3.0 Beta 2
3+
24 Mar 2009, PHP 5.3.0 RC 1
44
- Upgraded bundled sqlite to version 3.6.11. (Scott)
55
- Upgraded bundled libmagic to 5.00 in the fileinfo extension. (Scott)
66

@@ -24,22 +24,26 @@ PHP NEWS
2424
- Fixed bug #47438 (mysql_fetch_field ignores zero offset). (Johannes)
2525
- Fixed bug #47398 (PDO_Firebird doesn't implements quoter correctly). (Felipe)
2626
- Fixed bug #47390 (odbc_fetch_into - BC in php 5.3.0). (Felipe)
27-
- Fixed bug #47359 (Use the expected unofficial mimetype for bmp files). (Scott)
27+
- Fixed bug #47359 (Use the expected unofficial mimetype for bmp files).
28+
(Scott)
2829
- Fixed bug #47343 (gc_collect_cycles causes a segfault when called within a
2930
destructor in one case). (Dmitry)
3031
- Fixed bug #47329 (Crash in garbage collector). (Dmitry)
3132
- Fixed bug #47320 ($php_errormsg out of scope in functions). (Dmitry)
3233
- Fixed bug #47265 (generating phar.phar fails because of safe_mode). (Greg)
33-
- Fixed bug #47243 (OCI8: Crash at shutdown on Windows) (Chris Jones/Oracle Corp.)
34+
- Fixed bug #47243 (OCI8: Crash at shutdown on Windows) (Chris Jones/Oracle
35+
Corp.)
3436
- Fixed bug #47231 (offsetGet error using incorrect offset). (Etienne)
3537
- Fixed bug #47229 (preg_quote() should escape the '-' char). (Nuno)
3638
- Fixed bug #47085 (rename() returns true even if the file in PHAR does not
3739
exist). (Greg)
3840
- Fixed bug #47031 (Fix constants in DualIterator example). (Etienne)
39-
- Fixed bug #46994 (OCI8: CLOB size does not update when using CLOB IN OUT param in stored procedure) (Chris Jones/Oracle Corp.)
41+
- Fixed bug #46994 (OCI8: CLOB size does not update when using CLOB IN OUT
42+
param in stored procedure) (Chris Jones/Oracle Corp.)
4043
- Fixed bug #46897 (ob_flush() should fail to flush unerasable buffers).
4144
(David C.)
42-
- Fixed bug #46623 (OCI8: phpinfo doesn't show compile time ORACLE_HOME with phpize) (Chris Jones/Oracle Corp.)
45+
- Fixed bug #46623 (OCI8: phpinfo doesn't show compile time ORACLE_HOME with
46+
phpize) (Chris Jones/Oracle Corp.)
4347
- Fixed bug #46542 (Extending PDO class with a __call() function doesn't work
4448
as expected). (Johannes)
4549
- Fixed bug #46347 (parse_ini_file() doesn't support * in keys). (Nuno)
@@ -49,9 +53,12 @@ PHP NEWS
4953
- Fixed bug #45432 (PDO: persistent connection leak). (Felipe)
5054
- Fixed bug #43831 ($this gets mangled when extending PDO with persistent
5155
connection). (Felipe)
52-
- Fixed PECL Bug #16035 (OCI8: oci_connect without ORACLE_HOME defined causes segfault) (Chris Jones/Oracle Corp.)
53-
- Fixed PECL Bug #15988 (OCI8: sqlnet.ora isn't read with older Oracle libraries) (Chris Jones/Oracle Corp.)
54-
- Fixed PECL Bug #14268 (Allow "pecl install oci8" command to "autodetect" an Instant Client RPM install) (Chris Jones/Oracle Corp.)
56+
- Fixed PECL Bug #16035 (OCI8: oci_connect without ORACLE_HOME defined causes
57+
segfault) (Chris Jones/Oracle Corp.)
58+
- Fixed PECL Bug #15988 (OCI8: sqlnet.ora isn't read with older Oracle
59+
libraries) (Chris Jones/Oracle Corp.)
60+
- Fixed PECL Bug #14268 (Allow "pecl install oci8" command to "autodetect" an
61+
Instant Client RPM install) (Chris Jones/Oracle Corp.)
5562

5663
29 Jan 2009, PHP 5.3.0 Beta 1
5764
- Upgraded bundled sqlite to version 3.6.10. (Scott, Ilia)

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
4242
PHP_MAJOR_VERSION=5
4343
PHP_MINOR_VERSION=3
4444
PHP_RELEASE_VERSION=0
45-
PHP_EXTRA_VERSION="beta2-dev"
45+
PHP_EXTRA_VERSION="RC1"
4646
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
4747
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
4848

main/php_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 3
55
#define PHP_RELEASE_VERSION 0
6-
#define PHP_EXTRA_VERSION "beta2-dev"
7-
#define PHP_VERSION "5.3.0beta2-dev"
6+
#define PHP_EXTRA_VERSION "RC1"
7+
#define PHP_VERSION "5.3.0RC1"
88
#define PHP_VERSION_ID 50300

0 commit comments

Comments
 (0)