Unverified Commit 0bc5523f authored by Zelda Hessler's avatar Zelda Hessler Committed by GitHub
Browse files

Release preparation v0.29.0/v0.0.26-alpha (#874)



Co-authored-by: default avatarJohn DiSanti <jdisanti@amazon.com>
parent 85abb5be
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -3,7 +3,9 @@ vNext (Month Day, Year)

**TODO Next Release:**
- Update README & aws-sdk-rust CI for MSRV upgrade to 1.54
- Fixed links to Usage Examples (smithy-rs#862, @floric)

v0.29.0-alpha (November 11th, 2021)
===================================

**Breaking Changes**

@@ -54,7 +56,10 @@ Several breaking changes around `aws_smithy_types::Instant` were introduced by s
- In `aws-sigv4`, the `SigningParams` builder's `date_time` setter was renamed to `time` and changed to take a `std::time::SystemTime` instead of a chrono's `DateTime<Utc>`.

**New this week**

- :warning: MSRV increased from 1.53.0 to 1.54.0 per our 3-behind MSRV policy.
- Conversions from `aws_smithy_types::DateTime` to `OffsetDateTime` from the `time` crate are now available from the `aws-smithy-types-convert` crate. (smithy-rs#849)
- Fixed links to Usage Examples (smithy-rs#862, @floric)

v0.28.0-alpha (November 11th, 2021)
===================================
+1 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@ vNext (Month Day, Year)

**New this week**

- :warning: MSRV increased from 1.53.0 to 1.54.0 per our 3-behind MSRV policy.
- Conversions from `aws_smithy_types::DateTime` to `OffsetDateTime` from the `time` crate are now available from the `aws-smithy-types-convert` crate. (smithy-rs#849)
- Fixed links to Usage Examples (smithy-rs#862, @floric)
- Added missing features to user agent formatting, and made it possible to configure an app name for the user agent via service config. (smithy-rs#865)
+919 −120

File changed.

Preview size limit exceeded, changes collapsed.

+17 −17
Original line number Diff line number Diff line
@@ -361,6 +361,21 @@
        },
        "com.amazonaws.apigateway#BackplaneControlService": {
            "type": "service",
            "traits": {
                "aws.api#service": {
                    "sdkId": "API Gateway",
                    "arnNamespace": "apigateway",
                    "cloudFormationName": "ApiGateway",
                    "cloudTrailEventSource": "apigateway.amazonaws.com",
                    "endpointPrefix": "apigateway"
                },
                "aws.auth#sigv4": {
                    "name": "apigateway"
                },
                "aws.protocols#restJson1": {},
                "smithy.api#documentation": "<fullname>Amazon API Gateway</fullname>\n        <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>",
                "smithy.api#title": "Amazon API Gateway"
            },
            "version": "2015-07-09",
            "operations": [
                {
@@ -723,22 +738,7 @@
                {
                    "target": "com.amazonaws.apigateway#UpdateVpcLink"
                }
            ],
            "traits": {
                "aws.api#service": {
                    "sdkId": "API Gateway",
                    "arnNamespace": "apigateway",
                    "cloudFormationName": "ApiGateway",
                    "cloudTrailEventSource": "apigateway.amazonaws.com",
                    "endpointPrefix": "apigateway"
                },
                "aws.auth#sigv4": {
                    "name": "apigateway"
                },
                "aws.protocols#restJson1": {},
                "smithy.api#documentation": "<fullname>Amazon API Gateway</fullname>\n        <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>",
                "smithy.api#title": "Amazon API Gateway"
            }
            ]
        },
        "com.amazonaws.apigateway#BadRequestException": {
            "type": "structure",
@@ -7902,7 +7902,7 @@
                "dataTraceEnabled": {
                    "target": "com.amazonaws.apigateway#Boolean",
                    "traits": {
                        "smithy.api#documentation": "<p>Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs. The PATCH path for this setting is <code>/{method_setting_key}/logging/dataTrace</code>, and the value is a Boolean.</p>"
                        "smithy.api#documentation": "<p>Specifies whether full requests and responses are logged for this method, which affects the log entries pushed to Amazon CloudWatch Logs. This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this option for production APIs. The PATCH path for this setting is <code>/{method_setting_key}/logging/dataTrace</code>, and the value is a Boolean.</p>"
                    }
                },
                "throttlingBurstLimit": {
+183 −73

File changed.

Preview size limit exceeded, changes collapsed.

Loading