8000 chore(release): v1.8.3 (#6819) · axios/axios@39ec206 · GitHub
[go: up one dir, main page]

Skip to content

Commit 39ec206

Browse files
chore(release): v1.8.3 (#6819)
Co-authored-by: jasonsaayman <4814473+jasonsaayman@users.noreply.github.com>
1 parent 10fa70e commit 39ec206

17 files changed

+41
-27
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.8.3](https://github.com/axios/axios/compare/v1.8.2...v1.8.3) (2025-03-10)
4+
5+
6+
### Bug Fixes
7+
8+
* add missing type for allowAbsoluteUrls ([#6818](https://github.com/axios/axios/issues/6818)) ([10fa70e](https://github.com/axios/axios/commit/10fa70ef14fe39558b15a179f0e82f5f5e5d11b2))
9+
* **xhr/fetch:** pass `allowAbsoluteUrls` to `buildFullPath` in `xhr` and `fetch` adapters ([#6814](https://github.com/axios/axios/issues/6814)) ([ec159e5](https://github.com/axios/axios/commit/ec159e507bdf08c04ba1a10fe7710094e9e50ec9))
10+
11+
### Contributors to this release
12+
13+
- <img src="https://avatars.githubusercontent.com/u/3238291?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ashcon Partovi](https://github.com/Electroid "+6/-0 (#6811 )")
14+
- <img src="https://avatars.githubusercontent.com/u/28559054?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [StefanBRas](https://github.com/StefanBRas "+4/-0 (#6818 )")
15+
- <img src="https://avatars.githubusercontent.com/u/8029107?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Marc Hassan](https://github.com/mhassan1 "+2/-2 (#6814 )")
16+
317
## [1.8.2](https://github.com/axios/axios/compare/v1.8.1...v1.8.2) (2025-03-07)
418

519

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.8.2",
4+
"version": "1.8.3",
55
"homepage": "https://axios-http.com",
66
"authors": [
77
"Matt Zabriskie"

dist/axios.js

+3-3
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

+2-2
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

+3-3
628C
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Axios v1.8.2 Copyright (c) 2025 Matt Zabriskie and contributors */
1+
/*! Axios v1.8.3 Copyright (c) 2025 Matt Zabriskie and contributors */
22
'use strict';
33

44
function bind(fn, thisArg) {
@@ -2343,7 +2343,7 @@ var resolveConfig = (config) => {
23432343

23442344
newConfig.headers = headers = AxiosHeaders$1.from(headers);
23452345

2346-
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
2346+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
23472347

23482348
// HTTP basic authentication
23492349
if (auth) {
@@ -3068,7 +3068,7 @@ function dispatchRequest(config) {
30683068
});
30693069
}
30703070

3071-
const VERSION = "1.8.2";
3071+
const VERSION = "1.8.3";
30723072

30733073
const validators$1 = {};
30743074

dist/browser/axios.cjs.map

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

dist/esm/axios.js

+3-3
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

+2-2
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.8.2 Copyright (c) 2025 Matt Zabriskie and contributors */
1+
/*! Axios v1.8.3 Copyright (c) 2025 Matt Zabriskie and contributors */
22
'use strict';
33

44
const FormData$1 = require('form-data');
@@ -2084,7 +2084,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
20842084
return requestedURL;
20852085
}
20862086

2087-
const VERSION = "1.8.2";
2087+
const VERSION = "1.8.3";
20882088

20892089
function parseProtocol(url) {
20902090
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
@@ -3402,7 +3402,7 @@ const resolveConfig = (config) => {
34023402

34033403
newConfig.headers = headers = AxiosHeaders$1.from(headers);
34043404

3405-
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
3405+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
34063406

34073407
// HTTP basic authentication
34083408
if (auth) {

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.8.2";
1+
export const VERSION = "1.8.3";

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.8.2",
3+
"version": "1.8.3",
44
"description": "Promise based HTTP client for the browser and node.js",
55
"main": "index.js",
66
"exports": {

0 commit comments

Comments
 (0)
0