Lines Matching refs:client

219 * No longer adding default middlewares in the client ctor. These need to be
265 Instead, use one of the `*Async` methods of a client (e.g., `requestAsync`,
284 into a client constructor or request method.
303 * Nested futures are now resolved in the client rather than the RequestFsm
313 * Setting a request option to `null` when creating a request with a client will
422 Transaction object now exposes the request, response, and client as public
564 * Added the ability to provide an emitter to a client in the client constructor.
583 * The default parallel adapter of a client now correctly uses the MultiAdapter.
708 * Bug fix: Setting default options on a client now works
725 …request. You can pass a 'request.options' configuration setting to a client to apply default reque…
726 …every request created by a client (e.g. default query string variables, headers, curl options, etc…
761 $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. or
762 $client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))`.
763 * Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use $client->getConfig()->getPath('req…
786 * Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use $client->getConfig()->getP…
787 * Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use $client->getConfig()->setP…
790 * Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use `$client->getConfig()->setPath(…
913 …ded the ability to overwrite configuration settings in a client when grabbing a throwaway client f…
945 * BC: Setting a service description on a client will no longer modify the client's command factorie…
964 * CurlMulti is no longer reused globally. A new multi object is created per-client. This helps to i…
988 * Setting default headers on a client after setting the user-agent will not erase the user-agent se…
1088 * Added/moved client options:
1210 …escription commands are now inflected in the command factory rather than the client __call() method
1211 * Verbose cURL options are no longer enabled by default. Set curl.debug to true on a client to enab…
1325 * Added the ability to passed parameters to all requests created by a client
1333 * Emitting an event each time a client is generated by a ServiceBuilder