Skip to content

Tags: cboden/guzzle

Tags

v2.2.2

Toggle v2.2.2's commit message
Docblock fixes

v2.2.1

Toggle v2.2.1's commit message
[Http] Fixing issue related to nested POST data. Resolves guzzle#20

v2.2.0

Toggle v2.2.0's commit message
Adding support for URI templates

[Http] UriTemplate syntax supports {} or {{}} for backwards compatibility.
[Http] Guzzle::inject() now allows {} or {{}} injection for consistency.
[Http] BC: removing Guzzle\Http\Client::inject and now using Guzzle\Http\Client::expandTemplate.
[Http] Can use a custom syntax for URI templates (this might be useful for something like Solr because Solr actually uses {}).
[Http] Adding the ability to inject a custom UriTemplate into clients or just use the default UriTemplate
[Http] You can now use an array when creating a request via a client to specify a URI template and additional template variables.
[Service] Adding support for URI templates to service descriptions.
[Service] [BC] removing Guzzle\Service\Description\ApiCommand::getPath() and replacing it with getUri().
[Service] Use "uri" instead of "path" when creating service descriptions.  However, there is still backwards compatibility with the "path" attribute.

v2.1.4

Toggle v2.1.4's commit message
[Service] Making the integer and float service description types acce…

…pt numeric strings

v2.1.3

Toggle v2.1.3's commit message
[Http] Using CURLOPT_INFILESIZE instead of Content-Length headers. Th…

…is prevents chunked transfer encoding when the Content-Length is known. Adding better test coverage.

v2.1.2

Toggle v2.1.2's commit message
[Http] Fixing issue that caused two Content-Length headers. Adding be…

…tter test coverage for Content-Length and chunked Transfer-Encoding. Removing some duplicate tests.

v2.1.1

Toggle v2.1.1's commit message
Removing @ error suppression from CurlHandle and instead checking if …

…the handle is a resource before doing any curl related calls. Making the JsonDescriptionBuilder more readable.

v2.1.0

Toggle v2.1.0's commit message
Coding standards

v2.0.5

Toggle v2.0.5's commit message
[Http] Adding OAuth 1.0 signature plugin

v2.0.4

Toggle v2.0.4's commit message
[Service] Fixing headers set using an array on commands via the const…

…ructor

Removing special handling of ClosureCommand
Throwing an exception when required parameters are missing from a dynamic command
Pass ApiCommand objects to a ClosureCommand in the second argument of the constructor, not in the api_command parameter key
Adding Guzzle\Service\Command\DynamicCommand that will prepare HTTP requests based on an API command. Extend this class for advanced response processing for API commands.
Making DynamicCommand the default command for ApiCommands
Removing the old DynamicCommandFactory and replacing with a simpler ApiCommandFactory