From d091728972743f20dc7b31fcffbf99cea6c0cc89 Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 15:57:42 -0500 Subject: [PATCH 1/8] Prepare release for bugfixes Commit preparing changelog entries to release two bugfixes: adding the port to the host header to the CRT HTTP client and fixing a typo for the shapeId of eventHeaders in smithy-core --- .../next-release/smithy-core-bugfix-20251103155132.json | 4 ++++ packages/smithy-core/src/smithy_core/__init__.py | 2 +- .../next-release/smithy-http-bugfix-20251017171341.json | 4 ++-- packages/smithy-http/src/smithy_http/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json diff --git a/packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json b/packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json new file mode 100644 index 000000000..afe624189 --- /dev/null +++ b/packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json @@ -0,0 +1,4 @@ +{ + "type": "bugfix", + "description": "Fix incorrect header casing for the shape id of eventHeaders" +} \ No newline at end of file diff --git a/packages/smithy-core/src/smithy_core/__init__.py b/packages/smithy-core/src/smithy_core/__init__.py index a9e14aff3..2cf04d6ff 100644 --- a/packages/smithy-core/src/smithy_core/__init__.py +++ b/packages/smithy-core/src/smithy_core/__init__.py @@ -8,7 +8,7 @@ from . import interfaces, rfc3986 from .exceptions import SmithyError -__version__ = "0.1.0" +__version__ = "0.1.1" class HostType(Enum): diff --git a/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json b/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json index d8880d553..3bc72d1d5 100644 --- a/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json +++ b/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json @@ -1,4 +1,4 @@ { "type": "bugfix", - "description": "add port to CRT HTTP client's host header" -} \ No newline at end of file + "description": "Add port to CRT HTTP client's host header" +} diff --git a/packages/smithy-http/src/smithy_http/__init__.py b/packages/smithy-http/src/smithy_http/__init__.py index bdd5efda3..c4ff55b44 100644 --- a/packages/smithy-http/src/smithy_http/__init__.py +++ b/packages/smithy-http/src/smithy_http/__init__.py @@ -6,7 +6,7 @@ from . import interfaces from .interfaces import FieldPosition -__version__ = "0.2.0" +__version__ = "0.2.1" class Field(interfaces.Field): From adc74e640629fcf749109e8ace1d25d115685367 Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:29:25 -0500 Subject: [PATCH 2/8] Run release scripts --- packages/smithy-core/.changes/0.1.1.json | 8 ++++++++ .../next-release/smithy-core-bugfix-20251103155132.json | 4 ---- packages/smithy-http/.changes/0.2.1.json | 8 ++++++++ .../next-release/smithy-http-bugfix-20251017171341.json | 4 ---- 4 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 packages/smithy-core/.changes/0.1.1.json delete mode 100644 packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json create mode 100644 packages/smithy-http/.changes/0.2.1.json delete mode 100644 packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json diff --git a/packages/smithy-core/.changes/0.1.1.json b/packages/smithy-core/.changes/0.1.1.json new file mode 100644 index 000000000..362276e95 --- /dev/null +++ b/packages/smithy-core/.changes/0.1.1.json @@ -0,0 +1,8 @@ +{ + "changes": [ + { + "type": "bugfix", + "description": "Fix incorrect header casing for the shape id of eventHeaders" + } + ] +} \ No newline at end of file diff --git a/packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json b/packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json deleted file mode 100644 index afe624189..000000000 --- a/packages/smithy-core/.changes/next-release/smithy-core-bugfix-20251103155132.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "bugfix", - "description": "Fix incorrect header casing for the shape id of eventHeaders" -} \ No newline at end of file diff --git a/packages/smithy-http/.changes/0.2.1.json b/packages/smithy-http/.changes/0.2.1.json new file mode 100644 index 000000000..fd763f29b --- /dev/null +++ b/packages/smithy-http/.changes/0.2.1.json @@ -0,0 +1,8 @@ +{ + "changes": [ + { + "type": "bugfix", + "description": "add port to CRT HTTP client's host header" + } + ] +} \ No newline at end of file diff --git a/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json b/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json deleted file mode 100644 index 3bc72d1d5..000000000 --- a/packages/smithy-http/.changes/next-release/smithy-http-bugfix-20251017171341.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "bugfix", - "description": "Add port to CRT HTTP client's host header" -} From 56ceebeb43f599778e3158e65c77a47368bee80e Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:30:23 -0500 Subject: [PATCH 3/8] Run render scripts --- packages/smithy-core/CHANGELOG.md | 5 +++++ packages/smithy-http/CHANGELOG.md | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/packages/smithy-core/CHANGELOG.md b/packages/smithy-core/CHANGELOG.md index 0d6e4e72c..768069abf 100644 --- a/packages/smithy-core/CHANGELOG.md +++ b/packages/smithy-core/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.1.1 + +### Bug fixes +* Fix incorrect header casing for the shape id of eventHeaders + ## v0.1.0 ### Breaking Changes diff --git a/packages/smithy-http/CHANGELOG.md b/packages/smithy-http/CHANGELOG.md index f122c3d2e..6c76c7e03 100644 --- a/packages/smithy-http/CHANGELOG.md +++ b/packages/smithy-http/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.2.1 + +### Bug fixes +* add port to CRT HTTP client's host header + ## v0.2.0 ### Breaking Changes From f0aadb437d3a566f61586659762b69319b762052 Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:43:25 -0500 Subject: [PATCH 4/8] Update packages/smithy-core/.changes/0.1.1.json Co-authored-by: Nate Prewitt --- packages/smithy-core/.changes/0.1.1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/smithy-core/.changes/0.1.1.json b/packages/smithy-core/.changes/0.1.1.json index 362276e95..26b622533 100644 --- a/packages/smithy-core/.changes/0.1.1.json +++ b/packages/smithy-core/.changes/0.1.1.json @@ -2,7 +2,7 @@ "changes": [ { "type": "bugfix", - "description": "Fix incorrect header casing for the shape id of eventHeaders" + "description": "Fix incorrect header casing for the shape id of eventHeaders." } ] } \ No newline at end of file From 558847592d75ee93848e7419b3f673f030c41f0f Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:43:39 -0500 Subject: [PATCH 5/8] Update packages/smithy-http/.changes/0.2.1.json Co-authored-by: Nate Prewitt --- packages/smithy-http/.changes/0.2.1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/smithy-http/.changes/0.2.1.json b/packages/smithy-http/.changes/0.2.1.json index fd763f29b..c9baceda0 100644 --- a/packages/smithy-http/.changes/0.2.1.json +++ b/packages/smithy-http/.changes/0.2.1.json @@ -2,7 +2,7 @@ "changes": [ { "type": "bugfix", - "description": "add port to CRT HTTP client's host header" + "description": "Add port to CRT HTTP client's host header." } ] } \ No newline at end of file From afda666aba2a8901abcd1ab726ac7b46cd00d4aa Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:43:59 -0500 Subject: [PATCH 6/8] Correct typo in CHANGELOG for v0.2.1 --- packages/smithy-http/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/smithy-http/CHANGELOG.md b/packages/smithy-http/CHANGELOG.md index 6c76c7e03..53aedec83 100644 --- a/packages/smithy-http/CHANGELOG.md +++ b/packages/smithy-http/CHANGELOG.md @@ -3,7 +3,7 @@ ## v0.2.1 ### Bug fixes -* add port to CRT HTTP client's host header +* Add port to CRT HTTP client's host header ## v0.2.0 From ae922eb32e9a6799d2c5aabddce3411c4cb25efa Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:44:37 -0500 Subject: [PATCH 7/8] Fix typo in CHANGELOG for v0.2.1 --- packages/smithy-http/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/smithy-http/CHANGELOG.md b/packages/smithy-http/CHANGELOG.md index 53aedec83..052989523 100644 --- a/packages/smithy-http/CHANGELOG.md +++ b/packages/smithy-http/CHANGELOG.md @@ -3,7 +3,7 @@ ## v0.2.1 ### Bug fixes -* Add port to CRT HTTP client's host header +* Add port to CRT HTTP client's host header. ## v0.2.0 From 646cf5d896a48f84fd2efd779cd1291373009122 Mon Sep 17 00:00:00 2001 From: SamRemis Date: Mon, 3 Nov 2025 16:46:05 -0500 Subject: [PATCH 8/8] Add punctuation to changelog --- packages/smithy-core/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/smithy-core/CHANGELOG.md b/packages/smithy-core/CHANGELOG.md index 768069abf..52eb36e50 100644 --- a/packages/smithy-core/CHANGELOG.md +++ b/packages/smithy-core/CHANGELOG.md @@ -3,7 +3,7 @@ ## v0.1.1 ### Bug fixes -* Fix incorrect header casing for the shape id of eventHeaders +* Fix incorrect header casing for the shape id of eventHeaders. ## v0.1.0