History log of /php-src/ (Results 176 – 200 of 114380)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
9ebbe1e309-Nov-2024 Christoph M. Becker

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix GH-16723: CURLMOPT_PUSHFUNCTION issues


3a1a205f08-Nov-2024 Christoph M. Becker

Fix GH-16723: CURLMOPT_PUSHFUNCTION issues

We copy the source handler's FCCs to those of the destination.

We also fix the erroneous test assumption that the trampoline wouldn't

Fix GH-16723: CURLMOPT_PUSHFUNCTION issues

We copy the source handler's FCCs to those of the destination.

We also fix the erroneous test assumption that the trampoline wouldn't
be called.

Closes GH-16732.

show more ...

cc54e66a09-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix wrong merge


ef1e186809-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
Fix wrong merge


80dd5a0309-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix wrong merge

56bd057109-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

[ci skip] NEWS for ReflectionConstant additions

10f1f92409-Nov-2024 DanielEScherzer

Add `ReflectionConstant::getExtension()` and `::getExtensionName()` (#16603)

f8f9ac8209-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix memory leak in php_openssl_pkey_from_zval()
Fix various memory leaks related to openssl exports
Prevent unexpected array entry convers

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix memory leak in php_openssl_pkey_from_zval()
Fix various memory leaks related to openssl exports
Prevent unexpected array entry conversion when reading key

show more ...


fd68e9ba09-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
Fix memory leak in php_openssl_pkey_from_zval()
Fix various memory leaks related to openssl exports
Prevent unexpected array

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
Fix memory leak in php_openssl_pkey_from_zval()
Fix various memory leaks related to openssl exports
Prevent unexpected array entry conversion when reading key

show more ...


591fe92709-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix memory leak in php_openssl_pkey_from_zval()
Fix various memory leaks related to openssl exports
Prevent unexpected array

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix memory leak in php_openssl_pkey_from_zval()
Fix various memory leaks related to openssl exports
Prevent unexpected array entry conversion when reading key

show more ...


994e866c03-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix memory leak in php_openssl_pkey_from_zval()

Closes GH-16691.

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

Fix various memory leaks related to openssl exports

Closes GH-16692.

ac8d0e5703-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Prevent unexpected array entry conversion when reading key

When passing an array, the key entry can get converted to a string if it
is an object, but this actually modifies the original

Prevent unexpected array entry conversion when reading key

When passing an array, the key entry can get converted to a string if it
is an object, but this actually modifies the original array entry.
The test originally outputted:

```
array(2) {
[0]=>
string(...) => ...
[1]=>
string(0) ""
}
```

This is unexpected. Use zval_try_get_string() to prevent this behaviour.

Closes GH-16693.

show more ...

a3b27c0809-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Add Dom\Element::insertAdjacentHTML() (#16614)

963511bf08-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.4'

* PHP-8.4:
ext/soap: fix `make check` being invoked in `ext/soap`


a85a5ef308-Nov-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
ext/soap: fix `make check` being invoked in `ext/soap`


73c4fa0e08-Nov-2024 Maximilian Bosch

ext/soap: fix `make check` being invoked in `ext/soap`

On NixOS we run `make` & `make check` inside `ext/soap` which broke the test
like this:

001+ Fatal error: Uncaught Soa

ext/soap: fix `make check` being invoked in `ext/soap`

On NixOS we run `make` & `make check` inside `ext/soap` which broke the test
like this:

001+ Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'ext/soap/tests/gh15711.wsdl' : failed to load "ext/soap/tests/gh15711.wsdl": No such file or directory
002+ in /build/php-8.3.13/ext/soap/tests/gh15711.php:29
003+ Stack trace:
004+ #0 /build/php-8.3.13/ext/soap/tests/gh15711.php(29): SoapClient->__construct('ext/soap/tests/...', Array)
005+ #1 {main}
006+ thrown in /build/php-8.3.13/ext/soap/tests/gh15711.php on line 29

Fix is to make the path dependant on `__DIR__` as it's the case in other
testcases including WSDLs.

Closes GH-16733.

show more ...

e5654b7508-Nov-2024 Christoph M. Becker

Merge branch 'PHP-8.4'

* PHP-8.4:
[skip ci] Fix typo in test name


6e6373ab08-Nov-2024 Christoph M. Becker

[skip ci] Fix typo in test name

f3203f3408-Nov-2024 Christoph M. Becker

Merge branch 'PHP-8.4'

* PHP-8.4:
[skip ci] Fix array_any() and array_all() descriptions


7bbf2eae08-Nov-2024 FraOre

[skip ci] Fix array_any() and array_all() descriptions

Closes GH-16731.

27b4df4208-Nov-2024 Jakub Zelenka

Fix 8.4 NEWS file

84400eef08-Nov-2024 Jakub Zelenka

Merge branch 'PHP-8.4'


49bc011c08-Nov-2024 Jakub Zelenka

Merge branch 'PHP-8.3' into PHP-8.4


af8ebb1208-Nov-2024 Jakub Zelenka

Merge branch 'PHP-8.2' into PHP-8.3


12345678910>>...4576