Skip to content

Commit 3293174

Browse files
committed
Updating axios to 1.8.3
1 parent f93bfa9 commit 3293174

File tree

34 files changed

+1239
-2213
lines changed

34 files changed

+1239
-2213
lines changed

.gitignore

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
cdk.out
23
coverage
34
build/
45
dev/
@@ -7,9 +8,9 @@ regional-s3-assets/
78
open-source/
89
console_new/
910
**/aws_config.js
10-
deployment/ecr/*.jar
11-
test/
11+
deployment/ecr/**/*.jar
1212
.idea
13+
source/test/
1314

1415
.pnp
1516
.pnp.js
@@ -24,3 +25,14 @@ yarn-debug.log*
2425
yarn-error.log*
2526
yarm-lock.json
2627

28+
# cypress
29+
screenshots
30+
videos
31+
32+
# solution metrics utils.
33+
source/metrics-utils/*.js
34+
!source/metrics-utils/jest.config.js
35+
source/metrics-utils/*.d.ts
36+
source/metrics-utils/**/*.d.ts
37+
source/metrics-utils/**/*.js
38+
source/metrics-utils/dist/

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+
9+
## [3.3.5] - 2025-03-17
10+
11+
### Security
12+
13+
- Library updates to address [Possible SSRF and Credential Leakage via Absolute URL in axios Requests](https://avd.aquasec.com/nvd/cve-2025-27152)
14+
815
## [3.3.4] - 2025-02-06
916

1017
### Security

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.4
1+
3.3.5

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ RUN rm -rf /usr/local/lib/python3.10/dist-packages/aiohttp*
5454
RUN pip install --upgrade aiohttp
5555

5656
# Replacing idna and Flask_Cors with more stable version to resolve CVE-2024-3651 and CVE-2024-6221
57-
RUN pip install --upgrade idna Flask_Cors
57+
RUN pip install --upgrade idna Flask_Cors==5.0.0
5858
RUN rm -rf /root/.bzt/python-packages/3.10.12/idna* /root/.bzt/python-packages/3.10.12/Flask_Cors*
5959
RUN cp -r /usr/local/lib/python3.10/dist-packages/idna* /usr/local/lib/python3.10/dist-packages/Flask_Cors* /root/.bzt/python-packages/3.10.12/
6060

0 commit comments

Comments
 (0)