Releases: jakeasmith/http_build_url
Releases · jakeasmith/http_build_url
Updated tests
Thank you, @ozh for updating the tests! Notes from PR #22:
- add PHP 7.1
- remove PHP 5.2 : while the lib presumably works on 5.2, it has become too much of a hassle to maintain compatibility for tests on Travis. I think you could mention on the README that it should work despite not being covered by tests, but you could also consider that 5.2 is dead anyway :)
- simplify and speed up the build : you were previously requiring a number of dependencies just for the tests (while your library doesn't have any) via composer require codeclimate/php-test-reporter in before_install, but yet nothing was actually used in after_script. Eventually I believe this was useless, except for the sole creation of an autoload file then only used to include your library. Your library is now included for tests in a very simple bootstrap.php file
- I added compatibility functions for PHPUnit (see bootstrap.php) to allow testing all versions of PHP without requiring a particular and outdate PHPUnit version as previously. Now each PHP version use their respective most up to date PHPUnit package.
0.1.3
Minor bug fixes to bring into alignment with the original extension
0.1.2: Merge pull request #3 from Tape/fix-notice
Fix notice thrown when the index query is undefined
0.1.0 - Parity Achievement Unlocked
This weekend I finally had time to spin up a VM with pecl_http version 1 installed and write a full suite of tests against the original function. As far as I can tell we are now up to 100% parity! There were a few minor changes that were BC breaks from the ~0.0.2 release, but since there have only been 8 downloads I'm not too worried about it 😄
This release is fully compatible with PHP 5.3+ and HHVM.
0.0.2
Backward compatibility with PHP 5.3.
0.0.1
First draft! Beware, it isn't fully unit tested, but it does seem mildly functional so far.