@gradientedge/cdk-utils 8.107.0 → 8.109.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.107.0",
3
+ "version": "8.109.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -46,14 +46,14 @@
46
46
  }
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/client-secrets-manager": "^3.363.0",
50
- "@aws-sdk/credential-providers": "^3.363.0",
51
- "@aws-sdk/types": "^3.357.0",
49
+ "@aws-sdk/client-secrets-manager": "^3.370.0",
50
+ "@aws-sdk/credential-providers": "^3.370.0",
51
+ "@aws-sdk/types": "^3.370.0",
52
52
  "@types/lodash": "^4.14.195",
53
- "@types/node": "^20.3.3",
53
+ "@types/node": "^20.4.4",
54
54
  "@types/uuid": "^9.0.2",
55
55
  "app-root-path": "^3.1.0",
56
- "aws-cdk-lib": "^2.86.0",
56
+ "aws-cdk-lib": "^2.88.0",
57
57
  "constructs": "^10.2.69",
58
58
  "lodash": "^4.17.21",
59
59
  "moment": "^2.29.4",
@@ -63,24 +63,24 @@
63
63
  "uuid": "^9.0.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@babel/core": "^7.22.6",
67
- "@babel/eslint-parser": "^7.22.6",
66
+ "@babel/core": "^7.22.9",
67
+ "@babel/eslint-parser": "^7.22.9",
68
68
  "@babel/plugin-proposal-class-properties": "^7.18.6",
69
- "@types/jest": "^29.5.2",
70
- "@typescript-eslint/eslint-plugin": "^5.61.0",
71
- "@typescript-eslint/parser": "^5.61.0",
72
- "aws-cdk": "^2.86.0",
69
+ "@types/jest": "^29.5.3",
70
+ "@typescript-eslint/eslint-plugin": "^6.2.0",
71
+ "@typescript-eslint/parser": "^6.2.0",
72
+ "aws-cdk": "^2.88.0",
73
73
  "better-docs": "^2.7.2",
74
74
  "codecov": "^3.8.3",
75
75
  "commitizen": "^4.3.0",
76
76
  "docdash": "^2.0.1",
77
77
  "dotenv": "^16.3.1",
78
- "eslint": "^8.44.0",
78
+ "eslint": "^8.45.0",
79
79
  "eslint-config-prettier": "^8.8.0",
80
80
  "eslint-plugin-import": "^2.27.5",
81
- "eslint-plugin-jsdoc": "^46.4.3",
81
+ "eslint-plugin-jsdoc": "^46.4.4",
82
82
  "husky": "^8.0.3",
83
- "jest": "^29.6.0",
83
+ "jest": "^29.6.1",
84
84
  "jest-extended": "^4.0.0",
85
85
  "jest-junit": "^16.0.0",
86
86
  "jsdoc": "^4.0.2",
@@ -88,10 +88,10 @@
88
88
  "jsdoc-mermaid": "^1.0.0",
89
89
  "jsdoc-plugin-typescript": "^2.2.1",
90
90
  "jsdoc-to-markdown": "^8.0.0",
91
- "prettier": "^2.8.8",
92
- "prettier-plugin-organize-imports": "^3.2.2",
91
+ "prettier": "^3.0.0",
92
+ "prettier-plugin-organize-imports": "^3.2.3",
93
93
  "rimraf": "^5.0.1",
94
- "semantic-release": "^21.0.6",
94
+ "semantic-release": "^21.0.7",
95
95
  "taffydb": "^2.7.3",
96
96
  "ts-jest": "^29.1.1",
97
97
  "ts-node": "^10.9.1",
@@ -384,12 +384,13 @@ export class SiteWithEcsBackend extends CommonConstruct {
384
384
  })
385
385
 
386
386
  if (this.props.siteTask.mountPoints && this.props.siteTask.mountPoints.length > 0) {
387
- this.props.siteTask.mountPoints.forEach(mountPoint =>
388
- this.siteEcsTaskDefinition.defaultContainer?.addMountPoints({
389
- containerPath: mountPoint.containerPath,
390
- readOnly: mountPoint.readOnly,
391
- sourceVolume: `${this.id}-fs`,
392
- })
387
+ this.props.siteTask.mountPoints.forEach(
388
+ mountPoint =>
389
+ this.siteEcsTaskDefinition.defaultContainer?.addMountPoints({
390
+ containerPath: mountPoint.containerPath,
391
+ readOnly: mountPoint.readOnly,
392
+ sourceVolume: `${this.id}-fs`,
393
+ })
393
394
  )
394
395
  }
395
396
  }
@@ -56,7 +56,10 @@ export interface LogGroupNoPolicyProps extends targets.TargetBaseProps {
56
56
  * Use an AWS CloudWatch LogGroup as an event rule target, but don't apply a policy.
57
57
  */
58
58
  export class CloudWatchLogGroupNoPolicy implements events.IRuleTarget {
59
- constructor(private readonly logGroup: logs.ILogGroup, private readonly props: LogGroupNoPolicyProps = {}) {}
59
+ constructor(
60
+ private readonly logGroup: logs.ILogGroup,
61
+ private readonly props: LogGroupNoPolicyProps = {}
62
+ ) {}
60
63
 
61
64
  /**
62
65
  * Returns a RuleTarget that can be used to log an event into a CloudWatch LogGroup