Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Lowe committed Dec 17, 2020
1 parent a78bab2 commit 482bb42
Show file tree
Hide file tree
Showing 23 changed files with 4,053 additions and 11,012 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.1] - 2019-10-01
## [1.1.0] - 2020-11-23
- Removed code to manage the Pinpoint Event Stream, Kinesis Firehose, and Glue Database configuration.
- Added dependency on the Digital User Engagement Events Database to manage the Pinpoint Event Stream and event database creation.
- Modified logic to write a ChurnPrediction Metric to the Endpoints allowing for a Dynamic Predicted to Churn segment instead of a static imported segment.
- Providing a Parquet formatted file for the sample pinpoint events to match the database configuration.
- Added manual schema registration in Glue for the Pinpoint endpoint exports, removing dependency on a Glue crawler.
- Removed static customer data file and moved attributes for ML predictions to endpoints with the creation of the SampleImport.csv file.
- SageMaker notebook instance placed inside of a VPC for enhanced security of customer data files.
- Updated SageMaker notebook to use the latest version of the SageMaker Python SDK.

## [1.0.1] - 2020-01-23
- Upgraded AWS Lambda function runtimes to nodejs12.x

## [1.0.0] - 2019-10-01
### Added
- initial repository version
9 changes: 2 additions & 7 deletions deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,6 @@ cd $source_dir/12-import-segment-success-lambda
npm run build
cp ./dist/12-import-segment-success-lambda.zip $build_dist_dir/12-import-segment-success-lambda.zip

echo "Building Function firehose-record-conversion-lambda"
cd $source_dir/firehose-record-conversion-lambda
npm run build
cp ./dist/firehose-record-conversion-lambda.zip $build_dist_dir/firehose-record-conversion-lambda.zip

echo "Building Function custom-resource-helper"
cd $source_dir/custom-resource-helper
npm run build
Expand All @@ -148,8 +143,8 @@ echo "--------------------------------------------------------------------------
echo "Move S3 Sample Notebook and Data Files"
cp $source_dir/notebooks/xgboost_customer_churn.ipynb $build_dist_dir/
cp $source_dir/sample_data/ChurnSampleData.csv $build_dist_dir/
cp $source_dir/sample_data/sample_pinpoint_events.json $build_dist_dir/
cp $source_dir/sample_data/sample_pinpoint_export.json $build_dist_dir/
cp $source_dir/sample_data/sample_pinpoint_events.parquet $build_dist_dir/
cp $source_dir/sample_data/SampleImport.csv $template_dist_dir/

# Finish Up
echo "Completed building distribution"
Expand Down
Loading

0 comments on commit 482bb42

Please sign in to comment.