@gradientedge/cdk-utils 8.60.0 → 8.61.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/app/api-destined-function/node_modules/.bin/rimraf +4 -4
- package/app/api-destined-function/package.json +1 -1
- package/dist/src/lib/manager/aws/event-manager.js +1 -1
- package/dist/src/lib/manager/aws/lambda-manager.js +1 -1
- package/dist/src/lib/types/aws/index.d.ts +1 -0
- package/package.json +7 -7
- package/src/lib/manager/aws/event-manager.ts +1 -1
- package/src/lib/manager/aws/lambda-manager.ts +1 -1
- package/src/lib/types/aws/index.ts +1 -0
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.
|
|
9
|
+
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/cjs/src/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/cjs/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.
|
|
11
|
+
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/cjs/src/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/cjs/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/rimraf@5.0.1/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/rimraf@5.0.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/rimraf@5.0.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
|
|
17
17
|
fi
|
|
@@ -184,7 +184,7 @@ class EventManager {
|
|
|
184
184
|
const pipe = new pipes.CfnPipe(scope, `${id}`, {
|
|
185
185
|
...props,
|
|
186
186
|
name: `${props.name}-${scope.props.stage}`,
|
|
187
|
-
description:
|
|
187
|
+
description: props.description,
|
|
188
188
|
source: sourceQueue.queueArn,
|
|
189
189
|
sourceParameters: {
|
|
190
190
|
filterCriteria: props.pipeFilterPattern
|
|
@@ -122,7 +122,7 @@ class LambdaManager {
|
|
|
122
122
|
timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(15),
|
|
123
123
|
vpc: vpc,
|
|
124
124
|
vpcSubnets: vpcSubnets,
|
|
125
|
-
tracing: props.tracing,
|
|
125
|
+
tracing: scope.props.defaultTracing ?? props.tracing,
|
|
126
126
|
insightsVersion: props.insightsVersion,
|
|
127
127
|
},
|
|
128
128
|
});
|
|
@@ -57,6 +57,7 @@ export interface CommonStackProps extends cdk.StackProps {
|
|
|
57
57
|
skipStageForARecords: boolean;
|
|
58
58
|
logRetention?: logs.RetentionDays;
|
|
59
59
|
defaultReservedLambdaConcurrentExecutions?: number;
|
|
60
|
+
defaultTracing?: lambda.Tracing;
|
|
60
61
|
excludeDomainNameForBuckets?: boolean;
|
|
61
62
|
nodejsRuntime?: lambda.Runtime;
|
|
62
63
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradientedge/cdk-utils",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.61.0",
|
|
4
4
|
"description": "Utilities for AWS CDK provisioning",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@types/lodash": "^4.14.194",
|
|
49
|
-
"@types/node": "^20.
|
|
49
|
+
"@types/node": "^20.2.0",
|
|
50
50
|
"app-root-path": "^3.1.0",
|
|
51
51
|
"aws-cdk-lib": "^2.79.1",
|
|
52
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
53
|
-
"constructs": "^10.2.
|
|
52
|
+
"@aws-sdk/client-secrets-manager": "^3.334.0",
|
|
53
|
+
"constructs": "^10.2.27",
|
|
54
54
|
"lodash": "^4.17.21",
|
|
55
55
|
"moment": "^2.29.4",
|
|
56
56
|
"nconf": "^0.12.0",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"@babel/eslint-parser": "^7.21.8",
|
|
63
63
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
64
64
|
"@types/jest": "^29.5.1",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
66
|
-
"@typescript-eslint/parser": "^5.59.
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^5.59.6",
|
|
66
|
+
"@typescript-eslint/parser": "^5.59.6",
|
|
67
67
|
"aws-cdk": "^2.79.1",
|
|
68
68
|
"better-docs": "^2.7.2",
|
|
69
69
|
"codecov": "^3.8.3",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"jsdoc-mermaid": "^1.0.0",
|
|
82
82
|
"prettier": "^2.8.8",
|
|
83
83
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
84
|
-
"rimraf": "^5.0.
|
|
84
|
+
"rimraf": "^5.0.1",
|
|
85
85
|
"semantic-release": "^21.0.2",
|
|
86
86
|
"taffydb": "^2.7.3",
|
|
87
87
|
"ts-jest": "^29.1.0",
|
|
@@ -214,7 +214,7 @@ export class EventManager {
|
|
|
214
214
|
const pipe = new pipes.CfnPipe(scope, `${id}`, {
|
|
215
215
|
...props,
|
|
216
216
|
name: `${props.name}-${scope.props.stage}`,
|
|
217
|
-
description:
|
|
217
|
+
description: props.description,
|
|
218
218
|
source: sourceQueue.queueArn,
|
|
219
219
|
sourceParameters: {
|
|
220
220
|
filterCriteria: props.pipeFilterPattern
|
|
@@ -125,7 +125,7 @@ export class LambdaManager {
|
|
|
125
125
|
timeout: props.timeoutInSecs ? cdk.Duration.seconds(props.timeoutInSecs) : cdk.Duration.minutes(15),
|
|
126
126
|
vpc: vpc,
|
|
127
127
|
vpcSubnets: vpcSubnets,
|
|
128
|
-
tracing: props.tracing,
|
|
128
|
+
tracing: scope.props.defaultTracing ?? props.tracing,
|
|
129
129
|
insightsVersion: props.insightsVersion,
|
|
130
130
|
},
|
|
131
131
|
})
|
|
@@ -59,6 +59,7 @@ export interface CommonStackProps extends cdk.StackProps {
|
|
|
59
59
|
skipStageForARecords: boolean
|
|
60
60
|
logRetention?: logs.RetentionDays
|
|
61
61
|
defaultReservedLambdaConcurrentExecutions?: number
|
|
62
|
+
defaultTracing?: lambda.Tracing
|
|
62
63
|
excludeDomainNameForBuckets?: boolean
|
|
63
64
|
nodejsRuntime?: lambda.Runtime
|
|
64
65
|
}
|