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

Commit

Permalink
release version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hu Jin committed Apr 28, 2023
1 parent a42c560 commit ebf1268
Show file tree
Hide file tree
Showing 240 changed files with 25,151 additions and 9,884 deletions.
45 changes: 31 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,21 @@ 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.0] - 2022-08-05

### Added

- All files, initial version

## [1.0.1] - 2022-08-25
## [1.2.0] - 2023-04-11

### Added

- Allow s3 domain name without region in the Content Security Policy for pre-signed url

## [1.0.2] - 2022-10-05
- New added DynamoDB Connector
- New added CloudTrail Connector
- New added MongoDB Connector

### Changed

- Upgrade `aws-cdk-lib` and `@aws-cdk/aws-lambda-python-alpha` to 2.41.0 to fix python bundling issue
- 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))
- Fix Lambda policy size limit growing when creating data products
- Fix custom transform validation issue
- Upgrade node version to 16
- Upgrade AWS Glue lib to 3.0
- Dockerise build steps for Java packages to simplified prerequisite
- Fix security vulnerabilities found by yarn audit and Dependabot
- Misc bug fixes
- Misc documentation fixes

## [1.1.0] - 2022-12-19
Expand All @@ -44,3 +38,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgrade CDK version to 2.53.0
- Fix security vulnerabilities found by yarn audit and Dependabot
- Misc documentation fixes

## [1.0.2] - 2022-10-05

### Changed

- Upgrade `aws-cdk-lib` and `@aws-cdk/aws-lambda-python-alpha` to 2.41.0 to fix python bundling issue
- 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))
- Fix Lambda policy size limit growing when creating data products
- Fix custom transform validation issue
- Fix security vulnerabilities found by yarn audit and Dependabot
- Misc documentation fixes

## [1.0.1] - 2022-08-25

### Added

- Allow s3 domain name without region in the Content Security Policy for pre-signed url

## [1.0.0] - 2022-08-05

### Added

- All files, initial version
363 changes: 225 additions & 138 deletions NOTICE.txt

Large diffs are not rendered by default.

29 changes: 3 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ For more information on the solution’s architecture, refer to the [implementat

- The latest version of the AWS CLI, installed and configured.
- https://aws.amazon.com/cli/ .
- node.js version 14.
- node.js version 16.
- https://docs.npmjs.com/getting-started
- Below are the example commands for installing nvm and node 14, please make sure those commands fit your build environment before using them.
- Below are the example commands for installing nvm and node 16, please make sure those commands fit your build environment before using them.
```
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
exec $SHELL -l
nvm install 14
nvm install 16
```
- install yarn
```
Expand All @@ -67,29 +67,6 @@ For more information on the solution’s architecture, refer to the [implementat
eval "$(pyenv init -)"
```
- Java Runtime
- 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).
- 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.
```
wget https://corretto.aws/downloads/latest/amazon-corretto-8-x64-linux-jdk.rpm
sudo yum localinstall amazon-corretto-8-x64-linux-jdk.rpm
```
- Maven (>=3.5.2)
- https://maven.apache.org/install.html. We recommend configuring Maven to use an OpenJDK8 compatible JAVA version, such as Amazon Corretto 8.
- Below are the example commands for installing Maven, please make sure those commands fit your build environment before using them.
```
mkdir maven
cd maven
wget https://dlcdn.apache.org/maven/maven-3/3.8.6/binaries/apache-maven-3.8.6-bin.tar.gz
tar xzvf apache-maven-3.8.6-bin.tar.gz
export PATH="/home/<YOUR_USERNAME>/maven/apache-maven-3.8.6/bin:$PATH"
```
- Docker Desktop (>= v20.10)
- https://www.docker.com/get-started/
Expand Down
Loading

0 comments on commit ebf1268

Please sign in to comment.