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.
@@ -15,7 +15,7 @@ import combineURLs from '../helpers/combineURLs.js';
15
15
  */
16
16
  export default function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
17
17
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
18
- if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
18
+ if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
19
19
  return combineURLs(baseURL, requestedURL);
20
20
  }
21
21
  return requestedURL;
package/lib/env/data.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.8.3";
1
+ export const VERSION = "1.8.4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "axios",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "Promise based HTTP client for the browser and node.js",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -167,10 +167,10 @@
167
167
  "Justin Beckwith (https://github.com/JustinBeckwith)",
168
168
  "Martti Laine (https://github.com/codeclown)",
169
169
  "Xianming Zhong (https://github.com/chinesedfan)",
170
- "Rikki Gibson (https://github.com/RikkiGibson)",
171
170
  "Remco Haszing (https://github.com/remcohaszing)",
172
- "Yasu Flores (https://github.com/yasuf)",
173
- "Ben Carp (https://github.com/carpben)"
171
+ "Rikki Gibson (https://github.com/RikkiGibson)",
172
+ "Ben Carp (https://github.com/carpben)",
173
+ "Yasu Flores (https://github.com/yasuf)"
174
174
  ],
175
175
  "sideEffects": false,
176
176
  "release-it": {