From 97be1345cf5ab5196895a0903f1c47ed24d5cc0a Mon Sep 17 00:00:00 2001 From: nihitkas Date: Tue, 14 May 2024 14:05:45 -0400 Subject: [PATCH] updates for release v1.0.8 --- CHANGELOG.md | 6 ++++++ source/infrastructure/cdk.json | 2 +- source/infrastructure/lib/s3web/static-site.ts | 4 ++-- source/infrastructure/package-lock.json | 4 ++-- source/infrastructure/package.json | 2 +- .../test/mock-lambda-func/java-lambda/pom.xml | 2 +- .../test/mock-lambda-func/node-lambda/package-lock.json | 6 +++--- .../test/mock-lambda-func/node-lambda/package.json | 2 +- source/infrastructure/test/mock-ui/package-lock.json | 6 +++--- source/infrastructure/test/mock-ui/package.json | 4 ++-- source/lambda/create-presigned-url/package-lock.json | 4 ++-- source/lambda/create-presigned-url/package.json | 4 ++-- source/lambda/entity-detection/package-lock.json | 4 ++-- source/lambda/entity-detection/package.json | 4 ++-- source/lambda/fetch-records/package-lock.json | 4 ++-- source/lambda/fetch-records/package.json | 4 ++-- source/lambda/get-inferences/package-lock.json | 4 ++-- source/lambda/get-inferences/package.json | 4 ++-- .../layers/aws-node-user-agent-config/package-lock.json | 4 ++-- .../lambda/layers/aws-node-user-agent-config/package.json | 4 ++-- source/lambda/layers/aws-sdk-lib/package-lock.json | 4 ++-- source/lambda/layers/aws-sdk-lib/package.json | 4 ++-- source/lambda/layers/common-node-lib/package-lock.json | 4 ++-- source/lambda/layers/common-node-lib/package.json | 4 ++-- source/lambda/layers/custom-java-sdk-config/pom.xml | 2 +- source/lambda/layers/custom_boto3_init/setup.py | 2 +- source/lambda/redact-content/pom.xml | 2 +- source/lambda/search/package-lock.json | 4 ++-- source/lambda/search/package.json | 4 ++-- source/lambda/send-notification/package-lock.json | 4 ++-- source/lambda/send-notification/package.json | 4 ++-- source/lambda/text-extract/package-lock.json | 4 ++-- source/lambda/text-extract/package.json | 4 ++-- source/lambda/upload-document/package-lock.json | 4 ++-- source/lambda/upload-document/package.json | 4 ++-- source/lambda/workflow-orchestrator/package-lock.json | 4 ++-- source/lambda/workflow-orchestrator/package.json | 4 ++-- source/ui/package-lock.json | 4 ++-- source/ui/package.json | 4 ++-- source/ui/public/index.html | 2 +- 40 files changed, 78 insertions(+), 72 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14337ef..68257f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ======= +## [1.0.8] - 2024-05-14 + +### Fixed + +- CSP response header name length longer than supported, causing stack failure in ap-southeast-1 and ap-south-east-2 + ## [1.0.7] - 2024-05-13 ### Security diff --git a/source/infrastructure/cdk.json b/source/infrastructure/cdk.json index b189b94..c74623a 100644 --- a/source/infrastructure/cdk.json +++ b/source/infrastructure/cdk.json @@ -57,7 +57,7 @@ "@aws-cdk/aws-codepipeline-actions:useNewDefaultBranchForCodeCommitSource": true, "solution_id": "SO0281", "solution_name": "enhanced-document-understanding-on-aws", - "solution_version": "v1.0.7", + "solution_version": "v1.0.8", "app_namespace": "app.idp", "app_registry_name": "enhanced-document-understanding", "application_type": "AWS-Solutions", diff --git a/source/infrastructure/lib/s3web/static-site.ts b/source/infrastructure/lib/s3web/static-site.ts index f121303..eb3d5f8 100644 --- a/source/infrastructure/lib/s3web/static-site.ts +++ b/source/infrastructure/lib/s3web/static-site.ts @@ -82,12 +82,12 @@ export class StaticWebsite extends Construct { ); const cspResponseHeadersPolicy = new cloudfront.ResponseHeadersPolicy(this, 'CSPResponseHeadersPolicy', { - responseHeadersPolicyName: `eDU-CSPResponseHeadersPolicy-${cdk.Aws.STACK_NAME}-${cdk.Aws.REGION}`, + responseHeadersPolicyName: `eDU-CSP-${cdk.Aws.STACK_NAME}-${cdk.Aws.REGION}`, comment: 'CSP Response Headers Policy', securityHeadersBehavior: { contentSecurityPolicy: { contentSecurityPolicy: - "default-src 'self' data: https://*.amazonaws.com; img-src 'self' data: https://*.cloudfront.net https://*.amazonaws.com; script-src 'self' http://*.cloudfront.net https://*.amazonaws.com; style-src 'self' 'unsafe-inline' https://*.amazonaws.com; object-src 'self' https://*.amazonaws.com; worker-src 'self' blob:", + "default-src 'self' data: https://*.amazonaws.com; img-src 'self' data: https://*.cloudfront.net https://*.amazonaws.com; script-src 'self' https://*.cloudfront.net https://*.amazonaws.com; style-src 'self' https://*.amazonaws.com; object-src 'self' https://*.amazonaws.com; worker-src 'self' blob:", override: true }, frameOptions: { frameOption: cloudfront.HeadersFrameOption.DENY, override: true } diff --git a/source/infrastructure/package-lock.json b/source/infrastructure/package-lock.json index ca2e55d..d9d7225 100644 --- a/source/infrastructure/package-lock.json +++ b/source/infrastructure/package-lock.json @@ -1,12 +1,12 @@ { "name": "enhanced-document-understanding-on-aws-infrastructure", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "enhanced-document-understanding-on-aws-infrastructure", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "@aws-cdk/aws-servicecatalogappregistry-alpha": "2.118.0-alpha.0", diff --git a/source/infrastructure/package.json b/source/infrastructure/package.json index 028cb41..e96ac16 100644 --- a/source/infrastructure/package.json +++ b/source/infrastructure/package.json @@ -1,6 +1,6 @@ { "name": "enhanced-document-understanding-on-aws-infrastructure", - "version": "1.0.7", + "version": "1.0.8", "bin": { "infrastructure": "bin/dus.js" }, diff --git a/source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml b/source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml index 5e3ab55..93477c7 100644 --- a/source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml +++ b/source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml @@ -6,7 +6,7 @@ 4.0.0 example java-lambda - 1.0.7 + 1.0.8 mock-java-lambda diff --git a/source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json b/source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json index f5cd72b..47b6432 100644 --- a/source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json +++ b/source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json @@ -1,13 +1,13 @@ { "name": "node-lambda", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "node-lambda", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0" } } -} +} \ No newline at end of file diff --git a/source/infrastructure/test/mock-lambda-func/node-lambda/package.json b/source/infrastructure/test/mock-lambda-func/node-lambda/package.json index df85f07..a5770e7 100644 --- a/source/infrastructure/test/mock-lambda-func/node-lambda/package.json +++ b/source/infrastructure/test/mock-lambda-func/node-lambda/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "1.0.7", + "version": "1.0.8", "description": "A mock lambda implementation for CDK infrastructure unit", "main": "index.js", "scripts": { diff --git a/source/infrastructure/test/mock-ui/package-lock.json b/source/infrastructure/test/mock-ui/package-lock.json index e04ada2..9013dcb 100644 --- a/source/infrastructure/test/mock-ui/package-lock.json +++ b/source/infrastructure/test/mock-ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "mock-react-app", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mock-react-app", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "react": "^18.3.1" @@ -31181,4 +31181,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/source/infrastructure/test/mock-ui/package.json b/source/infrastructure/test/mock-ui/package.json index 4e74983..3ddd44b 100644 --- a/source/infrastructure/test/mock-ui/package.json +++ b/source/infrastructure/test/mock-ui/package.json @@ -1,6 +1,6 @@ { "name": "mock-react-app", - "version": "1.0.7", + "version": "1.0.8", "description": "Mock Reactjs app used for unit testing constructs", "main": "index.js", "scripts": { @@ -35,4 +35,4 @@ "last 1 safari version" ] } -} +} \ No newline at end of file diff --git a/source/lambda/create-presigned-url/package-lock.json b/source/lambda/create-presigned-url/package-lock.json index c5d0fb1..9a53f38 100644 --- a/source/lambda/create-presigned-url/package-lock.json +++ b/source/lambda/create-presigned-url/package-lock.json @@ -1,12 +1,12 @@ { "name": "create-presigned-url", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "create-presigned-url", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "aws-sdk-mock": "^5.8.0", diff --git a/source/lambda/create-presigned-url/package.json b/source/lambda/create-presigned-url/package.json index 638fa7e..89f9852 100644 --- a/source/lambda/create-presigned-url/package.json +++ b/source/lambda/create-presigned-url/package.json @@ -1,6 +1,6 @@ { "name": "create-presigned-url", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda has minimal permissions required to create downloadable presigned URLs for documents.", "main": "index.js", "scripts": { @@ -24,4 +24,4 @@ "jest": "^29.7.0", "prettier": "^3.0.3" } -} +} \ No newline at end of file diff --git a/source/lambda/entity-detection/package-lock.json b/source/lambda/entity-detection/package-lock.json index 28ed5ef..f8db451 100644 --- a/source/lambda/entity-detection/package-lock.json +++ b/source/lambda/entity-detection/package-lock.json @@ -1,12 +1,12 @@ { "name": "entity-detection", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "entity-detection", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "aws-sdk-mock": "^5.7.0", diff --git a/source/lambda/entity-detection/package.json b/source/lambda/entity-detection/package.json index 5048c71..af09afd 100644 --- a/source/lambda/entity-detection/package.json +++ b/source/lambda/entity-detection/package.json @@ -1,6 +1,6 @@ { "name": "entity-detection", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda function detects entities within Text", "main": "index.js", "scripts": { @@ -24,4 +24,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/lambda/fetch-records/package-lock.json b/source/lambda/fetch-records/package-lock.json index 7cced1b..a5338df 100644 --- a/source/lambda/fetch-records/package-lock.json +++ b/source/lambda/fetch-records/package-lock.json @@ -1,12 +1,12 @@ { "name": "fetch-records", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "fetch-records", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "uuid": "^9.0.1" diff --git a/source/lambda/fetch-records/package.json b/source/lambda/fetch-records/package.json index 5b86820..5ebf7f4 100644 --- a/source/lambda/fetch-records/package.json +++ b/source/lambda/fetch-records/package.json @@ -1,6 +1,6 @@ { "name": "fetch-records", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda backs the ApiGateway REST endpoint to process record and document fetch requests", "main": "index.js", "scripts": { @@ -27,4 +27,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/lambda/get-inferences/package-lock.json b/source/lambda/get-inferences/package-lock.json index 4f584d5..a070529 100644 --- a/source/lambda/get-inferences/package-lock.json +++ b/source/lambda/get-inferences/package-lock.json @@ -1,12 +1,12 @@ { "name": "get-inferences", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "get-inferences", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "aws-sdk-mock": "^5.8.0", diff --git a/source/lambda/get-inferences/package.json b/source/lambda/get-inferences/package.json index 440bafb..ddb88f6 100644 --- a/source/lambda/get-inferences/package.json +++ b/source/lambda/get-inferences/package.json @@ -1,6 +1,6 @@ { "name": "get-inferences", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda function is used to get inference results by backing the rest-endpoints", "main": "index.js", "scripts": { @@ -21,4 +21,4 @@ "jest": "^29.6.2", "prettier": "^3.0.0" } -} +} \ No newline at end of file diff --git a/source/lambda/layers/aws-node-user-agent-config/package-lock.json b/source/lambda/layers/aws-node-user-agent-config/package-lock.json index 9842cef..20d702e 100644 --- a/source/lambda/layers/aws-node-user-agent-config/package-lock.json +++ b/source/lambda/layers/aws-node-user-agent-config/package-lock.json @@ -1,12 +1,12 @@ { "name": "aws-nodesdk-custom-config", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "aws-nodesdk-custom-config", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "eslint": "^8.56.0", diff --git a/source/lambda/layers/aws-node-user-agent-config/package.json b/source/lambda/layers/aws-node-user-agent-config/package.json index c03edce..a0a9edc 100644 --- a/source/lambda/layers/aws-node-user-agent-config/package.json +++ b/source/lambda/layers/aws-node-user-agent-config/package.json @@ -1,6 +1,6 @@ { "name": "aws-nodesdk-custom-config", - "version": "1.0.7", + "version": "1.0.8", "description": "AWS Nodejs SDK Config intialization layer", "main": "index.js", "scripts": { @@ -23,4 +23,4 @@ "url": "https://aws.amazon.com/solutions" }, "license": "Apache-2.0" -} +} \ No newline at end of file diff --git a/source/lambda/layers/aws-sdk-lib/package-lock.json b/source/lambda/layers/aws-sdk-lib/package-lock.json index 3440292..5edfc2b 100644 --- a/source/lambda/layers/aws-sdk-lib/package-lock.json +++ b/source/lambda/layers/aws-sdk-lib/package-lock.json @@ -1,12 +1,12 @@ { "name": "aws-sdk-layer", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "aws-sdk-layer", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "aws-sdk": "^2.1532.0" diff --git a/source/lambda/layers/aws-sdk-lib/package.json b/source/lambda/layers/aws-sdk-lib/package.json index ea2036e..8eaaa54 100644 --- a/source/lambda/layers/aws-sdk-lib/package.json +++ b/source/lambda/layers/aws-sdk-lib/package.json @@ -1,6 +1,6 @@ { "name": "aws-sdk-layer", - "version": "1.0.7", + "version": "1.0.8", "description": "AWS Nodejs SDK layer", "dependencies": { "aws-sdk": "^2.1532.0" @@ -10,4 +10,4 @@ "url": "https://aws.amazon.com/solutions" }, "license": "Apache-2.0" -} +} \ No newline at end of file diff --git a/source/lambda/layers/common-node-lib/package-lock.json b/source/lambda/layers/common-node-lib/package-lock.json index 451e520..4ac1a75 100644 --- a/source/lambda/layers/common-node-lib/package-lock.json +++ b/source/lambda/layers/common-node-lib/package-lock.json @@ -1,12 +1,12 @@ { "name": "common-node-lib", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "common-node-lib", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "jwt-decode": "^4.0.0", diff --git a/source/lambda/layers/common-node-lib/package.json b/source/lambda/layers/common-node-lib/package.json index 9c5771c..075a343 100644 --- a/source/lambda/layers/common-node-lib/package.json +++ b/source/lambda/layers/common-node-lib/package.json @@ -1,6 +1,6 @@ { "name": "common-node-lib", - "version": "1.0.7", + "version": "1.0.8", "description": "Common libraries shared by all lambda node modules", "scripts": { "test": "jest --coverage --silent --verbose", @@ -27,4 +27,4 @@ "pdf-lib": "1.17.1", "uuid": "^9.0.1" } -} +} \ No newline at end of file diff --git a/source/lambda/layers/custom-java-sdk-config/pom.xml b/source/lambda/layers/custom-java-sdk-config/pom.xml index f17995a..18f1774 100644 --- a/source/lambda/layers/custom-java-sdk-config/pom.xml +++ b/source/lambda/layers/custom-java-sdk-config/pom.xml @@ -7,7 +7,7 @@ com.builder.config custom-java-sdk-config jar - 1.0.7 + 1.0.8 custom-java-sdk-config UTF-8 diff --git a/source/lambda/layers/custom_boto3_init/setup.py b/source/lambda/layers/custom_boto3_init/setup.py index 29be03a..e888565 100644 --- a/source/lambda/layers/custom_boto3_init/setup.py +++ b/source/lambda/layers/custom_boto3_init/setup.py @@ -15,7 +15,7 @@ setup( name="custom_boto3_init", - version="1.0.6", + version="1.0.8", description="Initialize boto config for AWS Python SDK with custom configuration", url="https://github.com/aws-solutions/enhanced-document-understanding-on-aws", author="Amazon Web Services", diff --git a/source/lambda/redact-content/pom.xml b/source/lambda/redact-content/pom.xml index 2de8940..1306294 100644 --- a/source/lambda/redact-content/pom.xml +++ b/source/lambda/redact-content/pom.xml @@ -7,7 +7,7 @@ com.builder.lambda redact-content jar - 1.0.7 + 1.0.8 redact-content UTF-8 diff --git a/source/lambda/search/package-lock.json b/source/lambda/search/package-lock.json index 4cc4215..32a945c 100644 --- a/source/lambda/search/package-lock.json +++ b/source/lambda/search/package-lock.json @@ -1,12 +1,12 @@ { "name": "search", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "search", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "aws-sdk-mock": "^5.8.0", diff --git a/source/lambda/search/package.json b/source/lambda/search/package.json index e28cedf..1780cb2 100644 --- a/source/lambda/search/package.json +++ b/source/lambda/search/package.json @@ -1,6 +1,6 @@ { "name": "search", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda function is used to search for queries in the kendra index backing the rest-endpoints", "main": "index.js", "scripts": { @@ -21,4 +21,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/lambda/send-notification/package-lock.json b/source/lambda/send-notification/package-lock.json index 0c25bba..b60dbd5 100644 --- a/source/lambda/send-notification/package-lock.json +++ b/source/lambda/send-notification/package-lock.json @@ -1,12 +1,12 @@ { "name": "send-notification", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "send-notification", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "aws-sdk-mock": "^5.7.0", diff --git a/source/lambda/send-notification/package.json b/source/lambda/send-notification/package.json index 1834797..fc7a1c3 100644 --- a/source/lambda/send-notification/package.json +++ b/source/lambda/send-notification/package.json @@ -1,6 +1,6 @@ { "name": "send-notification", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda function sends notifications about document processing updates", "main": "index.js", "scripts": { @@ -23,4 +23,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/lambda/text-extract/package-lock.json b/source/lambda/text-extract/package-lock.json index b3cae06..1ebcc20 100644 --- a/source/lambda/text-extract/package-lock.json +++ b/source/lambda/text-extract/package-lock.json @@ -1,12 +1,12 @@ { "name": "text-extract", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "text-extract", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "devDependencies": { "aws-sdk-mock": "^5.8.0", diff --git a/source/lambda/text-extract/package.json b/source/lambda/text-extract/package.json index 9186444..03d4753 100644 --- a/source/lambda/text-extract/package.json +++ b/source/lambda/text-extract/package.json @@ -1,6 +1,6 @@ { "name": "text-extract", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda function extracts text from a document like ID or Paystub, and also detects texts.", "main": "index.js", "scripts": { @@ -22,4 +22,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/lambda/upload-document/package-lock.json b/source/lambda/upload-document/package-lock.json index 9d08f88..8e3fe3f 100644 --- a/source/lambda/upload-document/package-lock.json +++ b/source/lambda/upload-document/package-lock.json @@ -1,12 +1,12 @@ { "name": "upload-document", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "upload-document", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "lodash": "4.17.21" diff --git a/source/lambda/upload-document/package.json b/source/lambda/upload-document/package.json index 0f86d49..d6d4d79 100644 --- a/source/lambda/upload-document/package.json +++ b/source/lambda/upload-document/package.json @@ -1,6 +1,6 @@ { "name": "upload-document", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda function to upload documents", "main": "index.js", "scripts": { @@ -27,4 +27,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/lambda/workflow-orchestrator/package-lock.json b/source/lambda/workflow-orchestrator/package-lock.json index c47b79b..6ecb661 100644 --- a/source/lambda/workflow-orchestrator/package-lock.json +++ b/source/lambda/workflow-orchestrator/package-lock.json @@ -1,12 +1,12 @@ { "name": "workflow-orchestrator", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "workflow-orchestrator", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "lodash": "4.17.21" diff --git a/source/lambda/workflow-orchestrator/package.json b/source/lambda/workflow-orchestrator/package.json index 9037bc2..a71be36 100644 --- a/source/lambda/workflow-orchestrator/package.json +++ b/source/lambda/workflow-orchestrator/package.json @@ -1,6 +1,6 @@ { "name": "workflow-orchestrator", - "version": "1.0.7", + "version": "1.0.8", "description": "This lambda validates if required documents for a workflow has been uploaded", "main": "index.js", "scripts": { @@ -27,4 +27,4 @@ "jest": "^29.7.0", "prettier": "^3.1.1" } -} +} \ No newline at end of file diff --git a/source/ui/package-lock.json b/source/ui/package-lock.json index 9ad127b..f8f3879 100644 --- a/source/ui/package-lock.json +++ b/source/ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "intelligent-document-processing-ui", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "intelligent-document-processing-ui", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "@aws-amplify/ui-react": "^5.3.2", diff --git a/source/ui/package.json b/source/ui/package.json index 0d9b7ab..ec8144f 100644 --- a/source/ui/package.json +++ b/source/ui/package.json @@ -1,6 +1,6 @@ { "name": "intelligent-document-processing-ui", - "version": "1.0.7", + "version": "1.0.8", "dependencies": { "@aws-amplify/ui-react": "^5.3.2", "@cloudscape-design/components": "^3.0.484", @@ -92,4 +92,4 @@ "name": "Amazon Web Services", "url": "https://aws.amazon.com/solutions" } -} +} \ No newline at end of file diff --git a/source/ui/public/index.html b/source/ui/public/index.html index 8e3af74..7d3cf2c 100644 --- a/source/ui/public/index.html +++ b/source/ui/public/index.html @@ -12,7 +12,7 @@ Enhanced Document Understanding on AWS