From 7da8bb5efba6727efeb52ebfa1b416af5d92a639 Mon Sep 17 00:00:00 2001 From: Fahad Zubair Date: Thu, 20 Feb 2025 12:22:43 +0000 Subject: [PATCH] Add CHANGELOG entries (#4028) This PR adds the CHANGELOG entries that were missed in these two earlier PRs: https://github.com/smithy-lang/smithy-rs/pull/4010 https://github.com/smithy-lang/smithy-rs/pull/4008 --- .changelog/1740049466.md | 11 +++++++++++ .changelog/1740049621.md | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .changelog/1740049466.md create mode 100644 .changelog/1740049621.md diff --git a/.changelog/1740049466.md b/.changelog/1740049466.md new file mode 100644 index 000000000..74b8cb088 --- /dev/null +++ b/.changelog/1740049466.md @@ -0,0 +1,11 @@ +--- +applies_to: +- server +authors: +- drganjoo +references: [] +breaking: false +new_feature: false +bug_fix: true +--- +Previously, models would fail to generate when both the list and at least one of its members was directly constrained with documentation comments diff --git a/.changelog/1740049621.md b/.changelog/1740049621.md new file mode 100644 index 000000000..edd97eff5 --- /dev/null +++ b/.changelog/1740049621.md @@ -0,0 +1,11 @@ +--- +applies_to: +- server +authors: +- drganjoo +references: [] +breaking: false +new_feature: false +bug_fix: true +--- +Fixed code generation failure that occurred when using `Result` as a shape name in Smithy models with constrained members by properly handling naming conflicts with Rust's built-in Result type -- GitLab