Skip to content

Commit d454a2b

Browse files
authored
fix: Fast xml parser fix (#80)
* Job runner test fixes * fast-xml-parser vulnerable fix
1 parent e66da47 commit d454a2b

File tree

5 files changed

+967
-922
lines changed

5 files changed

+967
-922
lines changed

.projenrc.ts

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ const PROJEN_VERSION: string = '0.80.18';
2020
const CDK_VERSION: string = '2.140.0';
2121
const JSII_VERSION: string = '~5.3.0';
2222
const CONSTRUCTS_VERSION: string = '10.0.5';
23-
const POINT_SOLUTIONS_CDK_VERSION: string = '2.123.0';
23+
const POINT_SOLUTIONS_CDK_VERSION: string = '2.140.0';
2424
const POINT_SOLUTIONS_LIB_PROJECT_NAME: string = 'sbt-point-solutions-lib';
25+
const AWS_SDK_VERSION: string = '^3.621.0';
2526

2627
const project = new awscdk.AwsCdkConstructLibrary({
2728
author: 'Amazon Web Services - SaaS Factory',
@@ -89,11 +90,11 @@ const jsiiLibraryProjectOptions: cdk.JsiiProjectOptions = {
8990
copyrightPeriod: '2024-',
9091
defaultReleaseBranch: 'main',
9192
deps: [
92-
'@aws-sdk/client-sts',
93-
'@aws-sdk/client-ssm',
94-
'@aws-sdk/client-cognito-identity-provider',
95-
'@aws-sdk/credential-providers',
96-
'@aws-sdk/client-dynamodb',
93+
`@aws-sdk/client-sts@${AWS_SDK_VERSION}`,
94+
`@aws-sdk/client-ssm@${AWS_SDK_VERSION}`,
95+
`@aws-sdk/client-cognito-identity-provider@${AWS_SDK_VERSION}`,
96+
`@aws-sdk/credential-providers@${AWS_SDK_VERSION}`,
97+
`@aws-sdk/client-dynamodb@${AWS_SDK_VERSION}`,
9798
'@smithy/types',
9899
'jsonwebtoken',
99100
'jwks-rsa',
@@ -152,11 +153,11 @@ const jsiiLibraryProjectOptions: cdk.JsiiProjectOptions = {
152153
],
153154
releaseTagPrefix: '@aws/sbt-point-solutions-lib-',
154155
bundledDeps: [
155-
'@aws-sdk/client-sts',
156-
'@aws-sdk/client-ssm',
157-
'@aws-sdk/client-cognito-identity-provider',
158-
'@aws-sdk/credential-providers',
159-
'@aws-sdk/client-dynamodb',
156+
`@aws-sdk/client-sts@${AWS_SDK_VERSION}`,
157+
`@aws-sdk/client-ssm@${AWS_SDK_VERSION}`,
158+
`@aws-sdk/client-cognito-identity-provider@${AWS_SDK_VERSION}`,
159+
`@aws-sdk/credential-providers@${AWS_SDK_VERSION}`,
160+
`@aws-sdk/client-dynamodb@${AWS_SDK_VERSION}`,
160161
'@smithy/types',
161162
'jsonwebtoken',
162163
'jwks-rsa',

src/point-solutions/libraries/.projen/deps.json

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/point-solutions/libraries/.projen/tasks.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)