Skip to content

Commit e7432ee

Browse files
committed
chore(release): 2.189.1
1 parent b7f4bc7 commit e7432ee

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.v2.alpha.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
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.
44

5+
## [2.189.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.189.0-alpha.0...v2.189.1-alpha.0) (2025-04-14)
6+
57
## [2.189.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.188.0-alpha.0...v2.189.0-alpha.0) (2025-04-09)
68

79

CHANGELOG.v2.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
## [2.189.1](https://github.com/aws/aws-cdk/compare/v2.189.0...v2.189.1) (2025-04-14)
6+
7+
8+
### Bug Fixes
9+
10+
* **core:** implicit Aspect applications do not override custom Aspect applications ([#34132](https://github.com/aws/aws-cdk/issues/34132)) ([b7f4bc7](https://github.com/aws/aws-cdk/commit/b7f4bc7aee1d99b70e4d9d3cedea53e910ee37ef))
11+
512
## [2.189.0](https://github.com/aws/aws-cdk/compare/v2.188.0...v2.189.0) (2025-04-09)
613

714

packages/aws-cdk-lib/cx-api/FEATURE_FLAGS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Flags come in three types:
9696
| [@aws-cdk/aws-dynamodb:retainTableReplica](#aws-cdkaws-dynamodbretaintablereplica) | When enabled, table replica will be default to the removal policy of source table unless specified otherwise. | 2.187.0 | fix |
9797
| [@aws-cdk/cognito:logUserPoolClientSecretValue](#aws-cdkcognitologuserpoolclientsecretvalue) | When disabled, the value of the user pool client secret will not be logged in the custom resource lambda function logs. | 2.187.0 | new default |
9898
| [@aws-cdk/pipelines:reduceCrossAccountActionRoleTrustScope](#aws-cdkpipelinesreducecrossaccountactionroletrustscope) | When enabled, scopes down the trust policy for the cross-account action role | 2.189.0 | new default |
99-
| [@aws-cdk/core:aspectPrioritiesMutating](#aws-cdkcoreaspectprioritiesmutating) | When set to true, Aspects added by the construct library on your behalf will be given a priority of MUTATING. | V2NEXT | new default |
99+
| [@aws-cdk/core:aspectPrioritiesMutating](#aws-cdkcoreaspectprioritiesmutating) | When set to true, Aspects added by the construct library on your behalf will be given a priority of MUTATING. | 2.189.1 | new default |
100100

101101
<!-- END table -->
102102

@@ -2034,7 +2034,7 @@ be added with a priority of MUTATING, independent of this feature flag.
20342034
| Since | Default | Recommended |
20352035
| ----- | ----- | ----- |
20362036
| (not in v1) | | |
2037-
| V2NEXT | `false` | `true` |
2037+
| 2.189.1 | `false` | `true` |
20382038

20392039
**Compatibility with old behavior:**
20402040
To add mutating Aspects controlling construct values that can be overridden

packages/aws-cdk-lib/cx-api/lib/features.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ export const FLAGS: Record<string, FlagInfo> = {
14931493
before version 2.172.0. Aspects introduced since that version will always
14941494
be added with a priority of MUTATING, independent of this feature flag.
14951495
`,
1496-
introducedIn: { v2: 'V2NEXT' },
1496+
introducedIn: { v2: '2.189.1' },
14971497
recommendedValue: true,
14981498
compatibilityWithOldBehaviorMd: `
14991499
To add mutating Aspects controlling construct values that can be overridden

version.v2.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.189.0",
3-
"alphaVersion": "2.189.0-alpha.0"
2+
"version": "2.189.1",
3+
"alphaVersion": "2.189.1-alpha.0"
44
}

0 commit comments

Comments
 (0)