Skip to content

Commit e0bdf9f

Browse files
committed
Merge remote-tracking branch 'origin/v2-main' into v2/forward-merge-20210930
# Conflicts: # lerna.json # package.json # packages/@aws-cdk/app-delivery/package.json # packages/@aws-cdk/assert/package.json # packages/@aws-cdk/assertions/package.json # packages/@aws-cdk/aws-apprunner/package.json # packages/@aws-cdk/aws-appsync/package.json # packages/@aws-cdk/aws-batch/package.json # packages/@aws-cdk/aws-certificatemanager/package.json # packages/@aws-cdk/aws-cloud9/package.json # packages/@aws-cdk/aws-cloudformation/test/integ.nested-stacks-refs2.ts # packages/@aws-cdk/aws-cloudformation/test/integ.nested-stacks-refs3.ts # packages/@aws-cdk/aws-cloudformation/test/integ.trivial-lambda-resource.ts # packages/@aws-cdk/aws-cloudfront-origins/package.json # packages/@aws-cdk/aws-cloudfront/package.json # packages/@aws-cdk/aws-codeguruprofiler/package.json # packages/@aws-cdk/aws-codepipeline/test/artifacts.test.ts # packages/@aws-cdk/aws-ecr-assets/package.json # packages/@aws-cdk/aws-ecr-assets/test/image-asset.test.ts # packages/@aws-cdk/aws-ecs/package.json # packages/@aws-cdk/aws-ecs/test/container-definition.test.ts # packages/@aws-cdk/aws-ecs/test/ec2/ec2-task-definition.test.ts # packages/@aws-cdk/aws-efs/package.json # packages/@aws-cdk/aws-eks/package.json # packages/@aws-cdk/aws-elasticloadbalancingv2/package.json # packages/@aws-cdk/aws-elasticsearch/package.json # packages/@aws-cdk/aws-events/test/rule.test.ts # packages/@aws-cdk/aws-globalaccelerator/package.json # packages/@aws-cdk/aws-kinesisanalytics-flink/package.json # packages/@aws-cdk/aws-kms/package.json # packages/@aws-cdk/aws-lambda-python/package.json # packages/@aws-cdk/aws-lambda/test/code.test.ts # packages/@aws-cdk/aws-msk/package.json # packages/@aws-cdk/aws-opensearchservice/package.json # packages/@aws-cdk/aws-s3-deployment/package.json # packages/@aws-cdk/aws-ssm/package.json # packages/@aws-cdk/aws-synthetics/package.json # packages/@aws-cdk/core/test/stack.test.ts # packages/@monocdk-experiment/assert/package.json # packages/aws-cdk-lib/package.json # packages/aws-cdk/package.json # packages/monocdk/package.json # tools/@aws-cdk/cfn2ts/transform-packages.ts # tools/@aws-cdk/individual-pkg-gen/transform-packages.ts # tools/@aws-cdk/pkglint/lib/rules.ts # tools/individual-pkg-gen/copy-files-removing-deps.ts # yarn.lock
2 parents 94659d7 + de5bf5d commit e0bdf9f

File tree

707 files changed

+4360
-4139
lines changed

Some content is hidden

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

707 files changed

+4360
-4139
lines changed

CHANGELOG.v2.md

+1,187
Large diffs are not rendered by default.

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"packages/@aws-cdk/*/lambda-packages/*",
1111
"tools/*",
1212
"tools/@aws-cdk/*",
13-
"scripts/script-tests",
13+
"scripts/@aws-cdk/script-tests",
1414
"packages/individual-packages/*"
1515
],
1616
"rejectCycles": "true",

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"include": "dependencies/node-version"
77
},
88
"scripts": {
9-
"pkglint": "lerna --scope @aws-cdk/pkglint run build && lerna run pkglint",
9+
"pkglint": "lerna run build --scope @aws-cdk/pkglint --include-dependencies && lerna run pkglint",
10+
"prebuild": "node ./scripts/check-yarn-lock.js",
1011
"build": "./build.sh",
1112
"pack": "./pack.sh",
1213
"compat": "./scripts/check-api-compatibility.sh",
@@ -51,7 +52,7 @@
5152
"release.json",
5253
"scripts/resolve-version.js",
5354
"scripts/resolve-version-lib.js",
54-
"version.v1.json"
55+
"version.v2.json"
5556
],
5657
"cacheBucket": "nozem-artifacts-eu",
5758
"cacheBucketRegion": "eu-west-1"

