1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 18:43:22 +01:00

2117 Commits

Author SHA1 Message Date
Michael Dowling
f5ee3fb453 [Http] Ensuring that cURL blacklisted headers are never set even if they are set by the user.
[Http] Error responses are now never written to the intended response stream of a request, but rather to a temporary stream.  This helps when retrying failed requests so that the intended stream is not polluted with transient errors.
[Http] Adding the ability to retry failed requests with the exponential backoff plugin by checking both the status code and reason phrase.
[Service] Simplifying the loop in Guzzle\Service\Command\DynamicCommand
v2.4.1
2012-04-23 17:54:02 -07:00
Michael Dowling
cc7c7f42ac Bumping the version number v2.4.0 2012-04-22 14:44:37 -07:00
Michael Dowling
5e58f4bf05 [Http] Adding a mediator object between curl and requests. This should speed up curl requests due to reduction in anonymous function creation.
[Http] Using a factory method when creating bad response exceptions.  Adding ClientErrorResponseException and ServerErrorResponseException.
[Http] Removing curl specific protocal version code from RequestInterace and pushing it to the curl namespace
[Http] Renaming parseUrlUtf8 to parseUrl and fixing a typo
2012-04-22 14:23:23 -07:00
Michael Dowling
c0dc85de35 Breaking / Potentially breaking changes:
1. Adopting a marker interface for Guzzle exceptions.
        A. All exceptions emitted from Guzzle are now wrapped with a Guzzle namespaced exception.
        B. Guzzle\Common\GuzzleExceptionInterface was renamed to Guzzle\Common\GuzzleException
        C. Guzzle\Common\ExceptionCollection was renamed to Guzzle\Common\Exception\ExceptionCollection
    2. Using Header objects for Request and Response objects
        A. When you call $request->getHeader('X'), you will get back a Guzzle\Http\Message\Header object that contains all of the headers that case insensitively match.  This object can be cast to a string or iterated like an array.  You can pass true in the second argument to retrieve the header as a string.
        B. Removing the old Guzzle\Common\Collection based searching arguments from most of the request and response header methods.  All retrievals are case-insensitive and return Header objects.
    3. Changing the two headers added by the cache plugin to just one header with key and ttl.
    4. Changing Guzzle\Http\Message\Response::factory() to fromMessage().
    5. Removing the NullObject return value from ServiceDescriptions and instead simply returning null

New Features / enhancements:

    1. Adding Guzzle\Http\Message\AbstractMessage::addHeaders()
    2. Making it simpler to create service descriptions using a unified factory method that delegates to other factories.
    3. Better handling of ports and hosts in Guzzle\Http\Url

