Skip to content

Commit ffa629c

Browse files
authored
Merge pull request #418 from aws-solutions/release/v2.0.3
Release v2.0.3
2 parents 510d0cb + 745d864 commit ffa629c

File tree

25 files changed

+65009
-21235
lines changed

25 files changed

+65009
-21235
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project are documented in this file.
55
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+
## [2.0.3] - 2023-04-18
9+
10+
### Fixed
11+
12+
- Added ObjectOwnership property to S3 buckets in accordance with new [bucket ACL changes.](https://aws.amazon.com/blogs/aws/heads-up-amazon-s3-security-changes-are-coming-in-april-of-2023/)
13+
- Updated aws-sdk version to get around this xml2js [vulnerability.](https://github.com/advisories/GHSA-776f-qx25-q3cc)
14+
815
## [2.0.2] - 2022-12-09
916

1017
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Workload Discovery on AWS (v2.0.2)
1+
# Workload Discovery on AWS (v2.0.3)
22

33
Workload Discovery on AWS is a tool that quickly visualizes AWS Cloud workloads as architecture diagrams.
44
You can use the solution to build, customize, and share detailed workload visualizations based on live data from AWS.

buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ phases:
33
install:
44
runtime-versions:
55
nodejs: 16
6-
python: 3.9
6+
python: 3.10
77
commands:
88
- pip install --upgrade pip
99
pre_build:

source/backend/discovery/package-lock.json

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

source/backend/discovery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"iterare": "1.2.1",
3838
"p-throttle": "4.0.0",
3939
"ramda": "0.28.0",
40-
"undici": "5.8.2",
40+
"undici": "5.20.0",
4141
"winston": "3.3.3"
4242
},
4343
"devDependencies": {
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"$constants": {
3+
"accountId": "xxxxxxxxxxxx",
4+
"awsRegion": "eu-west-2"
5+
},
6+
"lambda": {
7+
"id": "${lambda.arn}",
8+
"arn": "lambdaArn",
9+
"accountId": "${$constants.accountId}",
10+
"awsRegion": "${$constants.awsRegion}",
11+
"resourceType": "AWS::Lambda::Function",
12+
"relationships": [],
13+
"configuration": {}
14+
}
15+
}

0 commit comments

Comments
 (0)