Skip to content

Commit e603d3b

Browse files
authored
Merge pull request #283 from awslabs/v1.1.4
v1.1.4 release
2 parents 90a2042 + 11ccba6 commit e603d3b

File tree

25 files changed

+10891
-10134
lines changed

25 files changed

+10891
-10134
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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+
## [1.1.4] - 2022-04-01
9+
10+
### Added
11+
12+
### Changed
13+
14+
- Use official node.js Docker container for Discovery process ECS task
15+
16+
### Fixed
17+
18+
- Cost calculation bug due to UI using incorrect date
19+
820
## [1.1.3] - 2022-02-01
921

1022
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AWS Perspective (v1.1.3)
1+
# AWS Perspective (v1.1.4)
22

33
AWS Perspective is a tool that quickly visualizes AWS Cloud workloads as architecture diagrams. You can use the solution to build, customize, and share detailed workload visualizations based on live data from AWS. This solution works by maintaining an inventory of the AWS resources across your accounts and Regions, mapping relationships between them, and displaying them in a web user interface (web UI).
44

@@ -323,6 +323,6 @@ AWS Perspective is able to generate its architecture diagrams thanks to these li
323323
* [cytoscape.js-expand-collapse](https://github.com/iVis-at-Bilkent/cytoscape.js-expand-collapse)
324324

325325

326-
Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
326+
Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
327327

328328
Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at https://www.apache.org/licenses/ or in the "[license](LICENSE.txt)" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and limitations under the License.

deployment/perspective-setup.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ Resources:
453453
- ecr:PutLifecyclePolicy
454454
- ecr:SetRepositoryPolicy
455455
- ecr:PutImageScanningConfiguration
456+
- ecr:TagResource
456457
Resource: !Sub 'arn:aws:ecr:${AWS::Region}:${AWS::AccountId}:repository/*'
457458
- Effect: Allow
458459
Action:

package-lock.json

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

source/backend/discovery/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/bitnami/node-snapshot:14
1+
FROM public.ecr.aws/docker/library/node:16
22

33
RUN groupadd -r discovery && useradd -r -g discovery discovery
44

0 commit comments

Comments
 (0)