Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private AwsPythonDependency() {}
*/
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
"smithy_aws_core",
"<0.1.0",
"~=0.1.0",
PythonDependency.Type.DEPENDENCY,
false);
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_CORE = new PythonDependency(
"smithy_core",
"<0.1.0",
"~=0.1.0",
Type.DEPENDENCY,
false);

Expand All @@ -33,7 +33,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_HTTP = new PythonDependency(
"smithy_http",
"<0.1.0",
"~=0.1.0",
Type.DEPENDENCY,
false);

Expand All @@ -60,7 +60,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_JSON = new PythonDependency(
"smithy_json",
"<0.1.0",
"~=0.1.0",
Type.DEPENDENCY,
false);

Expand All @@ -69,7 +69,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_AWS_EVENT_STREAM = new PythonDependency(
"smithy_aws_event_stream",
"<0.1.0",
"~=0.1.0",
Type.DEPENDENCY,
false);

Expand All @@ -78,7 +78,7 @@ public final class SmithyPythonDependency {
*/
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
"smithy_aws_core",
"<0.1.0",
"~=0.1.0",
Type.DEPENDENCY,
false);

Expand Down
16 changes: 16 additions & 0 deletions packages/aws-sdk-signers/.changes/0.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"changes": [
{
"type": "breaking",
"description": "Changed the `signing_properties` and `http_request` args to `properties` and `request` for the `sign` methods in `SigV4Signer` and `AsyncSigV4Signer`."
},
{
"type": "enhancement",
"description": "Update the async signer to use the special payload hash for event stream operations."
},
{
"type": "enhancement",
"description": "Check seekable in aws signers"
}
]
}
9 changes: 9 additions & 0 deletions packages/aws-sdk-signers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.1.0

### Breaking Changes
* Changed the `signing_properties` and `http_request` args to `properties` and `request` for the `sign` methods in `SigV4Signer` and `AsyncSigV4Signer`.

### Enhancements
* Update the async signer to use the special payload hash for event stream operations.
* Check seekable in aws signers

## v0.0.3

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-sdk-signers/src/aws_sdk_signers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)

__license__ = "Apache-2.0"
__version__ = "0.0.3"
__version__ = "0.1.0"

__all__ = (
"URI",
Expand Down
12 changes: 12 additions & 0 deletions packages/smithy-aws-core/.changes/0.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"changes": [
{
"type": "breaking",
"description": "Updated sigv4 auth resolution and identity providers to the new transport-agnostic interfaces."
},
{
"type": "feature",
"description": "Added a hand-written implementation for the `restJson1` protocol."
}
]
}

This file was deleted.

This file was deleted.

8 changes: 8 additions & 0 deletions packages/smithy-aws-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.1.0

### Breaking Changes
* Updated sigv4 auth resolution and identity providers to the new transport-agnostic interfaces.

### Features
* Added a hand-written implementation for the `restJson1` protocol.

## v0.0.3

### Bug fixes
Expand Down
10 changes: 5 additions & 5 deletions packages/smithy-aws-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ classifiers = [
"Topic :: Software Development :: Libraries"
]
dependencies = [
"smithy-core",
"smithy-http",
"aws-sdk-signers"
"smithy-core~=0.1.0",
"smithy-http~=0.1.0",
"aws-sdk-signers~=0.1.0"
]

[project.urls]
Expand All @@ -45,10 +45,10 @@ path = "src/smithy_aws_core/__init__.py"

[project.optional-dependencies]
eventstream = [
"smithy-aws-event-stream"
"smithy-aws-event-stream~=0.1.0"
]
json = [
"smithy-json"
"smithy-json~=0.1.0"
]

[tool.hatch.build]
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-aws-core/src/smithy_aws_core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

__version__ = "0.0.3"
__version__ = "0.1.0"
8 changes: 8 additions & 0 deletions packages/smithy-aws-event-stream/.changes/0.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"changes": [
{
"type": "breaking",
"description": "Update `AWSEventPublisher` to use `SigningConfig` instead of `EventSigner` so identity can be fetched at signing time."
}
]
}
5 changes: 5 additions & 0 deletions packages/smithy-aws-event-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.1.0

