Skip to content

v1.1.0

Choose a tag to compare

@clue clue released this 21 Oct 10:31
· 182 commits to master since this release
  • Feature: Obey explicitly set HTTP protocol version for outgoing requests
    (#58, #59 by @WyriHaximus, @clue)

    $request = new Request('GET', $url);
    $request = $request->withProtocolVersion(1.1);
    
    $browser->send($request)->then(…);