Skip to content

Commit 8413952

Browse files
committed
update to v2.1.11
1 parent 417ec26 commit 8413952

25 files changed

+47
-35
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.1.11] - 2024-7-23
9+
10+
### Changed
11+
12+
- Use Amazon Linux 2023 as the base image for the discovery process Docker container
13+
814
## [2.1.10] - 2024-7-16
915

1016
### Fixed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Workload Discovery on AWS (v2.1.10)
1+
# Workload Discovery on AWS (v2.1.11)
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.

source/backend/discovery/Dockerfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
FROM public.ecr.aws/docker/library/node:20
1+
FROM public.ecr.aws/amazonlinux/amazonlinux:2023
2+
3+
RUN dnf install -y shadow-utils
4+
5+
RUN curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
6+
7+
RUN dnf install nodejs -y
28

39
RUN groupadd -r discovery && useradd -r -g discovery discovery
410

source/backend/discovery/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/discovery/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-discovery",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "This contains the code that forms the discovery process for AWS Perspective.",
55
"main": "index.js",
66
"scripts": {

source/backend/functions/account-import-templates-api/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/account-import-templates-api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-import-templates",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "Lambda function that serves cfn templates for account and region importing",
55
"main": "index.js",
66
"scripts": {

source/backend/functions/cost-parser/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/cost-parser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-cost",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

source/backend/functions/cur-notification/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/cur-notification/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-cur-notification",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

source/backend/functions/cur-setup/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/cur-setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-cur-setup",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

source/backend/functions/graph-api/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/graph-api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-graph-api",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "The lambda function that queries the Neptune database",
55
"main": "src/index.js",
66
"scripts": {

source/backend/functions/metrics/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/metrics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metrics",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

source/backend/functions/opensearch-setup/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/opensearch-setup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opensearch-setup",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "Custom resource that creates index in OpenSearch.",
55
"main": "src/index.js",
66
"scripts": {

source/backend/functions/search-api/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/search-api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-search-api",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "The lambda function that queries the OpenSearch database",
55
"main": "src/index.js",
66
"scripts": {

source/backend/functions/settings/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/functions/settings/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wd-settings",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"description": "Lambda function that stores WD configuration data in DynamoDB",
55
"main": "index.js",
66
"scripts": {

source/frontend/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "workload-discovery-ui",
3-
"version": "2.1.10",
3+
"version": "2.1.11",
44
"private": true,
55
"description": "UI code for the Workload Discovery solution",
66
"author": {

0 commit comments

Comments
 (0)