Skip to content

Commit b8fa45f

Browse files
Release 2026-06-22
1 parent ba8cfdf commit b8fa45f

20 files changed

Lines changed: 74 additions & 28 deletions

File tree

codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private AwsPythonDependency() {}
2222
*/
2323
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
2424
"smithy_aws_core",
25-
"~=0.6.0",
25+
"~=0.7.0",
2626
PythonDependency.Type.DEPENDENCY,
2727
false);
2828
}

codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public final class SmithyPythonDependency {
2222
*/
2323
public static final PythonDependency SMITHY_CORE = new PythonDependency(
2424
"smithy_core",
25-
"~=0.5.0",
25+
"~=0.6.0",
2626
Type.DEPENDENCY,
2727
false);
2828

@@ -78,7 +78,7 @@ public final class SmithyPythonDependency {
7878
*/
7979
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
8080
"smithy_aws_core",
81-
"~=0.6.0",
81+
"~=0.7.0",
8282
Type.DEPENDENCY,
8383
false);
8484

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "bugfix",
5+
"description": "Fixed awsQuery response deserialization for operations with no output members."
6+
},
7+
{
8+
"type": "dependency",
9+
"description": "Bump `smithy-core` from `~=0.5.0` to `~=0.6.0`."
10+
}
11+
]
12+
}

packages/smithy-aws-core/.changes/next-release/smithy-aws-core-bugfix-05435b3fb9a54b86b4ebb4d61b0d13ae.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

packages/smithy-aws-core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v0.7.0
4+
5+
### Bug fixes
6+
* Fixed awsQuery response deserialization for operations with no output members.
7+
8+
### Dependencies
9+
* Bump `smithy-core` from `~=0.5.0` to `~=0.6.0`.
10+
311
## v0.6.0
412

513
### Dependencies

packages/smithy-aws-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Topic :: Software Development :: Libraries"
2828
]
2929
dependencies = [
30-
"smithy-core~=0.5.0",
30+
"smithy-core~=0.6.0",
3131
"smithy-http~=0.4.0",
3232
"aws-sdk-signers~=0.3.0"
3333
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
__version__ = "0.6.0"
4+
__version__ = "0.7.0"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"changes": [
3+
{
4+
"type": "breaking",
5+
"description": "Refactored retry strategies to be async, allowing them to wait internally or use async synchronization primitives if necessary. The `RetryStrategy` protocol moved from `smithy_core.interfaces.retries` to `smithy_core.aio.interfaces.retries`, and `SimpleRetryStrategy`, `StandardRetryStrategy`, and `RetryStrategyResolver` moved from `smithy_core.retries` to `smithy_core.aio.retries`."
6+
},
7+
{
8+
"type": "feature",
9+
"description": "Added `UnknownEnumMixin` for representing unknown and error-corrected enum/intEnum variants."
10+
}
11+
]
12+
}

packages/smithy-core/.changes/next-release/smithy-core-breaking-e1d59c61d8344b88832fc481dbc16531.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

packages/smithy-core/.changes/next-release/smithy-core-feature-a6b53cf89aa64daa8f9c25cc52c20875.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)