Note: This is a noisy diff because I'm removing trailing whitespace and adding a new line at the end of each source file.
2012-04-22 00:17:49 -07:00
Michael Dowling
cbf125fd0f [Service] Using the Serializable interface on Guzzle\Service\ServiceBuilder. Closes #41 2012-04-20 21:47:03 -07:00
Michael Dowling
72a86e86c9 Fixing broken Inspector tests 2012-04-20 17:30:39 -07:00
Michael Dowling
668ef3fe35 Renaming black_list to blacklist 2012-04-20 17:22:15 -07:00
Michael Dowling
503df1835f [Http] Correcting the version reported in the User-Agent header. Shortening the User-Agent header.
Adding a way to black list cURL options and cURL specific headers from being set or sent over the wire.
2012-04-20 17:18:21 -07:00
Michael Dowling
2be94b1981 [Http] Adding support for UTF-8 characters in query strings when parsing URLs 2012-04-20 00:31:07 -07:00
Michael Dowling
c1b29eb062 [Http] Adding the ability to retrieve a URL object from a request. Adding a method to normalize relative paths in URLs. 2012-04-19 21:47:24 -07:00
Michael Dowling
5ec879144d [Http] Using case insensitive matching by default when dealing with headers in HTTP messages.
Adding normalized behavior to Guzzle\Http\Message\AbstractMessage::getHeader() so that it returns an array of headers if multiple header values are found for a specific header key.  It will return a single string if only one header is found.
Updating curl handle to work with multiple headers per key
2012-04-19 16:14:58 -07:00
Michael Dowling
a8089fdc5e [Common] Adding a "cache." prefix to cache settings 2012-04-18 17:16:39 -07:00
Michael Dowling
6191c4f766 [Common] Adding a CacheAdapterFactory so that you can generate cache adapters in your service config files 2012-04-18 16:56:58 -07:00
Michael Dowling
04d858044a [Http] Adding much more error handling to CurlMulti and providing informative error messages 2012-04-18 11:10:38 -07:00
Michael Dowling
0b98e6c46e Adding more late static binding where it makes sense so that things can be easily extended 2012-04-18 08:31:37 -07:00
Michael Dowling
b1beeb68d8 One more time trying to fix the timeout test... 2012-04-17 17:48:55 -07:00
Michael Dowling
e9fa0907bb Using late static binding for the service builder factory method. Closes #40 2012-04-17 17:23:16 -07:00
Michael Dowling
f57169a2d6 Updating to the latest version of composer so that Guzzle uses require-dev and --dev configuration options v2.3.2 2012-04-16 15:13:53 -07:00
Michael Dowling
ce221dfbbe Fixing composer.json 2012-04-16 14:53:42 -07:00
Michael Dowling
8ce1fbed17 Fixing CurlHandleTest to timeout more consistently 2012-04-16 12:37:40 -07:00
Michael Dowling
02f9785f93 [Service] Adding an AliasFactory for aliasing one command name to another. Updating README for new composer setup. Making the build script more generalized. 2012-04-15 12:00:12 -07:00
Michael Dowling
aa1136dd73 Removing code coverage from test runs because I think travis is running out of memory v2.3.1 2012-04-15 00:15:13 -07:00
Michael Dowling
d29e7f3bba [Service] Adding command factories to Guzzle\Service\Client. Gives the ability to add custom handling for associating command names with concrete classes.
Removing command factories from Guzzle\Service\Description\ServiceDescription.  Use Guzzle\Service\Command\Factory\ServiceDescriptionFactory instead.
Setting a service description on a client will update any attached service description factories.
2012-04-15 00:07:45 -07:00
Michael Dowling
e37668e91e Fixing include path issue with ZF1 v2.3.0 2012-04-14 19:04:37 -07:00
Michael Dowling
eabe684b22 [Common] [BC] Renaming ZendLogAdapter to Zf1LogAdater. Adding a Zf2LogAdapter. Renaming ZendCacheAdapter to Zf1CacheAdapter. Adding Zf2CacheAdapter to support Zend Framework 2 caching.
Updating the cache interface to allow passing options to cache methods.
Removing the constructor and removing getCachedObject from CacheAdapterInterface.
Adding a ClosureCacheAdapter.
[Service] Adding the ability to use magic call method behavior for executing commands by name.  Closes #39.
[Tests] Fixing a logging unit test so that it does not spit out to stdout
Separating test dependencies from Guzzle deps by adding a composer-test.json.
Adding unit testing capabilities to the Guzzle phar files.
Updating travis-ci script to use new composer file and adding code coverage to travis runs
[Build] Fixing guzzle-min.phar warning that tried to load index.php
Adding a test-init phing target to help getting setup for testing.
Fixing composer run in travis
2012-04-14 18:49:51 -07:00
Michael Dowling
5ad66ff4d1 [Http] Adding the ability to disable the Expect: 100-Continue header from being sent. Simply remove the "Expect" header from a request before sending. You can remove the Expect header from all requests sent from a client by adding an event listener to a client. Closes #35.
Adding the ability to set HTTP request headers to NULL so that they are still passed to curl.  This is useful for removing some default curl headers.  Empty headers are still not sent to curl.

