This repository was archived by the owner on Oct 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +22
-7
lines changed Expand file tree Collapse file tree 5 files changed +22
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.0.1] - 2021-10-01
8+ ### Added
9+ - The solution now exports the Amazon SNS Topic ARN as ` SNSTopicArn ` .
10+
11+ ### Changed
12+ - The SNS message format will change based on the protocol used. For Amazon SQS and Email-JSON endpoints, a JSON payload
13+ will be sent. The message sent to subscribed Email endpoints is unchanged.
14+ - The Amazon CloudWatch dashboard deployed by the solution will be replaced with a dashboard containing the stack's
15+ region name.
16+
717## [ 1.0.0] - 2021-09-23
818### Added
919- All files, initial version
Original file line number Diff line number Diff line change 1- aws-cdk.core >= 1.120 .0
2- aws-cdk.aws_lambda >= 1.120 .0
1+ aws-cdk.core >= 1.123 .0
2+ aws-cdk.aws_lambda >= 1.123 .0
33black
44boto3 >= 1.17.49
55requests >= 2.24.0
Original file line number Diff line number Diff line change 33 "context" : {
44 "SOLUTION_NAME" : " Maintaining Personalized Experiences with Machine Learning" ,
55 "SOLUTION_ID" : " SO0170" ,
6- "SOLUTION_VERSION" : " 1.0.0 " ,
6+ "SOLUTION_VERSION" : " 1.0.1 " ,
77 "@aws-cdk/core:newStyleStackSynthesis" : " true" ,
88 "@aws-cdk/core:enableStackNameDuplicates" : " true" ,
99 "aws-cdk:enableDiffNoFail" : " true" ,
Original file line number Diff line number Diff line change 1212# ######################################################################################################################
1313
1414
15+ import json
1516from pathlib import Path
1617
1718import setuptools
2021with open (readme_path ) as fp :
2122 long_description = fp .read ()
2223
24+ cdk_json_path = Path (__file__ ).resolve ().parent / "cdk.json"
25+ cdk_json = json .loads (cdk_json_path .read_text ())
26+ VERSION = cdk_json ["context" ]["SOLUTION_VERSION" ]
27+
2328
2429setuptools .setup (
2530 name = "infrastructure" ,
26- version = "1.0.0" ,
31+ version = VERSION ,
2732 description = "AWS CDK stack to deploy the AWS MLOps for Amazon Personalize solution." ,
2833 long_description = long_description ,
2934 long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 11avro == 1.10.2
22black
33boto3
4- aws_cdk.core >= 1.120 .0
5- aws_cdk.aws_stepfunctions_tasks >= 1.120 .0
6- aws_solutions_constructs.aws_lambda_sns >= 1.120 .0
4+ aws_cdk.core >= 1.123 .0
5+ aws_cdk.aws_stepfunctions_tasks >= 1.123 .0
6+ aws_solutions_constructs.aws_lambda_sns >= 1.123 .0
77requests == 2.24.0
88crhelper == 2.0.6
99cronex == 0.1.3.1
You can’t perform that action at this time.
0 commit comments