Skip to content

Latest commit

 

History

History
136 lines (85 loc) · 3.85 KB

CHANGELOG.md

File metadata and controls

136 lines (85 loc) · 3.85 KB

Change Log

0.5.2

Fixed

  • Add support for Content-Type: application/x-amz-json-1.1 in test case.

0.5.1

Added

  • Add Configuration::isDefault methods.

Fixed

  • Allow mocking of Results classes named "*Result"

0.5.0

Added

  • Add support for multiregion via @region input parameter.
  • DynamoDB support.
  • ResultMockFactory was updated with createFailing() and support for pagination.
  • AbstractApi::presign().
  • Result::wait() for multiplexing downloads.
  • Interface AsyncAws\Core\Input.
  • AsyncAws\Core\Stream\ResponseBodyResourceStream and AsyncAws\Core\Stream\ResponseBodyStream.
  • Internal AsyncAws\Core\Response to encapsulate the HTTP client.
  • Internal AsyncAws\Core\RequestContext.
  • Internal AsyncAws\Core\Stream\RewindableStream.

Removed

  • The input's validate() function was merged with the request() function.
  • Configuration::isDefault().
  • Protected property AbstractApi::$logger.
  • AsyncAws\Core\StreamableBody in favor of AsyncAws\Core\Stream\ResponseBodyStream.

Changed

  • Exceptions will contain more information from the HTTP response.
  • Moved STS value objects to a dedicated namespace.
  • The AsyncAws\Core\Sts\Input\* and AsyncAws\Core\Sts\ValueObject* classes are marked final.
  • Using DateTimeImmutable instead of DateTimeInterface.
  • Protected properties AbstractApi::$httpClient, AbstractApi::$configuration and AbstractApi::$credentialProvider are now private.
  • AbstractApi::getResponse() has new signature. New optional second argument ?RequestContext $context = null and the return type is AsyncAws\Core\Response.
  • The CredentialProviders and Configuration are now final.
  • Renamed AsyncAws\Core\Stream\Stream to AsyncAws\Core\Stream\RequestStream.
  • Renamed AsyncAws\Core\StreamableBodyInterface to AsyncAws\Core\Stream\ResultStream.
  • The ResultStream::getChunks() now returns a iterable of string.

Fixed

  • Bugfix in WebIdentityProvider

0.4.0

Added

  • Test class AsyncAws\Core\Test\SimpleStreamableBody

Changed

  • Moved AsyncAws\Core\Signer\Request to AsyncAws\Core\Request.
  • Added constructor argument to AsyncAws\Core\Request::__construct() to support query parameters.
  • Renamed AsyncAws\Core\Request::getUrl() to AsyncAws\Core\Request::getEndpoint()
  • Class AsyncAws\Core\Stream\StreamFactory is not internal anymore.
  • Removed requestBody(), requestHeaders(), requestQuery() and requestUri() input classes. They are replaced with request().

Removed

  • Public AbstractApi::request() was removed.
  • Protected function AbstractApi::getEndpoint() was made private.

Fixed

  • Fix Instance Provider Role fetching

0.3.3

Added

  • Added a ResultMockFactory to helps creating tests

Fixed

  • Http method is replaced by PUT in REST calls

0.3.2

Fixed

  • Configuration don't mix anymore attributes injected by php array and env variables.

0.3.1

Added

  • AbstractApi::getConfiguration()

Fixed

  • Make sure Configuration::create(['foo'=>null]) is using the default value of "foo".

0.3.0

Added

  • Requests can now be streamed
  • Streamable request accepts iterable alongside string, callable, resource
  • Support for getting credentials from Web Identity or OpenID Connect Federation. (WebIdentityProvider)

Changed

  • Rename namespace Signers into Signer.

0.2.0

Added

  • Class AsuncAws\Core\Credentials\NullProvider
  • Methods AwsClient::cloudFormation(), AwsClient::lambda(), AwsClient::sns()
  • Protected methods Result::registerPrefetch() and Result::unregisterPrefetch()
  • Timeout parameter to InstanceProvider::__construct()

Changed

  • Removed AwsClient and replaced it with AwsClientFactory
  • Class AsyncAws\Core\Signer\Request is marked as internal
  • Make sure behavior of calling Result::resolve() is consistent

0.1.0

First version