History log of /php-src/NEWS (Results 2626 – 2650 of 15454)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 2e27bb86 19-Nov-2020 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #80345: PHPIZE configuration has outdated PHP_RELEASE_VERSION


# c2b11828 10-Nov-2020 Christoph M. Becker

Fix #80345: PHPIZE configuration has outdated PHP_RELEASE_VERSION

We must not redefine the version "constants" for phpize builds, because
these have already generated in phpize.js, from

Fix #80345: PHPIZE configuration has outdated PHP_RELEASE_VERSION

We must not redefine the version "constants" for phpize builds, because
these have already generated in phpize.js, from where we pass these
variables forward to configure.js.

We also add `PHP_EXTRA_VERSION` and `PHP_VERSION_STRING` to the files
for completeness.

Closes GH-6419.

show more ...

# 85c6e9b4 19-Nov-2020 Sara Golemon

Prepare NEWS file for GA

# 9b5f96e4 04-Oct-2020 Christoph M. Becker

Fix inclusion order for phpize builds on Windows

`configure` for `phpize` builds on Windows creates Makefile and
config.pickle.h and includes the latter via the command line option
`

Fix inclusion order for phpize builds on Windows

`configure` for `phpize` builds on Windows creates Makefile and
config.pickle.h and includes the latter via the command line option
`/FI`. That implies that config.pickle.h is always included before
config.w32.h, which means that standard definitions always override
extension specific definitions, while it should be the other way round.

Therefore, we change the inclusion order by including config.pickle.h
at the end of config.w32.h if the former is available, and also make
sure to avoid any potential C4005 warnings by `#undef`ining the macros
before defining them.

Closes GH-6269.

show more ...

# fd75589b 17-Nov-2020 Gabriel Caruso

Update NEWS for 8.0.0

# 0a9b688b 17-Nov-2020 Gabriel Caruso

Update NEWS for PHP 8.0.0RC5

# 1727d96d 15-Nov-2020 Benjamin Eberlei

Fixed bug #80370: Segmentation fault reflecting attributes of dynamic property

Closes GH-6428.

# c351768e 16-Nov-2020 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #74558: Can't rebind closure returned by Closure::fromCallable()


# 78773890 12-Nov-2020 Christoph M. Becker

Fix #74558: Can't rebind closure returned by Closure::fromCallable()

Failure to rebind such closures is not necessarily related to them
being created by `ReflectionFunctionAbstract::getC

Fix #74558: Can't rebind closure returned by Closure::fromCallable()

Failure to rebind such closures is not necessarily related to them
being created by `ReflectionFunctionAbstract::getClosure()`, so we fix
the error message.

Closes GH-6424.

show more ...

# c1f8dd4a 10-Nov-2020 Derick Rethans

PHP-7.4 is now for 7.4.14

# 822e1660 10-Nov-2020 Gabriel Caruso

Update NEWS for 8.0.0

# 343b53ad 10-Nov-2020 Gabriel Caruso

Update NEWS for PHP 8.0.0RC4

# b5ce6df0 10-Nov-2020 Christoph M. Becker

7.3.26 is next

# 8eaaabdd 03-Nov-2020 Alexander M. Turek

Fixed bug #80310: Support for icu4c 68.1.

On stable versions, bring back the TRUE/FALSE defines by defining
_U_DEFINE_TRUE_AND_FALSE.

Closes GH-6397.

# 6fb3d925 09-Nov-2020 Nikita Popov

Fixed bug #80334

If assert() was called with named args, add description as named
arg as well.

# b1019f46 09-Nov-2020 Nikita Popov

Rename PhpToken::getAll() to PhpToken::tokenize()

See https://externals.io/message/112189.
Fixes bug #80328.

# b8f2531f 04-Nov-2020 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #80266: parse_url silently drops port number 0


# 00e41a10 04-Nov-2020 Christoph M. Becker

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fix #80266: parse_url silently drops port number 0


# 2cab085b 04-Nov-2020 Christoph M. Becker

Fix #80266: parse_url silently drops port number 0

As of commit 81b2f3e[1], `parse_url()` accepts URLs with a zero port,
but does not report that port, what is wrong in hindsight.

Fix #80266: parse_url silently drops port number 0

As of commit 81b2f3e[1], `parse_url()` accepts URLs with a zero port,
but does not report that port, what is wrong in hindsight.

Since the port number is stored as `unsigned short` there is no way to
distinguish between port zero and no port. For BC reasons, we thus
introduce `parse_url_ex2()` which accepts an output parameter that
allows that distinction, and use the new function to fix the behavior.

The introduction of `parse_url_ex2()` has been suggested by Nikita.

[1] <http://git.php.net/?p=php-src.git;a=commit;h=81b2f3e5d9fcdffd87a4fcd12bd8c708a97091e1>

Closes GH-6399.

show more ...

# 6fc2cab2 02-Nov-2020 Christoph M. Becker

Merge branch 'PHP-7.4' into PHP-8.0

* PHP-7.4:
Fix #70461: disable md5 code when it is not supported in net-snmp


# 0123f75b 02-Nov-2020 Christoph M. Becker

Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
Fix #70461: disable md5 code when it is not supported in net-snmp


# 9690ded2 28-Oct-2020 Christoph M. Becker

Fix #70461: disable md5 code when it is not supported in net-snmp

Patch contributed by Alexander Bergmann.

Closes GH-6389.

# c3a6debc 10-Oct-2020 Jakub Zelenka

Bump minimal OpenSSL version to 1.0.2

# 5e162093 31-Oct-2020 Anatol Belski

NEWS: Add murmurhash info [ci skip]

Signed-off-by: Anatol Belski <ab@php.net>

# 904c1b65 30-Oct-2020 Nikita Popov

FIxed bug #80299

The must_wrap was leaking across iterations.

1...<<101102103104105106107108109110>>...619