Michael Dowling
|
a5a6b87f69
|
Removing the need for a temp variable
|
2013-06-07 23:08:40 -07:00 |
|
Michael Dowling
|
e9b120942c
|
Adding StreamInterface::isRepeatable. Marked Request::isResponseBodyRepeatable() as deprecated.
|
2013-06-07 22:40:51 -07:00 |
|
Michael Dowling
|
34c86a2184
|
Just using parse_url instead of a UrlParser
|
2013-06-07 22:20:46 -07:00 |
|
Michael Dowling
|
ab4dc363b1
|
Accepting Basic and Digest as authentication schemes for RequestInterface::setAuth()
|
2013-06-07 21:59:29 -07:00 |
|
Michael Dowling
|
7141fd8f5c
|
Hiding the CURLAUTH_* constants from the Request options API and instead using Basic and Digest auth types
|
2013-06-07 21:29:56 -07:00 |
|
Michael Dowling
|
dca26ad31c
|
Adding connect_timeout and removing curl from request options
|
2013-06-07 18:43:57 -07:00 |
|
Michael Dowling
|
a20748c20e
|
Prefixing deprecation warning error messages
|
2013-06-07 10:49:16 -07:00 |
|
Michael Dowling
|
21836cfe70
|
Adding CacheKeyProviderInterface and DefaultCacheKeyProvider back just in case they are being used on their own but emitting a warning when they are used
|
2013-06-07 10:46:02 -07:00 |
|
Michael Dowling
|
f119ea3611
|
Removing extra line from changelog
|
2013-06-07 10:32:24 -07:00 |
|
Michael Dowling
|
6b8385fb51
|
Adding the start of the next version changelog entry
|
2013-06-06 22:22:28 -07:00 |
|
Michael Dowling
|
7d44266a56
|
Adding the ability to enable deprecation warnings when using deprecated functionality
|
2013-06-06 22:12:31 -07:00 |
|
Michael Dowling
|
6ce055aa97
|
Changing command.options to command.request_options
|
2013-06-06 21:16:11 -07:00 |
|
Michael Dowling
|
99ebcab8e5
|
Minor performance improvements
|
2013-06-06 20:57:43 -07:00 |
|
Michael Dowling
|
945db11c47
|
Removing BC break of returning null from getTokenizedHeader(), but triggering a deprecated warning. Closes #344
|
2013-06-06 17:07:58 -07:00 |
|
Michael Dowling
|
079ee2d1ce
|
Moving cacCache logic to the DefaultCanCacheStrategy
|
2013-06-06 11:40:39 -07:00 |
|
Michael Dowling
|
57308273e6
|
Removing some methods from RequestInterface
|
2013-06-06 11:25:43 -07:00 |
|
Michael Dowling
|
9ae415989b
|
Injecting CanCacheStrategy into DefaultRevalidation
|
2013-06-06 11:02:14 -07:00 |
|
Michael Dowling
|
08b1564121
|
Better ordering of methods in RequestInterface
|
2013-06-06 10:51:02 -07:00 |
|
Michael Dowling
|
a0658a8a6c
|
Way better handling of retrieving the size of a stream
|
2013-06-05 21:36:05 -07:00 |
|
Michael Dowling
|
98fa4d964f
|
Cleaning up parsing response headers in streams
|
2013-06-05 21:03:05 -07:00 |
|
Michael Dowling
|
3d9ed373d6
|
Setting the size of a stream if it is known after converting from a request
|
2013-06-05 20:58:48 -07:00 |
|
Michael Dowling
|
ce131200cd
|
Merge pull request #342 from JCook21/master
Added ability to pass a Traversable object to Client::execute
|
2013-06-05 11:37:59 -07:00 |
|
Jeremy Cook
|
5039681126
|
Updated comments in interface.
|
2013-06-05 14:23:50 -04:00 |
|
Jeremy Cook
|
335dd9c6ec
|
Added ability for an array or Traversable object of commands to be
passed to Client::execute().
|
2013-06-05 13:42:12 -04:00 |
|
Michael Dowling
|
51dfc3654b
|
Using a default array in Collection::__construct() and AbstractCommand::__construct() rather than a default null value with an internal ternary to set it to a default array
|
2013-06-05 01:36:20 -07:00 |
|
Michael Dowling
|
17c7022383
|
array_merge_recursive() does weird stuff when merging objects and scalars
|
2013-06-05 01:35:30 -07:00 |
|
Michael Dowling
|
66f67f5d03
|
Fixing Collection::merge() to work with nested structures
|
2013-06-05 00:50:10 -07:00 |
|
Michael Dowling
|
a86eb121f5
|
Optimizing Collection::overwriteWith()
|
2013-06-05 00:23:51 -07:00 |
|
Michael Dowling
|
7a6dbdb3e7
|
Collection optimizations
|
2013-06-04 23:51:46 -07:00 |
|
Michael Dowling
|
c14e63dba2
|
Merge pull request #340 from jeremeamia/service-builder-default
Default value for the ServiceBuilder simpler instantiation
|
2013-06-04 23:39:49 -07:00 |
|
Jeremy Lindblom
|
2700590d93
|
Added a default value for the ServiceBuilder's constructor for simpler instantiation
|
2013-06-04 23:28:08 -07:00 |
|
Michael Dowling
|
4572b5b490
|
Updating ExceptionCollection to better handle nested messages
|
2013-06-04 22:25:38 -07:00 |
|
Michael Dowling
|
babaad5325
|
Making messages returned from ExceptionCollection easier to read
|
2013-06-04 22:06:36 -07:00 |
|
Michael Dowling
|
5aefa0d6be
|
Allowing arbitrary data to be provided to a ServiceBuilder and better documenting how a ServiceBuilder works. Closes #338.
|
2013-06-04 21:26:52 -07:00 |
|
Michael Dowling
|
f73881ff42
|
Trimming up line
|
2013-06-04 20:18:36 -07:00 |
|
Michael Dowling
|
c97cb40b30
|
Reorganizing ClientInterface and removing setDefaultHeaders() from ClientInterface
|
2013-06-04 20:15:14 -07:00 |
|
Michael Dowling
|
7ec8165c19
|
Updating Batch request transfer to not use CurlMutli objects. Trimming implementation specific details from Guzzle\Http\ClientInterface. Fixing typo in Guzzle\Http\Message\RequestInterface.
|
2013-06-04 19:50:38 -07:00 |
|
Jeremy Lindblom
|
86f38b11c2
|
Updated Composer installation code to match Composer website
|
2013-06-04 00:29:54 -06:00 |
|
Michael Dowling
|
073c127c1a
|
Fixing typo
|
2013-06-03 23:20:26 -07:00 |
|
Michael Dowling
|
968046d46b
|
Fixing README typo
|
2013-06-03 23:17:33 -07:00 |
|
Michael Dowling
|
246153fb1b
|
More README tweaks
|
2013-06-03 23:16:12 -07:00 |
|
Michael Dowling
|
3baa1c07f3
|
More README tweaks
|
2013-06-03 23:15:04 -07:00 |
|
Michael Dowling
|
b1fd664d03
|
Updating README
|
2013-06-03 23:12:35 -07:00 |
|
Michael Dowling
|
52d89960df
|
Coverage for HeaderFactory
|
2013-06-03 22:48:00 -07:00 |
|
Michael Dowling
|
d6c67909df
|
More tests
|
2013-06-03 22:42:13 -07:00 |
|
Michael Dowling
|
8f7839f51f
|
Adding more tests
|
2013-06-03 22:17:14 -07:00 |
|
Michael Dowling
|
333e1771b9
|
Fixing coverage annotation
|
2013-06-03 21:55:37 -07:00 |
|
Michael Dowling
|
21385e1ad2
|
Adding a proxy option to requests. Adding a save_to option. Allowing the auth value to accept an optional auth scheme
|
2013-06-03 21:52:05 -07:00 |
|
Michael Dowling
|
2ef1b4d7ef
|
Adding a shim back for enableMagicMethods() to prevent BC
|
2013-06-03 11:07:21 -07:00 |
|
Michael Dowling
|
fadf7e2371
|
Adding the ability to remove the default mechanism of throwing an exception on HTTP response errors
|
2013-06-03 11:03:22 -07:00 |
|