Skip to content

Commit 6e7ff44

Browse files
authored
Update to version v4.1.3 (#302)
1 parent e9a4af1 commit 6e7ff44

18 files changed

Lines changed: 872 additions & 968 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [4.1.3] - 2026-04-09
8+
9+
### Security
10+
11+
- Updated cryptography to version 46.0.7 to address [CVE-2026-26007](https://avd.aquasec.com/nvd/2026/cve-2026-26007/), [CVE-2026-34073](https://nvd.nist.gov/vuln/detail/CVE-2026-34073), and [CVE-2026-39892](https://avd.aquasec.com/nvd/cve-2026-39892)
12+
- Updated werkzeug to version 3.1.6 to address [CVE-2026-27199](https://avd.aquasec.com/nvd/cve-2026-27199)
13+
- Updated minimatch to version 3.1.5 to address [CVE-2026-26996](https://avd.aquasec.com/nvd/cve-2026-26996)
14+
- Updated aws-cdk-lib to version 2.248.0 to address [CVE-2025-69873](https://avd.aquasec.com/nvd/cve-2025-69873), [CVE-2026-27903](https://nvd.nist.gov/vuln/detail/CVE-2026-27903), [CVE-2026-33532](https://nvd.nist.gov/vuln/detail/CVE-2026-33532), and [CVE-2026-33750](https://nvd.nist.gov/vuln/detail/CVE-2026-33750)
15+
- Updated flatted to version 3.4.2 to address [CVE-2026-32141](https://avd.aquasec.com/nvd/cve-2026-32141) and [CVE-2026-33228](https://nvd.nist.gov/vuln/detail/CVE-2026-33228)
16+
- Updated picomatch to versions 2.3.2 and 4.0.4 to address [CVE-2026-33671](https://nvd.nist.gov/vuln/detail/CVE-2026-33671) and [CVE-2026-33672](https://nvd.nist.gov/vuln/detail/CVE-2026-33672)
17+
- Updated brace-expansion to versions 1.1.13 and 5.0.5 to address [CVE-2026-33750](https://nvd.nist.gov/vuln/detail/CVE-2026-33750)
18+
- Updated requests to version 2.33.1 to address insecure temp file reuse in extract_zipped_paths()
19+
720
## [4.1.2] - 2026-01-14
821

922
### Security
1023

11-
- Updated urllib3 to version 2.6.3 to address [CVE-2026-21441 ](https://avd.aquasec.com/nvd/cve-2026-21441)
24+
- Updated urllib3 to version 2.6.3 to address [CVE-2026-21441](https://avd.aquasec.com/nvd/cve-2026-21441)
1225
- Updated werkzeug to version 3.1.5 to address [CVE-2026-21860](https://avd.aquasec.com/nvd/cve-2026-21860)
1326

1427
## [4.1.1] - 2025-12-29

NOTICE.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,15 +425,19 @@ xml under the MIT license.
425425
prettier under the MIT license.
426426
ts-jest under the MIT license.
427427
bs-logger under the MIT license.
428-
ejs under the Apache-2.0 license.
429-
jake under the Apache-2.0 license.
430-
async under the MIT license.
431-
filelist under the Apache-2.0 license.
428+
handlebars under the MIT license.
429+
minimist under the MIT license.
430+
neo-async under the MIT license.
431+
wordwrap under the MIT license.
432+
uglify-js under the BSD-2-Clause license.
432433
lodash.memoize under the MIT license.
433434
certifi under the MPL-2.0 license.
434435
charset-normalizer under the MIT license.
435436
idna under the 0BSD license.
436437
requests under the Apache-2.0 license.
438+
@aws-cdk/cloud-assembly-api under the Apache-2.0 license.
439+
tinyglobby under the ISC license.
440+
fdir under the MIT license.
437441

438442
********************
439443
OPEN SOURCE LICENSES
@@ -448,4 +452,5 @@ BSD-3-Clause - https://spdx.org/licenses/BSD-3-Clause.html
448452
CC-BY-4.0 - https://spdx.org/licenses/CC-BY-4.0.html
449453
ISC - https://spdx.org/licenses/ISC.html
450454
MIT - https://spdx.org/licenses/MIT.html
455+
BlueOak-1.0.0 - https://spdx.org/licenses/BlueOak-1.0.0.html
451456
Python-2.0 - https://spdx.org/licenses/Python-2.0.html

source/custom_resource/poetry.lock

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

source/custom_resource/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ aws-lambda-powertools = "~3.2.0"
99
jinja2 = "^3.1.6"
1010
aws-xray-sdk = "^2.14.0"
1111
urllib3 = "^2.6.3"
12+
cryptography = ">=46.0.7"
1213

1314

1415
[tool.poetry.group.dev.dependencies]
1516
moto = "^4.1.4"
1617
pytest = "^7.2.2"
1718
pytest-mock = "^3.12.0"
18-
pytest-runner = "^6.0.0"
1919
pytest-cov = "^4.0.0"
2020
pytest-env = "^0.8.1"
2121
boto3 = "^1.37.13"

source/helper/poetry.lock

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

source/helper/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ aws-lambda-powertools = "~3.2.0"
99
jinja2 = "^3.1.6"
1010
aws-xray-sdk = "^2.14.0"
1111
urllib3 = "^2.6.3"
12+
cryptography = ">=46.0.7"
1213

1314

1415

1516
[tool.poetry.group.dev.dependencies]
1617
moto = "^4.1.4"
1718
pytest = "^7.2.2"
1819
pytest-mock = "^3.12.0"
19-
pytest-runner = "^6.0.0"
2020
pytest-cov = "^4.0.0"
2121
pytest-env = "^0.8.1"
2222
boto3 = "^1.37.13"

0 commit comments

Comments
 (0)