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

Commit

Permalink
update to version v2.1.3
Browse files Browse the repository at this point in the history
### Fixed

- Update AWS-SDK V2 that addresses the security issue identified in xml2js (aws/aws-sdk-js#4387)
- Updated the bucket policy on the logging bucket to grant access to the logging service principal (logging.s3.amazonaws.com) for access log delivery.
  • Loading branch information
tabdunabi authored Apr 17, 2023
2 parents 3726719 + 58e4bb5 commit c18b1e7
Show file tree
Hide file tree
Showing 87 changed files with 17,615 additions and 15,317 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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).

## [2.1.3] - 2023-04-18

### Fixed

- Update AWS-SDK V2 that addresses the security issue identified in xml2js (https://github.com/aws/aws-sdk-js/issues/4387)
- Updated the bucket policy on the logging bucket to grant access to the logging service principal (logging.s3.amazonaws.com) for access log delivery.

## [2.1.2] - 2023-01-11

### Fixed
Expand Down
1 change: 1 addition & 0 deletions deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ for folder in */ ; do

if [ -e "requirements.txt" ]; then
if [ "$function_name" = "capture_news_feed" ]; then
echo "Python version is $(python --version)"
echo "Installing $function_name lambda using virtual environment"
python3 -m venv .venv-test
echo "Activating virtual environment"
Expand Down
7 changes: 4 additions & 3 deletions source/lambda/capture_news_feed/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
moto==4.1.0
pytest==7.2.0
moto==4.1.7
pytest==7.2.2
pytest-cov==4.0.0
botocore
mock==5.0.1
responses==0.22.0
responses==0.23.1
-e ../layers/python_lambda_layer
2,092 changes: 1,106 additions & 986 deletions source/lambda/firehose-text-proxy/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions source/lambda/firehose-text-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firehose-text-proxy",
"version": "2.1.2",
"version": "2.1.3",
"description": "Lambda proxy to write to Firehose to generate Glue tables through S3",
"main": "index.js",
"scripts": {
Expand All @@ -11,13 +11,13 @@
"author": "aws-solutions-builder@",
"license": "Apache-2.0",
"dependencies": {
"aws-sdk": "^2.1290.0",
"aws-sdk": "^2.1354.0",
"moment": "^2.29.4"
},
"devDependencies": {
"aws-sdk-mock": "^5.8.0",
"chai": "^4.3.7",
"jest": "^29.3.1",
"sinon": "^15.0.1"
"jest": "^29.5.0",
"sinon": "^15.0.3"
}
}
7 changes: 4 additions & 3 deletions source/lambda/firehose_topic_proxy/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
moto==4.1.0
pytest==7.2.0
pytest-cov==4.0.0
moto==4.1.7
pytest==7.2.2
pytest-cov==4.0.0
-e ../layers/python_lambda_layer
Loading

0 comments on commit c18b1e7

Please sign in to comment.