Releases: parable-php/http
Releases · parable-php/http
Parable Http 1.0.2
Parable Http 1.0.1
Changes:
- Explicit null type for nullable parameters
Parable HTTP 1.0.0
Just a re-release locking the interface in place. First final release!
parable HTTP 0.5.2
Changes
- Added static analysis through psalm.
Parable HTTP 0.5.1
0.5.1
Changes
Requestcan now be instantiated without passing all values, in which cases it will set itself up by usingRequestFactory::getValuesFromServer.
Parable HTTP 0.5.0
0.5.0
Changes
dispatchnow terminates by default,dispatchAndTerminatehas been removed, anddispatchWithoutTerminatehas been added.Parable\Http\Exceptionhas been renamed toParable\Http\HttpExceptionfor clearer usage.
Parable HTTP 0.4.0
0.4.0
Changes
- Dropped support for php7, php8 only from now on.
Parable HTTP 0.3.1
0.3.1
Fixes
Uricould not deal with double ports, i.e.devvoh.com:8000:8000and would setdevvoh.com:8000as the host, causing issues. This is now fixed. The host is no longer allowed to have port numbers in it.
Parable HTTP 0.3.0
0.3.0
Changes
Urinow accepts anullvalue onwithPort(),withUser(),withPass(),withPath(),withQuery()andwithFragment()to reset these values properly.Urialso accepts an empty array inwithQueryArray()- Urls generated now always have a
/between query parts, fragments and the actual url.
Parable HTTP 0.2.1
0.2.1
Changes
Urihas gained 2 methods:getUriBaseString()andgetUriRestString. Now it's easily possible to get the base uri, or only the path/query/fragment side of one.