axios 1.8.2 → 1.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
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
+
3
17
  ## [1.8.2](https://github.com/axios/axios/compare/v1.8.1...v1.8.2) (2025-03-07)
4
18
 
5
19
 
package/README.md CHANGED
@@ -138,6 +138,12 @@ Using pnpm:
138
138
  $ pnpm add axios
139
139
  ```
140
140
 
141
+ Using bun:
142
+
143
+ ```bash
144
+ $ bun add axios
145
+ ```
146
+
141
147
  Once the package is installed, you can import the library using `import` or `require` approach:
142
148
 
143
149
  ```js
package/dist/axios.js CHANGED
@@ -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 */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
4
4
  typeof define === 'function' && define.amd ? define(factory) :
@@ -2822,7 +2822,7 @@
2822
2822
  headers = newConfig.headers,
2823
2823
  auth = newConfig.auth;
2824
2824
  newConfig.headers = headers = AxiosHeaders$1.from(headers);
2825
- newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
2825
+ newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
2826
2826
 
2827
2827
  // HTTP basic authentication
2828
2828
  if (auth) {
@@ -3658,7 +3658,7 @@
3658
3658
  });
3659
3659
  }
3660
3660
 
3661
- var VERSION = "1.8.2";
3661
+ var VERSION = "1.8.3";
3662
3662
 
3663
3663
  var validators$1 = {};
3664
3664