~jacekn/wordpress/wp-plugin-swift-storage-v2

« back to all changes in this revision

Viewing changes to vendor/guzzlehttp/guzzle/CHANGELOG.md

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CHANGELOG
 
2
=========
 
3
 
 
4
4.2.3 (2014-10-05)
 
5
------------------
 
6
 
 
7
* Using `getenv` rather than `$_SERVER` for proxy settings to prevent a
 
8
  potential security issue.
 
9
* Cookies now use a space between semicolons.
 
10
* Curl adapters now rewind the response body stream to match the behavior of
 
11
  the stream adapter.
 
12
* The body of a request in the MockAdapter is now only read after invoking a
 
13
  callback.
 
14
* Can now configure the maximum number of open curl multi handles.
 
15
* Added an XmlException for more XML parsing error information.
 
16
* Using STDOUT for debug only when it is available.
 
17
 
 
18
4.2.2 (2014-09-08)
 
19
------------------
 
20
 
 
21
* Fixed a memory leak in the CurlAdapter when reusing cURL handles.
 
22
* No longer using `request_fulluri` in stream adapter proxies.
 
23
* Relative redirects are now based on the last response, not the first response.
 
24
 
 
25
4.2.1 (2014-08-19)
 
26
------------------
 
27
 
 
28
* Ensuring that the StreamAdapter does not always add a Content-Type header
 
29
* Adding automated github releases with a phar and zip
 
30
 
 
31
4.2.0 (2014-08-17)
 
32
------------------
 
33
 
 
34
* Now merging in default options using a case-insensitive comparison.
 
35
  Closes https://github.com/guzzle/guzzle/issues/767
 
36
* Added the ability to automatically decode `Content-Encoding` response bodies
 
37
  using the `decode_content` request option. This is set to `true` by default
 
38
  to decode the response body if it comes over the wire with a
 
39
  `Content-Encoding`. Set this value to `false` to disable decoding the
 
40
  response content, and pass a string to provide a request `Accept-Encoding`
 
41
  header and turn on automatic response decoding. This feature now allows you
 
42
  to pass an `Accept-Encoding` header in the headers of a request but still
 
43
  disable automatic response decoding.
 
44
  Closes https://github.com/guzzle/guzzle/issues/764
 
45
* Added the ability to throw an exception immediately when transferring
 
46
  requests in parallel. Closes https://github.com/guzzle/guzzle/issues/760
 
47
* Updating guzzlehttp/streams dependency to ~2.1
 
48
* No longer utilizing the now deprecated namespaced methods from the stream
 
49
  package.
 
50
 
 
51
4.1.8 (2014-08-14)
 
52
------------------
 
53
 
 
54
* Fixed an issue in the CurlFactory that caused setting the `stream=false`
 
55
  request option to throw an exception.
 
56
  See: https://github.com/guzzle/guzzle/issues/769
 
57
* TransactionIterator now calls rewind on the inner iterator.
 
58
  See: https://github.com/guzzle/guzzle/pull/765
 
59
* You can now set the `Content-Type` header to `multipart/form-data`
 
60
  when creating POST requests to force multipart bodies.
 
61
  See https://github.com/guzzle/guzzle/issues/768
 
62
 
 
63
4.1.7 (2014-08-07)
 
64
------------------
 
65
 
 
66
* Fixed an error in the HistoryPlugin that caused the same request and response
 
67
  to be logged multiple times when an HTTP protocol error occurs.
 
68
* Ensuring that cURL does not add a default Content-Type when no Content-Type
 
69
  has been supplied by the user. This prevents the adapter layer from modifying
 
70
  the request that is sent over the wire after any listeners may have already
 
71
  put the request in a desired state (e.g., signed the request).
 
72
* Throwing an exception when you attempt to send requests that have the
 
73
  "stream" set to true in parallel using the MultiAdapter.
 
74
* Only calling curl_multi_select when there are active cURL handles. This was
 
75
  previously changed and caused performance problems on some systems due to PHP
 
76
  always selecting until the maximum select timeout.
 
77
* Fixed a bug where multipart/form-data POST fields were not correctly
 
78
  aggregated (e.g., values with "&").
 
79
 
 
80
4.1.6 (2014-08-03)
 
81
------------------
 
82
 
 
83
* Added helper methods to make it easier to represent messages as strings,
 
84
  including getting the start line and getting headers as a string.
 
85
 
 
86
4.1.5 (2014-08-02)
 
87
------------------
 
88
 
 
89
* Automatically retrying cURL "Connection died, retrying a fresh connect"
 
90
  errors when possible.
 
91
* cURL implementation cleanup
 
92
* Allowing multiple event subscriber listeners to be registered per event by
 
93
  passing an array of arrays of listener configuration.
 
94
 
 
95
4.1.4 (2014-07-22)
 
96
------------------
 
97
 
 
98
* Fixed a bug that caused multi-part POST requests with more than one field to
 
99
  serialize incorrectly.
 
100
* Paths can now be set to "0"
 
101
* `ResponseInterface::xml` now accepts a `libxml_options` option and added a
 
102
  missing default argument that was required when parsing XML response bodies.
 
103
* A `save_to` stream is now created lazily, which means that files are not
 
104
  created on disk unless a request succeeds.
 
105
 
 
106
4.1.3 (2014-07-15)
 
107
------------------
 
108
 
 
109
* Various fixes to multipart/form-data POST uploads
 
110
* Wrapping function.php in an if-statement to ensure Guzzle can be used
 
111
  globally and in a Composer install
 
112
* Fixed an issue with generating and merging in events to an event array
 
113
* POST headers are only applied before sending a request to allow you to change
 
114
  the query aggregator used before uploading
 
115
* Added much more robust query string parsing
 
116
* Fixed various parsing and normalization issues with URLs
 
117
* Fixing an issue where multi-valued headers were not being utilized correctly
 
118
  in the StreamAdapter
 
119
 
 
120
4.1.2 (2014-06-18)
 
121
------------------
 
122
 
 
123
* Added support for sending payloads with GET requests
 
124
 
 
125
4.1.1 (2014-06-08)
 
126
------------------
 
127
 
 
128
* Fixed an issue related to using custom message factory options in subclasses
 
129
* Fixed an issue with nested form fields in a multi-part POST
 
130
* Fixed an issue with using the `json` request option for POST requests
 
131
* Added `ToArrayInterface` to `GuzzleHttp\Cookie\CookieJar`
 
132
 
 
133
4.1.0 (2014-05-27)
 
134
------------------
 
135
 
 
136
* Added a `json` request option to easily serialize JSON payloads.
 
137
* Added a `GuzzleHttp\json_decode()` wrapper to safely parse JSON.
 
138
* Added `setPort()` and `getPort()` to `GuzzleHttp\Message\RequestInterface`.
 
139
* Added the ability to provide an emitter to a client in the client constructor.
 
140
* Added the ability to persist a cookie session using $_SESSION.
 
141
* Added a trait that can be used to add event listeners to an iterator.
 
142
* Removed request method constants from RequestInterface.
 
143
* Fixed warning when invalid request start-lines are received.
 
144
* Updated MessageFactory to work with custom request option methods.
 
145
* Updated cacert bundle to latest build.
 
146
 
 
147
4.0.2 (2014-04-16)
 
148
------------------
 
