Skip to content

Commit 3bb7425

Browse files
authored
Merge branch 'main' into awslint
2 parents 40cb836 + c9af3ef commit 3bb7425

File tree

74 files changed

+38240
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+38240
-313
lines changed

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ Security and stability of the CDK is a top priority. If you think you’ve found
4848
* 👂🏽 [CDK CLI Triggers](https://github.com/aws/aws-cdk-rfcs/issues/228) - CLI enhancements are also being considered for post command hooks.
4949

5050
### L2 Abstractions
51+
* 🚀 [Enabling IPv6 on Resources and VPCs](https://github.com/aws/aws-cdk/pull/28366)
5152
* 🔍 [CloudFront Origin Access Control L2](https://github.com/aws/aws-cdk-rfcs/issues/491)
52-
* 🛠️ [Enabling IPv6 on Resources and VPCs](https://github.com/aws/aws-cdk/pull/28366)
5353
* 🔍 [Rewrite EKS L2](https://github.com/aws/aws-cdk-rfcs/issues/605) - drop the custom resource implementation in favor of the native L1.
5454

5555
We are currently investigating other L2s to build out next. Feel free to create an RFC to request.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"jsii-diff": "1.94.0",
2929
"jsii-pacmak": "1.94.0",
3030
"jsii-reflect": "1.94.0",
31-
"jsii-rosetta": "~5.3.3",
31+
"jsii-rosetta": "~5.3.4",
3232
"lerna": "^7.4.2",
3333
"nx": "^16.10.0",
3434
"patch-package": "^6.5.1",

packages/@aws-cdk-testing/cli-integ/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"dependencies": {
4141
"@octokit/rest": "^18.12.0",
42-
"aws-sdk": "^2.1532.0",
42+
"aws-sdk": "^2.1537.0",
4343
"axios": "^1.6.5",
4444
"fs-extra": "^9.1.0",
4545
"glob": "^7.2.3",

packages/@aws-cdk-testing/framework-integ/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
"@aws-cdk/integ-tests-alpha": "0.0.0",
4242
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.242",
4343
"aws-cdk-lib": "0.0.0",
44-
"aws-sdk": "^2.1532.0",
44+
"aws-sdk": "^2.1537.0",
4545
"aws-sdk-mock": "5.6.0",
46-
"cdk8s": "2.68.25",
47-
"cdk8s-plus-27": "2.7.71",
46+
"cdk8s": "2.68.27",
47+
"cdk8s-plus-27": "2.7.73",
4848
"constructs": "^10.0.0"
4949
},
5050
"repository": {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { CodePipelineClient, StartPipelineExecutionCommand } from '@aws-sdk/client-codepipeline';
2+
const codepipeline = new CodePipelineClient({});
3+
4+
export const handler = async () => {
5+
const command = new StartPipelineExecutionCommand({
6+
name: 'IntegCustomEventPipeline',
7+
});
8+
await codepipeline.send(command);
9+
};

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-code-commit-custom-event.js.snapshot/IntegTestDefaultTestDeployAssertE3E7D2A4.assets.json

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)