axios 1.8.3 → 1.8.4

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.8.4](https://github.com/axios/axios/compare/v1.8.3...v1.8.4) (2025-03-19)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **buildFullPath:** handle `allowAbsoluteUrls: false` without `baseURL` ([#6833](https://github.com/axios/axios/issues/6833)) ([f10c2e0](https://github.com/axios/axios/commit/f10c2e0de7fde0051f848609a29c2906d0caa1d9))
9
+
10
+ ### Contributors to this release
11
+
12
+ - <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 "+5/-1 (#6833 )")
13
+
3
14
  ## [1.8.3](https://github.com/axios/axios/compare/v1.8.2...v1.8.3) (2025-03-10)
4
15
 
5
16
 
package/dist/axios.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Axios v1.8.3 Copyright (c) 2025 Matt Zabriskie and contributors */
1
+ /*! Axios v1.8.4 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) :
@@ -2703,7 +2703,7 @@
2703
2703
  */
2704
2704
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
2705
2705
  var isRelativeUrl = !isAbsoluteURL(requestedURL);
2706
- if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
2706
+ if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
2707
2707
  return combineURLs(baseURL, requestedURL);
2708
2708
  }
2709
2709
  return requestedURL;
@@ -3658,7 +3658,7 @@
3658
3658
  });
3659
3659
  }
3660
3660
 
3661
- var VERSION = "1.8.3";
3661
+ var VERSION = "1.8.4";
3662
3662
 
3663
3663
  var validators$1 = {};
3664
3664