Skip to content
This repository was archived by the owner on Sep 25, 2024. It is now read-only.

Commit ebf1268

Browse files
committed
release version 1.2.0
1 parent a42c560 commit ebf1268

File tree

240 files changed

+25151
-9884
lines changed

Some content is hidden

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

240 files changed

+25151
-9884
lines changed

CHANGELOG.md

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.0.0] - 2022-08-05
9-
10-
### Added
11-
12-
- All files, initial version
13-
14-
## [1.0.1] - 2022-08-25
8+
## [1.2.0] - 2023-04-11
159

1610
### Added
1711

18-
- Allow s3 domain name without region in the Content Security Policy for pre-signed url
19-
20-
## [1.0.2] - 2022-10-05
12+
- New added DynamoDB Connector
13+
- New added CloudTrail Connector
14+
- New added MongoDB Connector
2115

2216
### Changed
2317

24-
- Upgrade `aws-cdk-lib` and `@aws-cdk/aws-lambda-python-alpha` to 2.41.0 to fix python bundling issue
25-
- Remove IAM role self-assuming code due to IAM service behavior change ([Issue 11](https://github.com/aws-solutions/automated-data-analytics-on-aws/issues/11))
26-
- Fix Lambda policy size limit growing when creating data products
27-
- Fix custom transform validation issue
18+
- Upgrade node version to 16
19+
- Upgrade AWS Glue lib to 3.0
20+
- Dockerise build steps for Java packages to simplified prerequisite
2821
- Fix security vulnerabilities found by yarn audit and Dependabot
22+
- Misc bug fixes
2923
- Misc documentation fixes
3024

3125
## [1.1.0] - 2022-12-19
@@ -44,3 +38,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4438
- Upgrade CDK version to 2.53.0
4539
- Fix security vulnerabilities found by yarn audit and Dependabot
4640
- Misc documentation fixes
41+
42+
## [1.0.2] - 2022-10-05
43+
44+
### Changed
45+
46+
- Upgrade `aws-cdk-lib` and `@aws-cdk/aws-lambda-python-alpha` to 2.41.0 to fix python bundling issue
47+
- Remove IAM role self-assuming code due to IAM service behavior change ([Issue 11](https://github.com/aws-solutions/automated-data-analytics-on-aws/issues/11))
48+
- Fix Lambda policy size limit growing when creating data products
49+
- Fix custom transform validation issue
50+
- Fix security vulnerabilities found by yarn audit and Dependabot
51+
- Misc documentation fixes
52+
53+
## [1.0.1] - 2022-08-25
54+
55+
### Added
56+
57+
- Allow s3 domain name without region in the Content Security Policy for pre-signed url
58+
59+
## [1.0.0] - 2022-08-05
60+
61+
### Added
62+
63+
- All files, initial version

NOTICE.txt

Lines changed: 225 additions & 138 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ For more information on the solution’s architecture, refer to the [implementat
3636

3737
- The latest version of the AWS CLI, installed and configured.
3838
- https://aws.amazon.com/cli/ .
39-
- node.js version 14.
39+
- node.js version 16.
4040
- https://docs.npmjs.com/getting-started
41-
- Below are the example commands for installing nvm and node 14, please make sure those commands fit your build environment before using them.
41+
- Below are the example commands for installing nvm and node 16, please make sure those commands fit your build environment before using them.
4242
```
4343
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
4444
exec $SHELL -l
45-
nvm install 14
45+
nvm install 16
4646
```
4747
- install yarn
4848
```
@@ -67,29 +67,6 @@ For more information on the solution’s architecture, refer to the [implementat
6767
eval "$(pyenv init -)"
6868
```
6969
70-
- Java Runtime
71-
72-
- The solution requires a Java 8 Runtime. We strongly recommend using [Amazon Corretto 8](https://docs.aws.amazon.com/corretto/latest/corretto-8-ug/downloads-list.html). Alternatively, you can also use other OpenJDKs such as [Eclipse Temurin](https://adoptium.net/en-GB/temurin/releases/?version=8).
73-
74-
- Below are the example commands for installing Amazon Corretto 8 on Amazon Linux 2, please make sure those commands fit your build environment before using them.
75-
```
76-
wget https://corretto.aws/downloads/latest/amazon-corretto-8-x64-linux-jdk.rpm
77-
sudo yum localinstall amazon-corretto-8-x64-linux-jdk.rpm
78-
```
79-
80-
- Maven (>=3.5.2)
81-
82-
- https://maven.apache.org/install.html. We recommend configuring Maven to use an OpenJDK8 compatible JAVA version, such as Amazon Corretto 8.
83-
84-
- Below are the example commands for installing Maven, please make sure those commands fit your build environment before using them.
85-
```
86-
mkdir maven
87-
cd maven
88-
wget https://dlcdn.apache.org/maven/maven-3/3.8.6/binaries/apache-maven-3.8.6-bin.tar.gz
89-
tar xzvf apache-maven-3.8.6-bin.tar.gz
90-
export PATH="/home/<YOUR_USERNAME>/maven/apache-maven-3.8.6/bin:$PATH"
91-
```
92-
9370
- Docker Desktop (>= v20.10)
9471
- https://www.docker.com/get-started/
9572

0 commit comments

Comments
 (0)