axios 0.27.0 → 0.27.1
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 +7 -1
- package/dist/axios.js +2169 -1468
- package/dist/axios.map +1 -1
- package/dist/axios.min.js +11 -3
- package/dist/axios.min.map +1 -1
- package/lib/adapters/http.js +4 -2
- package/lib/adapters/xhr.js +5 -9
- package/lib/env/data.js +1 -1
- package/lib/utils.js +0 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
### 0.27.
|
3
|
+
### 0.27.1 (April 25, 2022)
|
4
|
+
|
5
|
+
Fixes and Functionality:
|
6
|
+
- Removed import of url module in browser build due to huge size overhead and builds being broken ([#4594](https://github.com/axios/axios/pull/4594))
|
7
|
+
- Bumped follow-redirects to ^1.14.9 ([#4615](https://github.com/axios/axios/pull/4615))
|
8
|
+
|
9
|
+
### 0.27.0 (April 25, 2022)
|
4
10
|
|
5
11
|
Breaking changes:
|
6
12
|
- New toFormData helper function that allows the implementor to pass an object and allow axios to convert it to FormData ([#3757](https://github.com/axios/axios/pull/3757))
|