Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-rust-ci committed Jun 28, 2022
1 parent 5fc2346 commit 334f6dd
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 67 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<!-- Do not manually edit this file. Use the `changelogger` tool. -->
v0.45.0 (June 28th, 2022)
=========================
**Breaking Changes:**
- ⚠ ([smithy-rs#932](https://github.com/awslabs/smithy-rs/issues/932)) Replaced use of `pin-project` with equivalent `pin-project-lite`. For pinned enum tuple variants and tuple structs, this
change requires that we switch to using enum struct variants and regular structs. Most of the structs and enums that
were updated had only private fields/variants and so have the same public API. However, this change does affect the
public API of `aws_smithy_http_tower::map_request::MapRequestFuture<F, E>`. The `Inner` and `Ready` variants contained a
single value. Each have been converted to struct variants and the inner value is now accessible by the `inner` field
instead of the `0` field.

**New this release:**
- 🎉 ([smithy-rs#1411](https://github.com/awslabs/smithy-rs/issues/1411), [smithy-rs#1167](https://github.com/awslabs/smithy-rs/issues/1167)) Upgrade to Gradle 7. This change is not a breaking change, however, users of smithy-rs will need to switch to JDK 17
- 🐛 ([smithy-rs#1505](https://github.com/awslabs/smithy-rs/issues/1505), @kiiadi) Fix issue with codegen on Windows where module names were incorrectly determined from filenames

**Contributors**
Thank you for your contributions! ❤
- @kiiadi ([smithy-rs#1505](https://github.com/awslabs/smithy-rs/issues/1505))
<!-- Do not manually edit this file, use `update-changelogs` -->
v0.44.0 (June 22nd, 2022)
=========================
Expand Down
51 changes: 1 addition & 50 deletions CHANGELOG.next.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,53 +9,4 @@
# message = "Fix typos in module documentation for generated crates"
# references = ["smithy-rs#920"]
# meta = { "breaking" = false, "tada" = false, "bug" = false }
# author = "rcoh"
[[smithy-rs]]
message = "Upgrade to Gradle 7. This change is not a breaking change, however, users of smithy-rs will need to switch to JDK 17"
references = ["smithy-rs#1411", "smithy-rs#1167"]
meta = { "breaking" = false, "tada" = true, "bug" = false }
author = "rcoh"

[[aws-sdk-rust]]
message = "Add a trailing slash to the URI `/latest/meta-data/iam/security-credentials/ when loading credentials from IMDS"
references = ["aws-sdk-rust#560", "smithy-rs#1487"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "rcoh"

[[smithy-rs]]
message = """
Replaced use of `pin-project` with equivalent `pin-project-lite`. For pinned enum tuple variants and tuple structs, this
change requires that we switch to using enum struct variants and regular structs. Most of the structs and enums that
were updated had only private fields/variants and so have the same public API. However, this change does affect the
public API of `aws_smithy_http_tower::map_request::MapRequestFuture<F, E>`. The `Inner` and `Ready` variants contained a
single value. Each have been converted to struct variants and the inner value is now accessible by the `inner` field
instead of the `0` field.
"""
references = ["smithy-rs#932"]
meta = { "breaking" = true, "tada" = false, "bug" = false }
author = "Velfi"

[[aws-sdk-rust]]
message = """
Replaced use of `pin-project` with equivalent `pin-project-lite`. For pinned enum tuple variants and tuple structs, this
change requires that we switch to using enum struct variants and regular structs. Most of the structs and enums that
were updated had only private fields/variants and so have the same public API. However, this change does affect the
public API of `aws_smithy_http_tower::map_request::MapRequestFuture<F, E>`. The `Inner` and `Ready` variants contained a
single value. Each have been converted to struct variants and the inner value is now accessible by the `inner` field
instead of the `0` field.
"""
references = ["smithy-rs#932"]
meta = { "breaking" = true, "tada" = false, "bug" = false }
author = "Velfi"

[[aws-sdk-rust]]
message = "Add comments for docker settings needed when using this sdk"
references = ["aws-sdk-rust#540"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "jmklix"

[[smithy-rs]]
message = "Fix issue with codegen on Windows where module names were incorrectly determined from filenames"
references = ["smithy-rs#1505"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "kiiadi"
# author = "rcoh"
35 changes: 18 additions & 17 deletions aws/SDK_CHANGELOG.next.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,45 @@
"smithy-rs": [],
"aws-sdk-rust": [
{
"message": "Add method `ByteStream::into_async_read`. This makes it easy to convert `ByteStream`s into a struct implementing `tokio:io::AsyncRead`. Available on **crate feature** `rt-tokio` only.",
"message": "Add a trailing slash to the URI `/latest/meta-data/iam/security-credentials/ when loading credentials from IMDS",
"meta": {
"bug": false,
"bug": true,
"breaking": false,
"tada": true
"tada": false
},
"author": "Velfi",
"author": "rcoh",
"references": [
"smithy-rs#1390"
"aws-sdk-rust#560",
"smithy-rs#1487"
],
"since-commit": "1d81b4f717c1f4416cd3e9680704624ce07c57c4"
"since-commit": "5fc23464f67f356b8ba0c815fed739cd8997a650"
},
{
"message": "Switch to [RustCrypto](https://github.com/RustCrypto)'s implementation of MD5.",
"message": "Replaced use of `pin-project` with equivalent `pin-project-lite`. For pinned enum tuple variants and tuple structs, this\nchange requires that we switch to using enum struct variants and regular structs. Most of the structs and enums that\nwere updated had only private fields/variants and so have the same public API. However, this change does affect the\npublic API of `aws_smithy_http_tower::map_request::MapRequestFuture<F, E>`. The `Inner` and `Ready` variants contained a\nsingle value. Each have been converted to struct variants and the inner value is now accessible by the `inner` field\ninstead of the `0` field.\n",
"meta": {
"bug": false,
"breaking": false,
"breaking": true,
"tada": false
},
"author": "petrosagg",
"author": "Velfi",
"references": [
"smithy-rs#1404"
"smithy-rs#932"
],
"since-commit": "1d81b4f717c1f4416cd3e9680704624ce07c57c4"
"since-commit": "5fc23464f67f356b8ba0c815fed739cd8997a650"
},
{
"message": "Add support for `credential_process` in AWS configs for fetching credentials from an external process.",
"message": "Add comments for docker settings needed when using this sdk",
"meta": {
"bug": false,
"breaking": false,
"tada": true
"tada": false
},
"author": "jszwedko",
"author": "jmklix",
"references": [
"smithy-rs#1356"
"aws-sdk-rust#540"
],
"since-commit": "1d81b4f717c1f4416cd3e9680704624ce07c57c4"
"since-commit": "5fc23464f67f356b8ba0c815fed739cd8997a650"
}
],
"aws-sdk-model": []
}
}

0 comments on commit 334f6dd

Please sign in to comment.