Skip to content

Releases: parable-php/http

Parable HTTP 1.0.0

12 Mar 08:49
Compare
Choose a tag to compare

Just a re-release locking the interface in place. First final release!

parable HTTP 0.5.2

11 Mar 13:31
Compare
Choose a tag to compare
parable HTTP 0.5.2 Pre-release
Pre-release

Changes

  • Added static analysis through psalm.

Parable HTTP 0.5.1

04 Feb 10:41
Compare
Choose a tag to compare
Parable HTTP 0.5.1 Pre-release
Pre-release

0.5.1

Changes

  • Request can now be instantiated without passing all values, in which cases it will set itself up by using RequestFactory::getValuesFromServer.

Parable HTTP 0.5.0

04 Feb 10:01
Compare
Choose a tag to compare
Parable HTTP 0.5.0 Pre-release
Pre-release

0.5.0

Changes

  • dispatch now terminates by default, dispatchAndTerminate has been removed, and dispatchWithoutTerminate has been added.
  • Parable\Http\Exception has been renamed to Parable\Http\HttpException for clearer usage.

Parable HTTP 0.4.0

20 Jan 19:36
Compare
Choose a tag to compare
Parable HTTP 0.4.0 Pre-release
Pre-release

0.4.0

Changes

  • Dropped support for php7, php8 only from now on.

Parable HTTP 0.3.1

19 Jan 12:19
Compare
Choose a tag to compare
Parable HTTP 0.3.1 Pre-release
Pre-release

0.3.1

Fixes

  • Uri could not deal with double ports, i.e. devvoh.com:8000:8000 and would set devvoh.com:8000 as 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

08 Mar 18:44
Compare
Choose a tag to compare
Parable HTTP 0.3.0 Pre-release
Pre-release

0.3.0

Changes

  • Uri now accepts a null value on withPort(), withUser(), withPass(), withPath(), withQuery() and withFragment() to reset these values properly.
  • Uri also accepts an empty array in withQueryArray()
  • Urls generated now always have a / between query parts, fragments and the actual url.

Parable HTTP 0.2.1

15 Apr 10:29
Compare
Choose a tag to compare
Parable HTTP 0.2.1 Pre-release
Pre-release

0.2.1

Changes

  • Uri has gained 2 methods: getUriBaseString() and getUriRestString. Now it's easily possible to get the base uri, or only the path/query/fragment side of one.

Parable HTTP 0.2.0

27 Mar 19:05
Compare
Choose a tag to compare
Parable HTTP 0.2.0 Pre-release
Pre-release

0.2.0

Changes

  • Removed all with methods from Response, replaced with set methods. It's no longer immutable.
  • Traits have been renamed to HasHeaders and HasStatusCode. HasHeaders only provides get methods.
  • Methods on SupportsOutputBuffers have been suffixed with OutputBuffer(s) for clairity when used within a class using it.
  • Dispatcher has been renamed to ResponseDispatcher because Dispatcher is kinda generic.
  • ResponseDispatcher::setShouldTerminate() has been removed. ->dispatch() now never terminates, and ->dispatchAndTerminate() always does.

Parable HTTP 0.1.0

24 Mar 10:55
Compare
Choose a tag to compare
Parable HTTP 0.1.0 Pre-release
Pre-release

0.1.0

Changes

  • First release.