packages/@aws-cdk-containers/ecs-service-extensions/lib/environment.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
import * as ec2 from '@aws-cdk/aws-ec2';
22
import * as ecs from '@aws-cdk/aws-ecs';
3-
import * as cdk from '@aws-cdk/core';
3+
import { Construct } from 'constructs';
44
import { EnvironmentCapacityType } from './extensions/extension-interfaces';
55

6-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
7-
// eslint-disable-next-line no-duplicate-imports, import/order
8-
import { Construct } from '@aws-cdk/core';
9-
106
/**
117
* Settings for the environment where you want to deploy your services.
128
*/
@@ -98,7 +94,7 @@ export class Environment extends Construct implements IEnvironment {
9894
*/
9995
public readonly capacityType: EnvironmentCapacityType;
10096

101-
private readonly scope: cdk.Construct;
97+
private readonly scope: Construct;
10298

10399
constructor(scope: Construct, id: string, props?: EnvironmentProps) {
104100
super(scope, id);

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/appmesh.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@ import * as ecs from '@aws-cdk/aws-ecs';
55
import * as iam from '@aws-cdk/aws-iam';
66
import * as cdk from '@aws-cdk/core';
77
import * as regionInfo from '@aws-cdk/region-info';
8+
import { Construct } from 'constructs';
89
import { Service } from '../service';
910
import { Container } from './container';
1011
import { ServiceExtension, ServiceBuild } from './extension-interfaces';
1112

12-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
13-
// eslint-disable-next-line no-duplicate-imports, import/order
14-
import { Construct } from '@aws-cdk/core';
15-
1613
// The version of the App Mesh envoy sidecar to add to the task.
1714
const APP_MESH_ENVOY_SIDECAR_VERSION = 'v1.15.1.0-prod';
1815

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/assign-public-ip/assign-public-ip.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
import * as ec2 from '@aws-cdk/aws-ec2';
22
import * as ecs from '@aws-cdk/aws-ecs';
33
import * as route53 from '@aws-cdk/aws-route53';
4+
import { Construct } from 'constructs';
45
import { Service } from '../../service';
56
import { Container } from '../container';
67
import { ServiceExtension, ServiceBuild, EnvironmentCapacityType } from '../extension-interfaces';
78
import { TaskRecordManager } from './task-record-manager';
89

9-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
10-
// eslint-disable-next-line no-duplicate-imports, import/order
11-
import { Construct } from '@aws-cdk/core';
12-
1310
export interface AssignPublicIpExtensionOptions {
1411
/**
1512
* Enable publishing task public IPs to a recordset in a Route 53 hosted zone.

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/assign-public-ip/task-record-manager.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ import * as route53 from '@aws-cdk/aws-route53';
1010
import * as sqs from '@aws-cdk/aws-sqs';
1111
import * as cdk from '@aws-cdk/core';
1212
import * as customresources from '@aws-cdk/custom-resources';
13-
14-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
15-
// eslint-disable-next-line no-duplicate-imports, import/order
16-
import { Construct } from '@aws-cdk/core';
13+
import { Construct } from 'constructs';
1714

1815
export interface TaskRecordManagerProps {
1916
service: ecs.Ec2Service | ecs.FargateService;

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/cloudwatch-agent.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
import * as ecs from '@aws-cdk/aws-ecs';
22
import * as iam from '@aws-cdk/aws-iam';
3+
import { Construct } from 'constructs';
34
import { Service } from '../service';
45
import { ServiceExtension } from './extension-interfaces';
56

6-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
7-
// eslint-disable-next-line no-duplicate-imports, import/order
8-
import { Construct } from '@aws-cdk/core';
9-
107
const CLOUDWATCH_AGENT_IMAGE = 'amazon/cloudwatch-agent:latest';
118

129
/**

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/container.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import * as ecs from '@aws-cdk/aws-ecs';
2+
import { Construct } from 'constructs';
23
import { Service } from '../service';
34
import { ServiceExtension } from './extension-interfaces';
45

5-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
6-
// eslint-disable-next-line no-duplicate-imports, import/order
7-
import { Construct } from '@aws-cdk/core';
8-
96
/**
107
* Setting for the main application container of a service.
118
*/

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/extension-interfaces.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import * as ecs from '@aws-cdk/aws-ecs';
22
import * as cdk from '@aws-cdk/core';
3+
import { Construct } from 'constructs';
34
import { Service } from '../service';
45

5-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
6-
// eslint-disable-next-line no-duplicate-imports, import/order
7-
import { Construct } from '@aws-cdk/core';
8-
96
/**
107
* The types of capacity that are supported. These capacity types may change the
118
* behavior of an extension.
@@ -115,7 +112,7 @@ export abstract class ServiceExtension {
115112
* the extension is told what Service it is now working on.
116113
*/
117114
protected parentService!: Service;
118-
protected scope!: cdk.Construct;
115+
protected scope!: Construct;
119116

120117
// A list of other extensions which want to mutate the
121118
// container definition for this extension.

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/firelens.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
import * as ecs from '@aws-cdk/aws-ecs';
22
import * as awslogs from '@aws-cdk/aws-logs';
33
import * as cdk from '@aws-cdk/core';
4+
import { Construct } from 'constructs';
45
import { Service } from '../service';
56
import { Container } from './container';
67
import { ContainerMutatingHook, ServiceExtension } from './extension-interfaces';
78

8-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
9-
// eslint-disable-next-line no-duplicate-imports, import/order
10-
import { Construct } from '@aws-cdk/core';
11-
129
/**
1310
* Settings for the hook which mutates the application container
1411
* to route logs through FireLens.

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/http-load-balancer.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import * as ecs from '@aws-cdk/aws-ecs';
22
import * as alb from '@aws-cdk/aws-elasticloadbalancingv2';
33
import * as cdk from '@aws-cdk/core';
4+
import { Construct } from 'constructs';
45
import { Service } from '../service';
56
import { ServiceExtension, ServiceBuild } from './extension-interfaces';
67

7-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
8-
// eslint-disable-next-line no-duplicate-imports, import/order
9-
import { Construct } from '@aws-cdk/core';
10-
118
/**
129
* This extension add a public facing load balancer for sending traffic
1310
* to one or more replicas of the application container.

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/injecter.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ContainerMutatingHook, ServiceExtension } from './extension-interfaces'
66

77
// Keep this import separate from other imports to reduce chance for merge conflicts with v2-main
88
// eslint-disable-next-line no-duplicate-imports, import/order
9-
import { Construct } from '@aws-cdk/core';
9+
import { Construct } from 'constructs';
1010

1111
/**
1212
* An interface that will be implemented by all the resources that can be published events or written data to.
@@ -151,4 +151,4 @@ export class InjecterExtension extends ServiceExtension {
151151
}
152152
}
153153
}
154-
}
154+
}

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/queue.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,11 @@ import * as sns from '@aws-cdk/aws-sns';
33
import * as subscription from '@aws-cdk/aws-sns-subscriptions';
44
import * as sqs from '@aws-cdk/aws-sqs';
55
import * as cdk from '@aws-cdk/core';
6+
import { Construct } from 'constructs';
67
import { Service } from '../service';
78
import { Container } from './container';
89
import { ContainerMutatingHook, ServiceExtension } from './extension-interfaces';
910

10-
// Keep this import separate from other imports to reduce chance for merge conflicts with v2-main
11-
// eslint-disable-next-line no-duplicate-imports, import/order
12-
import { Construct } from '@aws-cdk/core';
13-
1411
/**
1512
* An interface that will be implemented by all the resources that can be subscribed to.
1613
*/
@@ -209,4 +206,4 @@ export class QueueExtension extends ServiceExtension {
209206
public get eventsQueue() : sqs.IQueue {
210207
return this._eventsQueue;
211208
}
212-
}
209+
}

packages/@aws-cdk-containers/ecs-service-extensions/lib/extensions/xray.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import * as ecs from '@aws-cdk/aws-ecs';
22
import * as iam from '@aws-cdk/aws-iam';
33
import * as cdk from '@aws-cdk/core';
4+
import { Construct } from 'constructs';
45
import { Service } from '../service';
56
import { ServiceExtension } from './extension-interfaces';
67

7-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
8-
// eslint-disable-next-line no-duplicate-imports, import/order
9-
import { Construct } from '@aws-cdk/core';
10-
118
const XRAY_DAEMON_IMAGE = 'amazon/aws-xray-daemon:latest';
129

1310
/**

packages/@aws-cdk-containers/ecs-service-extensions/lib/service.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import * as ec2 from '@aws-cdk/aws-ec2';
22
import * as ecs from '@aws-cdk/aws-ecs';
33
import * as iam from '@aws-cdk/aws-iam';
4-
import * as cdk from '@aws-cdk/core';
54
import { IEnvironment } from './environment';
65
import { EnvironmentCapacityType, ServiceBuild } from './extensions/extension-interfaces';
76
import { ServiceDescription } from './service-description';
87

98
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
109
// eslint-disable-next-line no-duplicate-imports, import/order
11-
import { Construct } from '@aws-cdk/core';
10+
import { Construct } from 'constructs';
1211

1312
/**
1413
* The settings for an ECS Service.
@@ -86,7 +85,7 @@ export class Service extends Construct {
8685
*/
8786
private urls: Record<string, string> = {};
8887

89-
private readonly scope: cdk.Construct;
88+
private readonly scope: Construct;
9089

9190
constructor(scope: Construct, id: string, props: ServiceProps) {
9291
super(scope, id);

packages/@aws-cdk-containers/ecs-service-extensions/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@aws-cdk-containers/ecs-service-extensions",
33
"version": "0.0.0",
4+
"private": true,
45
"description": "The CDK Construct Library that helps you build ECS services using simple extensions",
56
"main": "lib/index.js",
67
"types": "lib/index.d.ts",
@@ -69,7 +70,7 @@
6970
"@aws-cdk/core": "0.0.0",
7071
"@aws-cdk/custom-resources": "0.0.0",
7172
"@aws-cdk/region-info": "0.0.0",
72-
"constructs": "^3.3.69"
73+
"constructs": "^10.0.0"
7374
},
7475
"homepage": "https://github.com/aws/aws-cdk",
7576
"peerDependencies": {
@@ -96,7 +97,7 @@
9697
"@aws-cdk/core": "0.0.0",
9798
"@aws-cdk/custom-resources": "0.0.0",
9899
"@aws-cdk/region-info": "0.0.0",
99-
"constructs": "^3.3.69"
100+
"constructs": "^10.0.0"
100101
},
101102
"engines": {
102103
"node": ">= 10.13.0 <13 || >=13.7.0"

packages/@aws-cdk/alexa-ask/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@aws-cdk/alexa-ask",
33
"version": "0.0.0",
4+
"private": true,
45
"description": "The CDK Construct Library for Alexa::ASK",
56
"main": "lib/index.js",
67
"types": "lib/index.d.ts",
@@ -81,11 +82,11 @@
8182
},
8283
"dependencies": {
8384
"@aws-cdk/core": "0.0.0",
84-
"constructs": "^3.3.69"
85+
"constructs": "^10.0.0"
8586
},
8687
"peerDependencies": {
8788
"@aws-cdk/core": "0.0.0",
88-
"constructs": "^3.3.69"
89+
"constructs": "^10.0.0"
8990
},
9091
"engines": {
9192
"node": ">= 10.13.0 <13 || >=13.7.0"

packages/@aws-cdk/app-delivery/lib/pipeline-deploy-stack-action.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ import * as events from '@aws-cdk/aws-events';
55
import * as iam from '@aws-cdk/aws-iam';
66
import * as cxschema from '@aws-cdk/cloud-assembly-schema';
77
import * as cdk from '@aws-cdk/core';
8-
9-
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
10-
// eslint-disable-next-line no-duplicate-imports, import/order
11-
import { Construct } from '@aws-cdk/core';
8+
import { Construct } from 'constructs';
129

1310
export interface PipelineDeployStackActionProps {
1411
/**

packages/@aws-cdk/app-delivery/package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@aws-cdk/cloud-assembly-schema": "0.0.0",
5858
"@aws-cdk/core": "0.0.0",
5959
"@aws-cdk/cx-api": "0.0.0",
60-
"constructs": "^3.3.69"
60+
"constructs": "^10.0.0"
6161
},
6262
"devDependencies": {
6363
"@aws-cdk/assert-internal": "0.0.0",
@@ -95,7 +95,7 @@
9595
"@aws-cdk/cloud-assembly-schema": "0.0.0",
9696
"@aws-cdk/core": "0.0.0",
9797
"@aws-cdk/cx-api": "0.0.0",
98-
"constructs": "^3.3.69"
98+
"constructs": "^10.0.0"
9999
},
100100
"engines": {
101101
"node": ">= 10.13.0 <13 || >=13.7.0"
@@ -118,6 +118,7 @@
118118
"announce": false
119119
},
120120
"publishConfig": {
121-
"tag": "latest"
122-
}
121+
"tag": "next"
122+
},
123+
"private": true
123124
}

0 commit comments

Comments
 (0)