Skip to content

Release v1.3.0

Compare
Choose a tag to compare
@awstools awstools released this 02 Aug 23:52
· 3662 commits to main since this release

This release updates the API for Amazon Route 53 Domains, Amazon Relational Database Service, Amazon Machine Learning, and added support for the SDK shared config file.

Adds support for shared config file (~/.aws/config)

Updates the SDK to take advantage of the new AWS_SDK_LOAD_CONFIG environment variable. When set to a truthy value, as defined in strconv.ParseBool, the SDK will load both shared config file (/.aws/config), and the shared credentials file (/.aws/credentials). The shared credentials file has precedence over the shared config.

Both config files share the same format. Both [name] and [profile name] are accepted as section names. The first, [name] will be looked for first before falling back to [profile name] per config file.

See the session package docs for more information.

Deprecates the session.New method since it cannot return an error when the session fails to load until a request is made. session.NewSession corrects this by returning an error when creating the session.

See release notes for more information.