Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit 9accb42

Browse files
authored
Updates for release v1.1.8
Updates for release v1.1.8
2 parents 93feb65 + 7fbd141 commit 9accb42

File tree

48 files changed

+184
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+184
-113
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
=======
99

10+
## [1.1.8] - 2024-12-17
11+
12+
### Security
13+
14+
- Updated node modules to patch vulnerabilities
15+
16+
### Fixed
17+
18+
- Disable button to download redacted documents when no entities are selected. This previously caused an error.
19+
1020
## [1.1.7] - 2024-11-18
1121

1222
### Security

NOTICE.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,6 +1964,10 @@ responses under the Apache-2.0 license.
19641964
setuptools under the MIT license.
19651965
Werkzeug under the 0BSD license.
19661966
xmltodict under the MIT license.
1967+
jinja2 under the 0BSD license.
1968+
markupsafe under the 0BSD license.
1969+
pyyaml under the MIT license.
1970+
werkzeug under the 0BSD license.
19671971

19681972
********************
19691973
OPEN SOURCE LICENSES

source/infrastructure/cdk.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"app": "../pre-build-jars.sh && npx ts-node --prefer-ts-exts bin/dus.ts",
33
"watch": {
4-
"include": ["**"],
4+
"include": [
5+
"**"
6+
],
57
"exclude": [
68
"README.md",
79
"cdk*.json",
@@ -17,7 +19,10 @@
1719
"context": {
1820
"@aws-cdk/aws-lambda:recognizeLayerVersion": true,
1921
"@aws-cdk/core:checkSecretUsage": true,
20-
"@aws-cdk/core:target-partitions": ["aws", "aws-cn"],
22+
"@aws-cdk/core:target-partitions": [
23+
"aws",
24+
"aws-cn"
25+
],
2126
"@aws-cdk-containers/ecs-service-extensions:enableDefaultLogDriver": true,
2227
"@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true,
2328
"@aws-cdk/aws-ecs:arnFormatIncludesClusterName": true,
@@ -57,10 +62,10 @@
5762
"@aws-cdk/aws-codepipeline-actions:useNewDefaultBranchForCodeCommitSource": true,
5863
"solution_id": "SO0281",
5964
"solution_name": "enhanced-document-understanding-on-aws",
60-
"solution_version": "v1.1.7",
65+
"solution_version": "v1.1.8",
6166
"app_namespace": "app.idp",
6267
"app_registry_name": "enhanced-document-understanding",
6368
"application_type": "AWS-Solutions",
6469
"application_trademark_name": "Enhanced Document Understanding on AWS"
6570
}
66-
}
71+
}

source/infrastructure/package-lock.json

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

source/infrastructure/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "enhanced-document-understanding-on-aws-infrastructure",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"bin": {
55
"infrastructure": "bin/dus.js"
66
},
@@ -80,4 +80,4 @@
8080
"type": "git",
8181
"url": "https://github.com/aws-solutions/enhanced-document-understanding-on-aws"
8282
}
83-
}
83+
}

source/infrastructure/test/mock-lambda-func/infrastructure/test/mock-lambda-func/python-lambda/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mock-python-lambda"
3-
version = "1.1.7"
3+
version = "1.1.8"
44
authors = [ "Amazon Web Services" ]
55
description = "Mock function for infra testing"
66
packages = [

source/infrastructure/test/mock-lambda-func/java-lambda/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<project xmlns="http://maven.apache.org/POM/4.0.0"
4-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
56
<modelVersion>4.0.0</modelVersion>
67
<groupId>example</groupId>
78
<artifactId>java-lambda</artifactId>
8-
<version>1.1.7</version>
9+
<version>1.1.8</version>
910

1011
<name>mock-java-lambda</name>
1112

source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json

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

source/infrastructure/test/mock-lambda-func/node-lambda/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "A mock lambda implementation for CDK infrastructure unit",
55
"main": "index.js",
66
"scripts": {
@@ -17,4 +17,4 @@
1717
"url": "https://aws.amazon.com/solutions"
1818
},
1919
"license": "Apache-2.0"
20-
}
20+
}

source/infrastructure/test/mock-lambda-func/python-lambda/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mock-python-lambda"
3-
version = "1.1.7"
3+
version = "1.1.8"
44
authors = [ "Amazon Web Services" ]
55
description = "Mock function for infra testing"
66
packages = [

0 commit comments

Comments
 (0)