Skip to content

Commit db62c5f

Browse files
authored
2 parents 37a66da + 44f6d16 commit db62c5f

File tree

6 files changed

+97
-4
lines changed

6 files changed

+97
-4
lines changed

CHANGELOG.v2.alpha.md

Lines changed: 7 additions & 0 deletions
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.193.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.192.0-alpha.0...v2.193.0-alpha.0) (2025-04-30)
6+
7+
8+
### Features
9+
10+
* **pipes-targets-alpha:** support Amazon Data Firehose target ([#33860](https://github.com/aws/aws-cdk/issues/33860)) ([ebf1ea2](https://github.com/aws/aws-cdk/commit/ebf1ea2a57ec7876fffbe16eddac6b409ae79074))
11+
512
## [2.192.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.191.0-alpha.0...v2.192.0-alpha.0) (2025-04-24)
613

714

CHANGELOG.v2.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
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.193.0](https://github.com/aws/aws-cdk/compare/v2.192.0...v2.193.0) (2025-04-30)
6+
7+
8+
### Features
9+
10+
* **appsync:** add support for data source integrations ([#34248](https://github.com/aws/aws-cdk/issues/34248)) ([2fac64e](https://github.com/aws/aws-cdk/commit/2fac64eda44710f6a70661555d0ab84bb76a279c)), closes [#34264](https://github.com/aws/aws-cdk/issues/34264)
11+
* **codepipeline-actions:** add pipeline invoke action support. ([#34039](https://github.com/aws/aws-cdk/issues/34039)) ([5488048](https://github.com/aws/aws-cdk/commit/5488048e0aa5b7237087cd36a99b0c118e6ba180)), closes [#33818](https://github.com/aws/aws-cdk/issues/33818)
12+
* **eks:** pass additional helm chart values to aws-load-balancer-controller ([#34077](https://github.com/aws/aws-cdk/issues/34077)) ([6f0605b](https://github.com/aws/aws-cdk/commit/6f0605b5cfb8f4bfe9fa67ef88fb875cb1c589e7)), closes [#29707](https://github.com/aws/aws-cdk/issues/29707) [/github.com/kubernetes-sigs/aws-load-balancer-controller/blob/main/helm/aws-load-balancer-controller/values.yaml#L199](https://github.com/aws//github.com/kubernetes-sigs/aws-load-balancer-controller/blob/main/helm/aws-load-balancer-controller/values.yaml/issues/L199)
13+
* **kinesis:** throw `ValidationErrors` instead of untyped Errors ([#34239](https://github.com/aws/aws-cdk/issues/34239)) ([7f378b6](https://github.com/aws/aws-cdk/commit/7f378b6ee87a9ad89772d3cdd77c89d6a9ab8209)), closes [#32569](https://github.com/aws/aws-cdk/issues/32569)
14+
15+
16+
### Bug Fixes
17+
18+
* **efs:** support imported subnet ([#34041](https://github.com/aws/aws-cdk/issues/34041)) ([20df8fb](https://github.com/aws/aws-cdk/commit/20df8fb9fdc41f65ce80e45bdb9aa8aa1da83fac)), closes [#33876](https://github.com/aws/aws-cdk/issues/33876)
19+
* **stepfunctions:** containsTaskToken doesn't handle null values ([#34295](https://github.com/aws/aws-cdk/issues/34295)) ([37a66da](https://github.com/aws/aws-cdk/commit/37a66da60a4fa9626780e63abbe1d3fabaf93258)), closes [#34293](https://github.com/aws/aws-cdk/issues/34293)
20+
521
## [2.192.0](https://github.com/aws/aws-cdk/compare/v2.191.0...v2.192.0) (2025-04-24)
622

723

packages/aws-cdk-lib/core/lib/analytics-data-source/classes.ts

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8512,6 +8512,16 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
85128512
},
85138513
'channelNamespaceName': '*',
85148514
'code': '*',
8515+
'publishHandlerConfig': {
8516+
'direct': 'boolean',
8517+
'dataSource': '*',
8518+
'lambdaInvokeType': 'LambdaInvokeType'
8519+
},
8520+
'subscribeHandlerConfig': {
8521+
'direct': 'boolean',
8522+
'dataSource': '*',
8523+
'lambdaInvokeType': 'LambdaInvokeType'
8524+
},
85158525
'authorizationConfig': {
85168526
'publishAuthModeTypes': 'AppSyncAuthorizationType',
85178527
'subscribeAuthModeTypes': 'AppSyncAuthorizationType'
@@ -15218,7 +15228,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1521815228
'albController': {
1521915229
'version': '*',
1522015230
'repository': '*',
15221-
'policy': '*'
15231+
'policy': '*',
15232+
'additionalHelmChartValues': {
15233+
'enableWafv2': 'boolean',
15234+
'enableWaf': 'boolean'
15235+
}
1522215236
},
1522315237
'clusterLogging': 'ClusterLoggingTypes',
1522415238
'authenticationMode': 'AuthenticationMode',
@@ -15807,7 +15821,11 @@ export const AWS_CDK_CONSTRUCTOR_PROPS: { [key: string]: any } = {
1580715821
'albController': {
1580815822
'version': '*',
1580915823
'repository': '*',
15810-
'policy': '*'
15824+
'policy': '*',
15825+
'additionalHelmChartValues': {
15826+
'enableWafv2': 'boolean',
15827+
'enableWaf': 'boolean'
15828+
}
1581115829
},
1581215830
'clusterLogging': 'ClusterLoggingTypes',
1581315831
'authenticationMode': 'AuthenticationMode',

packages/aws-cdk-lib/core/lib/analytics-data-source/enums.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,15 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
178178
'OPENID_CONNECT',
179179
'AWS_LAMBDA'
180180
],
181+
'AppSyncDataSourceType': [
182+
'AWS_LAMBDA',
183+
'AMAZON_DYNAMODB',
184+
'AMAZON_EVENTBRIDGE',
185+
'AMAZON_OPENSEARCH_SERVICE',
186+
'HTTP',
187+
'RELATIONAL_DATABASE',
188+
'AMAZON_BEDROCK_RUNTIME'
189+
],
181190
'AppSyncFieldLogLevel': [
182191
'NONE',
183192
'ERROR',
@@ -1312,6 +1321,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
13121321
'resource-exhausted',
13131322
'unavailable'
13141323
],
1324+
'HandlerBehavior': [
1325+
'CODE',
1326+
'DIRECT'
1327+
],
13151328
'HandlerName': [
13161329
'user',
13171330
'table',
@@ -2036,6 +2049,10 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
20362049
'Event',
20372050
'DryRun'
20382051
],
2052+
'LambdaInvokeType': [
2053+
'EVENT',
2054+
'REQUEST_RESPONSE'
2055+
],
20392056
'LambdaVersion': [
20402057
'V1_0',
20412058
'V2_0',
@@ -2861,6 +2878,12 @@ export const AWS_CDK_ENUMS: { [key: string]: any } = {
28612878
'ALL_ACTIONS',
28622879
'FAILED_ACTIONS'
28632880
],
2881+
'RevisionType': [
2882+
'COMMIT_ID',
2883+
'IMAGE_DIGEST',
2884+
'S3_OBJECT_VERSION_ID',
2885+
'S3_OBJECT_KEY'
2886+
],
28642887
'RevocationType': [
28652888
'CRL'
28662889
],

packages/aws-cdk-lib/core/lib/analytics-data-source/enums/module-enums.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1206,6 +1206,27 @@
12061206
"AWS_LAMBDA"
12071207
]
12081208
},
1209+
"aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/channel-namespace.ts": {
1210+
"HandlerBehavior": [
1211+
"CODE",
1212+
"DIRECT"
1213+
]
1214+
},
1215+
"aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/data-source-common.ts": {
1216+
"AppSyncDataSourceType": [
1217+
"AWS_LAMBDA",
1218+
"AMAZON_DYNAMODB",
1219+
"AMAZON_EVENTBRIDGE",
1220+
"AMAZON_OPENSEARCH_SERVICE",
1221+
"HTTP",
1222+
"RELATIONAL_DATABASE",
1223+
"AMAZON_BEDROCK_RUNTIME"
1224+
],
1225+
"LambdaInvokeType": [
1226+
"EVENT",
1227+
"REQUEST_RESPONSE"
1228+
]
1229+
},
12091230
"aws-cdk/packages/aws-cdk-lib/aws-appsync/lib/graphqlapi-base.ts": {
12101231
"Visibility": [
12111232
"GLOBAL",
@@ -2006,6 +2027,14 @@
20062027
"Events"
20072028
]
20082029
},
2030+
"aws-cdk/packages/aws-cdk-lib/aws-codepipeline-actions/lib/codepipeline/invoke-action.ts": {
2031+
"RevisionType": [
2032+
"COMMIT_ID",
2033+
"IMAGE_DIGEST",
2034+
"S3_OBJECT_VERSION_ID",
2035+
"S3_OBJECT_KEY"
2036+
]
2037+
},
20092038
"aws-cdk/packages/aws-cdk-lib/aws-codepipeline-actions/lib/ecr/build-and-publish-action.ts": {
20102039
"RegistryType": [
20112040
"private",

version.v2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.192.0",
3-
"alphaVersion": "2.192.0-alpha.0"
2+
"version": "2.193.0",
3+
"alphaVersion": "2.193.0-alpha.0"
44
}

0 commit comments

Comments
 (0)