今日は配列の始点インデックスが負値の際に次のインデックスが常にそれに +1 した値となるようにする RFC の実装、ライセンス等の年範囲表示の修正、PHP TestFest で追加されたテストの取り込み、Windows で CTRL+C をハンドルするための sapi_windows_set_ctrl_handler() の実装があった!
2019-02-09
pmmaga: Implement the negative_array_index RFC
- https://github.com/php/php-src/commit/6732028273b109cb342387ab5580c367f629d0ac
- 配列の始点インデックスが負値の際、次のインデックスが常にそれに +1 した値となるようにする RFC の実装
- 以前は始点の次のインデックスが 0 から始まるようになっていた
petk: Update and fix remaining year ranges (2019)
- https://github.com/php/php-src/commit/c245898bfaf47353a748ca6f2d37cd669e697ae4
- [7.4~]
- ライセンス等の年範囲表示を修正
royopa: updated typo in test
- https://github.com/php/php-src/commit/dc1937e386082dddbcab612889ad8cb15df88b73
- [7.4~]
- テストの typo 修正
- PHPTestFestBrasil というので 2017 年に行われた修正らしい
joelclermont: readline - add basic test
- https://github.com/php/php-src/commit/0506c0224a485812e7f675cb808432f5f98a4412
- [7.4~]
- ext/readline にテストを追加
- PHPTestFest2017 で 2017 年に行われた修正らしい
galvao: Add test for pcntl_getpriority() basic behaviour
- https://github.com/php/php-src/commit/d22dd5f93a687ed208ca39e451ae5ab7d7dc6be3
- [7.4~]
- ext/pcntl で、pcntl_getpriority() のテストを追加
- これも PHPTestFest2017 の奴かな
MarkBaker: Test to verify that closures can't be instantiated
- https://github.com/php/php-src/commit/c5f9855283733131b9900818e7bc6e997668ffdc
- [7.4~]
- Closure を直接 new できないことのテストを追加
- これも PHPTestFest2017 の奴っぽい
David Stockton: Add test for null return on version_compare with bad operator
- https://github.com/php/php-src/commit/e1dd8cd678e72475fe28f450657fb81665beaccc
- [7.4~]
- version_compare() へ誤った演算子を渡した際に null が返ることのテストを追加
- これも PHPTestFest2017 の奴
weltling: Implement FR #77377 handle CTRL+C in Windows
- https://github.com/php/php-src/commit/12bfd9a5f58c12b8f63011c130ec3bf6605ea33b
- [7.4~]
- Windows で CTRL+C をハンドルするための sapi_windows_set_ctrl_handler() の実装
weltling: Fix TS build, ref #77377
- https://github.com/php/php-src/commit/2ca3becd174b264b7367b510483b78e84f253295
- [7.4~]
- ↑でスレッドセーフ版のビルドがおかしかったのを修正