Skip to content

Releases: smithy-lang/smithy-rs

June 15th, 2021: CloudFormation, SageMaker, EC2, and SES

15 Jun 18:32
bf0389b
Compare
Choose a tag to compare

Smithy-rs now has codegen support for all AWS services! This week, we've added CloudFormation, SageMaker, EC2, and SES. More details below.

New this Week

  • 🎉 Add support for CloudFormation (#500, @alistaim)
  • 🎉 Add support for SageMaker (#473, @alistaim)
  • 🎉 Add support for EC2 (#495)
  • 🎉 Add support for SES (#499)
  • Add support for the EC2 Query protocol (#475)
  • Generate fluent builders for all smithy-rs clients (#496, @jonhoo)
  • 🐛 Bugfix: RFC-3339 timestamps (date-time format in Smithy) are now formatted correctly (#479, #489)
  • 🐛 Bugfix: Union and enum variants named Self no longer cause compile errors in generated code (#492)

Internal Changes

  • Combine individual example packages into per-service example packages with multiple binaries (#477, #480, #482, #484, #485, #486, #487, #491)
  • Work towards JSON deserialization overhaul (#474)
  • Make deserializer function naming consistent between XML and JSON deserializers (#497)

Contributors:

Thanks!!

June 8th, 2021: 9 new services added

08 Jun 14:42
07e22f6
Compare
Choose a tag to compare
Pre-release

Starting this week, smithy-rs now has codegen support for all AWS services except EC2. This week we’ve added MediaLive, MediaPackage, SNS, Batch, STS, RDS, RDSData, Route53, and IAM. More details below.

New this Week

  • 🎉 Add support for MediaLive and MediaPackage (#449, @Alastaim)
  • 🎉 Add support for SNS (#450)
  • 🎉 Add support for Batch (#452, @alistaim)
  • 🎉 Add support for STS. Note: This does not include support for an STS-based credential provider although an example is provided. (#453)
  • 🎉 Add support for RDS (#455) and RDS-Data (#470). (@LMJW)
  • 🎉 Add support for Route53 (#457, @alistaim)
  • Support AWS Endpoints & Regions. With this update, regions like iam-fips and cn-north-1 will now resolve to the correct endpoint. Please report any issues with endpoint resolution. (#468)
  • 🐛 Bugfix: Primitive numerics and booleans are now filtered from serialization when they are 0 and not marked as required. This resolves issues where maxResults needed to be set even though it is optional. (#451)
  • 🐛 Bugfix: S3 Head Object returned the wrong error when the object did not exist (#460, fixes #456)

Internal Changes

  • Remove unused key “build” from smithy-build.json and Rust settings (#447)
  • Split SDK CI jobs for faster builds & reporting (#446)
  • Fix broken doc link in JSON serializer (@LMJW)
  • Work towards JSON deserialization overhaul (#454, #462)

Contributors:

Thanks!!

June 1st, 2021: SQS & ECS support

01 Jun 18:04
da614bf
Compare
Choose a tag to compare
Pre-release

New this week:

  • 🎉 Add support for SQS. SQS is our first service to use the awsQuery protocol. Please report any issues you may encounter.
  • 🎉 Add support for ECS.
  • Breaking Change: Refactored smithy_types::Error to be more flexible. Internal fields of Error are now private and can now be accessed accessor functions. (#426)
  • ByteStream::from_path now accepts implications AsRef<Path> (@LMJW)
  • Add support for S3 extended request id (#429)
  • Add support for the awsQuery protocol. smithy-rs can now add support for all services except EC2.
  • Bugfix: Timestamps that fell precisely on minute boundaries were not properly formatted (#435)
  • Improve documentation for ByteStream & add pub use (#443)
  • Add support for EndpointPrefix used by s3::WriteGetObjectResponse (#420)

Smithy Internals

  • Rewrite JSON serializer (#411, #423, #416, #427)
  • Remove dead “rootProject” setting in smithy-build.json
  • Bugfix: Idempotency tokens were not properly generated when operations were used by resources

Contributors:

Thanks!

May 25th 2021: S3 & SSM support

25 May 16:05
b18421d
Compare
Choose a tag to compare
Pre-release

New This Week

  • 🎉 Add S3 support. S3 is the first protocol to use our new XML serializers which increases the likelihood of undiscovered issues. In addition, virtual addressing, dualstack and transfer acceleration are not currently supported. Please try it out and let us know if you run into any problems! (#398) 🎉
  • 🎉 Add support for SSM. SSM was prioritized based on your votes—Please keep voting for the services and feature most important to you! (#393) 🎉
  • Add request/response tracing. These can be enabled via tracing subscriber by setting: RUST_LOG='smithy_http_tower::dispatch=trace,smithy_http::middleware=trace' (#397)
  • Bugfix: Generated service docs were missing at the module level (#404)
  • ByteStream can now be created from Path and File via ByteStream::from_path (#412)
  • Example code now uses write_all_buf (#408, @LMJW)
  • The Authorization and x-amz-security-token headers are now marked as sensitive and will be omitted from logs even when full request/response tracing is enabled

Updates to internals:

  • Full restXML protocol support
  • Enum variants are now properly escaped (#388)
  • x-amz-useragent and x-amz-date headers are now signed (required for S3)

Contributors:

This release will be built into aws-sdk-rust:v0.0.5-alpha
Thanks!

May 18th 2021

18 May 13:09
1b5d320
Compare
Choose a tag to compare
May 18th 2021 Pre-release
Pre-release

New this week:

  • 🎉 Add support for AWS Lambda (#361, @richardhboyd) 🎉
  • Breaking change (technically, no services impacted): Add support for streaming request bodies. When Blob is marked as a streaming request type, the SDK now generates ByteStream instead. (#359)
  • Types represented by the Smithy Set type now generate Vec<T> in all cases (#270)
  • Bugfix: The .message()field of errors will now look for both message and Message in the model (#374)
  • Add support for the AWS_REGION environment variable. (#362)
  • The request type generated by the fluent builders, eg. dynamodb.list_tables() is now Debug (#377, @declanvk)

Updates to Internals:

  • Recursive Inline dependencies are supported via a fixed-point algorithm
  • restXML deserialization support
  • Overhaul of URL encoding during request serialization, fixing several bugs (#368)
  • Update signer to avoid cloning credentials (#341)

Contributors:

Thanks!

May 6th Alpha Release

06 May 21:48
4b16e27
Compare
Choose a tag to compare
May 6th Alpha Release Pre-release
Pre-release

New this week:

  • Fix stack overflow in SdkBody Debug implementation (#343)
  • Upgrade to Smithy 1.7. This adds support for several new API Gateway endpoints (#340)
  • Add support for streaming response bodies. This is currently only used in Polly (#338)
  • Added code examples for Kinesis (#306)

Contributors:

Thanks!

April 27th Alpha RC2

27 Apr 21:31
1d00f38
Compare
Choose a tag to compare
April 27th Alpha RC2 Pre-release
Pre-release

New this week

  • Added QLDB & QLDB Session support (@marcbowes)
  • New examples for secrets manager. (@nataibi, @Doug-AWS )
  • Examples for Kinesis, DynamoDb & Amazon Polly (@Doug-AWS )
  • Added support for RusTLS. This is now the default. You can switch back to native-tls with default-features = false, features = ["native-tls", "client"]
  • Unions like AttributeValue now have is_xyz and as_xyz methods. (@barbu110)
  • Bugfix: An empty body could cause an empty H2 frame to be sent.
  • Clients are now Clone + Debug (@shinglyu)
  • Generated crates have been renamed to aws-sdk-*
  • Credentials are now zero'd when they are dropped
  • Event stream operations which wouldn't work are not generated

Contributors

This release includes work from the folks below. Thanks for your contributions!

Public Alpha RC1 4-7-2021

07 Apr 14:54
cd21b6d
Compare
Choose a tag to compare
Pre-release

New this week:

  • Support for 2 new services (& the restJson protocol!): This release adds support for ApiGateway and Amazon Polly. As these are the first two services with the new protocol, bugs are more likely than usual. Please let us know if you hit any issues. New examples have been added.
  • New error shapes: Each generated service now generates a <service_name>::Error struct. This is a superset of all errors that the service emits & can be used to write unified error handling that works across all operations on the same service:
    #[tokio::main]
    async fn main() -> Result<(), dynamodb::Error> {
       let client = dynamodb::Client::from_env();
       client.list_tables().send().await?; // All operation errors impl `Into<dynamodb::Error>`
    }
  • Breaking Change: Generated builders are Vec and HashMap aware: Builder objects now generate special case builders when the argument is a Set or HashMap (#267). These builders accept an element of the Vec or HashMap and append to the builder, creating a collection if it did not previously exist. If you need to pass a Vec or HashMap directly to the builder, use builder.set_xyz(Some(v)) instead of builder.xyz(v).
  • Breaking Change: High level clients are now exported in <servicename>::Client instead of <servicename>::fluent::Client
  • Bugfix: The futures produced by clients were not Send which made them unusable for tokio::spawn. This has been resolved.

The generated code has been pushed to https://github.com/awslabs/smithy-rs/releases/tag/v0.6-rc1.cargo

Fluent client, error refactoring, concrete response bodies

17 Mar 13:23
3f4f44c
Compare
Choose a tag to compare

New this week:

  • A "fluent" ergonomic client is available in dynamodb::fluent (and for all other services). At the cost of some flexibility, this offers an API with fewer moving parts that is generally a little more ergonomic to use. The old API is still available. This is enabled via the fluent feature which is enabled by default & brings in aws-hyper as a default transport. Breaking: To preserve the old behavior, add default-features = false
  • Breaking change: Errors have been refactored to expose their "kind" separate from metadata. In general, you can simply add .kind to existing code.
  • SdkResult/SdkError are no longer generic in B, the response body. Instead, a concrete ResponseBody is provided by the SDK that is optimized for the specific use case.

Diff to last week: v0.4-alpha.cargo...v0.5-alpha.cargo

Retries, new client connection managment

09 Mar 20:11
5bb8b35
Compare
Choose a tag to compare

New this week:

  • Retry support. Note: If you are using client from the main branch be sure to upgrade. A major bug in the retry code landed although it was never in a release (#238). These support:
    • Modeled retries
    • The Retry-After header
    • Error Code based retries
    • Http Status based retries
  • Improved client connection management (#237). Previously, if you had an aws_hyper::Client it was generic in C, the underlying Http connection. This made storing a client in a struct a little cumbersome. We have introduced a Standard connection that can still be swapped internally for use in tests but avoids the need for client code to manage a generic parameter.
  • New usage examples. The "Movies" DynamoDB example has been ported to Rust and is now included in the examples folder. This also includes an example of a hand-written waiter. (#205)
  • Docs are now generated for union variants (previously missing)

Compatibility:

  • A number of pseudo internal APIs have been renamed. Consult the diff if you encounter issues.

Diff to last week: v0.0.3-cargo...v0.4-alpha.cargo

For Git based cargo users, use tag: v0.4-alpha.cargo