Skip to content

Commit

Permalink
Update for version v1.0.6
Browse files Browse the repository at this point in the history
### Security
- Updated node modules to patch vulnerabilities

### Fixed
- Fixed a bug in the entity detection code which caused failures on an edge case with repeating words (issue #34)

### Updated
- Failure on a single entity now does not cause the whole workflow to fail, instead logging an error message and continuing
  • Loading branch information
tabdunabi authored Mar 27, 2024
2 parents 1904344 + 62e89f5 commit a0cd9f7
Show file tree
Hide file tree
Showing 48 changed files with 732 additions and 139 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

=======

## [1.0.6] - 2024-03-27

### Security

- Updated node modules to patch vulnerabilities

### Fixed

- Fixed a bug in the entity detection code which caused failures on an edge case with repeating words ([issue 34](https://github.com/aws-solutions/enhanced-document-understanding-on-aws/issues/34))

### Updated

- Failure on a single entity now does not cause the whole workflow to fail, instead logging an error message and continuing

## [1.0.5] - 2024-03-05

### Updated
Expand Down
2 changes: 1 addition & 1 deletion source/infrastructure/cdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@aws-cdk/aws-codepipeline-actions:useNewDefaultBranchForCodeCommitSource": true,
"solution_id": "SO0281",
"solution_name": "enhanced-document-understanding-on-aws",
"solution_version": "v1.0.4",
"solution_version": "v1.0.6",
"app_namespace": "app.idp",
"app_registry_name": "enhanced-document-understanding",
"application_type": "AWS-Solutions",
Expand Down
4 changes: 2 additions & 2 deletions source/infrastructure/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/infrastructure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enhanced-document-understanding-on-aws-infrastructure",
"version": "1.0.4",
"version": "1.0.6",
"bin": {
"infrastructure": "bin/dus.js"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>example</groupId>
<artifactId>java-lambda</artifactId>
<version>1.0.4</version>
<version>1.0.6</version>

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

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-lambda",
"version": "1.0.4",
"version": "1.0.6",
"description": "A mock lambda implementation for CDK infrastructure unit",
"main": "index.js",
"scripts": {
Expand Down
28 changes: 14 additions & 14 deletions source/infrastructure/test/mock-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/infrastructure/test/mock-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mock-react-app",
"version": "1.0.4",
"version": "1.0.6",
"description": "Mock Reactjs app used for unit testing constructs",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions source/lambda/create-presigned-url/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/lambda/create-presigned-url/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-presigned-url",
"version": "1.0.4",
"version": "1.0.6",
"description": "This lambda has minimal permissions required to create downloadable presigned URLs for documents.",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions source/lambda/entity-detection/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions source/lambda/entity-detection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "entity-detection",
"version": "1.0.4",
"version": "1.0.6",
"description": "This lambda function detects entities within Text",
"main": "index.js",
"scripts": {
Expand All @@ -27,4 +27,4 @@
"overrides": {
"@babel/traverse": "^7.23.2"
}
}
}
Loading

0 comments on commit a0cd9f7

Please sign in to comment.