Lines Matching full:now

8 of PHP 5. The minimum supported PHP version is now PHP 7.2. Type hints and return
22 - Class `GuzzleHttp\Exception\ConnectException` now extends `GuzzleHttp\Exception\TransferException`
33 - We now look for environment variables in the `$_SERVER` super global, due to thread safety issues…
34 …s are now implemented as genuine methods on `GuzzleHttp\Client`, with strong typing. The original …
36 - Support for international domain names (IDN) is now disabled by default, and enabling it requires…
40 All internal native functions calls of Guzzle are now prefixed with a slash. This
57 Guzzle now uses [PSR-7](https://www.php-fig.org/psr/psr-7/) for HTTP messages.
71 is now present in the `GuzzleHttp\Psr7` namespace provided by the
73 - Guzzle no longer uses ReactPHP promises and now uses the
92 strings must now be passed into request objects as strings, or provided to
107 - As Guzzle now uses a middleware based systems the event system and RingPHP
116 - `GuzzleHttp\Subscriber\Cookie` is now provided by
118 - `GuzzleHttp\Subscriber\HttpError` is now provided by
120 - `GuzzleHttp\Subscriber\History` is now provided by
122 - `GuzzleHttp\Subscriber\Mock` is now provided by
124 - `GuzzleHttp\Subscriber\Prepare` is now provided by
126 - `GuzzleHttp\Subscriber\Redirect` is now provided by
128 - Guzzle now uses `Psr\Http\Message\UriInterface` (implements in
129 `GuzzleHttp\Psr7\Uri`) for URI support. `GuzzleHttp\Url` is now gone.
152 you now create a stack based middleware function that intercepts a request on
197 option is now used to send a multipart/form-data POST request.
212 Guzzle now uses [RingPHP](https://ringphp.readthedocs.org/en/latest) to send
214 is still supported, but it has now been renamed to `handler`. Instead of
215 passing a `GuzzleHttp\Adapter\AdapterInterface`, you must now pass a PHP
248 requests from completing. This can now be handled by throwing the exception or
275 - Now requires PHP 5.4 or greater.
278 recoverable are now wrapped by Guzzle.
282 now utilized in `GuzzleHttp\Event\EmitterInterface` (resulting in significant
312 - `setPath` now supports appending to an existing array via the `[]` notation.
316 Guzzle no longer requires Symfony's EventDispatcher component. Guzzle now uses
324 `GuzzleHttp\Event\Event`, and Guzzle now has an EventInterface in
328 event emitter of a request, client, etc. now uses the `getEmitter` method
411 - The constructor now accepts only an associative array. You can include a
427 reference to its request). This association is now managed through a
437 contain a body has been removed, and now `GuzzleHttp\Message\RequestInterface`
439 - Any method that previously accepts a `GuzzleHttp\Response` object now accept a
446 must now use the methods made available to `GuzzleHttp\Post\PostBodyInterface`
460 - `GuzzleHttp\Message\Header` has been removed. Header values are now simply
466 `GuzzleHttp\Post`. This interface has been simplified and now allows the
469 of the custom headers are now handled separately in specific
495 Streaming requests can now be created by a client directly, returning a
532 `GuzzleHttp\EntityBodyInterface` now require
534 longer uses `GuzzleHttp\EntityBody::factory` but now uses
538 - `Guzzle\Http\EntityBodyInterface` is now `GuzzleHttp\Stream\StreamInterface`
539 - `Guzzle\Http\EntityBody` is now `GuzzleHttp\Stream\Stream`
540 - `Guzzle\Http\CachingEntityBody` is now `GuzzleHttp\Stream\CachingStream`
541 - `Guzzle\Http\ReadLimitEntityBody` is now `GuzzleHttp\Stream\LimitStream`
549 emitted during the lifecycle of a request now emit a custom
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
560 - `error` is now an event that emits a `GuzzleHttp\Event\ErrorEvent`.
602 `Guzzle\Log` namespace has been removed. Guzzle now relies on
622 - Url: URL parsing is now performed in `GuzzleHttp\Url::fromString` (previously
684 `Guzzle\Http\EntityBodyInterface` now that they have been removed. The number
718 PHP requests are now implemented through the `GuzzleHttp\Adapter\StreamAdapter`.
725 - You can now enable E_USER_DEPRECATED warnings to see if you are using any deprecated methods.:
807 - Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin
821 * Mixed casing of headers are now forced to be a single consistent casing across all values for tha…
823 * Removed the whole changedHeader() function system of messages because all header changes now go t…
825 …Keeping the Host header and URL host in sync is now handled by overriding the addHeader method in …
827 …HeaderFactory which can map specific headers to specific header classes. There is now a Link heade…
860 * Removed cURL blacklist support. This is no longer necessary now that Expect, Accept, etc. are man…
864 * Most classes that used to require a `Guzzle\Service\Command\CommandInterface` typehint now reques…
868 * `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess
873 Base URLs of a client now follow the rules of https://datatracker.ietf.org/doc/html/rfc3986#section…
892 Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl o…
944 … query parameters are no longer aggregated using a callback function. `Guzzle\Http\Query` now has a
1146 Commands are now called Operations
1174 Namespace is now `Guzzle\Inflection\Inflector`
1178 Namespace is now `Guzzle\Plugin`. Many other changes occur within this namespace and are detailed i…
1182 Now `Guzzle\Plugin\Log\LogPlugin` and `Guzzle\Log` respectively.
1213 Now `Guzzle\Plugin\CurlAuth\CurlAuthPlugin`.
1217 Now `Guzzle\Plugin\Backoff\BackoffPlugin`, and other changes.