Skip to content

Latest commit

 

History

History
157 lines (120 loc) · 10.4 KB

CHANGELOG.md

File metadata and controls

157 lines (120 loc) · 10.4 KB

1.11.93 2017-02-17

AWS Direct Connect

  • Features

    - This update will introduce the ability for Direct Connect customers to take advantage of Link Aggregation (LAG). This allows you to bundle many individual physical interfaces into a single logical interface, referred to as a LAG. This makes administration much simpler as the majority of configuration is done on the LAG while you are free to add or remove physical interfaces from the bundle as bandwidth demand increases or decreases. A concrete example of the simplification added by LAG is that customers need only a single BGP session as opposed to one session per physical connection.

1.11.92 2017-02-16

AWS Config

  • Features

    - AWS Config now supports a new test mode for the PutEvaluations API. Set the TestMode parameter to true in your custom rule to verify whether your AWS Lambda function will deliver evaluation results to AWS Config. No updates occur to your existing evaluations, and evaluation results are not sent to AWS Config.

Amazon Cognito Identity

  • Features

    - Allow createIdentityPool and updateIdentityPool API to set server side token check value on identity pool.

1.11.91 2017-02-15

AWS Key Management Service

  • Features

    - This release of AWS Key Management Service introduces the ability to tag keys. Tagging keys can help you organize your keys and track your KMS costs in the cost allocation report. This release also increases the maximum length of a key ID to accommodate ARNs that include a long key alias.

AWS SDK for Java for OSGi

  • Bugfixes

    - Fixing [Issue #979](aws#979) by including the jmespath-java module in the OSGi bundle.

Amazon Glacier

  • Features

    - Introduce `ArchiveTransferManaggerBuilder`. This builder allows using references to `AmazonGlacier`, `AmazonSNS` and AmazonSQS` rather than the concrete implementations.
  • Deprecations

    - Deprecate all constructors for `ArchiveTransferManager`.

1.11.90 2017-02-14

Amazon EC2

  • Features

    - Adds support for the new Modify Volumes apis.

1.11.89 2017-02-10

AWS Storage Gateway

  • Features

    - File gateway mode in AWS Storage gateway provides access to objects in S3 as files on a Network File System (NFS) mount point. This is done by creating Nfs file shares using existing APIs CreateNfsFileShare. Using the feature in this update, the customer can restrict the clients that have read/write access to the gateway by specifying the list of clients as a list of IP addresses or CIDR blocks. This list can be specified using the API CreateNfsFileShare while creating new file shares, or UpdateNfsFileShare while update existing file shares. To find out the list of clients that have access, the existing API DescribeNfsFileShare will now output the list of clients that have access.

1.11.88 2017-02-09

Amazon EC2

  • Features

    - This feature allows customers to associate an IAM profile to running instances that do not have any.

Amazon Rekognition

  • Features

    - DetectFaces and IndexFaces operations now return an estimate of the age of the face as an age range.

1.11.87 2017-02-08

Amazon Lex

  • Features

    - **(NewService)** Amazon Lex is a service for building conversational interactions into any application using voice or text.

Amazon S3

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.

AWS Step Functions

  • Features

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

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

Amazon S3

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