Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/@aws-cdk-testing/framework-integ/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@aws-sdk/client-acm": "3.632.0",
"@aws-sdk/client-ec2": "3.632.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as integ from '@aws-cdk/integ-tests-alpha';
import { KubectlV33Layer } from '@aws-cdk/lambda-layer-kubectl-v33';
import { App, CfnOutput, Duration, Stack } from 'aws-cdk-lib';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import * as cdk8s from 'cdk8s';
import * as kplus from 'cdk8s-plus-27';
import * as eks from 'aws-cdk-lib/aws-eks-v2';
Expand Down Expand Up @@ -77,6 +77,7 @@ class EksClusterAlbControllerStack extends Stack {
const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': true,
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
aws_ec2 as ec2,
} from 'aws-cdk-lib';
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import * as cdk8s from 'cdk8s';
import * as kplus from 'cdk8s-plus-27';
import type * as constructs from 'constructs';
Expand Down Expand Up @@ -221,6 +221,7 @@ class EksClusterStack extends Stack {
const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': true,
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as integ from '@aws-cdk/integ-tests-alpha';
import { KubectlV32Layer } from '@aws-cdk/lambda-layer-kubectl-v32';
import type { StackProps } from 'aws-cdk-lib';
import { App, RemovalPolicy, Stack } from 'aws-cdk-lib';
import { EKS_USE_NATIVE_OIDC_PROVIDER } from 'aws-cdk-lib/cx-api';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as eks from 'aws-cdk-lib/aws-eks-v2';

Expand Down Expand Up @@ -129,7 +130,11 @@ class EksClusterRemovalPolicyStack extends Stack {
}
}

const app = new App();
const app = new App({
postCliContext: {
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
},
});

