Skip to content

Commit b8268f8

Browse files
Changes for v4.0.12 (#303)
1 parent 3379d73 commit b8268f8

File tree

36 files changed

+1660
-1242
lines changed

36 files changed

+1660
-1242
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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+
## [4.0.12] - 2026-03-19
9+
10+
### Security
11+
12+
- Updated Docker base image (amazonlinux:2023-minimal) to latest digest to incorporate latest OS-level security patches
13+
- Regenerated package-lock.json files to pull in latest dependency resolutions, including:
14+
- Upgraded fast-xml-parser from 5.3.6 to 5.5.6 via npm overrides to address [GHSA-8gc5-j5rx-235r](https://github.com/advisories/GHSA-8gc5-j5rx-235r), [CVE-2026-27942](https://nvd.nist.gov/vuln/detail/CVE-2026-27942), [CVE-2026-25896](https://nvd.nist.gov/vuln/detail/CVE-2026-25896), and [CVE-2026-25128](https://nvd.nist.gov/vuln/detail/CVE-2026-25128)
15+
- Upgraded undici from 7.20.0 to 7.24.4 to address [CVE-2026-22036](https://nvd.nist.gov/vuln/detail/CVE-2026-22036) and [CVE-2026-1525](https://nvd.nist.gov/vuln/detail/CVE-2026-1525)
16+
- Upgraded @aws-sdk/xml-builder to 3.972.11 and @smithy/types to 4.13.1
17+
818
## [4.0.11] - 2026-03-05
919

1020
### Security

NOTICE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,7 @@ p-locate under the MIT license
585585
p-limit under the MIT license
586586
yocto-queue under the MIT license
587587
path-exists under the MIT license
588+
path-expression-matcher under the MIT license
588589
glob-parent under the ISC license
589590
is-glob under the MIT license
590591
is-extglob under the MIT license

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.11
1+
4.0.12

deployment/ecr/distributed-load-testing-on-aws-load-tester/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/amazonlinux/amazonlinux:2023-minimal@sha256:6621917fc09ad8c935aa5ccc32c933c6dec250deafae54af86e154fcd19f5ed0
1+
FROM public.ecr.aws/amazonlinux/amazonlinux:2023-minimal@sha256:0051b1aa8e8023cd02ce41aace90dc05dcc68e9e85e44bb0abe46f25c3b2c962
22

33
RUN dnf upgrade -y --refresh && \
44
dnf install -y python3.11 python3.11-pip java-21-amazon-corretto bc procps jq findutils unzip && \

env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CDK Parameters
2+
TARGET_REGION=us-west-2
3+
MAIN_STACK_NAME=distributed-load-testing-on-aws # from distributed-load-test-on-aws.ts
4+
REGIONAL_STACK_NAME=distributed-load-testing-on-aws-regional # from distributed-load-test-on-aws.ts
5+
6+
# Stack Parameters
7+
ADMIN_NAME=username_no_spaces
8+
ADMIN_EMAIL=email@example.com
9+
10+
# Deployed Stack Parameters
11+
DLT_CONSOLE_BUCKET=change_me_after_deployment

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0062
22
name: distributed-load-testing-on-aws
3-
version: v4.0.11
3+
version: v4.0.12
44
cloudformation_templates:
55
- template: distributed-load-testing-on-aws.template
66
main_template: true

source/api-services/package-lock.json

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

source/api-services/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "api-services",
3-
"version": "4.0.11",
3+
"version": "4.0.12",
44
"description": "REST API micro services",
55
"repository": {
66
"type": "git",
@@ -48,6 +48,7 @@
4848
},
4949
"readme": "./README.md",
5050
"overrides": {
51-
"form-data": "4.0.4"
51+
"form-data": "4.0.4",
52+
"fast-xml-parser": ">=5.5.6"
5253
}
5354
}

source/custom-resource/package-lock.json

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

source/custom-resource/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-resource",
3-
"version": "4.0.11",
3+
"version": "4.0.12",
44
"description": "cfn custom resources for distributed load testing on AWS workflow",
55
"repository": {
66
"type": "git",
@@ -34,6 +34,7 @@
3434
},
3535
"readme": "./README.md",
3636
"overrides": {
37-
"form-data": "4.0.4"
37+
"form-data": "4.0.4",
38+
"fast-xml-parser": ">=5.5.6"
3839
}
3940
}

0 commit comments

Comments
 (0)