Skip to content

Latest commit

 

History

History
86 lines (66 loc) · 5.45 KB

CHANGELOG.md

File metadata and controls

86 lines (66 loc) · 5.45 KB

1.11.86 2017-01-26

AWS CodeDeploy

  • Features

    - This release of AWS CodeDeploy introduces support for blue/green deployments. In a blue/green deployment, the current set of instances in a deployment group is replaced by new instances that have the latest application revision installed on them. After traffic is rerouted behind a load balancer to the replacement instances, the original instances can be terminated automatically or kept running for other uses.

Amazon CloudDirectory

  • Features

    - **(New Service)** Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile and IoT applications. This guide describes the Cloud Directory operations that you can call programatically and includes detailed information on data types and errors. For information about AWS Directory Services features, see [AWS Directory Service](https://aws.amazon.com/directoryservice/) and the [AWS Directory Service Administration Guide](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html).

Amazon Elastic Compute Cloud

  • Features

    - Adds instance health check functionality to replace unhealthy EC2 Spot fleet instances with fresh ones.

Amazon Relational Database Service

  • Features

    - Snapshot Engine Version Upgrade

AWS Step Functions

  • Features

    - Initial release of a fluent builder API to create state machine JSON documents.

1.11.85 2017-01-25

Amazon Relational Database Service

  • Features

    - Cross Region Read Replica Copying

Elastic Load Balancing

  • Features

    - Application Load Balancers now support native Internet Protocol version 6 (IPv6) in an Amazon Virtual Private Cloud (VPC). With this ability, clients can now connect to the Application Load Balancer in a dual-stack mode via either IPv4 or IPv6.

1.11.84 2017-01-24

AWS CodeCommit

  • Features

    - Now includes the option to view the differences between a commit and its parent commit.

AWS SDK for Java

  • Features

    - Adding ability to set custom endpoint and signing region on client builders. For example
    AmazonSNS client = AmazonSNSClientBuilder.standard().withEndpointConfiguration(new EndpointConfiguration("http://sns-custom-endpoint.amazon.com", "us-east-1")).build();

    NB: This should only be used if a custom endpoint is required, the recommended approach for configuring a client is via set/withRegion on the builder

    • Bundled dependency of AWS SDK jar available as a new maven module 'aws-java-sdk-bundle'. This module includes all service and dependent JARs with third-party libraries relocated to different namespaces.
  • Deprecations

    - Deprecating `com.amazonaws.regions.Region.createClient`, clients should be created via their builder implementation for example:
    AmazonSNSClientBuilder.standard().withRegion(region).build();
    • Deprecating client constructors & mutation methods on clients (eg setRegion) in favor of creating a client via the client builders. The following mechanism for creating clients is deprecated:

      AmazonSNSClient client = new AmazonSNSClient(clientConfiguration); //client constructor is deprecated
      client.setRegion(RegionUtils.getRegion("us-east-1"));              //mutating the client via setRegion is deprecated

      Clients should now be constructed using the builder:

      AmazonSNS client = AmazonSNSClientBuilder.standard().withClientConfiguration(clientConfiguration).withRegion("us-east-1").build();

Amazon EC2 Container Service

  • Features

    - Now supports a state for container instances that can be used to drain a container instance in preparation for maintenance or cluster scale down.

Amazon S3

1.11.83 2017-01-20

AWS Certificate Manager

  • Features

    - Updated response elements for DescribeCertificate API in support of managed renewal.

1.11.82 2017-01-20

Amazon DynamoDB