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

Commit 437c5ee

Browse files
authored
Update to version v2.1.0
- Service Catalog AppRegistry resource to register the CloudFormation template and underlying resources as an application in both Service Catalog AppRegistry and AWS Systems Manager Application Manager
2 parents bc46ca0 + 26e932a commit 437c5ee

25 files changed

+2800
-2486
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
## [2.1.0] - 2022-12-05
9+
10+
- [Service Catalog AppRegistry](https://docs.aws.amazon.com/servicecatalog/latest/arguide/intro-app-registry.html) resource to register the CloudFormation template and underlying resources as an application in both Service Catalog AppRegistry and AWS Systems Manager Application Manager
11+
812
## [2.0.1] - 2022-11-16
913

1014
### Fixed

source/bin/discovering-hot-topics-app.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import * as cdk from '@aws-cdk/core';
1616
import { ApplytoLambda } from '../lib/aspects/apply-to-lambda';
17+
import { AppRegistry } from '../lib/aspects/app-registry';
1718
import { DiscoveringHotTopicsStack } from '../lib/discovering-hot-topics-stack';
1819

1920
const app = new cdk.App();
@@ -24,3 +25,4 @@ const dht = new DiscoveringHotTopicsStack(app, 'discovering-hot-topics-using-mac
2425
});
2526

2627
cdk.Aspects.of(app).add(new ApplytoLambda(dht, 'CustomConfig'));
28+
cdk.Aspects.of(app).add(new AppRegistry(dht, 'AppRegistry'));
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
moto==4.0.5
2-
pytest==7.1.3
1+
moto==4.0.10
2+
pytest==7.2.0
33
pytest-cov==4.0.0
44
botocore
55
mock==4.0.3
6-
responses==0.21.0
6+
responses==0.22.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
moto==4.0.5
2-
pytest==7.1.3
1+
moto==4.0.10
2+
pytest==7.2.0
33
pytest-cov==4.0.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
moto==4.0.5
2-
pytest==7.1.3
1+
moto==4.0.10
2+
pytest==7.2.0
33
pytest-cov==4.0.0
44
botocore
55
mock==4.0.3
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pyaml==21.10.1
2-
moto==4.0.5
3-
pytest==7.1.3
2+
moto==4.0.10
3+
pytest==7.2.0
44
pytest-cov==4.0.0
55
botocore
66
mock==4.0.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
google-api-python-client==2.62.0
1+
google-api-python-client==2.66.0
22
protobuf==4.21.6
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
pytest==7.1.3
1+
pytest==7.2.0
22
pytest-cov==4.0.0
33
mock==4.0.3
44
botocore
55
boto3
6-
moto==4.0.5
6+
moto==4.0.10
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest-cov==4.0.0
22
pytest-env==0.8.1
3-
moto==4.0.5
4-
pytest==7.1.3
3+
moto==4.0.10
4+
pytest==7.2.0
55
botocore
66
mock==4.0.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
boto3
22
botocore
33
coverage
4-
pytest==6.2.5
4+
pytest==7.2.0
55
pytest-cov==4.0.0
66
mock==4.0.3

0 commit comments

Comments
 (0)