const stack = new EksClusterRemovalPolicyStack(app, 'EksClusterV2RemovalPolicyStack');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { App, CfnOutput, Duration, Token, Fn, Stack } from 'aws-cdk-lib';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as kms from 'aws-cdk-lib/aws-kms';
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import * as cdk8s from 'cdk8s';
import * as kplus from 'cdk8s-plus-27';
import type * as constructs from 'constructs';
Expand Down Expand Up @@ -359,6 +359,7 @@ const supportedRegions = [
const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': true,
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import * as path from 'path';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { App, Stack } from 'aws-cdk-lib';
import { EKS_USE_NATIVE_OIDC_PROVIDER } from 'aws-cdk-lib/cx-api';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as iam from 'aws-cdk-lib/aws-iam';
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
Expand Down Expand Up @@ -130,6 +131,7 @@ class EksClusterStack extends Stack {

const app = new App({
postCliContext: {
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': true,
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as integ from '@aws-cdk/integ-tests-alpha';
import { KubectlV32Layer } from '@aws-cdk/lambda-layer-kubectl-v32';
import { App, Stack } from 'aws-cdk-lib';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import * as eks from 'aws-cdk-lib/aws-eks-v2';

class EksClusterInferenceStack extends Stack {
Expand Down Expand Up @@ -38,6 +38,7 @@ class EksClusterInferenceStack extends Stack {
const app = new App({
postCliContext: {
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': true,
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import * as eks from 'aws-cdk-lib/aws-eks';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

class EksClusterStack extends Stack {
constructor(scope: App, id: string, props?: StackProps) {
Expand All @@ -34,6 +34,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as kplus from 'cdk8s-plus-27';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import { Pinger } from './pinger/pinger';
import * as eks from 'aws-cdk-lib/aws-eks';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

const LATEST_VERSION: eks.AlbControllerVersion = eks.AlbControllerVersion.V2_8_2;
class EksClusterAlbControllerStack extends Stack {
Expand Down Expand Up @@ -75,6 +75,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as eks from 'aws-cdk-lib/aws-eks';
import * as cdk8s from 'cdk8s';
import * as kplus from 'cdk8s-plus-27';
import type * as constructs from 'constructs';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

class EksClusterStack extends Stack {
private cluster: eks.Cluster;
Expand Down Expand Up @@ -218,6 +218,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type * as constructs from 'constructs';
import * as hello from './hello-k8s';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import * as eks from 'aws-cdk-lib/aws-eks';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

class EksClusterStack extends Stack {
private cluster: eks.Cluster;
Expand Down Expand Up @@ -357,6 +357,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/// !cdk-integ pragma:disable-update-workflow
import type { StackProps } from 'aws-cdk-lib';
import { App, RemovalPolicy, Stack } from 'aws-cdk-lib';
import { EKS_USE_NATIVE_OIDC_PROVIDER } from 'aws-cdk-lib/cx-api';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import * as eks from 'aws-cdk-lib/aws-eks';
Expand Down Expand Up @@ -127,7 +128,11 @@ class EksClusterRemovalPolicyStack extends Stack {
}
}

const app = new App();
const app = new App({
postCliContext: {
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
},
});

const stack = new EksClusterRemovalPolicyStack(app, 'EksClusterRemovalPolicyStack');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type * as constructs from 'constructs';
import * as hello from './hello-k8s';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import * as eks from 'aws-cdk-lib/aws-eks';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

class EksClusterStack extends Stack {
private cluster: eks.Cluster;
Expand Down Expand Up @@ -350,6 +350,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as iam from 'aws-cdk-lib/aws-iam';
import { Asset } from 'aws-cdk-lib/aws-s3-assets';
import { App, Stack } from 'aws-cdk-lib';
import { EKS_USE_NATIVE_OIDC_PROVIDER } from 'aws-cdk-lib/cx-api';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { getClusterVersionConfig, getLatestVersions } from './integ-tests-kubernetes-version';
import * as eks from 'aws-cdk-lib/aws-eks';
Expand Down Expand Up @@ -157,6 +158,7 @@ class EksClusterStack extends Stack {
const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { App, Stack } from 'aws-cdk-lib';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import * as eks from 'aws-cdk-lib/aws-eks';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

class EksClusterInferenceStack extends Stack {
constructor(scope: App, id: string) {
Expand Down Expand Up @@ -43,6 +43,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { App, Stack } from 'aws-cdk-lib';
import * as integ from '@aws-cdk/integ-tests-alpha';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import * as eks from 'aws-cdk-lib/aws-eks';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

class EksClusterInferenceStack extends Stack {
constructor(scope: App, id: string) {
Expand Down Expand Up @@ -41,6 +41,7 @@ const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ import * as kplus from 'cdk8s-plus-27';
import { BucketPinger } from './bucket-pinger/bucket-pinger';
import * as eks from 'aws-cdk-lib/aws-eks';
import { getClusterVersionConfig } from './integ-tests-kubernetes-version';
import { IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';
import { EKS_USE_NATIVE_OIDC_PROVIDER, IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS } from 'aws-cdk-lib/cx-api';

const app = new App({
postCliContext: {
'@aws-cdk/aws-lambda:useCdkManagedLogGroup': false,
[IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS]: false,
[EKS_USE_NATIVE_OIDC_PROVIDER]: false,
'@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy': false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
},
"devDependencies": {
"aws-cdk-lib": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/integ-tests-alpha": "0.0.0",
"constructs": "^10.5.0",
"@aws-cdk/cdk-build-tools": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-amplify-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@aws-cdk/custom-resource-handlers": "0.0.0",
"@aws-sdk/client-amplify": "3.632.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/integ-tests-alpha": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-apprunner-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"aws-cdk-lib": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
"constructs": "^10.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-bedrock-agentcore-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"aws-cdk-lib": "0.0.0",
"@aws-cdk/aws-bedrock-alpha": "0.0.0",
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@aws-cdk/integ-tests-alpha": "0.0.0",
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-bedrock-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"devDependencies": {
"aws-cdk-lib": "0.0.0",
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@aws-cdk/integ-tests-alpha": "0.0.0",
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-cloud9-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
"aws-cdk-lib": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-codestar-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
"aws-cdk-lib": "0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-ec2-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/integ-tests-alpha": "^0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-elasticache-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-gamelift-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-glue-alpha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/integ-runner": "^2.196.1",
"@aws-cdk/integ-runner": "^2.197.1",
"@aws-cdk/integ-tests-alpha": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.14",
Expand Down
Loading
Loading