Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/aws-sdk-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.36.2
Choose a base ref
...
head repository: aws/aws-sdk-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.36.9
Choose a head ref
  • 14 commits
  • 217 files changed
  • 4 contributors

Commits on Dec 4, 2020

  1. Release v1.36.2 (#3675)

    Release v1.36.2 (2020-12-04)
    ===
    
    ### Service Client Updates
    * `service/ds`: Updates service documentation
      * Documentation updates for ds - updated descriptions
    * `service/ec2`: Updates service API and documentation
      * This release introduces tag-on-create capability for the CreateImage API. A user can now specify tags that will be applied to the new resources (image, snapshots or both), during creation time.
    * `service/kafka`: Updates service API and documentation
    * `service/lambda`: Updates service API, documentation, and examples
      * Added the additional enum InvalidImage to StateReasonCode and LastUpdateStatusReasonCode fields.
    * `service/license-manager`: Updates service API and documentation
    * `service/medialive`: Updates service API and documentation
      * AWS Elemental MediaLive now supports black video and audio silence as new conditions to trigger automatic input failover.
    * `service/rds`: Updates service API and documentation
      * Adds support for Amazon RDS Cross-Region Automated Backups, the ability to setup automatic replication of snapshots and transaction logs from a primary AWS Region to a secondary AWS Region.
    * `service/ssm`: Updates service API and documentation
      * AWS Systems Manager Patch Manager MAC OS Support and OpsMetadata Store APIs to store operational metadata for an Application.
    * `service/workspaces`: Updates service API and documentation
      * Update the import-workspace-image API to have "BYOL_REGULAR_WSP" as a valid input string for ingestion-process.
    aws-sdk-go-automation committed Dec 4, 2020
    Configuration menu
    Copy the full SHA
    7d70d1d View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2020

  1. Release v1.36.3 (2020-12-07) (#3679)

    Release v1.36.3 (2020-12-07)
    ===
    
    ### Service Client Updates
    * `service/dms`: Updates service API and documentation
      * Added PreserveTransaction setting to preserve order of CDC for S3 as target. Added CsvNoSupValue setting to replace empty value for columns not included in the supplemental log for S3 as target.
    * `service/servicecatalog-appregistry`: Updates service API and documentation
    aws-sdk-go-automation committed Dec 7, 2020
    Configuration menu
    Copy the full SHA
    8e3af9c View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2020

  1. Release v1.36.4 (2020-12-08) (#3680)

    Release v1.36.4 (2020-12-08)
    ===
    
    ### Service Client Updates
    * `service/auditmanager`: Adds new service
    * `service/ecr`: Updates service API and documentation
      * This release adds support for configuring cross-region and cross-account replication of your Amazon ECR images.
    * `service/emr-containers`: Adds new service
    * `service/forecast`: Updates service API and documentation
    * `service/healthlake`: Adds new service
    * `service/kendra`: Updates service API and documentation
      * 1. Amazon Kendra connector for Google Drive repositories 2. Amazon Kendra's relevance ranking models are regularly tuned for each customer by capturing end-user search patterns and feedback.
    * `service/quicksight`: Updates service API and documentation
      * Added new parameters for join optimization.
    * `service/runtime.sagemaker`: Updates service API and documentation
    * `service/sagemaker`: Updates service API, documentation, and paginators
      * This feature helps you monitor model performance characteristics such as accuracy, identify undesired bias in your ML models, and explain model decisions better with explainability drift detection.
    * `service/sagemaker-edge`: Adds new service
    aws-sdk-go-automation committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    e13de64 View commit details
    Browse the repository at this point in the history
  2. aws/session: Add support for client TLS certs on HTTP client (#3654)

    Adds support for the SDK to automatically modify the HTTP client to include TLS configuration of custom Client TLS certificate. This configuration can be provide via the environment variable or directly in code via the `session.Options` struct.
    
    These options are compatible with the AWS_CA_BUNDLE configuration.
    
    #### Environment variable configuration
    
    Both `AWS_SDK_GO_CLIENT_TLS_CERT`, and `AWS_SDK_GO_CLIENT_TLS_KEY` must be provided together, and must point to valid PEM encoded file containing the certificate, and key respectively.
    
    ```
    AWS_SDK_GO_CLIENT_TLS_CERT=$HOME/my_client_cert
    AWS_SDK_GO_CLIENT_TLS_KEY=$HOME/my_client_key
    ```
    
    #### In code configuration via session.Options
    
    Alternative configuration is to specify the `ClientTLSCert` and `ClientTLSKey` fields on the `session.Options` struction. These are `io.Reader`s that provide the PEM encoded content for the certificate and key files.
    
    ```go
      sess, err := session.NewSessionWithOptions(session.Options{
          ClientTLSCert: myCertFile,
          ClientTLSKey: myKeyFile,
      })
    ```
    jasdel committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    039c0ff View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2020

  1. Release v1.36.5 (2020-12-09) (#3686)

    Release v1.36.5 (2020-12-09)
    ===
    
    ### Service Client Updates
    * `service/ec2`: Updates service API
      * This release adds support for G4ad instances powered by AMD Radeon Pro V520 GPUs and AMD 2nd Generation EPYC processors
    * `service/globalaccelerator`: Updates service API, documentation, and paginators
    * `service/redshift`: Updates service API and documentation
      * Add support for availability zone relocation feature.
    
    ### SDK Enhancements
    * `aws/session`: Add support for client TLS certs on HTTP client ([#3654](#3654))
        * Adds support for the SDK to automatically modify the HTTP client to include TLS configuration of custom Client TLS certificate.
    aws-sdk-go-automation committed Dec 9, 2020
    Configuration menu
    Copy the full SHA
    5bf92ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f791a6 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2020

  1. codegen: Ensure event stream events are in sorted order (#3681)

    Updates the SDK's code generation for event stream member event for
    methods to be sorted order. Ensures load order doesn't impact code
    generation output.
    
    Fixes #3664
    jasdel committed Dec 10, 2020
    Configuration menu
    Copy the full SHA
    ca8954d View commit details
    Browse the repository at this point in the history
  2. Release v1.36.6 (2020-12-10) (#3688)

    Release v1.36.6 (2020-12-10)
    ===
    
    ### Service Client Updates
    * `service/ec2`: Updates service API, documentation, and paginators
      * TGW connect simplifies connectivity of SD-WAN appliances; IGMP support for TGW multicast; VPC Reachability Analyzer for VPC resources connectivity analysis.
    * `service/kendra`: Updates service API and documentation
      * Amazon Kendra now supports adding synonyms to an index through the new Thesaurus resource.
    * `service/networkmanager`: Updates service API, documentation, and paginators
    aws-sdk-go-automation committed Dec 10, 2020
    Configuration menu
    Copy the full SHA
    f26fab5 View commit details
    Browse the repository at this point in the history
  3. aws/request: Add additional retry tests for SerializationError (#3682)

    Adds additional retry expectation tests for SDK's handling of
    SerializationError being treated as a retryable/throttling error.
    
    Related to #3649
    jasdel committed Dec 10, 2020
    Configuration menu
    Copy the full SHA
    bc1b6bc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0ec19bd View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2020

  1. Merge pull request #3687 from aws/version_maintenance

    version maintenance policy added to ReadMe.
    KaibaLopez committed Dec 11, 2020
    Configuration menu
    Copy the full SHA
    0d67c31 View commit details
    Browse the repository at this point in the history
  2. Release v1.36.7 (2020-12-11) (#3692)

    Release v1.36.7 (2020-12-11)
    ===
    
    ### Service Client Updates
    * `service/autoscaling`: Updates service API and documentation
      * Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs.
    * `service/cloudtrail`: Updates service API and documentation
      * CloudTrailInvalidClientTokenIdException is now thrown when a call results in the InvalidClientTokenId error code. The Name parameter of the AdvancedEventSelector data type is now optional.
    * `service/guardduty`: Updates service documentation
      * Documentation updates for GuardDuty
    * `service/iotsitewise`: Updates service API, documentation, and paginators
    * `service/monitoring`: Updates service documentation
      * Documentation updates for monitoring
    * `service/pi`: Updates service documentation
    aws-sdk-go-automation committed Dec 11, 2020
    Configuration menu
    Copy the full SHA
    fffbffe View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2020

  1. Release v1.36.8 (2020-12-14) (#3696)

    Release v1.36.8 (2020-12-14)
    ===
    
    ### Service Client Updates
    * `service/devops-guru`: Updates service API, documentation, paginators, and examples
    * `service/ec2`: Updates service API
      * Add c5n.metal to ec2 instance types list
    * `service/globalaccelerator`: Updates service paginators
    aws-sdk-go-automation committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    9617ad0 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2020

  1. Release v1.36.9 (2020-12-15)

    ===
    
    ### Service Client Updates
    * `service/amp`: Adds new service
    * `service/greengrassv2`: Adds new service
    * `service/iot`: Updates service API, documentation, and paginators
      * AWS IoT Rules Engine adds Kafka Action that allows sending data to Apache Kafka clusters inside a VPC. AWS IoT Device Defender adds custom metrics and machine-learning based anomaly detection.
    * `service/iotanalytics`: Updates service API and documentation
    * `service/iotdeviceadvisor`: Adds new service
    * `service/iotfleethub`: Adds new service
    * `service/iotwireless`: Adds new service
    * `service/lambda`: Updates service API, documentation, and examples
      * Added support for Apache Kafka as a event source. Added support for TumblingWindowInSeconds for streams event source mappings. Added support for FunctionResponseTypes for streams event source mappings
    * `service/ssm`: Updates service API, documentation, and paginators
      * Adding support for Change Manager API content
    awssdkgo committed Dec 15, 2020
    Configuration menu
    Copy the full SHA
    88e4cb8 View commit details
    Browse the repository at this point in the history
Loading