Releases: smithy-lang/smithy-rs
April 27th Alpha RC2
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 haveis_xyz
andas_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
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
andHashMap
aware: Builder objects now generate special case builders when the argument is aSet
orHashMap
(#267). These builders accept an element of theVec
orHashMap
and append to the builder, creating a collection if it did not previously exist. If you need to pass aVec
orHashMap
directly to the builder, usebuilder.set_xyz(Some(v))
instead ofbuilder.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 fortokio::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
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 thefluent
feature which is enabled by default & brings inaws-hyper
as a default transport. Breaking: To preserve the old behavior, adddefault-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 concreteResponseBody
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
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 inC
, the underlying Http connection. This made storing a client in a struct a little cumbersome. We have introduced aStandard
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
Tracing, User agent & Bugfixes
Hello! Welcome to our first regular installment of Tuesday releases.
New in this release:
- Tracing integration: Thanks to @alistaim for his feedback during development. Tracing events are now emitted when operations are dispatched at the info level. At the DEBUG level, a separate span is created to track time spent parsing.
Feb 22 17:21:33.390 INFO send_operation
{ operation="GenerateRandom"
service="kms"
status="construction_failure"
Failed to load credentials from the credentials provider}:
smithy_http_tower::parse_response: close time.busy=36.0µs time.idle=158µs
-
User Agent Support: Two headers are now set on every request
User-Agent
andx-amz-user-agent
. These identify the requester as the AWS Rust SDK & enable metrics on how many people are using the new SDK. -
Bug fixes: Two issue were fixed:
- Missing
HOST
setter caused signing to fail. - Endpoints were being resolved incorrectly
- Missing
SDK for DynamoDB, KMS, Secrets Manager & Kinesis
Very excited for our first real release!
- Environment variable & static credentials and region support
- Support for DynamoDB, KMS, Secrets Manager & Kinesis
- Request dispatch with Tokio/Hyper/Tower