Skip to content

Commit 9464323

Browse files
authored
release v2.1.5 (#65)
1 parent 34998cc commit 9464323

File tree

62 files changed

+5965
-5836
lines changed

Some content is hidden

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

62 files changed

+5965
-5836
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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+
## [2.1.5] - 2025-06-25
9+
10+
### Fixed
11+
12+
- upgraded packages to resolve CVEs.
13+
- Fixed typo in VPC backstage deploy yaml
14+
815
## [2.1.4] - 2025-06-03
916

1017
### Fixed

Pipfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ mypy = "*"
1414
pre-commit = "*"
1515
pycln = "*"
1616
pylint = "*"
17-
requests = ">=2.32.0"
17+
requests = ">=2.32.4"
1818
setuptools = ">=78.1.1"
1919
types-boto3 = ">=1.37.0"
2020
types-pyyaml = "*"
2121
types-python-dateutil = "*"
22-
types-requests = ">=2.32.0"
22+
types-requests = ">=2.32.4"
2323
types-setuptools = "*"
24-
urllib3 = ">=2.2.2"
24+
urllib3 = ">=2.5.0"
2525
wheel = "*"
2626

2727
[requires]

Pipfile.lock

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

makefiles/common_config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export AWS_REGION ?= ${DEFAULTS.AWS_REGION}
1515
# ========================================================
1616
export SOLUTION_NAME ?= connected-mobility-solution-on-aws
1717
export SOLUTION_DESCRIPTION ?= Accelerate development and deployment of connected vehicle assets with purpose-built, deployment-ready accelerators, and an Automotive Cloud Developer Portal
18-
export SOLUTION_VERSION ?= v2.1.4
18+
export SOLUTION_VERSION ?= v2.1.5
1919
export SOLUTION_AUTHOR = AWS Industrial Solutions Team
2020
export SOLUTION_ID = SO0241
2121
# Path is relative to this file's location, moving this file requires updating this path.

source/lib/Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ syrupy = "*"
2727
toml = "*"
2828
types-boto3 = ">=1.37.0"
2929
types-pyyaml = "*"
30-
types-requests = ">=2.32.0"
30+
types-requests = ">=2.32.4"
3131
types-setuptools = "*"
3232
types-urllib3 = "*"
3333
types-toml = "*"
3434
vistir = "==0.6.1" # Necessary for resolving a `vistir` version conflict with `pipenv-setup`
35-
urllib3 = ">=2.2.2"
35+
urllib3 = ">=2.5.0"
3636
wheel = "*"
3737
wrapt = "*"
3838

source/lib/Pipfile.lock

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

source/lib/cms_common/constructs/tests/mock_lock_files/populated/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "pypi"
66
[packages]
77
aws-lambda-powertools = {extras=["tracer", "validation"], version=">=3.7.0"}
88
pyjwt = {extras=["crypto"], version="*"}
9-
requests = ">=2.32.0"
9+
requests = ">=2.32.4"
1010
cms_common = {path = "./../../../../../../lib", editable = true}
1111

1212
[dev-packages]

source/lib/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def finalize_options(self) -> None:
5252
"toml>=0.10.2",
5353
],
5454
name="cms_common",
55-
version="2.1.4",
55+
version="2.1.5",
5656
description="Common library used in CMS modules",
5757
packages=find_packages(
5858
exclude=[

source/modules/acdp/Pipfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "pypi"
55

66
[packages]
77
aws-lambda-powertools = {extras=["tracer", "validation"], version=">=3.7.0"}
8-
requests = ">=2.32.0"
8+
requests = ">=2.32.4"
99
pyyaml = "*"
1010

1111
[dev-packages]
@@ -33,11 +33,11 @@ toml = "*"
3333
types-boto3 = ">=1.37.0"
3434
types-python-dateutil = "*"
3535
types-pyyaml = "*"
36-
types-requests = ">=2.32.0"
36+
types-requests = ">=2.32.4"
3737
types-setuptools = "*"
3838
types-urllib3 = "*"
3939
types-toml = "*"
40-
urllib3 = ">=2.2.2"
40+
urllib3 = ">=2.5.0"
4141
wheel = "*"
4242
wrapt = "*"
4343

0 commit comments

Comments
 (0)