Skip to content

Updating axios to 1.8.3 #227

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
cdk.out
coverage
build/
dev/
Expand All @@ -7,9 +8,9 @@ regional-s3-assets/
open-source/
console_new/
**/aws_config.js
deployment/ecr/*.jar
test/
deployment/ecr/**/*.jar
.idea
source/test/

.pnp
.pnp.js
Expand All @@ -24,3 +25,14 @@ yarn-debug.log*
yarn-error.log*
yarm-lock.json

# cypress
screenshots
videos

# solution metrics utils.
source/metrics-utils/*.js
!source/metrics-utils/jest.config.js
source/metrics-utils/*.d.ts
source/metrics-utils/**/*.d.ts
source/metrics-utils/**/*.js
source/metrics-utils/dist/
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [3.3.5] - 2025-03-17

### Security

- Library updates to address [Possible SSRF and Credential Leakage via Absolute URL in axios Requests](https://avd.aquasec.com/nvd/cve-2025-27152)

## [3.3.4] - 2025-02-06

### Security
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.4
3.3.5
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN rm -rf /usr/local/lib/python3.10/dist-packages/aiohttp*
RUN pip install --upgrade aiohttp

# Replacing idna and Flask_Cors with more stable version to resolve CVE-2024-3651 and CVE-2024-6221
RUN pip install --upgrade idna Flask_Cors
RUN pip install --upgrade idna Flask_Cors==5.0.0
RUN rm -rf /root/.bzt/python-packages/3.10.12/idna* /root/.bzt/python-packages/3.10.12/Flask_Cors*
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/

Expand Down
Loading