### Breaking Changes
* Update `AWSEventPublisher` to use `SigningConfig` instead of `EventSigner` so identity can be fetched at signing time.

## v0.0.1

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-aws-event-stream/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Topic :: Software Development :: Libraries"
]
dependencies = [
"smithy-core",
"smithy-core~=0.1.0",
]

[project.urls]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

__version__ = "0.0.1"
__version__ = "0.1.0"
40 changes: 40 additions & 0 deletions packages/smithy-core/.changes/0.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"changes": [
{
"type": "breaking",
"description": "Introduced transport-agnostic interfaces for identity and auth, replacing the existing interfaces that were coupled to HTTP requests and responses."
},
{
"type": "breaking",
"description": "Updated retry interfaces to pull information from exceptions instead of requiring a separate classification step."
},
{
"type": "breaking",
"description": "Replaced `Exception` suffix with `Error` to follow PEP8 conventions."
},
{
"type": "feature",
"description": "Updated schema members to preserve their ordering from the model using dict ordering, which significantly cuts back the amount of code that must be generated."
},
{
"type": "feature",
"description": "Introduced the `ClientProtocol` interface to allow for hand-written protocol implementations and protocol swapping at runtime."
},
{
"type": "feature",
"description": "Introduced a hand-written request pipeline to replace the one that was code-generated in Java."
},
{
"type": "feature",
"description": "Updated exceptions to embed retryablity information."
},
{
"type": "enhancement",
"description": "Added usages of `TypeForm` from PEP747 via `typing_extensions` to better support typing for event streams and typed properties."
},
{
"type": "bugfix",
"description": "Fix broken initializer for `HTTPAPIKeyAuthTrait`. ([#533](https://github.com/smithy-lang/smithy-python/pull/553))"
}
]
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

19 changes: 19 additions & 0 deletions packages/smithy-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## v0.1.0

### Breaking Changes
* Introduced transport-agnostic interfaces for identity and auth, replacing the existing interfaces that were coupled to HTTP requests and responses.
* Updated retry interfaces to pull information from exceptions instead of requiring a separate classification step.
* Replaced `Exception` suffix with `Error` to follow PEP8 conventions.

### Features
* Updated schema members to preserve their ordering from the model using dict ordering, which significantly cuts back the amount of code that must be generated.
* Introduced the `ClientProtocol` interface to allow for hand-written protocol implementations and protocol swapping at runtime.
* Introduced a hand-written request pipeline to replace the one that was code-generated in Java.
* Updated exceptions to embed retryablity information.

### Enhancements
* Added usages of `TypeForm` from PEP747 via `typing_extensions` to better support typing for event streams and typed properties.

### Bug fixes
* Fix broken initializer for `HTTPAPIKeyAuthTrait`. ([#533](https://github.com/smithy-lang/smithy-python/pull/553))

## v0.0.2

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-core/src/smithy_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from . import interfaces, rfc3986
from .exceptions import SmithyError

__version__ = "0.0.2"
__version__ = "0.1.0"


class HostType(Enum):
Expand Down
12 changes: 12 additions & 0 deletions packages/smithy-http/.changes/0.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"changes": [
{
"type": "breaking",
"description": "Removed identity and auth interfaces in favor of the transport-agnostic interfaces introduced in `smithy-core`."
},
{
"type": "feature",
"description": "Introduced schema-based serializers and deserializers for HTTP binding protocols."
}
]
}

This file was deleted.

This file was deleted.

8 changes: 8 additions & 0 deletions packages/smithy-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.1.0

### Breaking Changes
* Removed identity and auth interfaces in favor of the transport-agnostic interfaces introduced in `smithy-core`.

### Features
* Introduced schema-based serializers and deserializers for HTTP binding protocols.

## v0.0.1

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-http/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Topic :: Software Development :: Libraries"
]
dependencies = [
"smithy-core",
"smithy-core~=0.1.0",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion packages/smithy-http/src/smithy_http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from . import interfaces
from .interfaces import FieldPosition

__version__ = "0.0.1"
__version__ = "0.1.0"


class Field(interfaces.Field):
Expand Down
Loading