You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 30, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [2.0.1] - 2022-11-16
9
+
10
+
### Fixed
11
+
12
+
- Github [issue #69](https://github.com/aws-solutions/discovering-hot-topics-using-machine-learning/issues/69). The fix required the ingestion infrastructure code in CDK to be pass the AWS CloudFormation parameter to be passed to the Reddit nested stack.
13
+
14
+
### Updated
15
+
16
+
- CDK version 1.177.0
17
+
- AWS SDK verson 2.1223.0
18
+
8
19
## [2.0.0] - 2022-05-31
9
20
10
21
### Added
@@ -79,7 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
79
90
80
91
### Fixed
81
92
82
-
- Truncated tweets through merging [GitHub pull request #26](https://github.com/awslabs/discovering-hot-topics-using-machine-learning/pull/26)
93
+
- Truncated tweets through merging [GitHub pull request #26](https://github.com/aws-solutions/discovering-hot-topics-using-machine-learning/pull/26)
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,6 @@ documentation, we greatly value feedback and contributions from our community.
6
6
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
7
7
information to effectively respond to your bug report or contribution.
8
8
9
-
10
9
## Reporting Bugs/Feature Requests
11
10
12
11
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
@@ -19,8 +18,8 @@ reported the issue. Please try to include as much information as you can. Detail
19
18
* Any modifications you've made relevant to the bug
20
19
* Anything unusual about your environment or deployment
21
20
22
-
23
21
## Contributing via Pull Requests
22
+
24
23
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
25
24
26
25
1. You are working against the latest source on the *master* branch.
@@ -39,20 +38,19 @@ To send us a pull request, please:
39
38
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
40
39
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
41
40
42
-
43
41
## Finding contributions to work on
44
-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-solutions/discovering-hot-topics-using-machine-learning/labels/help%20wanted) issues is a great place to start.
45
42
43
+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-solutions/discovering-hot-topics-using-machine-learning/labels/help%20wanted) issues is a great place to start.
46
44
47
45
## Code of Conduct
46
+
48
47
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
49
48
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55
52
53
+
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
Copy file name to clipboardExpand all lines: README.md
+24-24Lines changed: 24 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,46 +80,46 @@ The solution is deployed using a CloudFormation template with a lambda backed cu
80
80
81
81
```
82
82
├── deployment [folder containing build scripts]
83
-
│ ├── cdk-solution-helper [A helper function to help deploy lambda function code through S3 buckets]
83
+
│ ├── cdk-solution-helper [A helper function to help deploy lambda function code through S3 buckets]
84
84
│ ├── build-s3-dist.sh [Build script to build the solution]
85
85
└── source [source code containing CDK App and lambda functions]
86
86
├── bin [entrypoint of the CDK application]
87
87
├── lambda [folder containing source code the lambda functions]
88
88
│ ├── capture_news_feed [lambda function to ingest news feeds]
89
-
│ ├── firehose_topic_proxy [lambda function to write topic analysis output to Amazon Kinesis Firehose]
90
-
│ ├── firehose-text-proxy [lambda function to write text analysis output to Amazon Kinesis Firehose]
91
-
│ ├── ingestion-consumer [lambda function that consumes messages from Amazon Kinesis Data Streams]
92
-
│ ├── ingestion-custom [lambda function that reads files from Amazon S3 bucket and pushes data to Amazon Kinesis Data Streams]
93
-
│ ├── ingestion-producer [lambda function that makes Twitter API call and pushes data to Amazon Kinesis Data Stream]
94
-
│ ├── ingestion-reddit [lambda function that makes Reddit API call to retrieve comments from subreddits of interest and pushes data to Amazon Kinesis Data Stream]
95
-
│ ├── ingestion-youtube [lambda function that ingests comments from YouTube videos and pushes data to Amazon Kinesis Data Streams]
96
-
│ ├── integration [lambda function that publishes inference outputs to Amazon Events Bridge]
89
+
│ ├── firehose_topic_proxy [lambda function to write topic analysis output to Amazon Kinesis Firehose]
90
+
│ ├── firehose-text-proxy [lambda function to write text analysis output to Amazon Kinesis Firehose]
91
+
│ ├── ingestion-consumer [lambda function that consumes messages from Amazon Kinesis Data Streams]
92
+
│ ├── ingestion-custom [lambda function that reads files from Amazon S3 bucket and pushes data to Amazon Kinesis Data Streams]
93
+
│ ├── ingestion-producer [lambda function that makes Twitter API call and pushes data to Amazon Kinesis Data Stream]
94
+
│ ├── ingestion-reddit [lambda function that makes Reddit API call to retrieve comments from subreddits of interest and pushes data to Amazon Kinesis Data Stream]
95
+
│ ├── ingestion-youtube [lambda function that ingests comments from YouTube videos and pushes data to Amazon Kinesis Data Streams]
96
+
│ ├── integration [lambda function that publishes inference outputs to Amazon Events Bridge]
97
97
│ ├── layers [lambda layer function library for Node and Python layers]
98
98
│ │ ├── aws-nodesdk-custom-config
99
99
│ │ ├── python_lambda_layer
100
100
│ ├── quicksight-custom-resources [lambda function to create Amazon QuickSight resources, example: data source, data sets, analysis and dashboards]
101
101
│ ├── solution_helper [lambda function that allows capturing metrics for this solution]
102
-
│ ├── storage-firehose-processor [lambda function that writes data to S3 buckets to build a relational model]
103
-
│ ├── wf-analyze-text [lambda function to detect sentiments, key phrases and entities using Amazon Comprehend]
104
-
│ ├── wf-check-topic-model [lambda function to check status of topic modeling jobs on Amazon Comprehend]
102
+
│ ├── storage-firehose-processor [lambda function that writes data to S3 buckets to build a relational model]
103
+
│ ├── wf-analyze-text [lambda function to detect sentiments, key phrases and entities using Amazon Comprehend]
104
+
│ ├── wf-check-topic-model [lambda function to check status of topic modeling jobs on Amazon Comprehend]
105
105
│ ├── wf-detect-language [lambda function to detect language of ingested text content using Amazon Comprehend]
106
-
│ ├── wf-detect-moderation-labels [lambda function to detect content moderation using Amazon Rekognition]
107
-
│ ├── wf-extract-text-in-image [lambda function to extract text content from images using Amazon Rekognition]
108
-
│ ├── wf-publish-text-inference [lambda function to publish Amazon Comprehend inferences]
109
-
│ ├── wf-submit-topic-model [lambda function to submit topic modeling job]
110
-
│ ├── wf-translate-text [lambda function to translate non-english text using Amazon Translate]
111
-
│ └── wf_publish_topic_model [lambda function to publish topic modeling inferences from Amazon Comprehend]
106
+
│ ├── wf-detect-moderation-labels [lambda function to detect content moderation using Amazon Rekognition]
107
+
│ ├── wf-extract-text-in-image [lambda function to extract text content from images using Amazon Rekognition]
108
+
│ ├── wf-publish-text-inference [lambda function to publish Amazon Comprehend inferences]
109
+
│ ├── wf-submit-topic-model [lambda function to submit topic modeling job]
110
+
│ ├── wf-translate-text [lambda function to translate non-english text using Amazon Translate]
111
+
│ └── wf_publish_topic_model [lambda function to publish topic modeling inferences from Amazon Comprehend]
112
112
├── lib
113
113
│ ├── aspects [CDK Aspects definitions to inject attributes during the prepare phase]
114
114
│ ├── awsnodejs-lambda-layer [Lambda layer construct for lambda functions that run on Nodejs runtime]
115
-
│ ├── ingestion [CDK constructs for data ingestion]
116
-
│ ├── integration [CDK constructs for Amazon Events Bridge]
115
+
│ ├── ingestion [CDK constructs for data ingestion]
116
+
│ ├── integration [CDK constructs for Amazon Events Bridge]
117
117
│ ├── quicksight-custom-resources [CDK construct that invokes custom resources to create Amazon QuickSight resources]
118
118
│ ├── s3-event-notification [CDK construct that configures S3 events to be pushed to Amazon EventBridge]
119
-
│ ├── storage [CDK constructs that define storage of the inference events]
120
-
│ ├── text-analysis-workflow [CDK constructs for text analysis of ingested data]
121
-
│ ├── topic-analysis-workflow [CDK constructs for topic visualization of ingested data]
122
-
│ └── visualization [CDK constructs to build a relational database model for visualization]
119
+
│ ├── storage [CDK constructs that define storage of the inference events]
120
+
│ ├── text-analysis-workflow [CDK constructs for text analysis of ingested data]
121
+
│ ├── topic-analysis-workflow [CDK constructs for topic visualization of ingested data]
122
+
│ └── visualization [CDK constructs to build a relational database model for visualization]
0 commit comments