Lines Matching full:has
70 - The `guzzlehttp/streams` dependency has been removed. Stream functionality
79 Note: there has been movement in the React project to modify promises to
88 - `GuzzleHttp\Mimetypes` has been moved to a function in
99 - Guzzle no longer has a dependency on RingPHP. Due to the use of a middleware
108 integration has been removed. Note: while the event system has been removed,
133 - `GuzzleHttp\ClientInterface::getDefaultOption` has been renamed to
135 - `GuzzleHttp\ClientInterface::setDefaultOption` has been removed.
136 - The `json` and `xml` methods of response objects has been removed. With the
148 middlewares) or setting a value on an object. Guzzle v6 has chosen the
179 // Create a handler stack that has all of the default middlewares attached
199 `GuzzleHttp\Post\PostFile` has been removed. Use the `multipart` option to add
205 The `base_url` option has been renamed to `base_uri`.
214 is still supported, but it has now been renamed to `handler`. Instead of
240 The "procedural" global client has been removed with no replacement (e.g.,
244 ## `throwImmediately` has been removed
246 The concept of "throwImmediately" has been removed from exceptions and error
252 ## headers event has been removed
257 FnStream that has access to the transaction being sent. For example, when the
289 The `Guzzle\Batch` namespace has been removed. This is best left to
294 The `Guzzle\Cache` namespace has been removed. (Todo: No suitable replacement
295 has been implemented yet, but hoping to utilize a PSR cache interface).
301 - `FromConfigInterface` has been removed.
302 - `Guzzle\Common\Version` has been removed. The VERSION constant can be found
307 - `getAll` has been removed. Use `toArray` to convert a collection to an array.
308 - `inject` has been removed.
309 - `keySearch` has been removed.
324 `GuzzleHttp\Event\Event`, and Guzzle now has an EventInterface in
326 - `AbstractHasDispatcher` has moved to a trait, `HasEmitterTrait`, and
327 `HasDispatcherInterface` has moved to `HasEmitterInterface`. Retrieving the
364 - The cacert.pem certificate has been moved to `src/cacert.pem`.
371 - `Guzzle\Http\Url` has moved to `GuzzleHttp\Url`.
372 - `Guzzle\Http\QueryString` has moved to `GuzzleHttp\Query`.
375 - `GuzzleHttp\StaticClient` has been removed. Use the functions provided in
399 `GuzzleHttp\ClientInterface` has changed.
403 - `setUserAgent()` has been removed. Use a default request option instead. You
406 - `setSslVerification()` has been removed. Use default request options instead,
409 `GuzzleHttp\Client` has changed.
426 longer has a reference to it's response, and a response no loger has a
437 contain a body has been removed, and now `GuzzleHttp\Message\RequestInterface`
441 - `GuzzleHttp\Message\RequestFactoryInterface` has been renamed to
460 - `GuzzleHttp\Message\Header` has been removed. Header values are now simply
466 `GuzzleHttp\Post`. This interface has been simplified and now allows the
470 subscribers/plugins, and `GuzzleHttp\Message\HeaderValues::parseParams()` has
479 - `GuzzleHttp\Message\Response::getRawHeaders()` has been removed.
480 - `GuzzleHttp\Message\Response::getMessage()` has been removed.
488 - `GuzzleHttp\Message\Response::getRedirectCount()` has been removed. Use the
515 The `configureRedirects()` method has been removed in favor of a
542 - `Guzzle\Http\IoEmittyinEntityBody` has been removed.
547 emitted over the lifecycle of a request has been significantly reduced to make
554 - `request.before_send` has been renamed to `before` and now emits a
556 - `request.complete` has been renamed to `complete` and now emits a
558 - `request.sent` has been removed. Use `complete`.
559 - `request.success` has been removed. Use `complete`.
561 - `request.exception` has been removed. Use `error`.
562 - `request.receive.status_line` has been removed.
563 - `curl.callback.progress` has been removed. Use a custom `StreamInterface` to
565 - `curl.callback.write` has been removed. Use a custom `StreamInterface` to
567 - `curl.callback.read` has been removed. Use a custom `StreamInterface` to
582 The `Guzzle\Inflection` namespace has been removed. This is not a core concern
587 The `Guzzle\Iterator` namespace has been removed.
601 The LogPlugin has moved to https://github.com/guzzle/log-subscriber. The
602 `Guzzle\Log` namespace has been removed. Guzzle now relies on
603 `Psr\Log\LoggerInterface` for all logging. The MessageFormatter class has been
608 The `Guzzle\Parser` namespace has been removed. This was previously used to
611 so it has been removed.
613 - Cookie: Cookie parsing logic has been moved to
615 - Message: Message parsing logic for both requests and responses has been moved
619 - UriTemplate: URI template parsing has been moved to
628 The `Guzzle\Plugin` namespace has been renamed to `GuzzleHttp\Subscriber`.
632 code has moved to `GuzzleHttp\Cookie`.
644 - `GuzzleHttp\Plugin\Async` has been removed.
645 - `GuzzleHttp\Plugin\CurlAuth` has been removed.
646 - `GuzzleHttp\Plugin\ErrorResponse\ErrorResponsePlugin` has been removed. This
653 - `Guzzle\Http\Plugin\BackoffPlugin` has been rewritten to be much simpler
656 - `Guzzle\Http\Plugin\Cache\CachePlugin` has moved to
658 - `Guzzle\Http\Plugin\Log\LogPlugin` has moved to
660 - `Guzzle\Http\Plugin\Md5\Md5Plugin` has moved to
662 - `Guzzle\Http\Plugin\Mock\MockPlugin` has moved to
664 - `Guzzle\Http\Plugin\Oauth\OauthPlugin` has moved to
669 The service description layer of Guzzle has moved into two separate packages:
682 `Guzzle\Stream\StreamInterface` has been given a large update to cleanly take
685 of methods implemented by the `StreamInterface` has been drastically reduced to
696 - `rewind` has been removed. Use `seek(0)` for a similar behavior.
700 - `detachStream` has been renamed to `detach`.
701 - `feof` has been renamed to `eof`.
702 - `ftell` has been renamed to `tell`.
703 - `readLine` has moved from an instance method to a static class method of
708 `GuzzleHttp\Stream\MetadataStreamInterface` has been added to denote streams
715 The entire concept of the StreamRequestFactory has been removed. The way this
808 - `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(Reque…
810 - `CacheStorageInterface::fetch($key)` has changed to `fetch(RequestInterface $request);`
811 - `CacheStorageInterface::delete($key)` has changed to `delete(RequestInterface $request);`
814 $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache,
944 … query parameters are no longer aggregated using a callback function. `Guzzle\Http\Query` now has a