Skip to content

Commit 401ff79

Browse files
authored
Merge pull request #74 from aws-solutions/release/v3.2.1
upgrade to v3.2.1
2 parents e8a7c65 + 85f61ca commit 401ff79

File tree

7 files changed

+34
-28
lines changed

7 files changed

+34
-28
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
## [3.2.1] - 2023-01-13
9+
10+
### Changed
11+
12+
- Updated python requests to 2.28.1 due to security patch required for certifi module which is a dependency. Using the latest requests version 2.28.1 installs the latest patched version of certifi v2022.12.07. For details please refer to https://nvd.nist.gov/vuln/detail/cve-2022-23491.
13+
- package-lock.json to address dependabot identified vulnerabilities
14+
815
## [3.2.0] - 2022-11-25
916

1017
### Added

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Network Orchestration for AWS Transit Gateway
22
## Formerly known as Serverless Transit Network Orchestrator (STNO)
33

4-
*
5-
*[🚀Solution Landing Page](https://aws.amazon.com/solutions/implementations/network-orchestration-aws-transit-gateway/welcome.html)
4+
**
5+
*[🚀Solution Landing Page](https://aws.amazon.com/solutions/implementations/network-orchestration-aws-transit-gateway)
66
** | *
77
*[🚧Feature request](https://github.com/aws-solutions/serverless-transit-network-orchestrator/issues/new?assignees=&labels=feature-request%2C+enhancement&template=feature_request.md&title=)
88
** | *
@@ -89,7 +89,7 @@ The steps given below can be followed if you are looking to customize the soluti
8989
Clone the repository and make desired code changes.
9090

9191
```
92-
git clone aws-solutions/serverless-transit-network-orchestrator
92+
git clone aws-solutions/network-orchestration-for-aws-transit-gateway
9393
```
9494

9595
_Note: Following steps have been tested under above pre-requisites_

deployment/build-s3-dist.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ for microservices in */ ; do
7272
microservice_name=$(basename $microservices)
7373
cd $lambda_dir/$microservice_name
7474
mkdir -p dist/$microservice_name
75-
rsync -aq $lambda_dir/.venv/lib/python3.9/site-packages/ ./dist/
75+
rsync -aq $lambda_dir/.venv/lib/python3.10/site-packages/ ./dist/
7676
cp -R lib __init__.py index.py ./dist/$microservice_name/
7777
cd dist
7878
zip -rq "$microservice_name.zip" .

source/cognito-trigger/package-lock.json

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

source/lambda/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
aws-lambda-powertools~=2.4.0
1+
aws-lambda-powertools~=2.6.0
22
boto3~=1.26.28
33
certifi~=2022.12.7
44
charset-normalizer~=2.0.12
55
idna~=3.3
66
jmespath~=0.10.0
77
python-dateutil~=2.8.2
8-
requests~=2.27.1
8+
requests~=2.28.1
99
six~=1.16.0
1010
urllib3~=1.26.8
1111
aws-lambda-typing~=2.16.1

source/lambda/testing_requirements.txt

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ black~=22.12.0
44
cffi~=1.15.0
55
cfn-lint~=0.72.0
66
click~=8.0.4
7-
coverage~=6.5.0
7+
coverage~=7.0.5
88
cryptography~=36.0.1
99
docker~=6.0.1
1010
ecdsa~=0.17.0
1111
freezegun~=1.2.2
12-
future~=0.18.2
1312
iniconfig~=1.1.1
1413
isort~=5.10.1
1514
Jinja2~=3.0.3
@@ -24,7 +23,7 @@ lazy-object-proxy~=1.7.1
2423
MarkupSafe~=2.1.0
2524
mccabe~=0.6.1
2625
mock~=4.0.3
27-
moto~=4.0.11
26+
moto~=4.1.0
2827
mypy-extensions~=0.4.3
2928
networkx~=2.6.3
3029
packaging~=21.3
@@ -40,7 +39,7 @@ pyrsistent~=0.18.1
4039
pytest~=7.2.0
4140
pytest-mock~=3.10.0
4241
python-jose~=3.3.0
43-
pytz~=2021.3
42+
pytz~=2022.7.0
4443
PyYAML~=6.0
4544
responses~=0.18.0
4645
rsa~=4.8

source/ui/package-lock.json

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

0 commit comments

Comments
 (0)