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

Commit 53bb6ab

Browse files
authored
Merge pull request #149 from aws-solutions/feature/v2.3.2
Update to version v2.3.2
2 parents e642216 + 5dee462 commit 53bb6ab

File tree

34 files changed

+193
-139
lines changed

34 files changed

+193
-139
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,3 +274,13 @@ source/lambda/wf_publish_topic_model/test/fixtures/output/doc-topics.csv
274274
source/lambda/wf_publish_topic_model/test/fixtures/output/topic-terms.csv
275275

276276
.idea/
277+
278+
# 3rd party libraries
279+
source/lambda/ingestion-youtube/proto/
280+
source/lambda/ingestion-youtube/proto_plus-1.24.0.dist-info/
281+
source/lambda/layers/python_lambda_layer/bin/
282+
source/lambda/layers/python_lambda_layer/certifi/
283+
source/lambda/layers/python_lambda_layer/charset_normalizer/
284+
source/lambda/layers/python_lambda_layer/idna/
285+
source/lambda/layers/python_lambda_layer/requests/
286+
source/lambda/layers/python_lambda_layer/urllib3/

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.3.2] - 2024-08-06
9+
10+
### Security
11+
- Patched fast-xml-parser vulnerability
12+
813
## [2.3.1] - 2024-07-02
914

1015
### Security

source/lambda/firehose-text-proxy/package-lock.json

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

source/lambda/firehose-text-proxy/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firehose-text-proxy",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "Lambda proxy to write to Firehose to generate Glue tables through S3",
55
"main": "index.js",
66
"scripts": {
@@ -22,5 +22,8 @@
2222
"chai": "^4.3.7",
2323
"jest": "^29.7.0",
2424
"sinon": "^17.0.1"
25+
},
26+
"overrides": {
27+
"fast-xml-parser": "^4.4.1"
2528
}
2629
}

source/lambda/ingestion-consumer/package-lock.json

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

source/lambda/ingestion-consumer/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ingestion-consumer",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "The consumer of the Kinesis stream to receive social media feed",
55
"main": "index.js",
66
"scripts": {
@@ -21,5 +21,8 @@
2121
},
2222
"dependencies": {
2323
"@aws-sdk/client-sfn": "^3.369.0"
24+
},
25+
"overrides": {
26+
"fast-xml-parser": "^4.4.1"
2427
}
2528
}

source/lambda/ingestion-producer/package-lock.json

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

source/lambda/ingestion-producer/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ingestion-producer",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "This function pulls data from the twitter stream and pushes it to Kinesis Stream.",
55
"main": "feed-producer.js",
66
"scripts": {
@@ -26,5 +26,8 @@
2626
"chai": "^4.3.7",
2727
"jest": "^29.7.0",
2828
"sinon": "^17.0.1"
29+
},
30+
"overrides": {
31+
"fast-xml-parser": "^4.4.1"
2932
}
3033
}

source/lambda/ingestion-publish-subreddit/package-lock.json

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

source/lambda/ingestion-publish-subreddit/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ingestion-publish-subreddit",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "This function publishes the events for subreddits to ingest information from",
55
"main": "index.js",
66
"scripts": {
@@ -21,5 +21,8 @@
2121
"aws-sdk-client-mock": "^3.0.1",
2222
"chai": "^4.3.7",
2323
"jest": "^29.7.0"
24+
},
25+
"overrides": {
26+
"fast-xml-parser": "^4.4.1"
2427
}
2528
}

0 commit comments

Comments
 (0)