Skip to content

Releases: sabre-io/http

4.2.3

12 Jun 07:55
Compare
Choose a tag to compare
  • #74, #77: Work around 4GB file size limit at 32 Bit systems

4.2.2

02 Jan 19:46
Compare
Choose a tag to compare
  • #72: Handling clients that send invalid Content-Length headers.

4.2.1

06 Jan 23:13
Compare
Choose a tag to compare
  • #56: getBodyAsString now returns at most as many bytes as the contents of
    the Content-Length header. This allows users to pass much larger strings
    without having to copy and truncate them.

4.2.0

04 Jan 21:54
Compare
Choose a tag to compare
  • This package now supports sabre/event 3.0.

4.1.0

04 Sep 22:03
Compare
Choose a tag to compare
  • The async client wouldn't wait() for new http requests being started
    after the (previous) last request in the queue was resolved.
  • Added Sabre\HTTP\Auth\Bearer, to easily extract a OAuth2 bearer token.

4.0.0

20 May 10:13
Compare
Choose a tag to compare
  • Deprecated: All static functions from Sabre\HTTP\URLUtil and
    Sabre\HTTP\Util moved to a separate functions.php, which is also
    autoloaded. The old functions are still there, but will be removed in a
    future version. (#49)

4.0.0-alpha3

20 May 10:13
Compare
Choose a tag to compare
4.0.0-alpha3 Pre-release
Pre-release
  • Added a parser for the HTTP Prefer header, as defined in [RFC7240][rfc7240].
  • Deprecated Sabre\HTTP\Util::parseHTTPDate, use Sabre\HTTP\parseDate().
  • Deprecated Sabre\HTTP\Util::toHTTPDate use Sabre\HTTP\toDate().

4.0.0-alpha2

20 May 10:15
Compare
Choose a tag to compare
4.0.0-alpha2 Pre-release
Pre-release
  • #45: Don't send more data than what is promised in the HTTP content-length.
    (@dratini0).
  • #43: getCredentials returns null if incomplete. (@Hywan)
  • #48: Now using php-cs-fixer to make our CS consistent (yay!)
  • This includes fixes released in version 3.0.5.

3.0.5

20 May 10:16
Compare
Choose a tag to compare
  • #47 #35: When re-using the client and doing any request after a HEAD
    request, the client discards the body.

4.0.0-alpha1

20 May 10:15
Compare
Choose a tag to compare
4.0.0-alpha1 Pre-release
Pre-release
  • #41: Fixing bugs related to comparing URLs in Request::getPath().
  • #41: This library now uses the sabre/uri package for uri handling.
  • Added 421 Misdirected Request from the HTTP/2.0 spec.