Skip to content

Releases: j0k3r/safecurl

3.0.1

27 Oct 07:50
da82156
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.0.0...3.0.1

3.0.0

11 Apr 14:45
f56319d
Compare
Choose a tag to compare
  • ⚠️ Drop PHP < 7.2 #8

2.0.4

17 Oct 12:08
71bdb1a
Compare
Choose a tag to compare
  • Revert "Add Accept: / header" #5 (see the PR for more information)
  • CS + Fix tests #6

2.0.3

28 Jun 07:42
569ec1b
Compare
Choose a tag to compare
  • Add Accept: */* header #4

2.0.2

23 Nov 08:44
Compare
Choose a tag to compare
  • Avoid HEAD request to return false because of empty body

2.0.1

15 Nov 08:46
Compare
Choose a tag to compare
  • Ensure header aren't part of the response

2.0.0

30 Oct 14:21
Compare
Choose a tag to compare

BC break:

  • remove ability to call execute statically

    Before:

    $response = SafeCurl::execute($url, $curlHandle);

    After:

    $safeCurl = new SafeCurl($curlHandle);
    $response = $safeCurl->execute($url);

Other ones:

  • use PSR-4
  • add travis & scrutinizer
  • fix README
  • add full coverage tests

v1.1.1

01 Oct 18:32
Compare
Choose a tag to compare
  • Fix Execption typo