Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.73 KB

CHANGELOG.md

File metadata and controls

47 lines (28 loc) · 1.73 KB

Changelog

3.0.9

  • Lazily parse captured TLS certificates. This improves performance and memory usage. Additionally, openssl_x509_parse currently leaks memory. This fix ensures it leaks only if explicitly requested (until the PHP bug is fixed). See https://bugs.php.net/bug.php?id=75363.
  • Small performance improvements for connections not using a proxy.

3.0.8

  • Fixed null pointer access in response handling completely breaking the client.

3.0.7 [ borked ]

  • Clean references correctly, so unused bodies aren't consumed and the connection is closed.

3.0.6

  • Allow empty content type for multipart form fields.
  • Fail aborted requests correctly.
  • Apply transfer timeouts correctly (was previously a header timeout only).
  • Check for incomplete response bodies and error out in case of an incomplete body.
  • Close sockets if response body is not consumed instead of trying to silently consume it in the background, which might hang indefinitely (depending on the timeout).

3.0.5

  • Fixed multipart body bounaries not ending in \r\n.

3.0.4

  • Fixed GC issues if request bodies mismatches the specified content-length.

3.0.3

  • Read the public suffix list only once instead of once per check. This was supposed to work previously, but failed to set the $initialized flag.

3.0.2

  • Fixed issues with cookies when IDN support is not available.

3.0.1

  • Enforce body size limit also for compressed responses. This is a protection measure against malicious servers as described here.

3.0.0

  • Upgrade to Amp v2.
  • Major refactoring for streamed response bodies.
  • Updated redirect policy to use a new Request if the host changes.