@aws-cdk-testing/cli-integ 2.95.0 → 2.96.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-cdk-testing/cli-integ",
3
3
  "description": "Integration tests for the AWS CDK CLI",
4
- "version": "2.95.0",
4
+ "version": "2.96.0",
5
5
  "bin": {
6
6
  "run-suite": "bin/run-suite",
7
7
  "download-and-run-old-tests": "bin/download-and-run-old-tests",
@@ -29,13 +29,13 @@
29
29
  },
30
30
  "license": "Apache-2.0",
31
31
  "devDependencies": {
32
- "@aws-cdk/cdk-build-tools": "2.95.0-alpha.0",
32
+ "@aws-cdk/cdk-build-tools": "2.96.0-alpha.0",
33
33
  "@types/semver": "^7.5.1",
34
34
  "@types/yargs": "^15.0.15",
35
35
  "@types/fs-extra": "^9.0.13",
36
36
  "@types/glob": "^7.2.0",
37
37
  "@types/npm": "^7.19.0",
38
- "@aws-cdk/pkglint": "2.95.0-alpha.0"
38
+ "@aws-cdk/pkglint": "2.96.0-alpha.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "@octokit/rest": "^18.12.0",
@@ -351,7 +351,7 @@ class BundlingStage extends cdk.Stage {
351
351
  new lambda.Function(stack, 'Handler', {
352
352
  code: lambda.Code.fromAsset(path.join(__dirname, 'lambda')),
353
353
  handler: 'index.handler',
354
- runtime: lambda.Runtime.NODEJS_16_X,
354
+ runtime: lambda.Runtime.NODEJS_LATEST,
355
355
  });
356
356
  }
357
357
  }