diff --git a/CHANGELOG.v2.alpha.md b/CHANGELOG.v2.alpha.md index 5e43526fa0cf1..b78410095bcc4 100644 --- a/CHANGELOG.v2.alpha.md +++ b/CHANGELOG.v2.alpha.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.175.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.175.0-alpha.0...v2.175.1-alpha.0) (2025-01-10) + ## [2.175.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.174.1-alpha.0...v2.175.0-alpha.0) (2025-01-09) diff --git a/CHANGELOG.v2.md b/CHANGELOG.v2.md index 606096c14a563..04cf6618a5414 100644 --- a/CHANGELOG.v2.md +++ b/CHANGELOG.v2.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.175.1](https://github.com/aws/aws-cdk/compare/v2.175.0...v2.175.1) (2025-01-10) + +### Bug Fixes + +* **cli:** "no stack found in the main cloud assembly" ([#32839](https://github.com/aws/aws-cdk/issues/32839)) ([7b68908](https://github.com/aws/aws-cdk/commit/7b68908dbebde02037d8b7650f4bb10d4c5db89d)), closes [aws/aws-cdk#32636](https://github.com/aws/aws-cdk/issues/32636) [#32836](https://github.com/aws/aws-cdk/issues/32836) [#32836](https://github.com/aws/aws-cdk/issues/32836) + ## [2.175.0](https://github.com/aws/aws-cdk/compare/v2.174.1...v2.175.0) (2025-01-09) diff --git a/packages/@aws-cdk/cloudformation-diff/lib/diff/types.ts b/packages/@aws-cdk/cloudformation-diff/lib/diff/types.ts index 48626e2bc5e3b..5fbe1c15640f5 100644 --- a/packages/@aws-cdk/cloudformation-diff/lib/diff/types.ts +++ b/packages/@aws-cdk/cloudformation-diff/lib/diff/types.ts @@ -516,7 +516,7 @@ export enum ResourceImpact { * of property-level impacts. * @param one the current worst impact so far. * @param two the new impact being considered (can be undefined, as we may not always be - * able to determine some peroperty's impact). + * able to determine some properties impact). */ function worstImpact(one: ResourceImpact, two?: ResourceImpact): ResourceImpact { if (!two) { return one; } diff --git a/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/cluster-resource-handler/compareLogging.ts b/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/cluster-resource-handler/compareLogging.ts index 78c7772cdf219..0613490761ff8 100644 --- a/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/cluster-resource-handler/compareLogging.ts +++ b/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/cluster-resource-handler/compareLogging.ts @@ -18,7 +18,7 @@ export function compareLoggingProps(oldProps: Partial 0) { enabledTypes = newProps.logging.clusterLogging[0].types!; // if oldProps contains LogSetup with enabled:true diff --git a/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/kubectl-handler/get/__init__.py b/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/kubectl-handler/get/__init__.py index fbc7016d1a406..cdf9e7b24bf55 100644 --- a/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/kubectl-handler/get/__init__.py +++ b/packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/kubectl-handler/get/__init__.py @@ -40,7 +40,7 @@ def get_handler(event, context): json_path = props['JsonPath'] timeout_seconds = props['TimeoutSeconds'] - # json path should be surrouded with '{}' + # json path should be surrounded with '{}' path = '{{{0}}}'.format(json_path) if request_type == 'Create' or request_type == 'Update': output = wait_for_output(['get', '-n', object_namespace, object_type, object_name, "-o=jsonpath='{{{0}}}'".format(json_path)], int(timeout_seconds)) diff --git a/version.v2.json b/version.v2.json index 59ce09bc5156d..74e9177f93265 100644 --- a/version.v2.json +++ b/version.v2.json @@ -1,4 +1,4 @@ { - "version": "2.175.0", - "alphaVersion": "2.175.0-alpha.0" + "version": "2.175.1", + "alphaVersion": "2.175.1-alpha.0" } \ No newline at end of file