149
 
 
150
* Proxy requests using the StreamAdapter now properly use request_fulluri (#632)
 
151
* Added the ability to set scalars as POST fields (#628)
 
152
 
 
153
4.0.1 (2014-04-04)
 
154
------------------
 
155
 
 
156
* The HTTP status code of a response is now set as the exception code of
 
157
  RequestException objects.
 
158
* 303 redirects will now correctly switch from POST to GET requests.
 
159
* The default parallel adapter of a client now correctly uses the MultiAdapter.
 
160
* HasDataTrait now initializes the internal data array as an empty array so
 
161
  that the toArray() method always returns an array.
 
162
 
 
163
4.0.0 (2014-03-29)
 
164
------------------
 
165
 
 
166
* For more information on the 4.0 transition, see:
 
167
  http://mtdowling.com/blog/2014/03/15/guzzle-4-rc/
 
168
* For information on changes and upgrading, see:
 
169
  https://github.com/guzzle/guzzle/blob/master/UPGRADING.md#3x-to-40
 
170
* Added `GuzzleHttp\batch()` as a convenience function for sending requests in
 
171
  parallel without needing to write asynchronous code.
 
172
* Restructured how events are added to `GuzzleHttp\ClientInterface::sendAll()`.
 
173
  You can now pass a callable or an array of associative arrays where each
 
174
  associative array contains the "fn", "priority", and "once" keys.
 
175
 
 
176
4.0.0.rc-2 (2014-03-25)
 
177
-----------------------
 
178
 
 
179
* Removed `getConfig()` and `setConfig()` from clients to avoid confusion
 
180
  around whether things like base_url, message_factory, etc. should be able to
 
181
  be retrieved or modified.
 
182
* Added `getDefaultOption()` and `setDefaultOption()` to ClientInterface
 
183
* functions.php functions were renamed using snake_case to match PHP idioms
 
184
* Added support for `HTTP_PROXY`, `HTTPS_PROXY`, and
 
185
  `GUZZLE_CURL_SELECT_TIMEOUT` environment variables
 
186
* Added the ability to specify custom `sendAll()` event priorities
 
187
* Added the ability to specify custom stream context options to the stream
 
188
  adapter.
 
189
* Added a functions.php function for `get_path()` and `set_path()`
 
190
* CurlAdapter and MultiAdapter now use a callable to generate curl resources
 
191
* MockAdapter now properly reads a body and emits a `headers` event
 
192
* Updated Url class to check if a scheme and host are set before adding ":"
 
193
  and "//". This allows empty Url (e.g., "") to be serialized as "".
 
194
* Parsing invalid XML no longer emits warnings
 
195
* Curl classes now properly throw AdapterExceptions
 
196
* Various performance optimizations
 
197
* Streams are created with the faster `Stream\create()` function
 
198
* Marked deprecation_proxy() as internal
 
199
* Test server is now a collection of static methods on a class
 
200
 
 
201
4.0.0-rc.1 (2014-03-15)
 
202
-----------------------
 
203
 
 
204
* See https://github.com/guzzle/guzzle/blob/master/UPGRADING.md#3x-to-40
 
205
 
 
206
3.8.1 (2014-01-28)
 
207
------------------
 
208
 
 
209
* Bug: Always using GET requests when redirecting from a 303 response
 
210
* Bug: CURLOPT_SSL_VERIFYHOST is now correctly set to false when setting `$certificateAuthority` to false in
 
211
  `Guzzle\Http\ClientInterface::setSslVerification()`
 
212
* Bug: RedirectPlugin now uses strict RFC 3986 compliance when combining a base URL with a relative URL
 
213
* Bug: The body of a request can now be set to `"0"`
 
214
* Sending PHP stream requests no longer forces `HTTP/1.0`
 
215
* Adding more information to ExceptionCollection exceptions so that users have more context, including a stack trace of
 
216
  each sub-exception
 
217
* Updated the `$ref` attribute in service descriptions to merge over any existing parameters of a schema (rather than
 
218
  clobbering everything).
 
219
* Merging URLs will now use the query string object from the relative URL (thus allowing custom query aggregators)
 
220
* Query strings are now parsed in a way that they do no convert empty keys with no value to have a dangling `=`.
 
221
  For example `foo&bar=baz` is now correctly parsed and recognized as `foo&bar=baz` rather than `foo=&bar=baz`.
 
222
* Now properly escaping the regular expression delimiter when matching Cookie domains.
 
223
* Network access is now disabled when loading XML documents
 
224
 
 
225
3.8.0 (2013-12-05)
 
226
------------------
 
227
 
 
228
* Added the ability to define a POST name for a file
 
229
* JSON response parsing now properly walks additionalProperties
 
230
* cURL error code 18 is now retried automatically in the BackoffPlugin
 
231
* Fixed a cURL error when URLs contain fragments
 
232
* Fixed an issue in the BackoffPlugin retry event where it was trying to access all exceptions as if they were
 
233
  CurlExceptions
 
234
* CURLOPT_PROGRESS function fix for PHP 5.5 (69fcc1e)
 
235
* Added the ability for Guzzle to work with older versions of cURL that do not support `CURLOPT_TIMEOUT_MS`
 
236
* Fixed a bug that was encountered when parsing empty header parameters
 
237
* UriTemplate now has a `setRegex()` method to match the docs
 
238
* The `debug` request parameter now checks if it is truthy rather than if it exists
 
239
* Setting the `debug` request parameter to true shows verbose cURL output instead of using the LogPlugin
 
240
* Added the ability to combine URLs using strict RFC 3986 compliance
 
241
* Command objects can now return the validation errors encountered by the command
 
242
* Various fixes to cache revalidation (#437 and 29797e5)
 
243
* Various fixes to the AsyncPlugin
 
244
* Cleaned up build scripts
 
245
 
 
246
3.7.4 (2013-10-02)
 
247
------------------
 
248
 
 
249
* Bug fix: 0 is now an allowed value in a description parameter that has a default value (#430)
 
250
* Bug fix: SchemaFormatter now returns an integer when formatting to a Unix timestamp
 
251
  (see https://github.com/aws/aws-sdk-php/issues/147)
 
252
* Bug fix: Cleaned up and fixed URL dot segment removal to properly resolve internal dots
 
253
* Minimum PHP version is now properly specified as 5.3.3 (up from 5.3.2) (#420)
 
254
* Updated the bundled cacert.pem (#419)
 
255
* OauthPlugin now supports adding authentication to headers or query string (#425)
 
256
 
 
257
3.7.3 (2013-09-08)
 
258
------------------
 
259
 
 
260
* Added the ability to get the exception associated with a request/command when using `MultiTransferException` and
 
261
  `CommandTransferException`.
 
262
* Setting `additionalParameters` of a response to false is now honored when parsing responses with a service description
 
263
* Schemas are only injected into response models when explicitly configured.
 
264
* No longer guessing Content-Type based on the path of a request. Content-Type is now only guessed based on the path of
 
265
  an EntityBody.
 
266
* Bug fix: ChunkedIterator can now properly chunk a \Traversable as well as an \Iterator.
 
267
* Bug fix: FilterIterator now relies on `\Iterator` instead of `\Traversable`.
 
268
* Bug fix: Gracefully handling malformed responses in RequestMediator::writeResponseBody()
 
269
* Bug fix: Replaced call to canCache with canCacheRequest in the CallbackCanCacheStrategy of the CachePlugin
 
270
* Bug fix: Visiting XML attributes first before visting XML children when serializing requests
 
271
* Bug fix: Properly parsing headers that contain commas contained in quotes
 
272
* Bug fix: mimetype guessing based on a filename is now case-insensitive
 
273
 
 
274
3.7.2 (2013-08-02)
 
275
------------------
 
276
 
 
277
* Bug fix: Properly URL encoding paths when using the PHP-only version of the UriTemplate expander
 
278
  See https://github.com/guzzle/guzzle/issues/371
 
279
* Bug fix: Cookie domains are now matched correctly according to RFC 6265
 
280
  See https://github.com/guzzle/guzzle/issues/377
 
281
* Bug fix: GET parameters are now used when calculating an OAuth signature
 
282
* Bug fix: Fixed an issue with cache revalidation where the If-None-Match header was being double quoted
 
283
* `Guzzle\Common\AbstractHasDispatcher::dispatch()` now returns the event that was dispatched
 
284
* `Guzzle\Http\QueryString::factory()` now guesses the most appropriate query aggregator to used based on the input.
 
285
  See https://github.com/guzzle/guzzle/issues/379
 
286
* Added a way to add custom domain objects to service description parsing using the `operation.parse_class` event. See
 
287
  https://github.com/guzzle/guzzle/pull/380
 
288
* cURL multi cleanup and optimizations
 
289
 
 
290
3.7.1 (2013-07-05)
 
291
------------------
 
292
 
 
293
* Bug fix: Setting default options on a client now works
 
294
* Bug fix: Setting options on HEAD requests now works. See #352
 
295
* Bug fix: Moving stream factory before send event to before building the stream. See #353
 
296
* Bug fix: Cookies no longer match on IP addresses per RFC 6265
 
297
* Bug fix: Correctly parsing header parameters that are in `<>` and quotes
 
298
* Added `cert` and `ssl_key` as request options
 
299
* `Host` header can now diverge from the host part of a URL if the header is set manually
 
300
* `Guzzle\Service\Command\LocationVisitor\Request\XmlVisitor` was rewritten to change from using SimpleXML to XMLWriter
 
301
* OAuth parameters are only added via the plugin if they aren't already set
 
302
* Exceptions are now thrown when a URL cannot be parsed
 
303
* Returning `false` if `Guzzle\Http\EntityBody::getContentMd5()` fails
 
304
* Not setting a `Content-MD5` on a command if calculating the Content-MD5 fails via the CommandContentMd5Plugin
 
305
 
 
306
3.7.0 (2013-06-10)
 
307
------------------
 
308
 
 
309
* See UPGRADING.md for more information on how to upgrade.
 
310
* Requests now support the ability to specify an array of $options when creating a request to more easily modify a
 
311
  request. You can pass a 'request.options' configuration setting to a client to apply default request options to
 
312
  every request created by a client (e.g. default query string variables, headers, curl options, etc.).
 
313
* Added a static facade class that allows you to use Guzzle with static methods and mount the class to `\Guzzle`.
 
314
  See `Guzzle\Http\StaticClient::mount`.
 
315
* Added `command.request_options` to `Guzzle\Service\Command\AbstractCommand` to pass request options to requests
 
316
      created by a command (e.g. custom headers, query string variables, timeout settings, etc.).
 
317
* Stream size in `Guzzle\Stream\PhpStreamRequestFactory` will now be set if Content-Length is returned in the
 
318
  headers of a response
 
319
* Added `Guzzle\Common\Collection::setPath($path, $value)` to set a value into an array using a nested key
 
320
  (e.g. `$collection->setPath('foo/baz/bar', 'test'); echo $collection['foo']['bar']['bar'];`)
 
321
* ServiceBuilders now support storing and retrieving arbitrary data
 
322
* CachePlugin can now purge all resources for a given URI
 
323
* CachePlugin can automatically purge matching cached items when a non-idempotent request is sent to a resource
 
324
* CachePlugin now uses the Vary header to determine if a resource is a cache hit
 
325
* `Guzzle\Http\Message\Response` now implements `\Serializable`
 
326
* Added `Guzzle\Cache\CacheAdapterFactory::fromCache()` to more easily create cache adapters
 
327
* `Guzzle\Service\ClientInterface::execute()` now accepts an array, single command, or Traversable
 
328
* Fixed a bug in `Guzzle\Http\Message\Header\Link::addLink()`
 
329
* Better handling of calculating the size of a stream in `Guzzle\Stream\Stream` using fstat() and caching the size
 
330
* `Guzzle\Common\Exception\ExceptionCollection` now creates a more readable exception message
 
331
* Fixing BC break: Added back the MonologLogAdapter implementation rather than extending from PsrLog so that older
 
332
  Symfony users can still use the old version of Monolog.
 
333
* Fixing BC break: Added the implementation back in for `Guzzle\Http\Message\AbstractMessage::getTokenizedHeader()`.
 
334
  Now triggering an E_USER_DEPRECATED warning when used. Use `$message->getHeader()->parseParams()`.
 
335
* Several performance improvements to `Guzzle\Common\Collection`
 
336
* Added an `$options` argument to the end of the following methods of `Guzzle\Http\ClientInterface`:
 
337
  createRequest, head, delete, put, patch, post, options, prepareRequest
 
338
* Added an `$options` argument to the end of `Guzzle\Http\Message\Request\RequestFactoryInterface::createRequest()`
 
339
* Added an `applyOptions()` method to `Guzzle\Http\Message\Request\RequestFactoryInterface`
 
340
* Changed `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $body = null)` to
 
341
  `Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $options = array())`. You can still pass in a
 
342
  resource, string, or EntityBody into the $options parameter to specify the download location of the response.
 
343
* Changed `Guzzle\Common\Collection::__construct($data)` to no longer accepts a null value for `$data` but a
 
344
  default `array()`
 
345
* Added `Guzzle\Stream\StreamInterface::isRepeatable`
 
346
* Removed `Guzzle\Http\ClientInterface::setDefaultHeaders(). Use
 
347
  $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`. or
 
348
  $client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))`.
 
349
* Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use $client->getConfig()->getPath('request.options/headers')`.
 
350
* Removed `Guzzle\Http\ClientInterface::expandTemplate()`
 
351
* Removed `Guzzle\Http\ClientInterface::setRequestFactory()`
 
352
* Removed `Guzzle\Http\ClientInterface::getCurlMulti()`
 
353
* Removed `Guzzle\Http\Message\RequestInterface::canCache`
 
354
* Removed `Guzzle\Http\Message\RequestInterface::setIsRedirect`
 
355
* Removed `Guzzle\Http\Message\RequestInterface::isRedirect`
 
356
* Made `Guzzle\Http\Client::expandTemplate` and `getUriTemplate` protected methods.
 
357
* You can now enable E_USER_DEPRECATED warnings to see if you are using a deprecated method by setting
 
358
  `Guzzle\Common\Version::$emitWarnings` to true.
 
359
* Marked `Guzzle\Http\Message\Request::isResponseBodyRepeatable()` as deprecated. Use
 
360
      `$request->getResponseBody()->isRepeatable()` instead.
 
361
* Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use
 
362
  `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead.
 
363
* Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use
 
364
  `Guzzle\Plugin\Cache\DefaultCanCacheStrategy->canCacheRequest()` instead.
 
365
* Marked `Guzzle\Http\Message\Request::setIsRedirect()` as deprecated. Use the HistoryPlugin instead.
 
366
* Marked `Guzzle\Http\Message\Request::isRedirect()` as deprecated. Use the HistoryPlugin instead.
 
367
* Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated
 
368
* Marked 'command.headers', 'command.response_body' and 'command.on_complete' as deprecated for AbstractCommand.
 
369
  These will work through Guzzle 4.0
 
370
* Marked 'request.params' for `Guzzle\Http\Client` as deprecated. Use [request.options][params].
 
371
* Marked `Guzzle\Service\Client::enableMagicMethods()` as deprecated. Magic methods can no longer be disabled on a Guzzle\Service\Client.
 
372
* Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use $client->getConfig()->getPath('request.options/headers')`.
 
373
* Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use $client->getConfig()->setPath('request.options/headers/{header_name}', 'value')`.
 
374
* Marked `Guzzle\Parser\Url\UrlParser` as deprecated. Just use PHP's `parse_url()` and percent encode your UTF-8.
 
375
* Marked `Guzzle\Common\Collection::inject()` as deprecated.
 
376
* Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use `$client->getConfig()->setPath('request.options/auth', array('user', 'pass', 'Basic|Digest');`
 
377
* CacheKeyProviderInterface and DefaultCacheKeyProvider are no longer used. All of this logic is handled in a
 
378
  CacheStorageInterface. These two objects and interface will be removed in a future version.
 
379
* Always setting X-cache headers on cached responses
 
380
* Default cache TTLs are now handled by the CacheStorageInterface of a CachePlugin
 
381
* `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(RequestInterface
 
382
  $request, Response $response);`
 
383
* `CacheStorageInterface::fetch($key)` has changed to `fetch(RequestInterface $request);`
 
384
* `CacheStorageInterface::delete($key)` has changed to `delete(RequestInterface $request);`
 
385
* Added `CacheStorageInterface::purge($url)`
 
386
* `DefaultRevalidation::__construct(CacheKeyProviderInterface $cacheKey, CacheStorageInterface $cache, CachePlugin
 
387
  $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache,
 
388
  CanCacheStrategyInterface $canCache = null)`
 
389
* Added `RevalidationInterface::shouldRevalidate(RequestInterface $request, Response $response)`
 
390
 
 
391
3.6.0 (2013-05-29)
 
392
------------------
 
393
 
 
394
* ServiceDescription now implements ToArrayInterface
 
395
* Added command.hidden_params to blacklist certain headers from being treated as additionalParameters
 
396
* Guzzle can now correctly parse incomplete URLs
 
397
* Mixed casing of headers are now forced to be a single consistent casing across all values for that header.
 
398
* Messages internally use a HeaderCollection object to delegate handling case-insensitive header resolution
 
399
* Removed the whole changedHeader() function system of messages because all header changes now go through addHeader().
 
400
* Specific header implementations can be created for complex headers. When a message creates a header, it uses a
 
401
  HeaderFactory which can map specific headers to specific header classes. There is now a Link header and
 
402
  CacheControl header implementation.
 
403
* Removed from interface: Guzzle\Http\ClientInterface::setUriTemplate
 
404
* Removed from interface: Guzzle\Http\ClientInterface::setCurlMulti()
 
405
* Removed Guzzle\Http\Message\Request::receivedRequestHeader() and implemented this functionality in
 
406
  Guzzle\Http\Curl\RequestMediator
 
407
* Removed the optional $asString parameter from MessageInterface::getHeader(). Just cast the header to a string.
 
408
* Removed the optional $tryChunkedTransfer option from Guzzle\Http\Message\EntityEnclosingRequestInterface
 
409
* Removed the $asObjects argument from Guzzle\Http\Message\MessageInterface::getHeaders()
 
410
* Removed Guzzle\Parser\ParserRegister::get(). Use getParser()
 
411
* Removed Guzzle\Parser\ParserRegister::set(). Use registerParser().
 
412
* All response header helper functions return a string rather than mixing Header objects and strings inconsistently
 
413
* Removed cURL blacklist support. This is no longer necessary now that Expect, Accept, etc. are managed by Guzzle
 
414
  directly via interfaces
 
415
* Removed the injecting of a request object onto a response object. The methods to get and set a request still exist
 
416
  but are a no-op until removed.
 
417
* Most classes that used to require a ``Guzzle\Service\Command\CommandInterface` typehint now request a
 
418
  `Guzzle\Service\Command\ArrayCommandInterface`.
 
419
* Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response
 
420
  on a request while the request is still being transferred
 
421
* The ability to case-insensitively search for header values
 
422
* Guzzle\Http\Message\Header::hasExactHeader
 
423
* Guzzle\Http\Message\Header::raw. Use getAll()
 
424
* Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object
 
425
  instead.
 
426
* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess
 
427
* Added the ability to cast Model objects to a string to view debug information.
 
428
 
 
429
3.5.0 (2013-05-13)
 
430
------------------
 
431
 
 
432
* Bug: Fixed a regression so that request responses are parsed only once per oncomplete event rather than multiple times
 
433
* Bug: Better cleanup of one-time events accross the board (when an event is meant to fire once, it will now remove
 
434
  itself from the EventDispatcher)
 
435
* Bug: `Guzzle\Log\MessageFormatter` now properly writes "total_time" and "connect_time" values
 
436
* Bug: Cloning an EntityEnclosingRequest now clones the EntityBody too
 
437
* Bug: Fixed an undefined index error when parsing nested JSON responses with a sentAs parameter that reference a
 
438
  non-existent key
 
439
* Bug: All __call() method arguments are now required (helps with mocking frameworks)
 
440
* Deprecating Response::getRequest() and now using a shallow clone of a request object to remove a circular reference
 
441
  to help with refcount based garbage collection of resources created by sending a request
 
442
* Deprecating ZF1 cache and log adapters. These will be removed in the next major version.
 
443
* Deprecating `Response::getPreviousResponse()` (method signature still exists, but it'sdeprecated). Use the
 
444
  HistoryPlugin for a history.
 
445
* Added a `responseBody` alias for the `response_body` location
 
446
* Refactored internals to no longer rely on Response::getRequest()
 
447
* HistoryPlugin can now be cast to a string
 
448
* HistoryPlugin now logs transactions rather than requests and responses to more accurately keep track of the requests
 
449
  and responses that are sent over the wire
 
450
* Added `getEffectiveUrl()` and `getRedirectCount()` to Response objects
 
451
 
 
452
3.4.3 (2013-04-30)
 
453
------------------
 
454
 
 
455
* Bug fix: Fixing bug introduced in 3.4.2 where redirect responses are duplicated on the final redirected response
 
456
* Added a check to re-extract the temp cacert bundle from the phar before sending each request
 
457
 
 
458
3.4.2 (2013-04-29)
 
459
------------------
 
460
 
 
461
* Bug fix: Stream objects now work correctly with "a" and "a+" modes
 
462
* Bug fix: Removing `Transfer-Encoding: chunked` header when a Content-Length is present
 
463
* Bug fix: AsyncPlugin no longer forces HEAD requests
 
464
* Bug fix: DateTime timezones are now properly handled when using the service description schema formatter
 
465
* Bug fix: CachePlugin now properly handles stale-if-error directives when a request to the origin server fails
 
466
* Setting a response on a request will write to the custom request body from the response body if one is specified
 
467
* LogPlugin now writes to php://output when STDERR is undefined
 
468
* Added the ability to set multiple POST files for the same key in a single call
 
469
* application/x-www-form-urlencoded POSTs now use the utf-8 charset by default
 
470
* Added the ability to queue CurlExceptions to the MockPlugin
 
471
* Cleaned up how manual responses are queued on requests (removed "queued_response" and now using request.before_send)
 
472
* Configuration loading now allows remote files
 
473
 
 
474
3.4.1 (2013-04-16)
 
475
------------------
 
476
 
 
477
* Large refactoring to how CurlMulti handles work. There is now a proxy that sits in front of a pool of CurlMulti
 
478
  handles. This greatly simplifies the implementation, fixes a couple bugs, and provides a small performance boost.
 
479
* Exceptions are now properly grouped when sending requests in parallel
 
480
* Redirects are now properly aggregated when a multi transaction fails
 
481
* Redirects now set the response on the original object even in the event of a failure
 
482
* Bug fix: Model names are now properly set even when using $refs
 
483
* Added support for PHP 5.5's CurlFile to prevent warnings with the deprecated @ syntax
 
484
* Added support for oauth_callback in OAuth signatures
 
485
* Added support for oauth_verifier in OAuth signatures
 
486
* Added support to attempt to retrieve a command first literally, then ucfirst, the with inflection
 
487
 
 
488
3.4.0 (2013-04-11)
 
489
------------------
 
490
 
 
491
* Bug fix: URLs are now resolved correctly based on http://tools.ietf.org/html/rfc3986#section-5.2. #289
 
492
* Bug fix: Absolute URLs with a path in a service description will now properly override the base URL. #289
 
493
* Bug fix: Parsing a query string with a single PHP array value will now result in an array. #263
 
494
* Bug fix: Better normalization of the User-Agent header to prevent duplicate headers. #264.
 
495
* Bug fix: Added `number` type to service descriptions.
 
496
* Bug fix: empty parameters are removed from an OAuth signature
 
497
* Bug fix: Revalidating a cache entry prefers the Last-Modified over the Date header
 
498
* Bug fix: Fixed "array to string" error when validating a union of types in a service description
 
499
* Bug fix: Removed code that attempted to determine the size of a stream when data is written to the stream
 
500
* Bug fix: Not including an `oauth_token` if the value is null in the OauthPlugin.
 
501
* Bug fix: Now correctly aggregating successful requests and failed requests in CurlMulti when a redirect occurs.
 
502
* The new default CURLOPT_TIMEOUT setting has been increased to 150 seconds so that Guzzle works on poor connections.
 
503
* Added a feature to EntityEnclosingRequest::setBody() that will automatically set the Content-Type of the request if
 
504
  the Content-Type can be determined based on the entity body or the path of the request.
 
505
* Added the ability to overwrite configuration settings in a client when grabbing a throwaway client from a builder.
 
506
* Added support for a PSR-3 LogAdapter.
 
507
* Added a `command.after_prepare` event
 
508
* Added `oauth_callback` parameter to the OauthPlugin
 
509
* Added the ability to create a custom stream class when using a stream factory
 
510
* Added a CachingEntityBody decorator
 
511
* Added support for `additionalParameters` in service descriptions to define how custom parameters are serialized.
 
512
* The bundled SSL certificate is now provided in the phar file and extracted when running Guzzle from a phar.
 
513
* You can now send any EntityEnclosingRequest with POST fields or POST files and cURL will handle creating bodies
 
514
* POST requests using a custom entity body are now treated exactly like PUT requests but with a custom cURL method. This
 
515
  means that the redirect behavior of POST requests with custom bodies will not be the same as POST requests that use
 
516
  POST fields or files (the latter is only used when emulating a form POST in the browser).
 
517
* Lots of cleanup to CurlHandle::factory and RequestFactory::createRequest
 
518
 
 
519
3.3.1 (2013-03-10)
 
520
------------------
 
521
 
 
522
* Added the ability to create PHP streaming responses from HTTP requests
 
523
* Bug fix: Running any filters when parsing response headers with service descriptions
 
524
* Bug fix: OauthPlugin fixes to allow for multi-dimensional array signing, and sorting parameters before signing
 
525
* Bug fix: Removed the adding of default empty arrays and false Booleans to responses in order to be consistent across
 
526
  response location visitors.
 
527
* Bug fix: Removed the possibility of creating configuration files with circular dependencies
 
528
* RequestFactory::create() now uses the key of a POST file when setting the POST file name
 
529
* Added xmlAllowEmpty to serialize an XML body even if no XML specific parameters are set
 
530
 
 
531
3.3.0 (2013-03-03)
 
532
------------------
 
533
 
 
534
* A large number of performance optimizations have been made
 
535
* Bug fix: Added 'wb' as a valid write mode for streams
 
536
* Bug fix: `Guzzle\Http\Message\Response::json()` now allows scalar values to be returned
 
537
* Bug fix: Fixed bug in `Guzzle\Http\Message\Response` where wrapping quotes were stripped from `getEtag()`
 
538
* BC: Removed `Guzzle\Http\Utils` class
 
539
* BC: Setting a service description on a client will no longer modify the client's command factories.
 
540
* BC: Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl options using
 
541
  the 'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io'
 
542
* BC: `Guzzle\Stream\Stream::getWrapper()` and `Guzzle\Stream\Stream::getSteamType()` are no longer converted to
 
543
  lowercase
 
544
* Operation parameter objects are now lazy loaded internally
 
545
* Added ErrorResponsePlugin that can throw errors for responses defined in service description operations' errorResponses
 
546
* Added support for instantiating responseType=class responseClass classes. Classes must implement
 
547
  `Guzzle\Service\Command\ResponseClassInterface`
 
548
* Added support for additionalProperties for top-level parameters in responseType=model responseClasses. These
 
549
  additional properties also support locations and can be used to parse JSON responses where the outermost part of the
 
550
  JSON is an array
 
551
* Added support for nested renaming of JSON models (rename sentAs to name)
 
552
* CachePlugin
 
553
    * Added support for stale-if-error so that the CachePlugin can now serve stale content from the cache on error
 
554
    * Debug headers can now added to cached response in the CachePlugin
 
555
 
 
556
3.2.0 (2013-02-14)
 
557
------------------
 
558
 
 
559
* CurlMulti is no longer reused globally. A new multi object is created per-client. This helps to isolate clients.
 
560
* URLs with no path no longer contain a "/" by default
 
561
* Guzzle\Http\QueryString does no longer manages the leading "?". This is now handled in Guzzle\Http\Url.
 
562
* BadResponseException no longer includes the full request and response message
 
563
* Adding setData() to Guzzle\Service\Description\ServiceDescriptionInterface
 
564
* Adding getResponseBody() to Guzzle\Http\Message\RequestInterface
 
565
* Various updates to classes to use ServiceDescriptionInterface type hints rather than ServiceDescription
 
566
* Header values can now be normalized into distinct values when multiple headers are combined with a comma separated list
 
567
* xmlEncoding can now be customized for the XML declaration of a XML service description operation
 
568
* Guzzle\Http\QueryString now uses Guzzle\Http\QueryAggregator\QueryAggregatorInterface objects to add custom value
 
569
  aggregation and no longer uses callbacks
 
570
* The URL encoding implementation of Guzzle\Http\QueryString can now be customized
 
571
* Bug fix: Filters were not always invoked for array service description parameters
 
572
* Bug fix: Redirects now use a target response body rather than a temporary response body
 
573
* Bug fix: The default exponential backoff BackoffPlugin was not giving when the request threshold was exceeded
 
574
* Bug fix: Guzzle now takes the first found value when grabbing Cache-Control directives
 
575
 
 
576
3.1.2 (2013-01-27)
 
577
------------------
 
578
 
 
579
* Refactored how operation responses are parsed. Visitors now include a before() method responsible for parsing the
 
580
  response body. For example, the XmlVisitor now parses the XML response into an array in the before() method.
 
581
* Fixed an issue where cURL would not automatically decompress responses when the Accept-Encoding header was sent
 
582
* CURLOPT_SSL_VERIFYHOST is never set to 1 because it is deprecated (see 5e0ff2ef20f839e19d1eeb298f90ba3598784444)
 
583
* Fixed a bug where redirect responses were not chained correctly using getPreviousResponse()
 
584
* Setting default headers on a client after setting the user-agent will not erase the user-agent setting
 
585
 
 
586
3.1.1 (2013-01-20)
 
587
------------------
 
588
 
 
589
* Adding wildcard support to Guzzle\Common\Collection::getPath()
 
590
* Adding alias support to ServiceBuilder configs
 
591
* Adding Guzzle\Service\Resource\CompositeResourceIteratorFactory and cleaning up factory interface
 
592
 
 
593
3.1.0 (2013-01-12)
 
594
------------------
 
595
 
 
596
* BC: CurlException now extends from RequestException rather than BadResponseException
 
597
* BC: Renamed Guzzle\Plugin\Cache\CanCacheStrategyInterface::canCache() to canCacheRequest() and added CanCacheResponse()
 
598
* Added getData to ServiceDescriptionInterface
 
599
* Added context array to RequestInterface::setState()
 
600
* Bug: Removing hard dependency on the BackoffPlugin from Guzzle\Http
 
601
* Bug: Adding required content-type when JSON request visitor adds JSON to a command
 
602
* Bug: Fixing the serialization of a service description with custom data
 
603
* Made it easier to deal with exceptions thrown when transferring commands or requests in parallel by providing
 
604
  an array of successful and failed responses
 
605
* Moved getPath from Guzzle\Service\Resource\Model to Guzzle\Common\Collection
 
606
* Added Guzzle\Http\IoEmittingEntityBody
 
607
* Moved command filtration from validators to location visitors
 
608
* Added `extends` attributes to service description parameters
 
609
* Added getModels to ServiceDescriptionInterface
 
610
 
 
611
3.0.7 (2012-12-19)
 
612
------------------
 
613
 
 
614
* Fixing phar detection when forcing a cacert to system if null or true
 
615
* Allowing filename to be passed to `Guzzle\Http\Message\Request::setResponseBody()`
 
616
* Cleaning up `Guzzle\Common\Collection::inject` method
 
617
* Adding a response_body location to service descriptions
 
618
 
 
619
3.0.6 (2012-12-09)
 
620
------------------
 
621
 
 
622
* CurlMulti performance improvements
 
623
* Adding setErrorResponses() to Operation
 
624
* composer.json tweaks
 
625
 
 
626
3.0.5 (2012-11-18)
 
627
------------------
 
628
 
 
629
* Bug: Fixing an infinite recursion bug caused from revalidating with the CachePlugin
 
630
* Bug: Response body can now be a string containing "0"
 
631
* Bug: Using Guzzle inside of a phar uses system by default but now allows for a custom cacert
 
632
* Bug: QueryString::fromString now properly parses query string parameters that contain equal signs
 
633
* Added support for XML attributes in service description responses
 
634
* DefaultRequestSerializer now supports array URI parameter values for URI template expansion
 
635
* Added better mimetype guessing to requests and post files
 
636
 
 
637
3.0.4 (2012-11-11)
 
638
------------------
 
639
 
 
640
* Bug: Fixed a bug when adding multiple cookies to a request to use the correct glue value
 
641
* Bug: Cookies can now be added that have a name, domain, or value set to "0"
 
642
* Bug: Using the system cacert bundle when using the Phar
 
643
* Added json and xml methods to Response to make it easier to parse JSON and XML response data into data structures
 
644
* Enhanced cookie jar de-duplication
 
645
* Added the ability to enable strict cookie jars that throw exceptions when invalid cookies are added
 
646
* Added setStream to StreamInterface to actually make it possible to implement custom rewind behavior for entity bodies
 
647
* Added the ability to create any sort of hash for a stream rather than just an MD5 hash
 
648
 
 
649
3.0.3 (2012-11-04)
 
650
------------------
 
651
 
 
652
* Implementing redirects in PHP rather than cURL
 
653
* Added PECL URI template extension and using as default parser if available
 
654
* Bug: Fixed Content-Length parsing of Response factory
 
655
* Adding rewind() method to entity bodies and streams. Allows for custom rewinding of non-repeatable streams.
 
656
* Adding ToArrayInterface throughout library
 
657
* Fixing OauthPlugin to create unique nonce values per request
 
658
 
 
659
3.0.2 (2012-10-25)
 
660
------------------
 
661
 
 
662
* Magic methods are enabled by default on clients
 
663
* Magic methods return the result of a command
 
664
* Service clients no longer require a base_url option in the factory
 
665
* Bug: Fixed an issue with URI templates where null template variables were being expanded
 
666
 
 
667
3.0.1 (2012-10-22)
 
668
------------------
 
669
 
 
670
* Models can now be used like regular collection objects by calling filter, map, etc.
 
671
* Models no longer require a Parameter structure or initial data in the constructor
 
672
* Added a custom AppendIterator to get around a PHP bug with the `\AppendIterator`
 
673
 
 
674
3.0.0 (2012-10-15)
 
675
------------------
 
676
 
 
677
* Rewrote service description format to be based on Swagger
 
678
    * Now based on JSON schema
 
679
    * Added nested input structures and nested response models
 
680
    * Support for JSON and XML input and output models
 
681
    * Renamed `commands` to `operations`
 
682
    * Removed dot class notation
 
683
    * Removed custom types
 
684
* Broke the project into smaller top-level namespaces to be more component friendly
 
685
* Removed support for XML configs and descriptions. Use arrays or JSON files.
 
686
* Removed the Validation component and Inspector
 
687
* Moved all cookie code to Guzzle\Plugin\Cookie
 
688
* Magic methods on a Guzzle\Service\Client now return the command un-executed.
 
689
* Calling getResult() or getResponse() on a command will lazily execute the command if needed.
 
690
* Now shipping with cURL's CA certs and using it by default
 
691
* Added previousResponse() method to response objects
 
692
* No longer sending Accept and Accept-Encoding headers on every request
 
693
* Only sending an Expect header by default when a payload is greater than 1MB
 
694
* Added/moved client options:
 
695
    * curl.blacklist to curl.option.blacklist
 
696
    * Added ssl.certificate_authority
 
697
* Added a Guzzle\Iterator component
 
698
* Moved plugins from Guzzle\Http\Plugin to Guzzle\Plugin
 
699
* Added a more robust backoff retry strategy (replaced the ExponentialBackoffPlugin)
 
700
* Added a more robust caching plugin
 
701
* Added setBody to response objects
 
702
* Updating LogPlugin to use a more flexible MessageFormatter
 
703
* Added a completely revamped build process
 
704
* Cleaning up Collection class and removing default values from the get method
 
705
* Fixed ZF2 cache adapters
 
706
 
 
707
2.8.8 (2012-10-15)
 
708
------------------
 
709
 
 
710
* Bug: Fixed a cookie issue that caused dot prefixed domains to not match where popular browsers did
 
711
 
 
712
2.8.7 (2012-09-30)
 
713
------------------
 
714
 
 
715
* Bug: Fixed config file aliases for JSON includes
 
716
* Bug: Fixed cookie bug on a request object by using CookieParser to parse cookies on requests
 
717
* Bug: Removing the path to a file when sending a Content-Disposition header on a POST upload
 
718
* Bug: Hardening request and response parsing to account for missing parts
 
719
* Bug: Fixed PEAR packaging
 
720
* Bug: Fixed Request::getInfo
 
721
* Bug: Fixed cases where CURLM_CALL_MULTI_PERFORM return codes were causing curl transactions to fail
 
722
* Adding the ability for the namespace Iterator factory to look in multiple directories
 
723
* Added more getters/setters/removers from service descriptions
 
724
* Added the ability to remove POST fields from OAuth signatures
 
725
* OAuth plugin now supports 2-legged OAuth
 
726
 
 
727
2.8.6 (2012-09-05)
 
728
------------------
 
729
 
 
730
* Added the ability to modify and build service descriptions
 
731
* Added the use of visitors to apply parameters to locations in service descriptions using the dynamic command
 
732
* Added a `json` parameter location
 
733
* Now allowing dot notation for classes in the CacheAdapterFactory
 
734
* Using the union of two arrays rather than an array_merge when extending service builder services and service params
 
735
* Ensuring that a service is a string before doing strpos() checks on it when substituting services for references
 
736
  in service builder config files.
 
737
* Services defined in two different config files that include one another will by default replace the previously
 
738
  defined service, but you can now create services that extend themselves and merge their settings over the previous
 
739
* The JsonLoader now supports aliasing filenames with different filenames. This allows you to alias something like
 
740
  '_default' with a default JSON configuration file.
 
741
 
 
742
2.8.5 (2012-08-29)
 
743
------------------
 
744
 
 
745
* Bug: Suppressed empty arrays from URI templates
 
746
* Bug: Added the missing $options argument from ServiceDescription::factory to enable caching
 
747
* Added support for HTTP responses that do not contain a reason phrase in the start-line
 
748
* AbstractCommand commands are now invokable
 
749
* Added a way to get the data used when signing an Oauth request before a request is sent
 
750
 
 
751
2.8.4 (2012-08-15)
 
752
------------------
 
753
 
 
754
* Bug: Custom delay time calculations are no longer ignored in the ExponentialBackoffPlugin
 
755
* Added the ability to transfer entity bodies as a string rather than streamed. This gets around curl error 65. Set `body_as_string` in a request's curl options to enable.
 
756
* Added a StreamInterface, EntityBodyInterface, and added ftell() to Guzzle\Common\Stream
 
757
* Added an AbstractEntityBodyDecorator and a ReadLimitEntityBody decorator to transfer only a subset of a decorated stream
 
758
* Stream and EntityBody objects will now return the file position to the previous position after a read required operation (e.g. getContentMd5())
 
759
* Added additional response status codes
 
760
* Removed SSL information from the default User-Agent header
 
761
* DELETE requests can now send an entity body
 
762
* Added an EventDispatcher to the ExponentialBackoffPlugin and added an ExponentialBackoffLogger to log backoff retries
 
763
* Added the ability of the MockPlugin to consume mocked request bodies
 
764
* LogPlugin now exposes request and response objects in the extras array
 
765
 
 
766
2.8.3 (2012-07-30)
 
767
------------------
 
768
 
 
769
* Bug: Fixed a case where empty POST requests were sent as GET requests
 
770
* Bug: Fixed a bug in ExponentialBackoffPlugin that caused fatal errors when retrying an EntityEnclosingRequest that does not have a body
 
771
* Bug: Setting the response body of a request to null after completing a request, not when setting the state of a request to new
 
772
* Added multiple inheritance to service description commands
 
773
* Added an ApiCommandInterface and added ``getParamNames()`` and ``hasParam()``
 
774
* Removed the default 2mb size cutoff from the Md5ValidatorPlugin so that it now defaults to validating everything
 
775
* Changed CurlMulti::perform to pass a smaller timeout to CurlMulti::executeHandles
 
776
 
 
777
2.8.2 (2012-07-24)
 
778
------------------
 
779
 
 
780
* Bug: Query string values set to 0 are no longer dropped from the query string
 
781
* Bug: A Collection object is no longer created each time a call is made to ``Guzzle\Service\Command\AbstractCommand::getRequestHeaders()``
 
782
* Bug: ``+`` is now treated as an encoded space when parsing query strings
 
783
* QueryString and Collection performance improvements
 
784
* Allowing dot notation for class paths in filters attribute of a service descriptions
 
785
 
 
786
2.8.1 (2012-07-16)
 
787
------------------
 
788
 
 
789
* Loosening Event Dispatcher dependency
 
790
* POST redirects can now be customized using CURLOPT_POSTREDIR
 
791
 
 
792
2.8.0 (2012-07-15)
 
793
------------------
 
794
 
 
795
* BC: Guzzle\Http\Query
 
796
    * Query strings with empty variables will always show an equal sign unless the variable is set to QueryString::BLANK (e.g. ?acl= vs ?acl)
 
797
    * Changed isEncodingValues() and isEncodingFields() to isUrlEncoding()
 
798
    * Changed setEncodeValues(bool) and setEncodeFields(bool) to useUrlEncoding(bool)
 
799
    * Changed the aggregation functions of QueryString to be static methods
 
800
    * Can now use fromString() with querystrings that have a leading ?
 
801
* cURL configuration values can be specified in service descriptions using ``curl.`` prefixed parameters
 
802
* Content-Length is set to 0 before emitting the request.before_send event when sending an empty request body
 
803
* Cookies are no longer URL decoded by default
 
804
* Bug: URI template variables set to null are no longer expanded
 
805
 
 
806
2.7.2 (2012-07-02)
 
807
------------------
 
808
 
 
809
* BC: Moving things to get ready for subtree splits. Moving Inflection into Common. Moving Guzzle\Http\Parser to Guzzle\Parser.
 
810
* BC: Removing Guzzle\Common\Batch\Batch::count() and replacing it with isEmpty()
 
811
* CachePlugin now allows for a custom request parameter function to check if a request can be cached
 
812
* Bug fix: CachePlugin now only caches GET and HEAD requests by default
 
813
* Bug fix: Using header glue when transferring headers over the wire
 
814
* Allowing deeply nested arrays for composite variables in URI templates
 
815
* Batch divisors can now return iterators or arrays
 
816
 
 
817
2.7.1 (2012-06-26)
 
818
------------------
 
819
 
 
820
* Minor patch to update version number in UA string
 
821
* Updating build process
 
822
 
 
823
2.7.0 (2012-06-25)
 
824
------------------
 
825
 
 
826
* BC: Inflection classes moved to Guzzle\Inflection. No longer static methods. Can now inject custom inflectors into classes.
 
827
* BC: Removed magic setX methods from commands
 
828
* BC: Magic methods mapped to service description commands are now inflected in the command factory rather than the client __call() method
 
829
* Verbose cURL options are no longer enabled by default. Set curl.debug to true on a client to enable.
 
830
* Bug: Now allowing colons in a response start-line (e.g. HTTP/1.1 503 Service Unavailable: Back-end server is at capacity)
 
831
* Guzzle\Service\Resource\ResourceIteratorApplyBatched now internally uses the Guzzle\Common\Batch namespace
 
832
* Added Guzzle\Service\Plugin namespace and a PluginCollectionPlugin
 
833
* Added the ability to set POST fields and files in a service description
 
834
* Guzzle\Http\EntityBody::factory() now accepts objects with a __toString() method
 
835
* Adding a command.before_prepare event to clients
 
836
* Added BatchClosureTransfer and BatchClosureDivisor
 
837
* BatchTransferException now includes references to the batch divisor and transfer strategies
 
838
* Fixed some tests so that they pass more reliably
 
839
* Added Guzzle\Common\Log\ArrayLogAdapter
 
840
 
 
841
2.6.6 (2012-06-10)
 
842
------------------
 
843
 
 
844
* BC: Removing Guzzle\Http\Plugin\BatchQueuePlugin
 
845
* BC: Removing Guzzle\Service\Command\CommandSet
 
846
* Adding generic batching system (replaces the batch queue plugin and command set)
 
847
* Updating ZF cache and log adapters and now using ZF's composer repository
 
848
* Bug: Setting the name of each ApiParam when creating through an ApiCommand
 
849
* Adding result_type, result_doc, deprecated, and doc_url to service descriptions
 
850
* Bug: Changed the default cookie header casing back to 'Cookie'
 
851
 
 
852
2.6.5 (2012-06-03)
 
853
------------------
 
854
 
 
855
* BC: Renaming Guzzle\Http\Message\RequestInterface::getResourceUri() to getResource()
 
856
* BC: Removing unused AUTH_BASIC and AUTH_DIGEST constants from
 
857
* BC: Guzzle\Http\Cookie is now used to manage Set-Cookie data, not Cookie data
 
858
* BC: Renaming methods in the CookieJarInterface
 
859
* Moving almost all cookie logic out of the CookiePlugin and into the Cookie or CookieJar implementations
 
860
* Making the default glue for HTTP headers ';' instead of ','
 
861
* Adding a removeValue to Guzzle\Http\Message\Header
 
862
* Adding getCookies() to request interface.
 
863
* Making it easier to add event subscribers to HasDispatcherInterface classes. Can now directly call addSubscriber()
 
864
 
 
865
2.6.4 (2012-05-30)
 
866
------------------
 
867
 
 
868
* BC: Cleaning up how POST files are stored in EntityEnclosingRequest objects. Adding PostFile class.
 
869
* BC: Moving ApiCommand specific functionality from the Inspector and on to the ApiCommand
 
870
* Bug: Fixing magic method command calls on clients
 
871
* Bug: Email constraint only validates strings
 
872
* Bug: Aggregate POST fields when POST files are present in curl handle
 
873
* Bug: Fixing default User-Agent header
 
874
* Bug: Only appending or prepending parameters in commands if they are specified
 
875
* Bug: Not requiring response reason phrases or status codes to match a predefined list of codes
 
876
* Allowing the use of dot notation for class namespaces when using instance_of constraint
 
877
* Added any_match validation constraint
 
878
* Added an AsyncPlugin
 
879
* Passing request object to the calculateWait method of the ExponentialBackoffPlugin
 
880
* Allowing the result of a command object to be changed
 
881
* Parsing location and type sub values when instantiating a service description rather than over and over at runtime
 
882
 
 
883
2.6.3 (2012-05-23)
 
884
------------------
 
885
 
 
886
* [BC] Guzzle\Common\FromConfigInterface no longer requires any config options.
 
887
* [BC] Refactoring how POST files are stored on an EntityEnclosingRequest. They are now separate from POST fields.
 
888
* You can now use an array of data when creating PUT request bodies in the request factory.
 
889
* Removing the requirement that HTTPS requests needed a Cache-Control: public directive to be cacheable.
 
890
* [Http] Adding support for Content-Type in multipart POST uploads per upload
 
891
* [Http] Added support for uploading multiple files using the same name (foo[0], foo[1])
 
892
* Adding more POST data operations for easier manipulation of POST data.
 
893
* You can now set empty POST fields.
 
894
* The body of a request is only shown on EntityEnclosingRequest objects that do not use POST files.
 
895
* Split the Guzzle\Service\Inspector::validateConfig method into two methods. One to initialize when a command is created, and one to validate.
 
896
* CS updates
 
897
 
 
898
2.6.2 (2012-05-19)
 
899
------------------
 
900
 
 
901
* [Http] Better handling of nested scope requests in CurlMulti.  Requests are now always prepares in the send() method rather than the addRequest() method.
 
902
 
 
903
2.6.1 (2012-05-19)
 
904
------------------
 
905
 
 
906
* [BC] Removing 'path' support in service descriptions.  Use 'uri'.
 
907
* [BC] Guzzle\Service\Inspector::parseDocBlock is now protected. Adding getApiParamsForClass() with cache.
 
908
* [BC] Removing Guzzle\Common\NullObject.  Use https://github.com/mtdowling/NullObject if you need it.
 
909
* [BC] Removing Guzzle\Common\XmlElement.
 
910
* All commands, both dynamic and concrete, have ApiCommand objects.
 
911
* Adding a fix for CurlMulti so that if all of the connections encounter some sort of curl error, then the loop exits.
 
912
* Adding checks to EntityEnclosingRequest so that empty POST files and fields are ignored.
 
913
* Making the method signature of Guzzle\Service\Builder\ServiceBuilder::factory more flexible.
 
914
 
 
915
2.6.0 (2012-05-15)
 
916
------------------
 
917
 
 
918
* [BC] Moving Guzzle\Service\Builder to Guzzle\Service\Builder\ServiceBuilder
 
919
* [BC] Executing a Command returns the result of the command rather than the command
 
920
* [BC] Moving all HTTP parsing logic to Guzzle\Http\Parsers. Allows for faster C implementations if needed.
 
921
* [BC] Changing the Guzzle\Http\Message\Response::setProtocol() method to accept a protocol and version in separate args.
 
922
* [BC] Moving ResourceIterator* to Guzzle\Service\Resource
 
923
* [BC] Completely refactored ResourceIterators to iterate over a cloned command object
 
924
* [BC] Moved Guzzle\Http\UriTemplate to Guzzle\Http\Parser\UriTemplate\UriTemplate
 
925
* [BC] Guzzle\Guzzle is now deprecated
 
926
* Moving Guzzle\Common\Guzzle::inject to Guzzle\Common\Collection::inject
 
927
* Adding Guzzle\Version class to give version information about Guzzle
 
928
* Adding Guzzle\Http\Utils class to provide getDefaultUserAgent() and getHttpDate()
 
929
* Adding Guzzle\Curl\CurlVersion to manage caching curl_version() data
 
930
* ServiceDescription and ServiceBuilder are now cacheable using similar configs
 
931
* Changing the format of XML and JSON service builder configs.  Backwards compatible.
 
932
* Cleaned up Cookie parsing
 
933
* Trimming the default Guzzle User-Agent header
 
934
* Adding a setOnComplete() method to Commands that is called when a command completes
 
935
* Keeping track of requests that were mocked in the MockPlugin
 
936
* Fixed a caching bug in the CacheAdapterFactory
 
937
* Inspector objects can be injected into a Command object
 
938
* Refactoring a lot of code and tests to be case insensitive when dealing with headers
 
939
* Adding Guzzle\Http\Message\HeaderComparison for easy comparison of HTTP headers using a DSL
 
940
* Adding the ability to set global option overrides to service builder configs
 
941
* Adding the ability to include other service builder config files from within XML and JSON files
 
942
* Moving the parseQuery method out of Url and on to QueryString::fromString() as a static factory method.
 
943
 
 
944
2.5.0 (2012-05-08)
 
945
------------------
 
946
 
 
947
* Major performance improvements
 
948
* [BC] Simplifying Guzzle\Common\Collection.  Please check to see if you are using features that are now deprecated.
 
949
* [BC] Using a custom validation system that allows a flyweight implementation for much faster validation. No longer using Symfony2 Validation component.
 
950
* [BC] No longer supporting "{{ }}" for injecting into command or UriTemplates.  Use "{}"
 
951
* Added the ability to passed parameters to all requests created by a client
 
952
* Added callback functionality to the ExponentialBackoffPlugin
 
953
* Using microtime in ExponentialBackoffPlugin to allow more granular backoff strategies.
 
954
* Rewinding request stream bodies when retrying requests
 
955
* Exception is thrown when JSON response body cannot be decoded
 
956
* Added configurable magic method calls to clients and commands.  This is off by default.
 
957
* Fixed a defect that added a hash to every parsed URL part
 
958
* Fixed duplicate none generation for OauthPlugin.
 
959
* Emitting an event each time a client is generated by a ServiceBuilder
 
960
* Using an ApiParams object instead of a Collection for parameters of an ApiCommand
 
961
* cache.* request parameters should be renamed to params.cache.*
 
962
* Added the ability to set arbitrary curl options on requests (disable_wire, progress, etc.). See CurlHandle.
 
963
* Added the ability to disable type validation of service descriptions
 
964
* ServiceDescriptions and ServiceBuilders are now Serializable