Skip to content

Commit

Permalink
Merge branch 'main' into cfnspec-docs/main/d20230614
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Jun 14, 2023
2 parents a2c2cbf + 9e92bca commit 3452de5
Show file tree
Hide file tree
Showing 10 changed files with 1,210 additions and 1,140 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 23 additions & 1 deletion packages/@aws-cdk/cx-api/FEATURE_FLAGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Flags come in three types:
| [@aws-cdk/aws-secretsmanager:useAttachedSecretResourcePolicyForSecretTargetAttachments](#aws-cdkaws-secretsmanageruseattachedsecretresourcepolicyforsecrettargetattachments) | SecretTargetAttachments uses the ResourcePolicy of the attached Secret. | 2.67.0 | (fix) |
| [@aws-cdk/aws-redshift:columnId](#aws-cdkaws-redshiftcolumnid) | Whether to use an ID to track Redshift column changes | 2.68.0 | (fix) |
| [@aws-cdk/aws-stepfunctions-tasks:enableEmrServicePolicyV2](#aws-cdkaws-stepfunctions-tasksenableemrservicepolicyv2) | Enable AmazonEMRServicePolicy_v2 managed policies | 2.72.0 | (fix) |
| [@aws-cdk/core:includePrefixInUniqueNameGeneration](#aws-cdkcoreincludeprefixinuniquenamegeneration) | Include the stack prefix in the stack name generation process | V2NEXT | (fix) |

<!-- END table -->

Expand Down Expand Up @@ -96,7 +97,8 @@ The following json shows the current recommended set of flags, as `cdk init` wou
"@aws-cdk/aws-stepfunctions-tasks:enableEmrServicePolicyV2": true,
"@aws-cdk/aws-ec2:restrictDefaultSecurityGroup": true,
"@aws-cdk/aws-apigateway:requestValidatorUniqueId": true,
"@aws-cdk/aws-kms:aliasNameRef": true
"@aws-cdk/aws-kms:aliasNameRef": true,
"@aws-cdk/core:includePrefixInUniqueNameGeneration": true
}
}
```
Expand Down Expand Up @@ -986,4 +988,24 @@ intervention since they might not have the appropriate tags propagated automatic
| 2.72.0 | `false` | `true` |


### @aws-cdk/core:includePrefixInUniqueNameGeneration

*Include the stack prefix in the stack name generation process* (fix)

This flag prevents the prefix of a stack from making the stack's name longer than the 128 character limit.

If the flag is set, the prefix is included in the stack name generation process.
If the flag is not set, then the prefix of the stack is prepended to the generated stack name.

**NOTE** - Enabling this flag comes at a **risk**. If you have already deployed stacks, changing the status of this
feature flag can lead to a change in stacks' name. Changing a stack name mean recreating the whole stack, which
is not viable in some productive setups.


| Since | Default | Recommended |
| ----- | ----- | ----- |
| (not in v1) | | |
| V2NEXT | `false` | `true` |


<!-- END details -->
2 changes: 1 addition & 1 deletion packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE

----------------

** aws-sdk@2.1379.0 - https://www.npmjs.com/package/aws-sdk/v/2.1379.0 | Apache-2.0
** aws-sdk@2.1396.0 - https://www.npmjs.com/package/aws-sdk/v/2.1396.0 | Apache-2.0
AWS SDK for JavaScript
Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ export async function handler(event: AWSLambda.CloudFormationCustomResourceEvent
}

awsSdk = await awsSdk;
const ServiceClient = Object.entries(awsSdk).find( ([name]) => name.endsWith('Client') )?.[1] as {
const [_clientName, ServiceClient] = Object.entries(awsSdk).find( ([name]) => !name.startsWith('_') && name.endsWith('Client') ) as [string, {
new (config: any): {
send: (command: any) => Promise<any>
config: any
}
};
}];
const client = new ServiceClient({
apiVersion: call.apiVersion,
credentials: credentials,
Expand Down Expand Up @@ -165,4 +165,4 @@ export async function handler(event: AWSLambda.CloudFormationCustomResourceEvent
console.log(e);
await respond(event, 'FAILED', e.message || 'Internal Error', context.logStreamName, {});
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,8 @@
"name": "SagemakerEdge"
},
"amp": {
"name": "Amp"
"name": "Amp",
"cors": true
},
"greengrassv2": {
"name": "GreengrassV2"
Expand Down Expand Up @@ -1295,5 +1296,16 @@
},
"osis": {
"name": "OSIS"
},
"mediapackagev2": {
"name": "MediaPackageV2"
},
"paymentcryptography": {
"prefix": "payment-cryptography",
"name": "PaymentCryptography"
},
"paymentcryptographydata": {
"prefix": "payment-cryptography-data",
"name": "PaymentCryptographyData"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -530,11 +530,6 @@ test('SDK credentials are not persisted across subsequent invocations', async ()
StackId: 'stackId',
}, {} as AWSLambda.Context);
expect(credentialProviderMock).not.toBeCalled();

// THEN
expect(await s3MockClient.call(0).thisValue.config.credentials()).not.toBe(mockCreds);
expect(await s3MockClient.call(1).thisValue.config.credentials()).toBe(mockCreds);
expect(await s3MockClient.call(2).thisValue.config.credentials()).not.toBe(mockCreds);
});

test('Being able to call the AWS SDK v2 format', async () => {
Expand Down Expand Up @@ -627,4 +622,4 @@ test('invalid v2 service name throws explicit error', async () => {
await handler(event, {} as AWSLambda.Context);

expect(request.isDone()).toBeTruthy();
});
});
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,15 @@
"@aws-cdk/cfn2ts": "0.0.0",
"@aws-cdk/cfnspec": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@aws-sdk/client-s3": "^3.321.1",
"@aws-sdk/credential-providers": "^3.321.1",
"@aws-sdk/client-s3": "^3.350.0",
"@aws-sdk/credential-providers": "^3.350.0",
"@types/aws-lambda": "^8.10.115",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/punycode": "^2.1.0",
"aws-sdk": "^2.1379.0",
"aws-sdk-client-mock": "^2.1.1",
"aws-sdk-mock": "5.6.0",
"aws-sdk-mock": "5.8.0",
"cdk8s": "^2.7.68",
"constructs": "^10.0.0",
"delay": "5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/aws-cdk/THIRD_PARTY_LICENSES
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH RE

----------------

** aws-sdk@2.1379.0 - https://www.npmjs.com/package/aws-sdk/v/2.1379.0 | Apache-2.0
** aws-sdk@2.1396.0 - https://www.npmjs.com/package/aws-sdk/v/2.1396.0 | Apache-2.0
AWS SDK for JavaScript
Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Expand Down Expand Up @@ -3402,7 +3402,7 @@ SOFTWARE.

----------------

** tslib@2.5.0 - https://www.npmjs.com/package/tslib/v/2.5.0 | 0BSD
** tslib@2.5.3 - https://www.npmjs.com/package/tslib/v/2.5.3 | 0BSD
Copyright (c) Microsoft Corporation.

Permission to use, copy, modify, and/or distribute this software for any
Expand Down
8 changes: 4 additions & 4 deletions tools/@aws-cdk/yarn-cling/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ export interface YarnLock {

export interface ResolvedYarnPackage {
version: string;
resolved: string;
integrity: string;
resolved?: string;
integrity?: string;

/**
* Dependency name to version range
*/
dependencies: Record<string, string>;
dependencies?: Record<string, string>;
}

export interface PackageLock extends PackageLockEntry {
Expand Down Expand Up @@ -55,4 +55,4 @@ export interface PackageLockPackage extends PackageLockEntry {
bundled?: boolean;
dev?: boolean;
optional?: boolean;
}
}
Loading

0 comments on commit 3452de5

Please sign in to comment.