Lines Matching refs:is

45 * Fix: Test if response is readable before returning a summary in `RequestException::getResponseBod…
56 * Fix: Default headers when decode_content is specified
80 * Improvement: Don't include summary in exception message when body is empty [#1621](https://github…
105 * Only add scheme when host is present
106 * Fix drain case where content-length is the literal string zero
142 * Feature: HandlerStack is now more generic.
169 * Bug fix: Content-Type header is now added when using an explicitly provided
172 * Bug fix: Reason phrase is no longer cast to an int in some cases in the
208 * Added a better error message for when `body` is provided as an array. Please
224 * Removed the semantics of setting `default` to `true`. This is no longer
225 required now that the cURL loop is not ticked for async requests.
228 * Ensuring that `sink` is valid if saving to a file.
234 * `MultipartPostBody` is now part of the `guzzlehttp/psr7` package.
244 * URL scheme is now always lowercased.
251 owned by a request instance is no longer possible.
260 * Retry logic is now encapsulated in `GuzzleHttp\Middleware::retry`, which
261 means the `guzzlehttp/retry-subscriber` is now obsolete.
262 * Mocking responses is now handled using `GuzzleHttp\Handler\MockHandler`.
291 * Removed `GuzzleHttp\Query`. Query string handling is now handled using an
293 is serialized using PHP's `http_build_query`. If you need more control, you
304 * Finishing state transitions is now handled in the RequestFsm rather than the
310 * Pool class no longer uses recursion when a request is intercepted.
314 ensure that the option is not set. This allows you to overwrite default
321 * `"0"` is now an allowed URI path. See
337 pass true as the second argument to specify that the query string is a raw
338 string that should not be parsed or encoded (unless a call to getQuery() is
359 default unless the `rawString` argument is provided when setting the query
368 error and end events event though the response is unusable. This has been
369 corrected so that a response is not returned in the `getResponse` method of
396 look out for is that request and response objects no longer implement fluent
406 * Removed "functions.php", so that Guzzle is truly PSR-4 compliant. Except
420 concurrently is now handled using a single adapter.
428 first byte is written, you could check if the response headers match your
429 expectations, and if so, change the actual stream body that is being
439 constructor which is a mapping of the request option name mapping to a
471 using the `decode_content` request option. This is set to `true` by default
502 the request that is sent over the wire after any listeners may have already
532 * A `save_to` stream is now created lazily, which means that files are not
580 * The HTTP status code of a response is now set as the exception code of
621 * Test server is now a collection of static methods on a class
630 * Bug: CURLOPT_SSL_VERIFYHOST is now correctly set to false when setting `$certificateAuthority` to…
641 …For example `foo&bar=baz` is now correctly parsed and recognized as `foo&bar=baz` rather than `foo…
643 * Network access is now disabled when loading XML documents
649 * cURL error code 18 is now retried automatically in the BackoffPlugin
657 * The `debug` request parameter now checks if it is truthy rather than if it exists
667 * Bug fix: 0 is now an allowed value in a description parameter that has a default value (#430)
671 * Minimum PHP version is now properly specified as 5.3.3 (up from 5.3.2) (#420)
679 * Setting `additionalParameters` of a response to false is now honored when parsing responses with …
681 * No longer guessing Content-Type based on the path of a request. Content-Type is now only guessed …
689 * Bug fix: mimetype guessing based on a filename is now case-insensitive
714 * `Host` header can now diverge from the host part of a URL if the header is set manually
731 * Stream size in `Guzzle\Stream\PhpStreamRequestFactory` will now be set if Content-Length is retur…
737 * CachePlugin can automatically purge matching cached items when a non-idempotent request is sent t…
738 * CachePlugin now uses the Vary header to determine if a resource is a cache hit
791 * CacheKeyProviderInterface and DefaultCacheKeyProvider are no longer used. All of this logic is ha…
814 …HeaderFactory which can map specific headers to specific header classes. There is now a Link heade…
826 * Removed cURL blacklist support. This is no longer necessary now that Expect, Accept, etc. are man…
833 on a request while the request is still being transferred
845 * Bug: Better cleanup of one-time events across the board (when an event is meant to fire once, it …
872 * Bug fix: Removing `Transfer-Encoding: chunked` header when a Content-Length is present
876 …ponse on a request will write to the custom request body from the response body if one is specified
877 * LogPlugin now writes to php://output when STDERR is undefined
886 * Large refactoring to how CurlMulti handles work. There is now a proxy that sits in front of a poo…
907 * Bug fix: Removed code that attempted to determine the size of a stream when data is written to th…
908 * Bug fix: Not including an `oauth_token` if the value is null in the OauthPlugin.
920 * The bundled SSL certificate is now provided in the phar file and extracted when running Guzzle fr…
924 POST fields or files (the latter is only used when emulating a form POST in the browser).
946 * BC: Emitting IO events from a RequestMediator is now a parameter that must be set in a request's …
956 JSON is an array
964 * CurlMulti is no longer reused globally. A new multi object is created per-client. This helps to i…
966 * Guzzle\Http\QueryString does no longer manages the leading "?". This is now handled in Guzzle\Htt…
986 * CURLOPT_SSL_VERIFYHOST is never set to 1 because it is deprecated (see 5e0ff2ef20f839e19d1eeb298f…
1087 * Only sending an Expect header by default when a payload is greater than 1MB
1126 * Ensuring that a service is a string before doing strpos() checks on it when substituting services…
1139 * Added a way to get the data used when signing an Oauth request before a request is sent
1168 * Bug: A Collection object is no longer created each time a call is made to `Guzzle\Service\Command…
1169 * Bug: `+` is now treated as an encoded space when parsing query strings
1181 …* Query strings with empty variables will always show an equal sign unless the variable is set to …
1187 * Content-Length is set to 0 before emitting the request.before_send event when sending an empty re…
1212 …ns in a response start-line (e.g. HTTP/1.1 503 Service Unavailable: Back-end server is at capacity)
1237 * BC: Guzzle\Http\Cookie is now used to manage Set-Cookie data, not Cookie data
1272 * The body of a request is only shown on EntityEnclosingRequest objects that do not use POST files.
1273 …::validateConfig method into two methods. One to initialize when a command is created, and one to …
1283 * [BC] Guzzle\Service\Inspector::parseDocBlock is now protected. Adding getApiParamsForClass() with…
1300 * [BC] Guzzle\Guzzle is now deprecated
1309 * Adding a setOnComplete() method to Commands that is called when a command completes
1329 * Exception is thrown when JSON response body cannot be decoded
1330 * Added configurable magic method calls to clients and commands. This is off by default.
1333 * Emitting an event each time a client is generated by a ServiceBuilder