axios 1.8.1 → 1.8.2

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.
@@ -228,7 +228,7 @@ export default isHttpAdapterSupported && function httpAdapter(config) {
228
228
  }
229
229
 
230
230
  // Parse url
231
- const fullPath = buildFullPath(config.baseURL, config.url);
231
+ const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
232
232
  const parsed = new URL(fullPath, platform.hasBrowserEnv ? platform.origin : undefined);
233
233
  const protocol = parsed.protocol || supportedProtocols[0];
234
234
 
package/lib/env/data.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.8.1";
1
+ export const VERSION = "1.8.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "axios",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Promise based HTTP client for the browser and node.js",
5
5
  "main": "index.js",
6
6
  "exports": {