この日はビルトインサーバが fork のある環境ではワーカプロセスを作れるようにする修正、メモリサニタイザ有効時は ifunc resolver を無効化する修正、cli で strcmp() が適切なのに memcmp() してた箇所を修正、Azure Pipelines の設定修正、不要な条件コンパイルの削除、php-config で ini に関する情報もとるようにする修正、finfo_file() が .tga の mime-type を誤っていた問題の修正、COM のコンストラクタのメモリリーク修正があった!
2019-06-29
nikic: Disable ifunc resolvers if memory sanitizer is used
- https://github.com/php/php-src/commit/2c8819b89cd305ed5013c7470934f3c5576d9348
- メモリサニタイザ有効時は ifunc resolver を無効化するよう修正
nikic: Use strcmp() in phpdbg_eol_global_update
- https://github.com/php/php-src/commit/45ab57339e4142953f3daf8615d9443c31dcdfa5
- [7.4~]
- sapi/cli で、strcmp() が適切な箇所で memcmp() してたのを修正
nikic: Increase timeout of asan job on master
- https://github.com/php/php-src/commit/796dc564e2aac61b1584ecbb9e8ab3641c26de42
- Azure Pipelines の設定で、asan のジョブの timeoutInMinutes を 120 から 150 に
petk: Remove HAVE_ERRNO_H from libgd
- https://github.com/php/php-src/commit/a014e50513599a59a0001ef0c0e4a187d97db9ff
- ext/gd で、libgd の HAVE_ERRNO_H の条件コンパイルの削除
petk: Update changelogs [ci skip]
- https://github.com/php/php-src/commit/df4bb13c55b39babfafdaf992f5653148e97c84f
- [7.4~]
- NEWS、UPGRADING.INTERNALS の更新
petk: Clean up files after the tests are run
- https://github.com/php/php-src/commit/57424f272c488d479e7caa9c7eb86247053fe883
- [7.4~]
- flock のテスト実行後に一時ファイルを掃除する修正
krakjoe: add ini config details to php-config
- https://github.com/php/php-src/commit/2d5f277a2d7129c58dce46270768787c145e79fb
- [7.4~]
- php-config で、ini についての設定情報を追加
krakjoe: implement support for workers in cli-server on platforms supporting fork
- https://github.com/php/php-src/commit/82effb3fc7bcab0efcc343b3e03355f5f2f663c9
- [7.4~]
- sapi/cli で、fork のある環境ではビルトインサーバがワーカプロセスを作れるよう修正
- PHP_CLI_SERVER_WORKERS で数を指定するもよう
jdoubleu: Fix #78183: finfo_file shows wrong mime-type for .tga file
- https://github.com/php/php-src/commit/855bbc88c94bd9317379ab67e96a7bfce2f7c195
- [7.2~]
- ext/fileinfo で、finfo_file() が .tga の mime-type を誤っていた問題の修正
jdoubleu: Add tests from fix #78183 from PHP-7.2
- https://github.com/php/php-src/commit/6cdeedb8de469388e378bd2292b89b725905fd18
- ext/fileinfo で、↑のテストケースを追加
weltling: Fix typo
- https://github.com/php/php-src/commit/b92669094767e54af3ef833f51072d53a8c788c0
- [7.3~]
- ext/fileinfo で、テストの typo を修正
cmb69: Fix memory leak in COM ctor
- https://github.com/php/php-src/commit/8357a696ab0b7aba4e3e147f48544c103ef9bf83
- [7.4~]
- ext/com_dotnet で、COM のコンストラクタのメモリリークを修正
weltling: Fix magic data
- https://github.com/php/php-src/commit/02fc2fe8c91130035e4815059925781eea2d2554
- [7.4~]
- ext/fileinfo で、.tga 対応で magic データファイルの修正