All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
2.162.0-alpha.0 (2024-10-10)
- kinesisfirehose-alpha: replaced
destinations
property withdestination
(singular) and changed the type from array of Destinations to a single Destination. Old behaviour would only allow an array with a single Destination to be passed in anyway.
- iot-alpha: support for account audit configuration (#31661) (fc19571), closes #31663
- pipes-targets: add EventBridge (#30654) (842f49a)
- kinesisfirehose-alpha: replace
destinations
property withdestination
and change type from array to single IDestination (#31630) (1e2cff1)
2.161.1-alpha.0 (2024-10-05)
2.161.0-alpha.0 (2024-10-03)
- kinesisfirehose-destinations: the
logging
andlogGroup
properties inDestinationLoggingProps
have been removed and replaced with a single optional propertyloggingConfig
which accepts a class of typeLoggingConfig
.
Combine the logging
and logGroup
properties into a single new optional property called loggingConfig
which accepts a class of type LoggingConfig
.
LoggingConfig
is an abstract class which can be instantiated through either an instance of EnableLogging
or DisableLogging
which can be used in the following 3 ways:
import * as logs from 'aws-cdk-lib/aws-logs';
const logGroup = new logs.LogGroup(this, 'Log Group');
declare const bucket: s3.Bucket;
// 1. Enable logging with no parameters - a log group will be created for you
const destinationWithLogging = new destinations.S3Bucket(bucket, {
loggingConfig: new destinations.EnableLogging(),
});
// 2. Enable a logging and pass in a logGroup to be used
const destinationWithLoggingAndMyLogGroup = new destinations.S3Bucket(bucket, {
loggingConfig: new destinations.EnableLogging(logGroup),
});
// 3. Disable logging (does not accept any parameters so it is now impossible to provide a logGroup in this case)
const destinationWithoutLogging = new destinations.S3Bucket(bucket, {
loggingConfig: new destinations.DisableLogging(),
});
unit + integ test
- My code adheres to the CONTRIBUTING GUIDE and DESIGN GUIDELINES
- ec2: add interface endpoint dynamodb (#30162) (182804a), closes #29547
- pipes-sources: add Kinesis and DynamoDB (#29476) (00c2efb), closes #29378 #29377
- pipes-targets: add API destination (#30756) (5e08c98), closes /github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-events-targets/lib/api-gateway.ts#L11-L32
- pipes-targets: add Kinesis (#30656) (d0c99d8)
- redshift: supports excludeCharacters settings for DatabaseSecret (#30563) (a1c46cf), closes #26847
- kinesisfirehose-destinations: refactor logging to combine logGroup and logging properties into loggingConfig (#31488) (c4bda64)
2.160.0-alpha.0 (2024-09-24)
- cognito-identitypool-alpha: cannot configure roleMappings with imported userPool and client (#30421) (0fdd6a9), closes #30304 /github.com/aws/aws-cdk/blob/c3003ab41f0efc763f39eb2cab490c8a005e146b/packages/aws-cdk-lib/aws-cognito/lib/user-pool.ts#L902
- ec2: instance resourceSignalTimeout overwrites initOptions.timeout (#31446) (a29bf19), closes #30052
2.159.1-alpha.0 (2024-09-19)
2.159.0-alpha.0 (2024-09-18)
- kinesisfirehose-alpha:
encryptionKey
property is removed andencryption
property type has changed from theStreamEncryption
enum to theStreamEncryption
class.
To pass in a KMS key for the customer managed key case, use StreamEncryption.customerManagedKey(key)
Replaced encryption
and encryptionKey
properties with a single property encryption
of type StreamEncryption
and is used by calling one of the 3 methods:
SreamEncryption.unencrypted()
StreamEncryption.awsOwnedKey()
StreamEncryption.customerManagedKey(key?: IKey)
This makes it so it's not longer possible to pass in a key when the encryption type is AWS owned or unencrypted. The key
is an optional parameter in StreamEncryption.customerManagedKey(key?: IKey)
so following the previous behaviour, if a key is provided it will be used, otherwise a key will be created for the user.
Generated templates do not change so behaviour remains the same.
Updated integ/unit tests.
- My code adheres to the CONTRIBUTING GUIDE and DESIGN GUIDELINES
2.158.0-alpha.0 (2024-09-11)
- amplify: support cache configuration for app (#31381) (b7bd041)
- iot: configure IoT Logging (#31352) (6348717), closes #31357
2.157.0-alpha.0 (2024-09-09)
2.156.0-alpha.0 (2024-09-05)
- location: support RouteCalculator (#30682) (574d383), closes #30681
- neptune-alpha: specify port for the cluster (#31137) (130b62b), closes #31074
- scheduler: validate schedule name length (#31200) (d0f9688)
- scheduler: the value of the description property is not reflected to the resource. (#31276) (a3332b6), closes #31269
2.155.0-alpha.0 (2024-08-29)
- ec2:
ipv6AddressCount
property for an instance (#31076) (e3e5e1c), closes #31075 - ec2: support throughput on LaunchTemplate EBS volumes (#30716) (6ed0bed), closes #24341 #22441
- location: support GeofenceCollection (#30711) (04d73ac), closes #30710
2.154.1-alpha.0 (2024-08-23)
2.154.0-alpha.0 (2024-08-22)
- amplify: support custom certificate (#30791) (8d76778), closes #30594
- ec2: security group lookup via filters (#30625) (abc78bf), closes #30331
- sagemaker: network isolation for a model (#30657) (f1af7fc)
- cli-lib-alpha: bootstrap fails with "bad argument name" error for trust and trustForLookup (#31159) (b11ca4a), closes #30404
- cognito-identitypool-alpha: validation error if provided id is a token (#30882) (ad1b797), closes #29780 #28184
- ec2: prevent deduplication of init command args (#30821) (1e7c690), closes #26221
2.153.0-alpha.0 (2024-08-19)
2.152.0-alpha.0 (2024-08-14)
2.151.1-alpha.0 (2024-08-14)
2.151.0-alpha.0 (2024-08-01)
- kinesisanalytics-flink: add support for Flink 1.19 (#30723) (c185194), closes /docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#aws-resource-kinesisanalyticsv2
2.150.0-alpha.0 (2024-07-22)
2.149.0-alpha.0 (2024-07-12)
2.148.1-alpha.0 (2024-07-11)
2.148.0-alpha.0 (2024-07-05)
- apprunner: add AutoScalingConfiguration for AppRunner Service (#30358) (a598508), closes #30353
- apprunner: add ObservabilityConfiguration for AppRunner Service (#30359) (9e9cc27), closes #22985
- pipes-enrichments: add Step Functions enrichment eventbridge pipes (#30495) (8b495f9), closes #29385
- pipes-targets: add lambda function (#30271) (f594fae), closes #30270
- apprunner: auto deployment fails after new container image pushed due to lack of a permission (#30630) (cce10b1), closes #26640 /github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-ecr/lib/repository.ts#L385 40aws-cdk/aws-apprunner-alpha/lib/service.ts#L1303 40aws-cdk/aws-apprunner-alpha/lib/service.ts#L1368
2.147.3-alpha.0 (2024-07-01)
2.147.2-alpha.0 (2024-06-27)
2.147.1-alpha.0 (2024-06-21)
2.147.0-alpha.0 (2024-06-20)
- custom-resource-handlers: don't recursively process s3 bucket objects (#30209) (25835e4), closes #30573 /github.com/aws/aws-cdk/pull/30209#issuecomment-2118991218
2.146.0-alpha.0 (2024-06-13)
2.145.0-alpha.0 (2024-06-07)
2.144.0-alpha.0 (2024-05-31)
- apprunner: add kmsKey property for the AppRunner Service class (#30352) (0c1aeb6), closes #30365
- ivs-alpha: support advanced channel type (#30086) (544e54a), closes #30075
- neptune: add copyTagsToSnapshot property to the DatabaseCluster Construct (#30092) (ba8edb3), closes #30087
2.143.1-alpha.0 (2024-05-30)
2.143.0-alpha.0 (2024-05-23)
2.142.1-alpha.0 (2024-05-17)
2.142.0-alpha.0 (2024-05-15)
- pipes-targets: add step function target (#29987) (b0975e4), closes #29665 #29665
- redshift: multi AZ cluster (#29976) (a53517c)
2.141.0-alpha.0 (2024-05-08)
2.140.0-alpha.0 (2024-05-02)
2.139.1-alpha.0 (2024-04-29)
2.139.0-alpha.0 (2024-04-24)
2.138.0-alpha.0 (2024-04-18)
- cognito-identitypool-alpha: The argument of
IdentityPoolProviderUrl.userPool()
has been changed fromurl: string
touserPool: UserPool, userPoolClient: UserPoolClient
. If you want to specify custom identifier string, useIdentityPoolProviderUrl.custom()
instead.
2.137.0-alpha.0 (2024-04-10)
2.136.1-alpha.0 (2024-04-09)
2.136.0-alpha.0 (2024-04-06)
2.135.0-alpha.0 (2024-04-01)
2.134.0-alpha.0 (2024-03-26)
- kinesisanalytics-flink: add support for Flink 1.18 (#29554) (8fd8ee8), closes /docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#aws-resource-kinesisanalyticsv2
- glue: s3 path specified in --spark-event-logs-path needs to end with slash (#29357) (4ff3565), closes #29356
2.133.0-alpha.0 (2024-03-14)
2.132.1-alpha.0 (2024-03-12)
2.132.0-alpha.0 (2024-03-08)
2.131.0-alpha.0 (2024-03-01)
2.130.0-alpha.0 (2024-02-23)
2.129.0-alpha.0 (2024-02-21)
2.128.0-alpha.0 (2024-02-14)
- app-staging-synthesizer-alpha:
stagingBucketEncryption
property is now required. For existing apps, specifyBucketEncryption.KMS
to retain existing behavior. For new apps, choose the bucket encryption that makes most sense for your use case.BucketEncryption.S3_MANAGED
is available and is intended to be the default when this module is stabilized.
- app-staging-synthesizer-alpha: require passing
stagingBucketEncryption
and note that we intend to default toS3_MANAGED
in the future (#28978) (fc8b955), closes #28815 #28903 /github.com/aws/aws-cdk/pull/28978#issuecomment-1930007176 - pipes-enrichments: new EventBridge Pipes enrichments alpha module (#29063) (5a54ec5)
- pipes-targets: new EventBridge Pipes targets alpha module (#29057) (9419f54)
- scheduler-targets-alpha:
SageMakerStartPipelineExecution
Target (#28927) (db260b0), closes #27457
2.127.0-alpha.0 (2024-02-09)
- appconfig: deprecate deploy method (#29021) (9675bcd)
- integ-tests: cannot use v3 package name in an awsApiCall (#28895) (5035080), closes /github.com/aws/aws-cdk/pull/27313/files#diff-3ab65cbf843775673ff370c9c90deceba5f0ead8a3e016e0c2f243d27bf84609 #28844
2.126.0-alpha.0 (2024-02-02)
2.125.0-alpha.0 (2024-01-31)
- integ-runner: Parsing of the cli input caused arguments passed after the first instance
--language <language>
to be interpreted as a language as well. This prevented passing a test name after providing cli options. To overcome this limitation,integ-runner
now requires an explicit--language
option for each language you want to include:integ-runner --language javascript --language python
. This was already documented that way and always the intended way to use this feature. - neptune-alpha: Corrected LogRetention IDs for DatabaseCluster. Previously, regardless of the log type, the string ‘objectObject’ was always included, but after the correction, the log type is now included.
- app-staging-synthesizer-alpha: encryption type for staging bucket (#28903) (69f4b8d), closes #28815
- pipes: EventBridge Pipes alpha module (#28388) (2d9106b), closes #23495
- integ-runner: cannot pass test name after
--language
(#28922) (f9fbbb4) - neptune-alpha: multiple
cloudwatchLogsExports
cannot be set when configuring log retention (#28643) (56794fc), closes #26295
2.124.0-alpha.0 (2024-01-26)
2.123.0-alpha.0 (2024-01-24)
- amplify: addBranch fails synth with "cannot find entry file..." (#28772) (cb522bb), closes #28658 #28764
- redshift: enableRebootForParameterChanges fails synth with "cannot find entry file…" (#28760) (4952f36)
2.122.0-alpha.0 (2024-01-18)
- appconfig:
deploymentStrategyId
prop infromDeploymentStrategyId
now takes aDeploymentStrategyId
rather than astring
. To import a predefined deployment strategy id, useDeploymentStrategyId.CANARY_10_PERCENT_20_MINUTES
. Otherwise, useDeploymentStrategyId.fromString('abc123')
. - appconfig:
ApplicationProps.name
renamed toApplicationProps.applicationName
- appconfig:
EnvironmentProps.name
renamed toEnvironmentProps.environmentName
- appconfig:
DeploymentStrategyProps.name
renamed toDeploymentStrategyProps.deploymentStrategyName
- appconfig:
ExtensionProps.name
renamed toExtensionProps.extensionName
- appconfig:
- amplify: addBranch fails synth with "cannot find entry file..." (#28658) (0f2b8f8), closes #27955 #28633 #28089
- appconfig: fromDeploymentStrategyId takes an enum-like class rather than a string (#28743) (2b59ed1), closes #28671
- appconfig: prefix names with resource name (#28742) (3960720), closes #28671
2.121.1-alpha.0 (2024-01-13)
2.121.0-alpha.0 (2024-01-12)
2.120.0-alpha.0 (2024-01-12)
2.119.0-alpha.0 (2024-01-11)
2.118.0-alpha.0 (2024-01-03)
- glue: database description property (#27744) (cbac240), closes #27740
- glue-alpha: add
cfn-glue-table-tableinput-parameters
to Glue table construct (#27643) (8e15482)
2.117.0-alpha.0 (2023-12-26)
- lambda-python-alpha: bundling hash logic includes auth tokens in PIP urls, causing an unnecessary rebuild (#27903) (00331a7), closes #27331
- lambda-python-alpha: use function architecture (#18696) (#28449) (c724d27)
2.116.1-alpha.0 (2023-12-22)
2.116.0-alpha.0 (2023-12-21)
- scheduler: flexible time windows (#28098) (6554e48)
- scheduler-targets: add CodePipeline as target for scheduler (#27799) (8c44f32), closes #27449
- integ-tests: apply correct IAM policy to waiterProvider (#28424) (c488035), closes 40aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts#L136 40aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts#L247 #27865
- lambda-python-alpha: pipenv lock -r is no longer supported (#28317) (f85f486), closes #28015 /github.com/pypa/pipenv/blob/main/CHANGELOG.md#2022813-2022-08-13 #28015
2.115.0-alpha.0 (2023-12-14)
- scheduler: The typos in the Schedule and Group construct method names have been fixed, changing
metricSentToDLQTrunacted
tometricSentToDLQTruncated
andmetricAllSentToDLQTrunacted
tometricAllSentToDLQTruncated
. - redshift: Further updates of the Redshift table will fail for existing tables, if the table name is changed. Therefore, changing the table name for existing Redshift tables have been disabled.
- appconfig-alpha: add deploy method to configuration constructs (#28269) (c723ef9)
- cloud9-alpha: support image ids for Amazon Linux 2023 and Ubuntu 22.04 (#28346) (93681e0), closes /docs.aws.amazon.com/ja_jp/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2
- scheduler: start and end time for schedule construct (#28306) (0b4ab1d), closes /github.com/aws/aws-cdk/pull/26819#discussion_r1301532299
- appconfig-alpha: extensions always create cdk diff (#28264) (2075559), closes #27676
- redshift: tables were dropped on table name change (#24308) (7ac237b), closes #24246
- scheduler: typo in metricSentToDLQ... methods (#28307) (8b91e10)
2.114.1-alpha.0 (2023-12-06)
2.114.0-alpha.0 (2023-12-05)
- appconfig-alpha: support for composite alarms (#28156) (d19640b)
- appconfig-alpha: support for relative file paths when importing config (#28191) (4867294), closes #26937
- scheduler-targets-alpha:
KinesisDataFirehosePutRecord
Target (#27842) (46f3a00), closes #27450 - scheduler-targets-alpha:
KinesisStreamPutRecord
Target (#27845) (47a09b5), closes #27451
2.113.0-alpha.0 (2023-12-01)
2.112.0-alpha.0 (2023-12-01)
- integ-tests: Fix typo in the
InvocationType
property fromREQUEST_RESPONE
toREQUEST_RESPONSE
- scheduler-targets: eventBridge putEvents target (#27629) (cd12ce4), closes #27454
- scheduler-targets: SqsSendMessage Target (#27774) (80c1d26), closes #27458
- scheduler-targets-alpha:
InspectorStartAssessmentRun
Target (#27850) (073958f), closes #27453 - scheduler-targets-alpha:
SnsPublish
scheduler target (#27838) (ff203a1), closes #27459
- cli-lib: deploy fails with "no such file or directory, open 'node_modules/@aws-cdk/integ-runner/lib/workers/db.json.gz'" (#28199) (78b34ac), closes #27813 #27983
- integ-tests: fix typo in InvocationType enum property name (#28162) (48c275c)
- msk-alpha: cluster deployment fails in
ap-southeast-1
(#28112) (0ee4199), closes #28108 - scheduler: schedule not added to group with unspecified name (#27927) (cfa2d76), closes #27885
2.111.0-alpha.0 (2023-11-27)
2.110.1-alpha.0 (2023-11-21)
2.110.0-alpha.0 (2023-11-16)
2.109.0-alpha.0 (2023-11-15)
- integ-runner: fails with "no such file or directory, open 'node_modules/@aws-cdk/integ-runner/lib/workers/db.json.gz'" (#27983) (56daf0b)
- integ-runner: update workflow error message is inaccurate (#27924) (844cd6f)
2.108.1-alpha.0 (2023-11-14)
2.108.0-alpha.0 (2023-11-13)
2.107.0-alpha.0 (2023-11-13)
2.106.1-alpha.0 (2023-11-11)
2.106.0-alpha.0 (2023-11-10)
- appconfig:
Environment.fromEnvironmentAttributes
function signature changed; property calledattr
is nowattrs
. This should affect only Python users.- appconfig:
Extension.fromExtensionAttributes
function signature changed; property calledattr
is nowattrs
. This should affect only Python users.
- appconfig:
- appconfig: inline YAML support for hosted configuration (#27696) (de0a9e2)
- gamelift: support Build serverSdkVersion, updated OperatingSystem values (#27857) (f1bb801), closes #27655
- scheduler-targets: CodeBuild scheduler target (#27792) (9d63316), closes #27448
2.105.0-alpha.0 (2023-11-07)
2.104.0-alpha.0 (2023-11-02)
- appconfig: support for CfnMonitorsProperty in environments (#27680) (05f3453)
- cloud9-alpha: add support for
federated-user
andassumed-role
for Cloud9 environment ownership (#27001) (00d2ff2) - scheduler-alpha: target properties override (#27603) (1433ff2), closes #27545
- apigatewayv2: defaultAuthorizer cannot be applied to HttpRoute (#27576) (f397071), closes #27436
- apigatewayv2: trigger on websocket connect and disconnect is not working (#27732) (89f4f86), closes #19532 40aws-cdk/aws-apigatewayv2-integrations-alpha/lib/websocket/lambda.ts#L36
2.103.1-alpha.0 (2023-10-26)
2.103.0-alpha.0 (2023-10-25)
2.102.1-alpha.0 (2023-10-25)
2.102.0-alpha.0 (2023-10-18)
2.101.1-alpha.0 (2023-10-16)
2.101.0-alpha.0 (2023-10-13)
- glue-alpha:
SparkUIProps.prefix
strings in the original/prefix-name
format will now result in a validation error. To retain the same behavior, prefixes must be changed to the newprefix-name/
format.
- lambda-python-alpha: add without-urls option for poetry (#27442) (5893b3f), closes #27103
- scheduler-targets: step function start execution target (#27424) (3a87141), closes 40aws-cdk/aws-scheduler-targets-alpha/lib/lambda-invoke.ts#L8 #27377
- glue-alpha: prefix validation logic is incorrect (#27472) (b898d3b), closes #27396
- integ-tests: cannot make two or more identical assertions (#27380) (ea06f7d), closes #22043 #23049
2.100.0-alpha.0 (2023-10-06)
- redshift: the behavior of redshift tables has changed. UPDATE action will not be triggered on new table names and instead be triggered on table id changes.
2.99.1-alpha.0 (2023-09-29)
2.99.0-alpha.0 (2023-09-27)
2.98.0-alpha.0 (2023-09-26)
2.97.1-alpha.0 (2023-09-25)
2.97.0-alpha.0 (2023-09-22)
- synthetics: synth-time failure for canary assets in nested stages (#27167) (7a04a5a), closes #27089 #26291
2.96.2-alpha.0 (2023-09-14)
2.96.1-alpha.0 (2023-09-14)
2.96.0-alpha.0 (2023-09-13)
- integ-tests: use transformToString on API call response body (#27122) (b0bbd5e), closes 1#L573-L576 #27114
- synthetics: include auto-delete-underlying-resources in package (#27096) (5046a9b)
2.95.1-alpha.0 (2023-09-08)
2.95.0-alpha.0 (2023-09-07)
2.94.0-alpha.0 (2023-09-01)
- amplify: enables apps hosted with server side rendering (#26861) (c67da83), closes #24076 #23325
- scheduler: base target methods and lambda invoke target (#26575) (39cbd46)
- synthetics-alpha: add latest two NodeJS runtimes (#26967) (0a0b37c)
2.93.0-alpha.0 (2023-08-23)
- app-staging-synthesizer: enable tag immutability (#26656) (0bcc4b4)
- synthetics: enable auto delete lambdas via custom resource (#26580) (6d1dc5b), closes #18448
- lambda-python: poetry bundling is broken after Aug 20 (#26823) (95f8cef)
- redshift: adding distKey to an existing table fails deployment (#26789) (8c9f0e2), closes #26733
2.92.0-alpha.0 (2023-08-15)
- batch: if using spot instances on your Compute Environments, they will default to
SPOT_PRICE_CAPACITY_OPTIMIZED
instead ofSPOT_CAPACITY_OPTIMIZED
now.
- batch: grantSubmitJob method (#26729) (716871f), closes #25574
- batch: set default spot allocation strategy to
SPOT_PRICE_CAPACITY_OPTIMIZED
(#26731) (e0ca252)
2.91.0-alpha.0 (2023-08-10)
- appconfig: L2 constructs (#26639) (e479bd4)
- glue: Job construct does not honor SparkUIProps S3 prefix when granting S3 access (#26696) (42250f1), closes #19862
2.90.0-alpha.0 (2023-08-04)
- app-staging-synthesizer: misleading error message about environment-agnostic/aware stacks (#26607) (7e2f335)
- synthetics: updated handler validation (#26569) (1eaec92), closes #26540
2.89.0-alpha.0 (2023-07-28)
- app-staging-synthesizer: option to specify staging stack name prefix (#26324) (1b36124)
- apprunner: make
Service
implementIGrantable
(#26130) (6033c9a), closes #26089 - neptune-alpha: support for Neptune serverless (#26445) (b42dbc8), closes #26428
- scheduler: ScheduleGroup (#26196) (27dc8ff)
- cli-lib: set skipLibCheck on generateSchema to prevent intermittent test failures (#26551) (1807f57)
2.88.0-alpha.0 (2023-07-20)
- apprunner-alpha: This change will be destructive if the
serviceName
is set on an existing resources.
- glue: support Data Quality ruleset (#26272) (af3a188)
- glue: validate maxCapacity, workerCount, and workerType (#26241) (349e4d4)
- iot-actions: iot rule https action l2 construct (#25535) (3aee826), closes #25491
- synthetics: lifecycle rules for auto-generated artifact buckets (#26290) (ad0d40c), closes #22863 #22634
- apprunner-alpha: respect serviceName property (#26238) (6da9a4c), closes #26237
- batch: grant execution role logs:CreateLogStream by default (#26288) (c755f50), closes #25675
- batch: SSM parameters can't be used as ECS Container secrets (#26373) (bc3d6a7), closes #26339
- integ-tests-alpha: assertions handler is broken (#26400) (111a1cf), closes #26271 #26359 #26360
- integ-tests-alpha: incorrect sdk client resolution (#26271) (17e343a)
- redshift-alpha: incorrect CR runtime version (#26406) (c8d8421), closes #26397
- synthetics: asset code validation failed on bundled assets (#26291) (02a5482), closes #19342 #11630
2.87.0-alpha.0 (2023-07-06)
- cli-lib: support bootstrap command (#26205) (9364e94)
- glue: add ExecutionClass for FLEX (#26203) (db923dd), closes #22224
- iot: add action to start Step Functions State Machine (#26059) (bd86993), closes #17698
- scheduler: ScheduleTargetInput (#25663) (bc9f3de)
- batch: Allow ECS JobDefinition Containers to pass Secrets as Environment Variables & Enable Kubernetes Secret Volumes (#26126) (dc6f120), closes #25559
- cli-lib: bundle bootstrap template (#26229) (41cb288), closes #26224
- glue: support Ray jobs with Runtime parameter (#25867) (8153237), closes #25787
2.86.0-alpha.0 (2023-06-29)
- app-staging-synthesizer: select different bootstrap region (#26129) (2fec6a4)
- integ-runner: integ-runner --watch (#26087) (1fe2f09)
- integ-tests: new HttpApiCall method to easily make http calls (#26102) (00b9c84)
- batch-alpha: cannot import FargateComputeEnvironment with fromFargateComputeEnvironmentArn (#25985) (05810f4), closes 40aws-cdk/aws-batch-alpha/lib/managed-compute-environment.ts#L1071 40aws-cdk/aws-batch-alpha/lib/managed-compute-environment.ts#L1077-L1079 #25979
2.85.0-alpha.0 (2023-06-21)
- app-staging-synthesizer: clean up staging resources on deletion (#25906) (3b14213), closes #25722
- batch:
ephemeralStorage
property on job definitions (#25399) (a8768f4), closes #25393
2.84.0-alpha.0 (2023-06-13)
2.83.1-alpha.0 (2023-06-09)
2.83.0-alpha.0 (2023-06-07)
2.82.0-alpha.0 (2023-06-01)
- synthetics: support runtime nodejs puppeteer 4.0 (#25553) (1d7a9a8), closes #25493
- app-staging-synthesizer: new synthesizer separates assets out per CDK application (#24430) (ae21ecc)
2.81.0-alpha.0 (2023-05-25)
2.80.0-alpha.0 (2023-05-19)
2.79.1-alpha.0 (2023-05-11)
2.79.0-alpha.0 (2023-05-10)
- servicecatalogappregistry: Revert deprecated method to keep deprecated method in alpha version (b20b123)
- batch: JobDefinition's ContainerDefinition's Image is synthesized with
[Object object]
(#25250) (b3d0d57)
2.78.0-alpha.0 (2023-05-03)
2.77.0-alpha.0 (2023-04-26)
2.76.1-alpha.0 (2023-04-21)
2.76.0-alpha.0 (2023-04-19)
2.75.1-alpha.0 (2023-04-18)
2.75.0-alpha.0 (2023-04-17)
2.74.0-alpha.0 (2023-04-13)
2.73.0-alpha.0 (2023-04-05)
2.72.1-alpha.0 (2023-03-30)
2.72.0-alpha.0 (2023-03-29)
- servicecatalogappregistry: This commit involves share replacement during the deployment of
ApplicationAssociator
due to share construct id update. After this change, frequent share replacements due to structural change inApplication
construct should be avoided.Application.shareApplication
starts to require construct id (first argument) and share name (added inShareOption
) as input. - ivs: Renamed ChannelProps.name to ChannelProps.channelName
- Renamed PlaybackKeyPairProps.name to PlaybackKeyPairProps.playbackKeyPairName
- Channel now generates a physical name if one is not provided
- PlaybackKeyPair now generates a physical name if one is not provided
- integ-runner: update workflow doesn't support resource replacement (#24720) (07d3aa7)
- ivs: Not a standard physical name pattern (#24706) (7d17fe3)
- servicecatalogappregistry: RAM Share is replaced on every change to Application (#24760) (8977d0d)
2.71.0-alpha.0 (2023-03-28)
2.70.0-alpha.0 (2023-03-22)
- servicecatalogappregistry: This commit contains destructive changes to the RAM Share. Since the application RAM share name is calculated by the application construct, where one method is added. Integration test detects a breaking change where RAM share will be created. Integration test snapshot is updated to cater this destructive change.
2.69.0-alpha.0 (2023-03-14)
- kinesisanalytics-flink: VPC support for Flink applications (#24442) (7c7ad6d), closes 40aws-cdk/aws-lambda/lib/function.ts#L170 #21104
2.68.0-alpha.0 (2023-03-08)
- servicecatalogappregistry: This commit contains destructive changes to the RAM Share. Since the application RAM share name is calculated by the application construct, where one property is removed. Integration test detects a breaking change where RAM share will be created. Integration test snapshot is updated to cater this destructive change.
- msk: add Kafka version 3.3.2 (#24440) (1b2014e), closes #24432
- redshift: column compression encodings and comments can now be customised (#24177) (1ca3e00), closes #24165 #23597 #22506
- redshift: columns require an id attribute (under feature flag) (#24272) (9a07ab0), closes #24234
- servicecatalogappregistry: allow disabling automatic CfnOutput (#24483) (3db1a0d), closes #23779
- servicecatalogappregistry: Associate an application with attribute group (#24378) (d1264c1)
2.67.0-alpha.0 (2023-03-02)
2.66.1-alpha.0 (2023-02-23)
2.66.0-alpha.0 (2023-02-21)
- apigatewayv2: allow websockets routes to return response to client (#22984) (f8fe1d2)
- lambda-python: add optional poetry bundling exclusion list parameter (#23670) (53beeae), closes #22585 #22585
- redshift: optionally reboot Clusters to apply parameter changes (#22063) (f61d950), closes #22009 #22055 #22059
- servicecatalogappregistry: Allow user to control stack id via stack name for Application stack (#24171) (0c7c7e4), closes #24160
2.65.0-alpha.0 (2023-02-15)
- glue: support Ray jobs (#23822) (8de50d6)
- redshift: IAM roles can be attached to a cluster, post creation (#23791) (1a46808), closes #22632
- synthetics: support runtime 3.9 (#24101) (9d23cad)
2.64.0-alpha.0 (2023-02-09)
- cloud9: support setting environment owner (#23878) (08a2f36), closes #22474
- redshift: Tables can include comments (#23847) (46cadd4), closes #22682
- servicecatalogappregistry: default stack name is not meaningful and causes conflict when multiple stacks deployed to the same account-region (#23823) (420b5ff)
2.63.2-alpha.0 (2023-02-04)
2.63.1-alpha.0 (2023-02-03)
2.63.0-alpha.0 (2023-01-31)
- synthetics: Adding DeleteLambdaResourcesOnCanaryDeletion prop to the canary L2 (#23820) (45c191e)
- redshift: support default role for redshift clusters (#22551)
2.62.2-alpha.0 (2023-01-27)
2.62.1-alpha.0 (2023-01-26)
2.62.0-alpha.0 (2023-01-25)
2.61.1-alpha.0 (2023-01-20)
2.61.0-alpha.0 (2023-01-18)
- glue: --conf parameter is no longer a reserved keyword for glue jobs (#23673) (3d0f4ba)
- servicecatalogappregistry: outputs are not deployable (#23652) (fa9eef0), closes #23641
2.60.0-alpha.0 (2023-01-11)
- gamelift: add MatchmakingConfiguration L2 Construct for GameLift (#23326) (9b2573b)
- integ-runner: support
--language
presets for JavaScript, TypeScript, Python and Go (#22058) (22673b2), closes #21169
2.59.0-alpha.0 (2023-01-03)
2.58.1-alpha.0 (2022-12-30)
2.58.0-alpha.0 (2022-12-28)
2.57.0-alpha.0 (2022-12-27)
2.56.1-alpha.0 (2022-12-23)
2.56.0-alpha.0 (2022-12-21)
- integ-tests: add serializedJson on match utility (#23218) (1a62dc4)
- servicecatalogappregistry: Cross region warning and default application tag (#23412) (8d359ae)
2.55.1-alpha.0 (2022-12-16)
2.55.0-alpha.0 (2022-12-14)
- appsync:
DataSource.createResolver
,DataSource.createFunction
, andGraphQlApi.createResolver
now require 2 arguments instead of 1. - appsync: Renames
Schema
toSchemaFile
that implementsISchema
. Removes alladdXxx
type methods fromGraphQlApi
.
- aws-lambda-python: add command hooks for bundling to allow for execution of custom commands in the build container (#23330) (d3d071f)
- gamelift: add GameSessionQueue L2 Construct for GameLift (#23266) (1ded644)
- appsync: unexpected resolver replacement (#23322) (6dc15d4), closes #13269
- servicecatalogappregistry: synth error when associating a nested stack (#23248) (30301d9)
2.54.0-alpha.0 (2022-12-07)
- servicecatalogappregistry: Stack inside ApplicationAssociator is no longer is created inside ApplicationAssociator Construct scope. The stack will now get created inside cdk.App scope.
- ** servicecatalogappregistry:** stackId will no longer have ApplicationAssociator Construct scope.
- [ X] Have you followed the guidelines in our Contributing guide?
- This PR adds new unconventional dependencies following the process described here
- Have you added the new feature to an integration test?
- Did you use
yarn integ
to deploy the infrastructure and generate the snapshot (i.e.yarn integ
without--dry-run
)?
- Did you use
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
- gamelift: add Alias L2 Construct for GameLift (#23042) (49d5c3a)
- gamelift: add MatchmakingRuleSet L2 Construct for GameLift (#23091) (ad8a704)
- gamelift: add support for buildArn output attribute (#23070) (08f2995)
- glue: support glue version 4.0 (#23223) (fe08aa9), closes #23220
- lambda-go: allow configuration of GOPROXY (#23171) (d189161)
- location:
PlaceIndex
(#22853) (50422df) - sagemaker: add Endpoint L2 construct (#22886) (bf7586b), closes #2809
- appsync: fully qualify service principal (#23054) (0bfce89)
- servicecatalogappregistry: creating ApplicationStack in AppScope to give user more control over the passed stackId (#22977) (85fe047), closes #22973
2.53.0-alpha.0 (2022-11-29)
2.52.1-alpha.0 (2022-11-28)
2.52.0-alpha.0 (2022-11-27)
2.51.1-alpha.0 (2022-11-18)
2.51.0-alpha.0 (2022-11-18)
- gamelift: add BuildFleet L2 Construct for GameLift (#22835) (834fab4)
- gamelift: add GameServerGroup L2 Construct for GameLift (#22762) (ef74116)
- integ-runner: support config file (#22937) (4f49efe)
- integ-runner: support custom
--app
commands (#22761) (a7bb6e1), closes #22521 - integ-runner: support custom
--test-regex
to match integ test files (#22786) (fa1a439), closes #22761 #22521 - integ-runner: support snapshot diff on nested stacks (#22881) (5b3d06d)
- sagemaker: add EndpointConfig L2 construct (#22865) (0e97c15), closes #2809
- sagemaker: add Model L2 construct (#22549) (93915f1), closes #2809
2.50.0-alpha.0 (2022-11-01)
2.49.1-alpha.0 (2022-10-31)
2.49.0-alpha.0 (2022-10-27)
2.48.0-alpha.0 (2022-10-27)
2.47.0-alpha.0 (2022-10-20)
- integ-runner: Fix call to spawnSync for hooks commands (#22429) (9139ca9), closes #22344
- lambda-python: root-owned cache items not cleaned up after install (#22512) (5ef65e0), closes #22398
2.46.0-alpha.0 (2022-10-13)
- integ-tests: add ability to
wait
for assertions to pass (#22335) (700f9c4) - integ-tests: allow for user provided assertions stack (#22404) (39089f5)
- synthetics: new runtime synthetics nodejs puppeteer 3 6 (#22374) (e0c0b56)
- appsync: can not use Tokens in the name of a DataSource (#22378) (511eb79), closes #18900
- aws-lambda-python: export poetry dependencies without hashes (#22351) (76482f6), closes #14201 #19232
- lambda-python: commands run non-sequentially on Graviton when building container image (#22398) (e427fd6), closes #22012
2.45.0-alpha.0 (2022-10-06)
- gamelift: add Build L2 constructs for GameLift (#22313) (983d26e)
- gamelift: add Script L2 Construct for GameLift (#22343) (da181ba)
- neptune: enable cloudwatch logs exports (#22004) (2b2bb01), closes #20248 #15888
- servicecatalogappregistry: application-associator L2 Construct (#22024) (a2b7a46)
2.44.0-alpha.0 (2022-09-28)
- integ-tests: chain assertion api calls (#22196) (530e07b)
- neptune: introduce metric method to cluster and instance (#21995) (02ed837), closes #20248
2.43.1-alpha.0 (2022-09-23)
2.43.0-alpha.0 (2022-09-21)
- integ-tests: AwsApiCall Custom Resource length could be greater than 60 characters (#22119) (35b2806)
- integ-tests: can't enable lookups when creating an IntegTest (#22075) (d0e0ab9)
2.42.1-alpha.0 (2022-09-19)
2.42.0-alpha.0 (2022-09-15)
- neptune: add engine version 1.2.0.0 (#21908) (be65da6), closes #21877
- neptune: introduce cluster grant method for granular actions (#21926) (42e559d), closes #21877
2.41.0-alpha.0 (2022-09-07)
- lambda-python: bundling with poetry is broken (#21945) (4b37157), closes #21867
- lambda-python: poetry bundling fails on python3.7 (#21950) (809e1b0)
2.40.0-alpha.0 (2022-08-31)
- glue: Added value to PythonVersion enum (#21670) (9774d4c), closes #21568 /github.com/aws/aws-cdk/issues/21568#issuecomment-1219668861
- msk: added msk cluster sasl iam property (#21798) (d30a530)
2.39.1-alpha.0 (2022-08-29)
2.39.0-alpha.0 (2022-08-25)
- aws-batch: Support omitting ComputeEnvironment security groups so that they can be specified in Launch Template (#21579) (33b00dd), closes #21577
- integ-runner: ignoring asset changes doesn't work with new style assets (#21638) (7857f55)
- integ-tests: assertions stack not deployed on v2 (#21646) (ee1b66d), closes #21639
2.38.1-alpha.0 (2022-08-18)
2.38.0-alpha.0 (2022-08-17)
2.37.1-alpha.0 (2022-08-10)
2.37.0-alpha.0 (2022-08-09)
- redshift: The way to specify a logging bucket and prefix will change to use an interface.
- apigatewayv2: WebSocket API - IAM authorizer support (#21393) (a1a6e6c)
- appsync: allow user to configure log retention time (#21418) (a2bb263), closes #20536
- batch: ComputeEnvironment implements IConnectable (#21458) (4bc9651), closes #20983
- integ-runner: add option to show deployment output (#21466) (289fb96)
- iot-actions: add support for DynamoDBv2 rule (#20171) (a57dec3), closes #20162
- iot-actions: support for sending messages to iot-events (#19953) (35fc169)
- iotevents: support timer actions (#19949) (af301dd)
2.36.0-alpha.0 (2022-08-08)
2.35.0-alpha.0 (2022-08-02)
- cognito-identitypool: providerUrl causes error when mappingKey is not provided and it is a token (#21191) (d91c904), closes #19222 /github.com/aws/aws-cdk/pull/21056#issuecomment-1178879318
2.34.2-alpha.0 (2022-07-29)
2.34.1-alpha.0 (2022-07-29)
- Revert to
jsii-pacmak@1.62.0
as dynamic runtime type-checking it introduced for Python results in incorrect code being produced.
2.34.0-alpha.0 (2022-07-28)
- appsync: support for read consistency during DynamoDB reads (#20793) (0b911ef)
- batch: add default AWS_ACCOUNT and AWS_REGION to Batch container, if they are not explicitly set (#21041) (eed854e)
2.33.0-alpha.0 (2022-07-19)
- cloud9: The imageId parameter is now required and deployments will fail without it
- cloud9: support imageid when creating cloud9 environment (#21194) (dcf3eb3)
- redshift: adds elasticIp parameter to redshift cluster (#21085) (c88030f), closes #19191
2.32.1-alpha.0 (2022-07-15)
2.32.0-alpha.0 (2022-07-14)
- appsync: set max batch size when using batch invoke (#20995) (69d25a6), closes #20467
- batch: add launchTemplateId in LaunchTemplateSpecification (#20184) (269b8d0), closes #20163
- glue: enable partition filtering on tables (#21081) (bf35048), closes #20825
- integ-tests: expose adding IAM policies to the assertion provider (#20769) (c2f40b7)
- neptune: add engine version 1.1.1.0 (#21079) (a113816), closes #20869
- redshift: adds classic or elastic resize type option (#21084) (b5e9c1a), closes #19430
- appsync: domain name api association fails when domain name creation is in the same stack (#20173) (c1495f0), closes #18395
- integ-runner: test names change depending on the discovery directory (#21093) (d38f78c)
2.31.2-alpha.0 (2022-07-13)
2.31.1-alpha.0 (2022-07-08)
2.31.0-alpha.0 (2022-07-06)
2.30.0-alpha.0 (2022-07-01)
2.29.1-alpha.0 (2022-06-24)
2.29.0-alpha.0 (2022-06-22)
2.28.1-alpha.0 (2022-06-15)
2.28.0-alpha.0 (2022-06-14)
- appsync: Create Lambda permission when using Lambda Authorizer(#… (#20641) (6176400), closes #20234
- integ-runner: don't allow new legacy tests (#20614) (c946615)
2.27.0-alpha.0 (2022-06-02)
- integ-runner: catch snapshot errors, treat
--from-file
as command-line (#20523) (cedfde8) - integ-runner: don't throw error if tests pass (#20511) (c274c2f), closes #20384
2.26.0-alpha.0 (2022-05-27)
- integ-runner: always resynth on deploy (#20508) (7138057)
- integ-tests: DeployAssert should be private (#20466) (0f52813)
2.25.0-alpha.0 (2022-05-20)
- cloud9: configure Connection Type of Ec2Environment (#20250) (01708bc), closes #17027
- integ-tests: enhancements to integ-tests (#20180) (3ff3fb7)
2.24.1-alpha.0 (2022-05-12)
2.24.0-alpha.0 (2022-05-11)
2.23.0-alpha.0 (2022-05-04)
- integ-runner: disable-update-workflow default is 'false' instead of false (#20073) (9f7aa65)
- integ-runner: only diff registered stacks (#20100) (721bd4b)
2.22.0-alpha.0 (2022-04-27)
- integ-tests: add
IntegTest
to group test cases (#20015) (b4f8d91) - integ-tests: make assertions on deployed infrastructure (#20071) (8362efe)
- lambda-python: handler path is incorrectly generated when using PythonFunction (#20083) (6787376)
- lambda-python: Pipenv projects no longer work for Python 3.6 (#20019) (c5dcdeb)
- lambda-python: Pipenv projects no longer work for Python 3.6 (#20019) (5024021)
2.21.1-alpha.0 (2022-04-22)
2.21.0-alpha.0 (2022-04-22)
- apigatewayv2: set throttling on stages (#19776) (3cabd10), closes #19626
- integ-runner: add missing features from the integ manifest (#19969) (2ca5050)
- integ-runner: integ-runner enhancements (#19865) (697fdbe)
- integ-runner: test update path when running tests (#19915) (d0ace8f)
- integ-tests: Add
IntegTestCase
(#19829) (ad249c9) - iotevents: support comparison operators (#19329) (95cb3f3)
- integ-runner: enable all feature flags by default (#19955) (ca3920d)
- lambda-python: Pipenv projects no longer work for Python 3.6 (#20019) (08cfc2d)
2.20.0-alpha.0 (2022-04-07)
2.19.0-alpha.0 (2022-03-31)
2.18.0-alpha.0 (2022-03-28)
- appsync: support custom domain mappings (#19368) (8c7a4ac), closes #18040
- synthetics: add support for puppeteer 3.4 runtime (#19429) (024b890), closes #19382
2.17.0-alpha.0 (2022-03-17)
- appsync: add OpenSearch domain data source (#16529) (922a9dc), closes #16528
- iotevents: support SetVariable action (#19305) (c222b12)
- synthetics: add vpc configuration (#18447) (c991e92), closes #11865 #9954
2.16.0-alpha.0 (2022-03-11)
- aws-s3objectlambda: add L2 construct for S3 Object Lambda (#15833) (fe9f750), closes #13675
- iotevents: support actions (#18869) (e01654e)
- iotevents: support setting Events on input and exit for State (#19249) (ffa9e0d)
- servicecatalog: Service Catalog is now in Developer Preview (#19204) (6dfc254)
- apigatewayv2-integrations: in case of multiple routes, only one execute permission is created (#18716) (1e352ca)
- lambda-python: asset bundling fails on windows (#19270) (0da57da), closes #18861
- lambda-python: docker image gets built even when we don't need to bundle assets (#16192) (5dc61ea), closes #14747
2.15.0-alpha.0 (2022-03-01)
2.14.0-alpha.0 (2022-02-25)
2.13.0-alpha.0 (2022-02-18)
- iot-actions: add SNS publish action (#18839) (3a39f6b), closes #17700
- iotevents: create new module for IoT Events actions (#18956) (3533ea9), closes /github.com/aws/aws-cdk/pull/18869#discussion_r802719713
- synthetics: generated role has incorrect permissions for cloudwatch logs (#18946) (f8bb85f), closes #18910
2.12.0-alpha.0 (2022-02-08)
2.11.0-alpha.0 (2022-02-08)
- amplify: support performance mode in Branch (#18598) (bdeb8eb), closes #18557
- iot: add Action to republish MQTT messages to another MQTT topic (#18661) (7ac1215)
- iotevents: add grant method to Input class (#18617) (e89688e)
2.10.0-alpha.0 (2022-01-29)
- servicecatalog:
TagOptions
now havescope
andprops
argument in constructor, and data is now passed via aallowedValueForTags
field in props
- iotevents: add DetectorModel L2 Construct (#18049) (d0960f1), closes #17711 #17711
- iotevents: allow setting description, evaluation method and key of DetectorModel (#18644) (2eeaebc)
- lambda-python: support setting environment vars for bundling (#18635) (30e2233)
- servicecatalog: Create TagOptions Construct (#18314) (903c4b6), closes #17753
- apigatewayv2: websocket api: allow all methods in grant manage connections (#18544) (41c8a3f), closes #18410
- synthetics: correct getbucketlocation policy (#13573) (e743525), closes #13572
2.9.0-alpha.0 (2022-01-26)
- aws-neptune: add autoMinorVersionUpgrade to cluster props (#18394) (8b5320a), closes #17545
- iot: add Action to put record to Kinesis Data stream (#18321) (1480213), closes #17703
2.8.0-alpha.0 (2022-01-13)
- apigatewayv2:
HttpIntegrationType.LAMBDA_PROXY
has been renamed toHttpIntegrationType.AWS_PROXY
- apigatewayv2: HttpRouteIntegration supports AWS services integrations (#18154) (a8094c7), closes #16287
- apigatewayv2: support for mock integration type (#18129) (7779c14), closes #15008
2.7.0-alpha.0 (2022-01-12)
- iot: the class
FirehoseStreamAction
has been renamed toFirehosePutRecordAction
- apigatewayv2-authorizers:
WebSocketLambdaAuthorizerProps.identitySource
default changes from['$request.header.Authorization']
to['route.request.header.Authorization']
.
- apigatewayv2-authorizers: incorrect
identitySource
default forWebSocketLambdaAuthorizer
(#18315) (74eee1e), closes #16886 /docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-authorizer.html#cfn-apigatewayv2 #18307 - iot:
FirehoseStreamAction
is now calledFirehosePutRecordAction
(#18356) (c016a9f), closes /github.com/aws/aws-cdk/pull/18321#discussion_r781620195 - lambda-python: asset files are generated inside the 'asset-input' folder (#18306) (b00b44e)
- lambda-python: asset files are generated inside the 'asset-input' folder (#18306) (aff607a)
- lambda-python: bundle asset files correctly (#18335) (3822c85), closes /github.com/aws/aws-cdk/pull/18306#discussion_r780186564 #18301 /github.com/aws/aws-cdk/pull/18082#issuecomment-1008442363
2.6.0-alpha.0 (2022-01-12)
- lambda-python: asset files are generated inside the 'asset-input' folder (backport #18306) (#18341) (a1715e4)
2.5.0-alpha.0 (2022-01-09)
2.4.0-alpha.0 (2022-01-06)
- lambda-python:
assetHashType
andassetHash
properties moved to newbundling
property. - lambda-python: Runtime is now required for
LambdaPython
- appsync: The
CachingConfig#ttl
property is now required.
- amplify: Add Amplify asset deployment resource (#16922) (499ba85), closes #16208
- apigatewayv2: http api - IAM authorizer support (#17519) (fd8e0e3), closes #15123 /github.com/aws/aws-cdk/pull/14853#discussion_r648952691 #10534
- apigatewayv2: Lambda authorizer for WebSocket API (#16886) (67cce37), closes #13869
- glue: support partition index on tables (#17998) (c071367), closes #17589
- iot: Action to send messages to SQS queues (#18087) (37537fe), closes #17699
- iot: add Action to set a CloudWatch alarm (#18021) (de2369c), closes #17705
- lambda-python: support for providing a custom bundling docker image (#18082) (c3c4a97), closes #10298 #12949 #15391 #16234 #15306
- msk: add Kafka versions 2.6.3, 2.7.1 and 2.7.2 (#18191) (8832df1)
- amplify: deploy asset Custom Resource points to TS file (#18166) (a1508af)
- appsync:
ttl
property ofCachingConfig
is not required (#17981) (73e5fec) - lambda-python: runtime is now required (#18143) (98f1bb1), closes #10248
2.3.0-alpha.0 (2021-12-22)
2.2.0-alpha.0 (2021-12-15)
- glue: the grantRead API previously included 'glue:BatchDeletePartition', and now it does not.
- iotevents: add IoT Events input L2 Construct (#17847) (9f03dc4), closes /github.com/aws/aws-cdk/issues/17711#issuecomment-986153267
- appsync: empty caching config is created when not provided (#17947) (3a9f206)
- glue: remove
batchDeletePartition
fromgrantRead()
permissions (#17941) (3d64f9b), closes #17935 #15116
2.1.0-alpha.0 (2021-12-08)
- apigatewayv2-authorizers: The default value for the prop
authorizerName
inHttpJwtAuthorizerProps
has changed. - apigatewayv2-authorizers:
HttpJwtAuthorizer
now takes the construct id and the target jwt issuer as part of its constructor. - apigatewayv2-authorizers:
HttpLambdaAuthorizer
now takes the construct id and the target lambda function handler as part of its constructor. - apigatewayv2-authorizers: The default value for the prop
authorizerName
inHttpUserPoolAuthorizerProps
has changed. - apigatewayv2: The
HttpIntegration
andWebSocketIntegration
classes require an "id" parameter to be provided during its initialization. - apigatewayv2-integrations: The
LambdaWebSocketIntegration
is now renamed toWebSocketLambdaIntegration
. The new class accepts the handler to the target lambda function directly in its constructor. - apigatewayv2-integrations:
HttpProxyIntegration
andHttpProxyIntegrationProps
are now renamed toHttpUrlIntegration
andHttpUrlIntegrationProps
respectively. The new class accepts the target url directly in its constructor. - apigatewayv2-integrations:
LambdaProxyIntegration
andLambdaProxyIntegrationProps
are now renamed toHttpLambdaIntegration
andHttpLambdaIntegrationProps
respectively. The new class accepts the lambda function handler directly in its constructor. - apigatewayv2-integrations:
HttpAlbIntegration
now accepts the ELB listener directly in its constructor. - apigatewayv2-integrations:
HttpNlbIntegration
now accepts the ELB listener directly in its constructor. - apigatewayv2-integrations:
HttpServiceDiscoveryIntegration
now accepts the service discovery Service directly in its constructor. - apigatewayv2-authorizers:
UserPoolAuthorizerProps
is now renamed toHttpUserPoolAuthorizerProps
. - apigatewayv2: The interface
IHttpRouteIntegration
is replaced by the abstract classHttpRouteIntegration
. - apigatewayv2: The interface
IWebSocketRouteIntegration
is now replaced by the abstract classWebSocketRouteIntegration
. - apigatewayv2: Previously, we allowed the usage of integration
classes to be used with routes defined in multiple
HttpApi
instances (orWebSocketApi
instances). This is now disallowed, and separate instances must be created for each instance ofHttpApi
orWebSocketApi
.
- iot: add Action to capture CloudWatch metrics (#17503) (ec4187c), closes /github.com/aws/aws-cdk/pull/16681#issuecomment-942233029
- neptune: add engine version 1.1.0.0 and instance types t4g, r6g (#17669) (83e669d)
- servicecatalog: Add TagOptions to a CloudformationProduct (#17672) (2d19e15)
- apigatewayv2: integration class does not render an integration resource (#17729) (3b5b97a), closes #13213
- apprunner: startCommand and environment are ignored in imageConfiguration (#16939) (d911c58), closes #16812
- appsync: add caching config to AppSync resolvers (#17815) (52b535b)
- appsync: remove 'id' suffix to union definition key (#17787) (86e7780), closes #17771
- assert: support multiline strings with
stringLike()
(#17692) (37596e6)
- apigatewayv2: integration api re-organization (#17752) (29039e8)
- apigatewayv2-authorizers: re-organize authorizer api (#17772) (719f33e)
2.0.0-alpha.11 (2021-12-02)
2.0.0-alpha.10 (2021-11-26)
2.0.0-alpha.9 (2021-11-25)
2.0.0-alpha.8 (2021-11-23)
- apigatewayv2: domain endpoint type, security policy and endpoint migration (#17518) (261b331)
- apigatewayv2: http api - mTLS support (#17284) (54be156), closes #12559
- apigatewayv2: websocket api: grant manage connections (#16872) (10dfa60), closes #14828
- iot: add Action to put objects in S3 Buckets (#17307) (49b87db), closes /github.com/aws/aws-cdk/pull/16681#issuecomment-942233029
- iot: add Action to put records to a Firehose stream (#17466) (7cb5f2c), closes /github.com/aws/aws-cdk/pull/16681#issuecomment-942233029
- msk: add Kafka version 2.6.2 (#17497) (5f1f476)
- redshift: Add support for distStyle, distKey, sortStyle and sortKey to Table (#17135) (a137cd1), closes #17125
- servicecatalog: support local launch role name in launch role constraint (#17371) (b307b69)
- iot: unable to add the same lambda function to two TopicRule Actions (#17521) (eda1640), closes #17508
- redshift: tableNameSuffix evaluation (#17213) (f7c3217), closes #17064
2.0.0-alpha.7 (2021-11-17)
2.0.0-alpha.6 (2021-11-10)
2.0.0-alpha.5 (2021-11-09)
- apigatewayv2-authorizers:
userPoolClient
property inUserPoolAuthorizerProps
is now renamed touserPoolClients
.
- apigatewayv2-authorizers: http api - allow multiple user pool clients per HttpUserPoolAuthorizer (#16903) (747eb7c), closes #15431
- iot: allow setting
description
andenabled
of TopicRule (#17225) (a9aae09), closes /github.com/aws/aws-cdk/pull/16681#issuecomment-942233029 - iot: allow setting
errorAction
of TopicRule (#17287) (e412308), closes /github.com/aws/aws-cdk/pull/16681#issuecomment-942233029 - iot: allow setting Actions of TopicRule (#17110) (0cabb9f), closes #16681 /github.com/aws/aws-cdk/pull/16681#discussion_r733912215
- iot-actions: Add the action to put CloudWatch Logs (#17228) (a7c869e), closes /github.com/aws/aws-cdk/pull/16681#issuecomment-942233029
- servicecatalog: allow creating a CFN Product Version with CDK code (#17144) (f8d0ef5)
- synthetics: add static cron method to schedule class (#17250) (1ab9b26), closes #16402
2.0.0-alpha.4 (2021-10-27)
- amplify: Add support for custom headers in the App (#17102) (9f3abd7), closes #17084
- synthetics: add syn-nodejs-puppeteer-3.3 runtime (#17132) (8343bec)
2.0.0-alpha.3 (2021-10-25)
- iot: create new aws-iot-actions module (#17112) (06838e6), closes #16681 /github.com/aws/aws-cdk/pull/16681#discussion_r733912215
2.0.0-alpha.2 (2021-10-22)
- apigatewayv2-integrations: http api - support for request parameter mapping (#15630) (0452aed)
- iot: add the TopicRule L2 construct (#16681) (86f85ce), closes #16602
- msk: add Kafka version 2.8.1 (#16881) (7db5c8c)
2.0.0-alpha.1 (2021-10-13)
- assertions: Starting this release, the
assertions
module will be published to Maven with the name 'assertions' instead of 'cdk-assertions'. - assertions:
Match.absentProperty()
becomesMatch.absent()
, and its type changes fromstring
toMatcher
. - assertions: The
templateMatches()
API previously performed an exact match. The default behavior has been updated to be "object-like". - assertions: the
findResources()
API previously returned a list of resources, but now returns a map of logical id to resource. - assertions: the
findOutputs()
API previously returned a list of outputs, but now returns a map of logical id to output. - assertions: the
findMappings()
API previously returned a list of mappings, but now returns a map of logical id to mapping.
- appsync: Lambda Authorizer for AppSync GraphqlApi (#16743) (bdbe8b6), closes #16380
- assertions: capture matching value (#16426) (cc74f92)
- assertions: findXxx() APIs now includes the logical id as part of its result (#16454) (532a72b)
- assertions: match into serialized json (#16456) (fed30fc)
- assertions: matcher support for
templateMatches()
API (#16789) (0fb2179) - aws-apprunner: support the Service L2 construct (#15810) (3cea941), closes #14813
- batch: fargate support for jobs (#15848) (066bcb1), closes #13591 #13590 #13591
- glue: Job construct (#12506) (fc74110), closes #12443
- neptune: add engine version 1.0.5.0 (#16394) (deaac4a), closes #16388
- redshift: manage database users and tables via cdk (#15931) (a9d5118), closes #9815
- apigatewayv2: ApiMapping does not depend on DomainName (#16201) (1e247d8), closes #15464
- assertions:
hasResourceProperties
is incompatible withMatch.not
andMatch.absent
(#16678) (6f0a507), closes #16626 - aws-servicecatalog: Allow users to create multiple product versions from assets. (#16914) (958d755)
- route53resolver: FirewallDomainList throws with wildcard domains (#16538) (643e5ee), closes #16527