History log of /PHP-8.3/ (Results 1 – 25 of 109951)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f26b964302-May-2024 Matteo Beccati

Merge branch 'PHP-8.2' into PHP-8.3


6fed9a9a02-May-2024 Matteo Beccati

Stick to mysql 8.3 for the time being

MySQL 8.4 does not load the 'mysql_native_password' plugin by default
and I couldn't figure out how to initialise the container to load it.

49b5ab2001-May-2024 Peter Kokot

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix tests for glibc 2.39 (#14097)


b6b9eab601-May-2024 Peter Kokot

Fix tests for glibc 2.39 (#14097)

2.39 has fixed inconsistent (mon_)grouping formats in localedata:

* https://sourceware.org/git/?p=glibc.git;a=blob;f=NEWS;hb=refs/tags/glibc-2.39#l

Fix tests for glibc 2.39 (#14097)

2.39 has fixed inconsistent (mon_)grouping formats in localedata:

* https://sourceware.org/git/?p=glibc.git;a=blob;f=NEWS;hb=refs/tags/glibc-2.39#l237
* https://sourceware.org/git/?p=glibc.git;a=blob;f=localedata/locales/en_AU;hb=refs/tags/glibc-2.39#l65

For en_AU locale now it returns array of 1 item instead of 2 for
grouping and mon_grouping.

Since this is upstream change depending on the system, this only syncs
tests for such case.

show more ...

ff6e3b6f01-May-2024 David Carlier

Merge branch 'PHP-8.2' into PHP-8.3


7484394720-Apr-2024 David Carlier

sapi/cgi: fix buffer limit on windows.

MSDN recommends dropping the deprecated `read` in favor of `_read`.
Also, the buffer size limit is INT_MAX.

Close GH-14022

461d890f30-Apr-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix crash when calling childNodes next() when iterator is exhausted
Fix references not handled correctly in C14N
Fix crashes

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix crash when calling childNodes next() when iterator is exhausted
Fix references not handled correctly in C14N
Fix crashes when entity declaration is removed while still having entity references

show more ...


2dbe2d6230-Apr-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix crash when calling childNodes next() when iterator is exhausted

Closes GH-14091.

30a0b03530-Apr-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix references not handled correctly in C14N

Closes GH-14090.

e878b9f330-Apr-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix crashes when entity declaration is removed while still having entity references

libxml doesn't do reference counting inside its node types. It's
possible to remove an entity declarat

Fix crashes when entity declaration is removed while still having entity references

libxml doesn't do reference counting inside its node types. It's
possible to remove an entity declaration out of the document, but then
entity references will keep pointing to that stale declaration. This
will cause crashes.

One idea would be to check when a declaration is removed, to trigger a
hook that updates all references. However this means we have to keep
track of all references somehow, which would be a high-overhead
solution. The solution in this patch makes sure that the fields are
always updated before they are read.

Closes GH-14089.

show more ...

5bac4a6429-Apr-2024 Ilija Tovilo

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix __SANITIZE_ADDRESS__ redeclaration warning


d670e13129-Apr-2024 Ilija Tovilo

Fix __SANITIZE_ADDRESS__ redeclaration warning

bab75e1f23-Apr-2024 Jakub Zelenka

PHP 8.3 is now for PHP-8.3.8-dev

71aae5a122-Apr-2024 Peter Kokot

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix GH-13727: Building with -Werror=strict-prototypes (#14029)


44775b7622-Apr-2024 Peter Kokot

Fix GH-13727: Building with -Werror=strict-prototypes (#14029)

This is addon to the GH-13727 bug fix. When configuring the build with:

./configure CFLAGS=-Werror=strict-prototypes

Fix GH-13727: Building with -Werror=strict-prototypes (#14029)

This is addon to the GH-13727 bug fix. When configuring the build with:

./configure CFLAGS=-Werror=strict-prototypes

libtool check for parsing nm command would fail:

checking command to parse /usr/bin/nm -B output from cc object... failed

Upstream libtool has this specific check already fixed. Note that this
works only with Autoconf version 2.72 and later and is preparation for
future compilers that might have this error enabled by default.

show more ...

5899cabf22-Apr-2024 Ilija Tovilo

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Temporary reset filename and lineno override before autoload


f8b9030b16-Feb-2024 SATO Kentaro

Temporary reset filename and lineno override before autoload

Closes GH-10232
Closes GH-13313

f28ddec521-Apr-2024 Peter Kokot

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix erroneous dnl appended in configure (#14013)


7d3d8de121-Apr-2024 Peter Kokot

Fix erroneous dnl appended in configure (#14013)

This is a backport of commit 03f15534a17c7031b89dac7aaa21d59474517321 to
PHP-8.2 due to GH-14002 and fixes the PHP_CXX_COMPILE_STDCXX che

Fix erroneous dnl appended in configure (#14013)

This is a backport of commit 03f15534a17c7031b89dac7aaa21d59474517321 to
PHP-8.2 due to GH-14002 and fixes the PHP_CXX_COMPILE_STDCXX check in
ext/intl whether the specified C++ standard is mandatory or optional.

The `dnl` (Discard to Next Line) M4 macro in this combination of `m4_if`
macros and arguments isn't properly replaced and a literal `dnl` string
is appended in the configure script. The `[]dnl` works ok.

show more ...

2f64d07321-Apr-2024 Ilija Tovilo

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
[skip ci] Backport 0e7ef95 and 4f0d4c0


891e4a5a21-Apr-2024 Ilija Tovilo

Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
[skip ci] Backport 0e7ef95 and 4f0d4c0


469ad32521-Apr-2024 Ilija Tovilo

[skip ci] Backport 0e7ef95 and 4f0d4c0

2636104a20-Apr-2024 David Carlier

Merge branch 'PHP-8.2' into PHP-8.3


42443b4c20-Apr-2024 David Carlier

ext/session: fix _read/_write buffer limit.

MSDN pages mention the buffer size upper limit is INT_MAX not UINT_MAX.
inspired by GH-13205.

Close GH-14017

4306416020-Apr-2024 Saki Takamachi

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix GH-13998: Manage refcount of agg_context->val correctly (#14004)


12345678910>>...4399