History log of /PHP-8.2/UPGRADING (Results 101 – 125 of 1683)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# f25474f7 11-Jun-2023 HypeMC

Add before_needle argument to strrchr()

Closes GH-11430


# 9eb032bd 24-Aug-2023 David CARLIER

[ci skip] Adding missing SO_ATTACH_REUSEPORT_CBPF tangential constants (#12042)


# 462792ee 22-Aug-2023 Máté Kocsis

Expose PDO_ODBC_TYPE to userland


# 1887f02b 21-Aug-2023 Ayesh Karunaratne

Add class constant types to Phar extension (#11826)


# 543eedf9 16-Aug-2023 Ayesh Karunaratne

[skip-ci] minor typo fixes in UPGRADING and CONTRIBUTING.md (#11976)


# d46dc569 23-Jul-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix various namespace prefix conflict resolution bugs and namespace shift bugs

There are two linked issues:

- Conflicts couldn't be resolved by changing the prefix name.
- Lacki

Fix various namespace prefix conflict resolution bugs and namespace shift bugs

There are two linked issues:

- Conflicts couldn't be resolved by changing the prefix name.
- Lacking a prefix would shift the namespace as the default namespace,
causing elements to suddenly become part of the namespace instead of
the attributes.

The output could still be improved by removing redundant namespace
declarations, but that's another issue. At least the output is
correct now.

Closes GH-11777.

show more ...


# 0b887042 14-Aug-2023 Kamil Tekiela

mysqli_field_seek return type changed to true (#11948)


# f907a009 11-Aug-2023 Kamil Tekiela

Align highlight_string|file with HTML standard and modern browsers

Closes GH-11913


# 23ba4cde 07-Aug-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Align DOMChildNode parent checks with spec

Closes GH-11905.


# 038b2ae2 08-Aug-2023 Máté Kocsis

Make the $enable parameter of odbc_autocommit() nullable (#11909)

Co-authored-by: George Peter Banyard <girgias@php.net>


# e701b2fe 05-Aug-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Make DOMChildNode::remove() run in O(1) performance

This method had some useless logic in it. It checked whether the child
node is a child of its parent, which is always true of course.

Make DOMChildNode::remove() run in O(1) performance

This method had some useless logic in it. It checked whether the child
node is a child of its parent, which is always true of course.
But I know where this check comes from, if you follow the spec closely
you'll find that the spec used to have explicit child and parent
arguments for the removal algorithm [1].
That's because that algorithm is written in a generic way, where the
parent and child arguments might not come from the same subtree.
However, in this particular case it *is* always the case that the child
is a child of its parent. The checks weren't needed back then for
DOMChildNode::remove(), and are still not needed today.

[1] e.g. https://web.archive.org/web/20180601092634/https://dom.spec.whatwg.org/#concept-node-remove

show more ...


# aecedd25 04-Aug-2023 George Peter Banyard

[skip ci] Reorder extension sections in UPGRADING


# 8ef0e4cf 04-Aug-2023 Arne_

Allow easter_date to process years after 2037 on 64bit systems (#11862)

Added a check to easter_date to allow it to run with years past
2037 when on a 64bit platform.


# 958a25e2 28-Jul-2023 Mikhail Galanin

Add "revalidate" time to opcache scripts list

Closes GH-11816


# b2dbf0a2 31-Jul-2023 Ilija Tovilo

Remove opcache.consistency_checks

This feature has been broken at least since the tracing JIT and inheritance
cache have been introduced. The attempted fix (GH-10798) was too complex. We

Remove opcache.consistency_checks

This feature has been broken at least since the tracing JIT and inheritance
cache have been introduced. The attempted fix (GH-10798) was too complex. We
have thus decided to remove this feature for now.

Closes GH-11832

show more ...


# 04c820fd 01-Aug-2023 Juliette <663378+jrfnl@users.noreply.github.com>

[ci skip] PHP 8.3 Upgrading: fix assert_options() typo + minor grammar tweaks (#11845)

Co-authored-by: jrfnl <jrfnl@users.noreply.github.com>


# e0bee2cc 01-Aug-2023 Juliette <663378+jrfnl@users.noreply.github.com>

[ci skip] PHP 8.3 Upgrading: move two entries to the right section (#11846)

These were both listed under "Backward Incompatible Changes", while, as far as I can see, these are "New Features"

[ci skip] PHP 8.3 Upgrading: move two entries to the right section (#11846)

These were both listed under "Backward Incompatible Changes", while, as far as I can see, these are "New Features".

Co-authored-by: jrfnl <jrfnl@users.noreply.github.com>

show more ...


# 78bfe682 31-Jul-2023 jrfnl

[ci skip] PHP 8.3 Upgrading:

add missing PGSQL functions/constants

Follow up on 10868, which introduced these functions and constants.

add missing PGSQL visibility constant

[ci skip] PHP 8.3 Upgrading:

add missing PGSQL functions/constants

Follow up on 10868, which introduced these functions and constants.

add missing PGSQL visibility constants

Follow up on 10935, which introduced these constants.

Close GH-11838

show more ...


# a8fa0b54 31-Jul-2023 jrfnl

[ci skip] PHP 8.3 Upgrading: fix pg_set_error_context_visibility typo

Ref: https://github.com/php/php-src/commit/21aaf3321fe47aa4e19a79616ca1966c212aa158

Close GH-11837


# c7cbe376 31-Jul-2023 jrfnl

[ci skip] PHP 8.3 Upgrading: add missing POSIX constants

Follow up on 10238 which added these constants.

Close GH-11835


# ae66a0d1 26-Jul-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Corrections to return type of loading DOM documents


# 0893b4be 28-Jul-2023 Remi Collet

add ZipArchive::LENGTH_TO_END and ZipArchive::LENGTH_UNCHECKED constants


# 722b5cc9 18-Jul-2023 George Peter Banyard

[skip ci] Update UPGRADING with all relevant information


# 0f64b01a 18-Jul-2023 Máté Kocsis

Add UPGRADING note about SNMP class constant type declarations

[skip-ci]


# de60872c 17-Jul-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Add new curl constants from curl until (including) 7.87 (#10459)

Fixes GH-10454


12345678910>>...68