Skip to content

Commit 32f4774

Browse files
authored
Merge pull request #200 from aws-solutions/release/v2.1.3
Upgrade to v2.1.3
2 parents 8168010 + ba7af27 commit 32f4774

File tree

163 files changed

+826
-690
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+826
-690
lines changed

.viperlightignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.viperlightrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.viperlightrc_global

Lines changed: 0 additions & 15 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.1.3] - 2024-09-18
9+
10+
### Fixed
11+
- Resolved an issue in the remediation scripts for EC2.18 and EC2.19 where security group rules with IpProtocol set to "-1" were being incorrectly ignored.
12+
13+
### Changed
14+
- Upgraded all Python runtimes in remediation SSM documents from Python 3.8 to Python 3.11.
15+
16+
### Security
17+
- Upgraded micromatch package to mitigate [CVE-2024-4067](https://avd.aquasec.com/nvd/2024/cve-2024-4067/)
18+
819
## [2.1.2] - 2024-06-20
920

1021
### Fixed

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ subsequently address any potential vulnerabilities as quickly as possible. If yo
55
security issue in this project, please notify AWS/Amazon Security via
66
our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/) or
77
directly via email to [AWS Security](mailto:aws-security@amazon.com). Please do not create a public GitHub issue in this
8-
project.
8+
project.

deployment/run-unit-tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export overrideWarningsEnabled=false
1313
echo "UPDATE MODE: CDK Snapshots will be updated. CDK UNIT TESTS WILL BE SKIPPED"
1414
} || update="false"
1515

16-
[[ ! -d .venv ]] && python3 -m venv .venv
16+
[[ ! -d .venv ]] && python3.11 -m venv .venv
1717
source ./.venv/bin/activate
18-
python3 -m pip install -U pip setuptools
18+
python3.11 -m pip install -U pip setuptools
1919

2020
echo 'Installing required Python testing modules'
2121
pip install -r ./requirements_dev.txt
@@ -39,7 +39,7 @@ run_pytest() {
3939
echo "coverage report path set to ${report_file}"
4040

4141
# Use -vv for debugging
42-
python3 -m pytest --cov --cov-report=term-missing --cov-report "xml:$report_file"
42+
python3.11 -m pytest --cov --cov-report=term-missing --cov-report "xml:$report_file"
4343
rc=$?
4444

4545
if [ "$rc" -ne "0" ]; then

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "automated_security_response_on_aws"
3-
version = "2.1.2"
3+
version = "2.1.3"
44

55
[tool.setuptools]
66
package-dir = {"" = "source"}

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0111
22
name: security-hub-automated-response-and-remediation
3-
version: 2.1.2
3+
version: 2.1.3
44
cloudformation_templates:
55
- template: aws-sharr-deploy.template
66
main_template: true

source/package-lock.json

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

source/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-security-hub-automated-response-and-remediation",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Automated remediation for AWS Security Hub (SO0111)",
55
"bin": {
66
"solution_deploy": "bin/solution_deploy.js"

0 commit comments

Comments
 (0)