Skip to content

Commit

Permalink
chore(deps): upgrade dependencies (#289)
Browse files Browse the repository at this point in the history
Upgrades project dependencies. See details in [workflow run].

[Workflow Run]: https://github.com/cdklabs/cdk-ecs-service-extensions/actions/runs/3902390449

------

*Automatically created by projen via the "upgrade-main" workflow*
  • Loading branch information
cdklabs-automation authored Jan 12, 2023
1 parent 3b18223 commit b67a8ac
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 60 deletions.
6 changes: 3 additions & 3 deletions package.json

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

2 changes: 1 addition & 1 deletion src/extensions/aliased-port.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as ecs from 'aws-cdk-lib/aws-ecs';
import { Construct } from 'constructs';
import { Service } from '../service';
import { Container } from './container';
import { ContainerMutatingHook, ServiceBuild, ServiceExtension } from './extension-interfaces';
import { Service } from '../service';


/**
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/appmesh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as iam from 'aws-cdk-lib/aws-iam';
import * as regionInfo from 'aws-cdk-lib/region-info';
import { Construct } from 'constructs';
import { ConnectToProps, Service } from '../service';
import { Container } from './container';
import { ServiceExtension, ServiceBuild } from './extension-interfaces';
import { ConnectToProps, Service } from '../service';

// The version of the App Mesh envoy sidecar to add to the task.
const APP_MESH_ENVOY_SIDECAR_VERSION = 'v1.15.1.0-prod';
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/assign-public-ip/assign-public-ip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as route53 from 'aws-cdk-lib/aws-route53';
import { Construct } from 'constructs';
import { TaskRecordManager } from './task-record-manager';
import { Service } from '../../service';
import { Container } from '../container';
import { ServiceExtension, ServiceBuild, EnvironmentCapacityType } from '../extension-interfaces';
import { TaskRecordManager } from './task-record-manager';

export interface AssignPublicIpExtensionOptions {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/cloudwatch-agent.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as iam from 'aws-cdk-lib/aws-iam';
import { Construct } from 'constructs';
import { Service } from '../service';
import { ServiceExtension } from './extension-interfaces';
import { Service } from '../service';

const CLOUDWATCH_AGENT_IMAGE = 'amazon/cloudwatch-agent:latest';

Expand Down
2 changes: 1 addition & 1 deletion src/extensions/container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { RemovalPolicy } from 'aws-cdk-lib';
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as awslogs from 'aws-cdk-lib/aws-logs';
import * as cxapi from 'aws-cdk-lib/cx-api';
import { Service } from '../service';
import { ServiceExtension } from './extension-interfaces';
import { Service } from '../service';

// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
// eslint-disable-next-line no-duplicate-imports, import/order
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/firelens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { Stack, RemovalPolicy } from 'aws-cdk-lib';
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as awslogs from 'aws-cdk-lib/aws-logs';
import { Construct } from 'constructs';
import { Service } from '../service';
import { Container } from './container';
import { ContainerMutatingHook, ServiceExtension } from './extension-interfaces';
import { Service } from '../service';

/**
* Settings for the hook which mutates the application container
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/http-load-balancer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { CfnOutput, Duration } from 'aws-cdk-lib';
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as alb from 'aws-cdk-lib/aws-elasticloadbalancingv2';
import { Construct } from 'constructs';
import { Service } from '../service';
import { ServiceExtension, ServiceBuild } from './extension-interfaces';
import { Service } from '../service';

export interface HttpLoadBalancerProps {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/injecter.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as sns from 'aws-cdk-lib/aws-sns';
import { Construct } from 'constructs';
import { Service } from '../service';
import { Container } from './container';
import { ContainerMutatingHook, ServiceExtension } from './extension-interfaces';
import { Service } from '../service';

/**
* An interface that will be implemented by all the resources that can be published events or written data to.
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/xray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Duration, Stack } from 'aws-cdk-lib';
import * as ecs from 'aws-cdk-lib/aws-ecs';
import * as iam from 'aws-cdk-lib/aws-iam';
import { Construct } from 'constructs';
import { Service } from '../service';
import { ServiceExtension } from './extension-interfaces';
import { Service } from '../service';

const XRAY_DAEMON_IMAGE = 'amazon/aws-xray-daemon:latest';

Expand Down
97 changes: 49 additions & 48 deletions yarn.lock

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

0 comments on commit b67a8ac

Please sign in to comment.