History log of /PHP-5.6/UPGRADING (Results 251 – 275 of 355)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1e3b32c7 18-May-2011 Andrew Curioso

Commiting r311138 into the 5.3 branch - fix to SimpleXML get properties hash


# 47db582a 17-May-2011 Andrew Curioso

Use iterator when necessary to get the full properties hash - consistent with count (see test: ext/simplexml/tests/034.phpt)


# 18d71a6f 06-Apr-2011 Gustavo André dos Santos Lopes

- Updated UPGRADING now that multicast support was decided
trunk only.


# cab643f6 05-Apr-2011 Boris Lytochkin

* added detection and walkaround for net-snmp library bug (net-snmp BUGid 2027834)
* drop UCD-SNMP support, R.I.P.


# f7b7b6aa 27-Mar-2011 Gustavo André dos Santos Lopes

- Improved upon r309729.
- Extented strategy to remaining the classes on spl_directory.c, even those that don't crash.
- UPGRADING.
- Better bug54384.phpt, with all the classes covered.


# 11efb729 27-Mar-2011 Arnaud Le Blanc

UPGRADING


# 907244a8 27-Mar-2011 Boris Lytochkin

added info about changes in SNMP extension


# 63673a53 23-Mar-2011 Gustavo André dos Santos Lopes

- Updating UPGRADING for r309516 and modest merge to 5.3.


# 7f293722 21-Mar-2011 Gustavo André dos Santos Lopes

- Make fclose() actually close stream, even when the resource refcount is > 1.
This reverts the fix for bug #24557.
- Make php_stream_free delete the stream from the resources list, not mer

- Make fclose() actually close stream, even when the resource refcount is > 1.
This reverts the fix for bug #24557.
- Make php_stream_free delete the stream from the resources list, not merely
decrease its refcount, as a single call to zend_list_delete does.
#Not worth the risk merging to 5.3. While change #2 may prevent some segfaults,
#a quick and dirty survey to the codebase only showed calls to php_stream_close
#or php_stream_free on streams allocated in the same function, which would have
#refcount == 1. May be reconsidered.

show more ...


Revision tags: php-5.3.6, php-5.3.6RC3, php-5.3.6RC2
# a3a51572 19-Feb-2011 Gustavo André dos Santos Lopes

- PHP_STREAM_OPTION_WRITE_BUFFER no longer disables the read buffer of a plain
stream when 0 is given as the value.
- PHP_STREAM_OPTION_WRITE_BUFFER no longer changes the chunk size in sock

- PHP_STREAM_OPTION_WRITE_BUFFER no longer disables the read buffer of a plain
stream when 0 is given as the value.
- PHP_STREAM_OPTION_WRITE_BUFFER no longer changes the chunk size in socket
streams.
- Added stream_set_chunk_size() function.
- Some signedness fixes.
- Test for commit r308474, now that it's possible to actually test it.

show more ...


# 9bbc114b 17-Feb-2011 Gustavo André dos Santos Lopes

- Classes that implement stream wrappers can define a method called
stream_truncate that will respond to truncation, e.g. through ftruncate.
Closes feature request #53888.


Revision tags: php-5.3.6RC1
# 82dd0b9d 11-Feb-2011 Peter Cowburn

Oopsie, fix typo in UPGRADING


# 14c6cc5b 11-Feb-2011 Peter Cowburn

MFH - Added SplFileInfo::getExtension() (FR #48767)


# 7c1a0591 29-Jan-2011 Adam Harvey

Revert the UPGRADING change in r307807, since it's actually completely pointless, as Johannes pointed out.


# c5f06eff 28-Jan-2011 Adam Harvey

Fixed bug #53854 (Missing constants for compression type). Patch by Richard
Quadling.


# 4a946a91 25-Jan-2011 Gustavo André dos Santos Lopes

- Fixed CHARSET_UNICODE_COMPAT (ISO-8859-1 is compatible in the relevant sense).
- Fixed usage of zend_multibyte_get_internal_encoding (its return cannot be
cast to char*).
- Change tes

- Fixed CHARSET_UNICODE_COMPAT (ISO-8859-1 is compatible in the relevant sense).
- Fixed usage of zend_multibyte_get_internal_encoding (its return cannot be
cast to char*).
- Change tests to reflect that charset detection now relies on
internal_encoding, not on current_internal_encoding.
NOTE: This fixes the changes in rev 306077, but it remains that that change
introduced a BC break. I assumed it was intentional

show more ...


# 2e3e65c5 19-Jan-2011 Philip Olson

Fixed a couple of trivial typos


# 5ba90aef 17-Jan-2011 Kalle Sommer Nielsen

Added 'catalog' to the field fetching functions in mysqli (Thanks to Johannes for the headsup)


# 5d23cdd6 17-Jan-2011 Kalle Sommer Nielsen

MFT: Implemented FR #47802 (Support for setting character sets in DSN strings)


# 478e5d1d 09-Jan-2011 Stefan Marr

Added trait_exists() [TRAITS] [DOC]

- also changed class_exists() to return false for traits
- added related tests, and get_declared_traits() tests in ext/s/t/co


# 69a3575b 07-Jan-2011 Kalle Sommer Nielsen

Implemented FR #39847 (mysqli_fetch_[field|fields|field_direct] need to return db)


# e4c36b05 07-Jan-2011 Kalle Sommer Nielsen

Implemented FR #47802, support for character sets in DSN strings for PDO_MYSQL


Revision tags: php-5.2.17
# 3571c955 06-Jan-2011 Adam Harvey

Implement request #53659 (Implementing RegexIterator::getRegex() method). Patch
by Joshua Thijssen.


Revision tags: php-5.3.5
# 6144da7e 31-Dec-2010 Scott MacVicar

Silently casting an empty string, null or false into an object by adding a property
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can'

Silently casting an empty string, null or false into an object by adding a property
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can't break BC completely (yet) lets bump this from E_STRICT.

Also added a new section to UPGRADING for engine changes.

<?php
$x = '';
// $x = null;
// $x = false;
$x->baz = 1;
var_dump($x);

$y = 1;
$y->baz = 1;
var_dump($y);

show more ...


# 064a2544 23-Dec-2010 Peter Cowburn

Implemented FR #48767 (SplFileInfo::getExtension())


1...<<1112131415