Not setting "Expect: 100-Continue" when sending with application/x-www-form-urlencoded POST requests
v2.2.4
2012-04-02 17:27:37 -05:00
Michael Dowling
f9a55755a3 Cleaning up the RequestFactory 2012-03-29 13:01:13 -05:00
Michael Dowling
729b346685 Fixing .travis.yml
Commenting out PATCH test that is not working on travis
2012-03-26 23:01:18 -05:00
Michael Dowling
0f9ca9bec8 Fixing composer.json 2012-03-26 21:44:42 -05:00
Michael Dowling
c990901dd3 [BC] Removing prepareRequest() from client interface and making it a protected method of the client
Adding a RequestFactoryInterface and a way to inject a request factory into a Client object
2012-03-26 21:16:19 -05:00
Michael Dowling
85803bdd05 Adding the ability to set default HTTP headers that will be set on all requests created by a client. Closes #37. 2012-03-25 22:23:47 -05:00
Michael Dowling
a68cdd5ebc Merge pull request #36 from stil/patch-2
Ensuring curl specific options are strings before checking to see if they are defined constants
2012-03-25 17:40:39 -07:00
stil
7743386cf4 Update src/Guzzle/Http/Client.php 2012-03-26 02:10:51 +03:00
Michael Dowling
bc3acaf817 Allowing deeply nested query string values with PHP style aggregation. Closes #27 2012-03-24 17:10:20 -05:00
Michael Dowling
5fd1ae9a82 Updating readme to mention PATCH requests v2.2.3 2012-03-20 11:27:40 -05:00
Michael Dowling
4a0cb15350 [Http] Removing final keyword from client verb methods
Adding PATCH method
Fixing docblock for PUT method
Updating request message parsing to allow for custom verbs
Adding a Content-Length: 0 header when sending an entity enclosing request with no body or post fields.  Closes #34
2012-03-19 22:03:41 -05:00
Michael Dowling
46d50a577c CS updates 2012-03-06 11:13:16 -06:00
Chris Boden
6dd96670d7 [Http] Serializable interface on ArrayCookieJar 2012-03-06 11:10:36 -05:00
Chris Boden
b44740bfed [Http][Tests] Serialization test
TDD for ArrayCookieJar serialization
2012-03-06 11:06:06 -05:00
Julian Higman
37e7e7d6ba Fixed up some indents - spaces instead of tabs. 2012-03-01 21:54:01 +00:00
Julian Higman
55796569dd Added CurlAuthPlugin as a generic plugin for curl auth methods. Removed
BasicAuthPlugin and DigestAuthPlugin.
2012-03-01 11:11:36 +00:00
Julian Higman
e2eb6140bc Added DigestAuthPlugin, based heavily on the BasicAuthPlugin. 2012-02-29 12:25:57 +00:00
Michael Dowling
c91f992c90 Merge pull request #30 from adrianmoya/master
Fixing composer.json
2012-02-26 19:12:21 -08:00
Adrian Moya
f6d4be4fa9 Fixing composer.json 2012-02-25 16:47:37 -04:30
Michael Dowling
4227abdf0b [Http] Using cookies.disable on a params object to disable the cookie plugin for a specific request 2012-02-22 21:47:02 -06:00
stil
8f060140eb Update src/Guzzle/Http/Plugin/CookiePlugin.php 2012-02-22 15:59:24 +01:00
Michael Dowling
71dbeb922b Merge pull request #26 from bobeagan/master
Adding 422 status code (Unprocessable Entity)
2012-02-17 10:13:39 -08:00
Bob Eagan
84e2d78e58 fix #25 - add support for status code 422 (Unprocessable Entity) 2012-02-17 10:59:14 -07:00
Michael Dowling
b992c6f38c Docblock fixes v2.2.2 2012-02-16 23:13:49 -06:00
Michael Dowling
1112aef678 Fixing autoloader. Closes #19 2012-02-16 23:12:59 -06:00