Skip to content

Commit abd24a7

Browse files
chore(release): v1.7.4 (#6544)
Co-authored-by: jasonsaayman <[email protected]>
1 parent 6b6b605 commit abd24a7

17 files changed

+35
-22
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.7.4](https://github.com/axios/axios/compare/v1.7.3...v1.7.4) (2024-08-13)
4+
5+
6+
### Bug Fixes
7+
8+
* **sec:** CVE-2024-39338 ([#6539](https://github.com/axios/axios/issues/6539)) ([#6543](https://github.com/axios/axios/issues/6543)) ([6b6b605](https://github.com/axios/axios/commit/6b6b605eaf73852fb2dae033f1e786155959de3a))
9+
* **sec:** disregard protocol-relative URL to remediate SSRF ([#6539](https://github.com/axios/axios/issues/6539)) ([07a661a](https://github.com/axios/axios/commit/07a661a2a6b9092c4aa640dcc7f724ec5e65bdda))
10+
11+
### Contributors to this release
12+
13+
- <img src="https://avatars.githubusercontent.com/u/31389480?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lev Pachmanov](https://github.com/levpachmanov "+47/-11 (#6543 )")
14+
- <img src="https://avatars.githubusercontent.com/u/41283691?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Đỗ Trọng Hải](https://github.com/hainenber "+49/-4 (#6539 )")
15+
316
## [1.7.3](https://github.com/axios/axios/compare/v1.7.2...v1.7.3) (2024-08-01)
417

518

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "axios",
33
"main": "./dist/axios.js",
4-
"version": "1.7.3",
4+
"version": "1.7.4",
55
"homepage": "https://axios-http.com",
66
"authors": [
77
"Matt Zabriskie"

dist/axios.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/browser/axios.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Axios v1.7.3 Copyright (c) 2024 Matt Zabriskie and contributors
1+
// Axios v1.7.4 Copyright (c) 2024 Matt Zabriskie and contributors
22
'use strict';
33

44
function bind(fn, thisArg) {
@@ -3108,7 +3108,7 @@ function dispatchRequest(config) {
31083108
});
31093109
}
31103110

3111-
const VERSION = "1.7.3";
3111+
const VERSION = "1.7.4";
31123112

31133113
const validators$1 = {};
31143114

dist/browser/axios.cjs.map

+1-1
Large diffs are not rendered by default.

dist/esm/axios.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node/axios.cjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Axios v1.7.3 Copyright (c) 2024 Matt Zabriskie and contributors
1+
// Axios v1.7.4 Copyright (c) 2024 Matt Zabriskie and contributors
22
'use strict';
33

44
const FormData$1 = require('form-data');
@@ -2067,7 +2067,7 @@ function buildFullPath(baseURL, requestedURL) {
20672067
return requestedURL;
20682068
}
20692069

2070-
const VERSION = "1.7.3";
2070+
const VERSION = "1.7.4";
20712071

20722072
function parseProtocol(url) {
20732073
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
@@ -2763,7 +2763,7 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
27632763

27642764
// Parse url
27652765
const fullPath = buildFullPath(config.baseURL, config.url);
2766-
const parsed = new URL(fullPath, 'http://localhost');
2766+
const parsed = new URL(fullPath, utils$1.hasBrowserEnv ? platform.origin : undefined);
27672767
const protocol = parsed.protocol || supportedProtocols[0];
27682768

27692769
if (protocol === 'data:') {

dist/node/axios.cjs.map

+1-1
Large diffs are not rendered by default.

lib/env/data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "1.7.3";
1+
export const VERSION = "1.7.4";

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "axios",
3-
"version": "1.7.3",
3+
"version": "1.7.4",
44
"description": "Promise based HTTP client for the browser and node.js",
55
"main": "index.js",
66
"exports": {

0 commit comments

Comments
 (0)