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

Commit e642216

Browse files
authored
Merge pull request #148 from aws-solutions/develop
Update to version v2.3.1
2 parents c74d76f + c883f9b commit e642216

File tree

38 files changed

+177
-167
lines changed

38 files changed

+177
-167
lines changed

CHANGELOG.md

+5
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.1] - 2024-07-02
9+
10+
### Security
11+
- Fixed security vulnerabilities
12+
813
## [2.3.0] - 2024-03-12
914

1015
### Updated

NOTICE.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,6 @@ Werkzeug under BSD License
106106
xmltodict under MIT License
107107
colorama under BSD License
108108
docutils under BSD License
109-
awscli under Apache License 2.0
109+
awscli under Apache License 2.0
110+
proto-plus under Apache License 2.0
111+
pyasn1_modules under BSD License

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

+9-9
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firehose-text-proxy",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Lambda proxy to write to Firehose to generate Glue tables through S3",
55
"main": "index.js",
66
"scripts": {

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

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/lambda/ingestion-consumer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ingestion-consumer",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "The consumer of the Kinesis stream to receive social media feed",
55
"main": "index.js",
66
"scripts": {

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

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/lambda/ingestion-producer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ingestion-producer",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "This function pulls data from the twitter stream and pushes it to Kinesis Stream.",
55
"main": "feed-producer.js",
66
"scripts": {

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

+9-9
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ingestion-publish-subreddit",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "This function publishes the events for subreddits to ingest information from",
55
"main": "index.js",
66
"scripts": {
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
google-api-python-client~=2.88.0
2-
protobuf~=4.23.2
2+
protobuf~=4.23.2
3+
requests~=2.32.3

source/lambda/integration/package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/lambda/integration/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "integration",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Kinesis stream consumer",
55
"main": "index.js",
66
"scripts": {

source/lambda/layers/aws-nodesdk-custom-config/package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/lambda/layers/aws-nodesdk-custom-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-nodesdk-custom-config",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "AWS Nodejs SDK Config intialization layer",
55
"main": "index.js",
66
"scripts": {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests~=2.32.3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
crhelper~=2.0.11
2-
requests~=2.31.0
2+
requests~=2.32.3
33
pyyaml
44
tenacity~=8.2.3
55
urllib3<2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
crhelper~=2.0.11
2-
requests~=2.31.0
2+
requests~=2.32.3
33
urllib3<2

0 commit comments

Comments
 (0)