axios 0.27.0 → 1.0.0-alpha.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +124 -927
  2. package/LICENSE +4 -16
  3. package/README.md +257 -69
  4. package/SECURITY.md +3 -3
  5. package/UPGRADE_GUIDE.md +1 -166
  6. package/bin/ssl_hotfix.js +22 -0
  7. package/dist/axios.js +1956 -3592
  8. package/dist/axios.js.map +1 -0
  9. package/dist/axios.min.js +2 -4
  10. package/dist/axios.min.js.map +1 -0
  11. package/dist/esm/axios.js +2336 -0
  12. package/dist/esm/axios.js.map +1 -0
  13. package/dist/esm/axios.min.js +2 -0
  14. package/dist/esm/axios.min.js.map +1 -0
  15. package/index.d.ts +96 -18
  16. package/lib/adapters/http.js +154 -113
  17. package/lib/adapters/xhr.js +12 -11
  18. package/lib/axios.js +5 -1
  19. package/lib/cancel/CancelToken.js +4 -5
  20. package/lib/cancel/CanceledError.js +4 -2
  21. package/lib/core/Axios.js +2 -1
  22. package/lib/core/AxiosError.js +12 -1
  23. package/lib/core/InterceptorManager.js +9 -0
  24. package/lib/core/dispatchRequest.js +7 -0
  25. package/lib/core/transformData.js +3 -2
  26. package/lib/defaults/index.js +45 -13
  27. package/lib/{defaults/env → env/classes}/FormData.js +0 -0
  28. package/lib/env/data.js +1 -1
  29. package/lib/helpers/AxiosURLSearchParams.js +42 -0
  30. package/lib/helpers/bind.js +1 -5
  31. package/lib/helpers/buildURL.js +14 -37
  32. package/lib/helpers/formDataToJSON.js +71 -0
  33. package/lib/helpers/fromDataURI.js +51 -0
  34. package/lib/helpers/isURLSameOrigin.js +12 -12
  35. package/lib/helpers/parseHeaders.js +2 -2
  36. package/lib/helpers/parseProtocol.js +6 -0
  37. package/lib/helpers/toFormData.js +141 -34
  38. package/lib/helpers/toURLEncodedForm.js +18 -0
  39. package/lib/platform/browser/classes/FormData.js +3 -0
  40. package/lib/platform/browser/classes/URLSearchParams.js +5 -0
  41. package/lib/platform/browser/index.js +11 -0
  42. package/lib/platform/index.js +3 -0
  43. package/lib/platform/node/classes/FormData.js +3 -0
  44. package/lib/platform/node/classes/URLSearchParams.js +5 -0
  45. package/lib/platform/node/index.js +11 -0
  46. package/lib/utils.js +57 -34
  47. package/package.json +18 -8
  48. package/rollup.config.js +60 -0
  49. package/dist/axios.map +0 -1
  50. package/dist/axios.min.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,930 +1,127 @@
1
1
  # Changelog
2
2
 
3
- ### 0.27.0 (April 19, 2022)
4
-
5
- Breaking changes:
6
- - 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))
7
- - Removed functionality that removed the the `Content-Type` request header when passing FormData ([#3785](https://github.com/axios/axios/pull/3785))
8
- - **(*)** Refactored error handling implementing AxiosError as a constructor, this is a large change to error handling on the whole ([#3645](https://github.com/axios/axios/pull/3645))
9
- - Separated responsibility for FormData instantiation between `transformRequest` and `toFormData` ([#4470](https://github.com/axios/axios/pull/4470))
10
- - **(*)** Improved and fixed multiple issues with FormData support ([#4448](https://github.com/axios/axios/pull/4448))
11
-
12
- QOL and DevX improvements:
13
- - Added a multipart/form-data testing playground allowing contributors to debug changes easily ([#4465](https://github.com/axios/axios/pull/4465))
14
-
15
- Fixes and Functionality:
16
- - Refactored project file structure to avoid circular imports ([#4515](https://github.com/axios/axios/pull/4516)) & ([#4516](https://github.com/axios/axios/pull/4516))
17
- - Bumped follow-redirects to ^1.14.9 ([#4562](https://github.com/axios/axios/pull/4562))
18
-
19
- Internal and Tests:
20
- - Updated dev dependencies to latest version
21
-
22
- Documentation:
23
- - Fixing incorrect link in changelog ([#4551](https://github.com/axios/axios/pull/4551))
24
-
25
- Notes:
26
- - **(*)** Please read these pull requests before updating, these changes are very impactful and far reaching.
27
-
28
- ### 0.26.1 (March 9, 2022)
29
-
30
- Fixes and Functionality:
31
- - Refactored project file structure to avoid circular imports ([#4220](https://github.com/axios/axios/pull/4220))
32
-
33
- ### 0.26.0 (February 13, 2022)
34
-
35
- Fixes and Functionality:
36
- - Fixed The timeoutErrorMessage property in config not work with Node.js ([#3581](https://github.com/axios/axios/pull/3581))
37
- - Added errors to be displayed when the query parsing process itself fails ([#3961](https://github.com/axios/axios/pull/3961))
38
- - Fix/remove url required ([#4426](https://github.com/axios/axios/pull/4426))
39
- - Update follow-redirects dependency due to Vulnerability ([#4462](https://github.com/axios/axios/pull/4462))
40
- - Bump karma from 6.3.11 to 6.3.14 ([#4461](https://github.com/axios/axios/pull/4461))
41
- - Bump follow-redirects from 1.14.7 to 1.14.8 ([#4473](https://github.com/axios/axios/pull/4473))
42
-
43
- ### 0.25.0 (January 18, 2022)
44
-
45
- Breaking changes:
46
- - Fixing maxBodyLength enforcement ([#3786](https://github.com/axios/axios/pull/3786))
47
- - Don't rely on strict mode behavior for arguments ([#3470](https://github.com/axios/axios/pull/3470))
48
- - Adding error handling when missing url ([#3791](https://github.com/axios/axios/pull/3791))
49
- - Update isAbsoluteURL.js removing escaping of non-special characters ([#3809](https://github.com/axios/axios/pull/3809))
50
- - Use native Array.isArray() in utils.js ([#3836](https://github.com/axios/axios/pull/3836))
51
- - Adding error handling inside stream end callback ([#3967](https://github.com/axios/axios/pull/3967))
52
-
53
- Fixes and Functionality:
54
- - Added aborted even handler ([#3916](https://github.com/axios/axios/pull/3916))
55
- - Header types expanded allowing `boolean` and `number` types ([#4144](https://github.com/axios/axios/pull/4144))
56
- - Fix cancel signature allowing cancel message to be `undefined` ([#3153](https://github.com/axios/axios/pull/3153))
57
- - Updated type checks to be formulated better ([#3342](https://github.com/axios/axios/pull/3342))
58
- - Avoid unnecessary buffer allocations ([#3321](https://github.com/axios/axios/pull/3321))
59
- - Adding a socket handler to keep TCP connection live when processing long living requests ([#3422](https://github.com/axios/axios/pull/3422))
60
- - Added toFormData helper function ([#3757](https://github.com/axios/axios/pull/3757))
61
- - Adding responseEncoding prop type in AxiosRequestConfig ([#3918](https://github.com/axios/axios/pull/3918))
62
-
63
- Internal and Tests:
64
- - Adding axios-test-instance to ecosystem ([#3496](https://github.com/axios/axios/pull/3496))
65
- - Optimize the logic of isAxiosError ([#3546](https://github.com/axios/axios/pull/3546))
66
- - Add tests and documentation to display how multiple inceptors work ([#3564](https://github.com/axios/axios/pull/3564))
67
- - Updating follow-redirects to version 1.14.7 ([#4379](https://github.com/axios/axios/pull/4379))
68
-
69
- Documentation:
70
- - Fixing changelog to show correct pull request ([#4219](https://github.com/axios/axios/pull/4219))
71
- - Update upgrade guide for https proxy setting ([#3604](https://github.com/axios/axios/pull/3604))
72
-
73
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
74
-
75
- - [Jay](mailto:jasonsaayman@gmail.com)
76
- - [Rijk van Zanten](https://github.com/rijkvanzanten)
77
- - [Kohta Ito](https://github.com/koh110)
78
- - [Brandon Faulkner](https://github.com/bfaulk96)
79
- - [Stefano Magni](https://github.com/NoriSte)
80
- - [enofan](https://github.com/fanguangyi)
81
- - [Andrey Pechkurov](https://github.com/puzpuzpuz)
82
- - [Doowonee](https://github.com/doowonee)
83
- - [Emil Broman](https://github.com/emilbroman-eqt)
84
- - [Remco Haszing](https://github.com/remcohaszing)
85
- - [Black-Hole](https://github.com/BlackHole1)
86
- - [Wolfram Kriesing](https://github.com/wolframkriesing)
87
- - [Andrew Ovens](https://github.com/repl-andrew-ovens)
88
- - [Paulo Renato](https://github.com/PauloRSF)
89
- - [Ben Carp](https://github.com/carpben)
90
- - [Hirotaka Tagawa](https://github.com/wafuwafu13)
91
- - [狼族小狈](https://github.com/lzxb)
92
- - [C. Lewis](https://github.com/ctjlewis)
93
- - [Felipe Carvalho](https://github.com/FCarvalhoVII)
94
- - [Daniel](https://github.com/djs113)
95
- - [Gustavo Sales](https://github.com/gussalesdev)
96
-
97
- ### 0.24.0 (October 25, 2021)
98
-
99
- Breaking changes:
100
- - Revert: change type of AxiosResponse to any, please read lengthy discussion here: ([#4141](https://github.com/axios/axios/issues/4141)) pull request: ([#4186](https://github.com/axios/axios/pull/4186))
101
-
102
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
103
-
104
- - [Jay](mailto:jasonsaayman@gmail.com)
105
- - [Rodry](https://github.com/ImRodry)
106
- - [Remco Haszing](https://github.com/remcohaszing)
107
- - [Isaiah Thomason](https://github.com/ITenthusiasm)
108
-
109
- ### 0.23.0 (October 12, 2021)
110
-
111
- Breaking changes:
112
- - Distinguish request and response data types ([#4116](https://github.com/axios/axios/pull/4116))
113
- - Change never type to unknown ([#4142](https://github.com/axios/axios/pull/4142))
114
- - Fixed TransitionalOptions typings ([#4147](https://github.com/axios/axios/pull/4147))
115
-
116
- Fixes and Functionality:
117
- - Adding globalObject: 'this' to webpack config ([#3176](https://github.com/axios/axios/pull/3176))
118
- - Adding insecureHTTPParser type to AxiosRequestConfig ([#4066](https://github.com/axios/axios/pull/4066))
119
- - Fix missing semicolon in typings ([#4115](https://github.com/axios/axios/pull/4115))
120
- - Fix response headers types ([#4136](https://github.com/axios/axios/pull/4136))
121
-
122
- Internal and Tests:
123
- - Improve timeout error when timeout is browser default ([#3209](https://github.com/axios/axios/pull/3209))
124
- - Fix node version on CI ([#4069](https://github.com/axios/axios/pull/4069))
125
- - Added testing to TypeScript portion of project ([#4140](https://github.com/axios/axios/pull/4140))
126
-
127
- Documentation:
128
- - Rename Angular to AngularJS ([#4114](https://github.com/axios/axios/pull/4114))
129
-
130
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
131
-
132
- - [Jay](mailto:jasonsaayman@gmail.com)
133
- - [Evan-Finkelstein](https://github.com/Evan-Finkelstein)
134
- - [Paweł Szymański](https://github.com/Jezorko)
135
- - [Dobes Vandermeer](https://github.com/dobesv)
136
- - [Claas Augner](https://github.com/caugner)
137
- - [Remco Haszing](https://github.com/remcohaszing)
138
- - [Evgeniy](https://github.com/egmen)
139
- - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
140
-
141
- ### 0.22.0 (October 01, 2021)
142
-
143
- Fixes and Functionality:
144
- - Caseless header comparing in HTTP adapter ([#2880](https://github.com/axios/axios/pull/2880))
145
- - Avoid package.json import fixing issues and warnings related to this ([#4041](https://github.com/axios/axios/pull/4041)), ([#4065](https://github.com/axios/axios/pull/4065))
146
- - Fixed cancelToken leakage and added AbortController support ([#3305](https://github.com/axios/axios/pull/3305))
147
- - Updating CI to run on release branches
148
- - Bump follow redirects version
149
- - Fixed default transitional config for custom Axios instance; ([#4052](https://github.com/axios/axios/pull/4052))
150
-
151
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
152
-
153
- - [Jay](mailto:jasonsaayman@gmail.com)
154
- - [Matt R. Wilson](https://github.com/mastermatt)
155
- - [Xianming Zhong](https://github.com/chinesedfan)
156
- - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
157
-
158
- ### 0.21.4 (September 6, 2021)
159
-
160
- Fixes and Functionality:
161
- - Fixing JSON transform when data is stringified. Providing backward compatibility and complying to the JSON RFC standard ([#4020](https://github.com/axios/axios/pull/4020))
162
-
163
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
164
-
165
- - [Jay](mailto:jasonsaayman@gmail.com)
166
- - [Guillaume Fortaine](https://github.com/gfortaine)
167
- - [Yusuke Kawasaki](https://github.com/kawanet)
3
+ ## [1.0.0] - 2022-05-30
4
+
5
+ ### Added
6
+
7
+ - Added stack trace to AxiosError [#4624](https://github.com/axios/axios/pull/4624)
8
+ - Add AxiosError to AxiosStatic [#4654](https://github.com/axios/axios/pull/4654)
9
+ - Replaced Rollup as our build runner [#4596](https://github.com/axios/axios/pull/4596)
10
+ - Added generic TS types for the exposed toFormData helper [#4668](https://github.com/axios/axios/pull/4668)
11
+ - Added listen callback function [#4096](https://github.com/axios/axios/pull/4096)
12
+ - Added instructions for installing using PNPM [#4207](https://github.com/axios/axios/pull/4207)
13
+ - Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill [#4229](https://github.com/axios/axios/pull/4229)
14
+ - Added axios-url-template in ECOSYSTEM.md [#4238](https://github.com/axios/axios/pull/4238)
15
+ - Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an axios instance [#4248](https://github.com/axios/axios/pull/4248)
16
+ - Added react hook plugin [#4319](https://github.com/axios/axios/pull/4319)
17
+ - Adding HTTP status code for transformResponse [#4580](https://github.com/axios/axios/pull/4580)
18
+ - Added blob to the list of protocols supported by the browser [#4678](https://github.com/axios/axios/pull/4678)
19
+ - Resolving proxy from env on redirect [#4436](https://github.com/axios/axios/pull/4436)
20
+ - Added enhanced toFormData implementation with additional options [4704](https://github.com/axios/axios/pull/4704)
21
+ - Adding Canceler parameters config and request [#4711](https://github.com/axios/axios/pull/4711)
22
+ - Added automatic payload serialization to application/x-www-form-urlencoded [#4714](https://github.com/axios/axios/pull/4714)
23
+ - Added the ability for webpack users to overwrite built-ins [#4715](https://github.com/axios/axios/pull/4715)
24
+ - Added string[] to AxiosRequestHeaders type [#4322](https://github.com/axios/axios/pull/4322)
25
+ - Added the ability for the url-encoded-form serializer to respect the formSerializer config [#4721](https://github.com/axios/axios/pull/4721)
26
+ - Added isCancel type assert [#4293](https://github.com/axios/axios/pull/4293)
27
+ - Added data URL support for node.js [#4725](https://github.com/axios/axios/pull/4725)
28
+ - Adding types for progress event callbacks [#4675](https://github.com/axios/axios/pull/4675)
29
+ - URL params serializer [#4734](https://github.com/axios/axios/pull/4734)
30
+ - Added axios.formToJSON method [#4735](https://github.com/axios/axios/pull/4735)
31
+
32
+ ### Changed
33
+
34
+ - Updated AxiosError.config to be optional in the type definition [#4665](https://github.com/axios/axios/pull/4665)
35
+ - Updated README emphasizing the URLSearchParam built-in interface over other solutions [#4590](https://github.com/axios/axios/pull/4590)
36
+ - Include request and config when creating a CanceledError instance [#4659](https://github.com/axios/axios/pull/4659)
37
+ - Changed func-names eslint rule to as-needed [#4492](https://github.com/axios/axios/pull/4492)
38
+ - Replacing deprecated substr() with slice() as substr() is deprecated [#4468](https://github.com/axios/axios/pull/4468)
39
+ - Updating HTTP links in README.md to use HTTPS [#4387](https://github.com/axios/axios/pull/4387)
40
+ - Updated to a better trim() polyfill [#4072](https://github.com/axios/axios/pull/4072)
41
+ - Updated types to allow specifying partial default headers on instance create [#4185](https://github.com/axios/axios/pull/4185)
42
+ - Expanded isAxiosError types [#4344](https://github.com/axios/axios/pull/4344)
43
+ - Updated type definition for axios instance methods [#4224](https://github.com/axios/axios/pull/4224)
44
+ - Updated eslint config [#4722](https://github.com/axios/axios/pull/4722)
45
+ - Updated Docs [#4742](https://github.com/axios/axios/pull/4742)
46
+
47
+ ### Deprecated
48
+
49
+ ### Removed
50
+
51
+ - Removed incorrect argument for NetworkError constructor [#4656](https://github.com/axios/axios/pull/4656)
52
+ - Removed Webpack [#4596](https://github.com/axios/axios/pull/4596)
53
+ - Removed function that transform arguments to array [#4544](https://github.com/axios/axios/pull/4544)
54
+
55
+ ### Fixed
56
+
57
+ - Fixed grammar in README [#4649](https://github.com/axios/axios/pull/4649)
58
+ - Fixed code error in README [#4599](https://github.com/axios/axios/pull/4599)
59
+ - Optimized the code that checks cancellation [#4587](https://github.com/axios/axios/pull/4587)
60
+ - Fix url pointing to defaults.js in README [#4532](https://github.com/axios/axios/pull/4532)
61
+ - Use type alias instead of interface for AxiosPromise [#4505](https://github.com/axios/axios/pull/4505)
62
+ - Fix some word spelling and lint style in code comments [#4500](https://github.com/axios/axios/pull/4500)
63
+ - Edited readme with 3 updated browser icons of Chrome, FireFox and Safari [#4414](https://github.com/axios/axios/pull/4414)
64
+ - Bump follow-redirects from 1.14.9 to 1.15.0 [#4673](https://github.com/axios/axios/pull/4673)
65
+ - Fixing http tests to avoid hanging when assertions fail [#4435](https://github.com/axios/axios/pull/4435)
66
+ - Fix TS definition for AxiosRequestTransformer [#4201](https://github.com/axios/axios/pull/4201)
67
+ - Fix grammatical issues in README [#4232](https://github.com/axios/axios/pull/4232)
68
+ - Fixing instance.defaults.headers type [#4557](https://github.com/axios/axios/pull/4557)
69
+ - Fixed race condition on immediate requests cancellation [#4261](https://github.com/axios/axios/pull/4261)
70
+ - Fixing Z_BUF_ERROR when no content [#4701](https://github.com/axios/axios/pull/4701)
71
+ - Fixing proxy beforeRedirect regression [#4708](https://github.com/axios/axios/pull/4708)
72
+ - Fixed AxiosError status code type [#4717](https://github.com/axios/axios/pull/4717)
73
+ - Fixed AxiosError stack capturing [#4718](https://github.com/axios/axios/pull/4718)
74
+ - Fixing AxiosRequestHeaders typings [#4334](https://github.com/axios/axios/pull/4334)
75
+ - Fixed max body length defaults [#4731](https://github.com/axios/axios/pull/4731)
76
+ - Fixed toFormData Blob issue on node>v17 [#4728](https://github.com/axios/axios/pull/4728)
77
+ - Bump grunt from 1.5.2 to 1.5.3 [#4743](https://github.com/axios/axios/pull/4743)
78
+ - Fixing content-type header repeated [#4745](https://github.com/axios/axios/pull/4745)
79
+ - Fixed timeout error message for http [4738](https://github.com/axios/axios/pull/4738)
80
+
81
+ ### Security
82
+
83
+ - Update SECURITY.md [#4687](https://github.com/axios/axios/pull/4687)
84
+
85
+ ### Contributors to this release
86
+
87
+ - [Bertrand Marron](https://github.com/tusbar)
168
88
  - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
169
-
170
- ### 0.21.3 (September 4, 2021)
171
-
172
- Fixes and Functionality:
173
- - Fixing response interceptor not being called when request interceptor is attached ([#4013](https://github.com/axios/axios/pull/4013))
174
-
175
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
176
-
177
- - [Jay](mailto:jasonsaayman@gmail.com)
178
- - [Julian Hollmann](https://github.com/nerdbeere)
179
-
180
- ### 0.21.2 (September 4, 2021)
181
-
182
- Fixes and Functionality:
183
-
184
- - Updating axios requests to be delayed by pre-emptive promise creation ([#2702](https://github.com/axios/axios/pull/2702))
185
- - Adding "synchronous" and "runWhen" options to interceptors api ([#2702](https://github.com/axios/axios/pull/2702))
186
- - Updating of transformResponse ([#3377](https://github.com/axios/axios/pull/3377))
187
- - Adding ability to omit User-Agent header ([#3703](https://github.com/axios/axios/pull/3703))
188
- - Adding multiple JSON improvements ([#3688](https://github.com/axios/axios/pull/3688), [#3763](https://github.com/axios/axios/pull/3763))
189
- - Fixing quadratic runtime and extra memory usage when setting a maxContentLength ([#3738](https://github.com/axios/axios/pull/3738))
190
- - Adding parseInt to config.timeout ([#3781](https://github.com/axios/axios/pull/3781))
191
- - Adding custom return type support to interceptor ([#3783](https://github.com/axios/axios/pull/3783))
192
- - Adding security fix for ReDoS vulnerability ([#3980](https://github.com/axios/axios/pull/3980))
193
-
194
- Internal and Tests:
195
-
196
- - Updating build dev dependencies ([#3401](https://github.com/axios/axios/pull/3401))
197
- - Fixing builds running on Travis CI ([#3538](https://github.com/axios/axios/pull/3538))
198
- - Updating follow redirect version ([#3694](https://github.com/axios/axios/pull/3694), [#3771](https://github.com/axios/axios/pull/3771))
199
- - Updating karma sauce launcher to fix failing sauce tests ([#3712](https://github.com/axios/axios/pull/3712), [#3717](https://github.com/axios/axios/pull/3717))
200
- - Updating content-type header for application/json to not contain charset field, according do RFC 8259 ([#2154](https://github.com/axios/axios/pull/2154))
201
- - Fixing tests by bumping karma-sauce-launcher version ([#3813](https://github.com/axios/axios/pull/3813))
202
- - Changing testing process from Travis CI to GitHub Actions ([#3938](https://github.com/axios/axios/pull/3938))
203
-
204
- Documentation:
205
-
206
- - Updating documentation around the use of `AUTH_TOKEN` with multiple domain endpoints ([#3539](https://github.com/axios/axios/pull/3539))
207
- - Remove duplication of item in changelog ([#3523](https://github.com/axios/axios/pull/3523))
208
- - Fixing grammatical errors ([#2642](https://github.com/axios/axios/pull/2642))
209
- - Fixing spelling error ([#3567](https://github.com/axios/axios/pull/3567))
210
- - Moving gitpod mention ([#2637](https://github.com/axios/axios/pull/2637))
211
- - Adding new axios documentation website link ([#3681](https://github.com/axios/axios/pull/3681), [#3707](https://github.com/axios/axios/pull/3707))
212
- - Updating documentation around dispatching requests ([#3772](https://github.com/axios/axios/pull/3772))
213
- - Adding documentation for the type guard isAxiosError ([#3767](https://github.com/axios/axios/pull/3767))
214
- - Adding explanation of cancel token ([#3803](https://github.com/axios/axios/pull/3803))
215
- - Updating CI status badge ([#3953](https://github.com/axios/axios/pull/3953))
216
- - Fixing errors with JSON documentation ([#3936](https://github.com/axios/axios/pull/3936))
217
- - Fixing README typo under Request Config ([#3825](https://github.com/axios/axios/pull/3825))
218
- - Adding axios-multi-api to the ecosystem file ([#3817](https://github.com/axios/axios/pull/3817))
219
- - Adding SECURITY.md to properly disclose security vulnerabilities ([#3981](https://github.com/axios/axios/pull/3981))
220
-
221
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
222
-
223
- - [Jay](mailto:jasonsaayman@gmail.com)
224
- - [Sasha Korotkov](https://github.com/SashaKoro)
225
- - [Daniel Lopretto](https://github.com/timemachine3030)
226
- - [Mike Bishop](https://github.com/MikeBishop)
227
- - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
228
- - [Mark](https://github.com/bimbiltu)
229
- - [Philipe Gouveia Paixão](https://github.com/piiih)
230
- - [hippo](https://github.com/hippo2cat)
231
- - [ready-research](https://github.com/ready-research)
232
- - [Xianming Zhong](https://github.com/chinesedfan)
233
- - [Christopher Chrapka](https://github.com/OJezu)
234
- - [Brian Anglin](https://github.com/anglinb)
235
- - [Kohta Ito](https://github.com/koh110)
236
- - [Ali Clark](https://github.com/aliclark)
237
- - [caikan](https://github.com/caikan)
238
- - [Elina Gorshkova](https://github.com/elinagorshkova)
239
- - [Ryota Ikezawa](https://github.com/paveg)
240
- - [Nisar Hassan Naqvi](https://github.com/nisarhassan12)
241
- - [Jake](https://github.com/codemaster138)
242
- - [TagawaHirotaka](https://github.com/wafuwafu13)
243
- - [Johannes Jarbratt](https://github.com/johachi)
244
- - [Mo Sattler](https://github.com/MoSattler)
245
- - [Sam Carlton](https://github.com/ThatGuySam)
246
- - [Matt Czapliński](https://github.com/MattCCC)
247
- - [Ziding Zhang](https://github.com/zidingz)
248
-
249
- ### 0.21.1 (December 21, 2020)
250
-
251
- Fixes and Functionality:
252
-
253
- - Hotfix: Prevent SSRF ([#3410](https://github.com/axios/axios/pull/3410))
254
- - Protocol not parsed when setting proxy config from env vars ([#3070](https://github.com/axios/axios/pull/3070))
255
- - Updating axios in types to be lower case ([#2797](https://github.com/axios/axios/pull/2797))
256
- - Adding a type guard for `AxiosError` ([#2949](https://github.com/axios/axios/pull/2949))
257
-
258
- Internal and Tests:
259
-
260
- - Remove the skipping of the `socket` http test ([#3364](https://github.com/axios/axios/pull/3364))
261
- - Use different socket for Win32 test ([#3375](https://github.com/axios/axios/pull/3375))
262
-
263
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
264
-
265
- - Daniel Lopretto <timemachine3030@users.noreply.github.com>
266
- - Jason Kwok <JasonHK@users.noreply.github.com>
267
- - Jay <jasonsaayman@gmail.com>
268
- - Jonathan Foster <jonathan@jonathanfoster.io>
269
- - Remco Haszing <remcohaszing@gmail.com>
270
- - Xianming Zhong <chinesedfan@qq.com>
271
-
272
- ### 0.21.0 (October 23, 2020)
273
-
274
- Fixes and Functionality:
275
-
276
- - Fixing requestHeaders.Authorization ([#3287](https://github.com/axios/axios/pull/3287))
277
- - Fixing node types ([#3237](https://github.com/axios/axios/pull/3237))
278
- - Fixing axios.delete ignores config.data ([#3282](https://github.com/axios/axios/pull/3282))
279
- - Revert "Fixing overwrite Blob/File type as Content-Type in browser. (#1773)" ([#3289](https://github.com/axios/axios/pull/3289))
280
- - Fixing an issue that type 'null' and 'undefined' is not assignable to validateStatus when typescript strict option is enabled ([#3200](https://github.com/axios/axios/pull/3200))
281
-
282
- Internal and Tests:
283
-
284
- - Lock travis to not use node v15 ([#3361](https://github.com/axios/axios/pull/3361))
285
-
286
- Documentation:
287
-
288
- - Fixing simple typo, existent -> existent ([#3252](https://github.com/axios/axios/pull/3252))
289
- - Fixing typos ([#3309](https://github.com/axios/axios/pull/3309))
290
-
291
- Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
292
-
293
- - Allan Cruz <57270969+Allanbcruz@users.noreply.github.com>
294
- - George Cheng <Gerhut@GMail.com>
295
- - Jay <jasonsaayman@gmail.com>
296
- - Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
297
- - Remco Haszing <remcohaszing@gmail.com>
298
- - Taemin Shin <cprayer13@gmail.com>
299
- - Tim Gates <tim.gates@iress.com>
300
- - Xianming Zhong <chinesedfan@qq.com>
301
-
302
- ### 0.20.0 (August 20, 2020)
303
-
304
- Release of 0.20.0-pre as a full release with no other changes.
305
-
306
- ### 0.20.0-pre (July 15, 2020)
307
-
308
- Fixes and Functionality:
309
-
310
- - Fixing response with utf-8 BOM can not parse to json ([#2419](https://github.com/axios/axios/pull/2419))
311
- - fix: remove byte order marker (UTF-8 BOM) when transform response
312
- - fix: remove BOM only utf-8
313
- - test: utf-8 BOM
314
- - fix: incorrect param name
315
- - Refactor mergeConfig without utils.deepMerge ([#2844](https://github.com/axios/axios/pull/2844))
316
- - Adding failing test
317
- - Fixing #2587 default custom config persisting
318
- - Adding Concat keys and filter duplicates
319
- - Fixed value from CPE
320
- - update for review feedbacks
321
- - no deepMerge
322
- - only merge between plain objects
323
- - fix rename
324
- - always merge config by mergeConfig
325
- - extract function mergeDeepProperties
326
- - refactor mergeConfig with all keys, and add special logic for validateStatus
327
- - add test for resetting headers
328
- - add lots of tests and fix a bug
329
- - should not inherit `data`
330
- - use simple toString
331
- - Fixing overwrite Blob/File type as Content-Type in browser. ([#1773](https://github.com/axios/axios/pull/1773))
332
- - Fixing an issue that type 'null' is not assignable to validateStatus ([#2773](https://github.com/axios/axios/pull/2773))
333
- - Fixing special char encoding ([#1671](https://github.com/axios/axios/pull/1671))
334
- - removing @ character from replacement list since it is a reserved character
335
- - Updating buildURL test to not include the @ character
336
- - Removing console logs
337
- - Fixing password encoding with special characters in basic authentication ([#1492](https://github.com/axios/axios/pull/1492))
338
- - Fixing password encoding with special characters in basic authentication
339
- - Adding test to check if password with non-Latin1 characters pass
340
- - Fixing 'Network Error' in react native android ([#1487](https://github.com/axios/axios/pull/1487))
341
- There is a bug in react native Android platform when using get method. It will trigger a 'Network Error' when passing the requestData which is an empty string to request.send function. So if the requestData is an empty string we can set it to null as well to fix the bug.
342
- - Fixing Cookie Helper with Async Components ([#1105](https://github.com/axios/axios/pull/1105)) ([#1107](https://github.com/axios/axios/pull/1107))
343
- - Fixing 'progressEvent' type ([#2851](https://github.com/axios/axios/pull/2851))
344
- - Fix 'progressEvent' type
345
- - Update axios.ts
346
- - Fixing getting local files (file://) failed ([#2470](https://github.com/axios/axios/pull/2470))
347
- - fix issue #2416, #2396
348
- - fix Eslint warn
349
- - Modify judgment conditions
350
- - add unit test
351
- - update unit test
352
- - update unit test
353
- - Allow PURGE method in typings ([#2191](https://github.com/axios/axios/pull/2191))
354
- - Adding option to disable automatic decompression ([#2661](https://github.com/axios/axios/pull/2661))
355
- - Adding ability to disable auto decompression
356
- - Updating decompress documentation in README
357
- - Fixing test\unit\adapters\http.js lint errors
358
- - Adding test for disabling auto decompression
359
- - Removing changes that fixed lint errors in tests
360
- - Removing formatting change to unit test
361
- - Add independent `maxBodyLength` option ([#2781](https://github.com/axios/axios/pull/2781))
362
- - Add independent option to set the maximum size of the request body
363
- - Remove maxBodyLength check
364
- - Update README
365
- - Assert for error code and message
366
- - Adding responseEncoding to mergeConfig ([#1745](https://github.com/axios/axios/pull/1745))
367
- - Compatible with follow-redirect aborts the request ([#2689](https://github.com/axios/axios/pull/2689))
368
- - Compatible with follow-redirect aborts the request
369
- - Use the error code
370
- - Fix merging of params ([#2656](https://github.com/axios/axios/pull/2656))
371
- - Name function to avoid ESLint func-names warning
372
- - Switch params config to merge list and update tests
373
- - Restore testing of both false and null
374
- - Restore test cases for keys without defaults
375
- - Include test for non-object values that aren't false-y.
376
- - Revert `finally` as `then` ([#2683](https://github.com/axios/axios/pull/2683))
377
-
378
- Internal and Tests:
379
-
380
- - Fix stale bot config ([#3049](https://github.com/axios/axios/pull/3049))
381
- - fix stale bot config
382
- - fix multiple lines
383
- - Add days and change name to work ([#3035](https://github.com/axios/axios/pull/3035))
384
- - Update close-issues.yml ([#3031](https://github.com/axios/axios/pull/3031))
385
- - Update close-issues.yml
386
- Update close message to read better 😄
387
- - Fix use of quotations
388
- Use single quotes as per other .yml files
389
- - Remove user name form message
390
- - Add GitHub actions to close stale issues/prs ([#3029](https://github.com/axios/axios/pull/3029))
391
- - prepare stale actions
392
- - update messages
393
- - Add exempt labels and lighten up comments
394
- - Add GitHub actions to close invalid issues ([#3022](https://github.com/axios/axios/pull/3022))
395
- - add close actions
396
- - fix with checkout
397
- - update issue templates
398
- - add reminder
399
- - update close message
400
- - Add test with Node.js 12 ([#2860](https://github.com/axios/axios/pull/2860))
401
- - test with Node.js 12
402
- - test with latest
403
- - Adding console log on sandbox server startup ([#2210](https://github.com/axios/axios/pull/2210))
404
- - Adding console log on sandbox server startup
405
- - Update server.js
406
- Add server error handling
407
- - Update server.js
408
- Better error message, remove retry.
409
- - Adding tests for method `options` type definitions ([#1996](https://github.com/axios/axios/pull/1996))
410
- Update tests.
411
- - Add test for redirecting with too large response ([#2695](https://github.com/axios/axios/pull/2695))
412
- - Fixing unit test failure in Windows OS ([#2601](https://github.com/axios/axios/pull/2601))
413
- - Fixing issue for HEAD method and gzipped response ([#2666](https://github.com/axios/axios/pull/2666))
414
- - Fix tests in browsers ([#2748](https://github.com/axios/axios/pull/2748))
415
- - chore: add `jsdelivr` and `unpkg` support ([#2443](https://github.com/axios/axios/pull/2443))
416
-
417
- Documentation:
418
-
419
- - Adding support for URLSearchParams in node ([#1900](https://github.com/axios/axios/pull/1900))
420
- - Adding support for URLSearchParams in node
421
- - Remove un-needed code
422
- - Update utils.js
423
- - Make changes as suggested
424
- - Adding table of content (preview) ([#3050](https://github.com/axios/axios/pull/3050))
425
- - add toc (preview)
426
- - remove toc in toc
427
- Signed-off-by: Moni <usmoni@gmail.com>
428
- - fix sublinks
429
- - fix indentation
430
- - remove redundant table links
431
- - update caps and indent
432
- - remove axios
433
- - Replace 'blacklist' with 'blocklist' ([#3006](https://github.com/axios/axios/pull/3006))
434
- - docs(): Detailed config options environment. ([#2088](https://github.com/axios/axios/pull/2088))
435
- - docs(): Detailed config options environment.
436
- - Update README.md
437
- - Include axios-data-unpacker in ECOSYSTEM.md ([#2080](https://github.com/axios/axios/pull/2080))
438
- - Allow opening examples in Gitpod ([#1958](https://github.com/axios/axios/pull/1958))
439
- - Remove axios.all() and axios.spread() from Readme.md ([#2727](https://github.com/axios/axios/pull/2727))
440
- - remove axios.all(), axios.spread()
441
- - replace example
442
- - axios.all() -> Promise.all()
443
- - axios.spread(function (acct, perms)) -> function (acct, perms)
444
- - add deprecated mark
445
- - Update README.md ([#2887](https://github.com/axios/axios/pull/2887))
446
- Small change to the data attribute doc of the config. A request body can also be set for DELETE methods but this wasn't mentioned in the documentation (it only mentioned POST, PUT and PATCH). Took my some 10-20 minutes until I realized that I don't need to manipulate the request body with transformRequest in the case of DELETE.
447
- - Include swagger-taxos-codegen in ECOSYSTEM.md ([#2162](https://github.com/axios/axios/pull/2162))
448
- - Add CDNJS version badge in README.md ([#878](https://github.com/axios/axios/pull/878))
449
- This badge will show the version on CDNJS!
450
- - Documentation update to clear up ambiguity in code examples ([#2928](https://github.com/axios/axios/pull/2928))
451
- - Made an adjustment to the documentation to clear up any ambiguity around the use of "fs". This should help clear up that the code examples with "fs" cannot be used on the client side.
452
- - Update README.md about validateStatus ([#2912](https://github.com/axios/axios/pull/2912))
453
- Rewrote the comment from "Reject only if the status code is greater than or equal to 500" to "Resolve only if the status code is less than 500"
454
- - Updating documentation for usage form-data ([#2805](https://github.com/axios/axios/pull/2805))
455
- Closes #2049
456
- - Fixing CHANGELOG.md issue link ([#2784](https://github.com/axios/axios/pull/2784))
457
- - Include axios-hooks in ECOSYSTEM.md ([#2003](https://github.com/axios/axios/pull/2003))
458
- - Added Response header access instructions ([#1901](https://github.com/axios/axios/pull/1901))
459
- - Added Response header access instructions
460
- - Added note about using bracket notation
461
- - Add `onUploadProgress` and `onDownloadProgress` are browser only ([#2763](https://github.com/axios/axios/pull/2763))
462
- Saw in #928 and #1966 that `onUploadProgress` and `onDownloadProgress` only work in the browser and was missing that from the README.
463
- - Update ' sign to ` in proxy spec ([#2778](https://github.com/axios/axios/pull/2778))
464
- - Adding jsDelivr link in README ([#1110](https://github.com/axios/axios/pull/1110))
465
- - Adding jsDelivr link
466
- - Add SRI
467
- - Remove SRI
468
-
469
- Huge thanks to everyone who contributed to this release via code (authors listed
470
- below) or via reviews and triaging on GitHub:
471
-
472
- - Alan Wang <wp_scut@163.com>
473
- - Alexandru Ungureanu <khakcarot@gmail.com>
474
- - Anubhav Srivastava <anubhav.srivastava00@gmail.com>
475
- - Benny Neugebauer <bn@bennyn.de>
476
- - Cr <631807682@qq.com>
477
- - David <cygnidavid@gmail.com>
478
- - David Ko <david.ko@pvtmethod.com>
479
- - David Tanner <david.tanner@lifeomic.com>
480
- - Emily Morehouse <emilyemorehouse@gmail.com>
481
- - Felipe Martins <felipewmartins@gmail.com>
482
- - Fonger <5862369+Fonger@users.noreply.github.com>
483
- - Frostack <soulburn007@gmail.com>
484
- - George Cheng <Gerhut@GMail.com>
485
- - grumblerchester <grumblerchester@users.noreply.github.com>
486
- - Gustavo López <gualopezb@gmail.com>
487
- - hexaez <45806662+hexaez@users.noreply.github.com>
488
- - huangzuizui <huangzuizui@gmail.com>
489
- - Ian Wijma <ian@wij.ma>
490
- - Jay <jasonsaayman@gmail.com>
491
- - jeffjing <zgayjjf@qq.com>
492
- - jennynju <46782518+jennynju@users.noreply.github.com>
493
- - Jimmy Liao <52391190+jimmy-liao-gogoro@users.noreply.github.com>
494
- - Jonathan Sharpe <j.r.sharpe@gmail.com>
495
- - JounQin <admin@1stg.me>
496
- - Justin Beckwith <justin.beckwith@gmail.com>
497
- - Kamil Posiadała <3dcreator.pl@gmail.com>
498
- - Lukas Drgon <lukas.drgon@gmail.com>
499
- - marcinx <mail@marcinx.com>
500
- - Martti Laine <martti@codeclown.net>
501
- - Michał Zarach <michal.m.zarach@gmail.com>
502
- - Moni <usmoni@gmail.com>
503
- - Motonori Iwata <121048+iwata@users.noreply.github.com>
504
- - Nikita Galkin <nikita@galk.in>
505
- - Petr Mares <petr@mares.tw>
506
- - Philippe Recto <precto1285@gmal.com>
507
- - Remco Haszing <remcohaszing@gmail.com>
508
- - rockcs1992 <chengshi1219@gmail.com>
509
- - Ryan Bown <rbown@niftee.com.au>
510
- - Samina Fu <sufuf3@gmail.com>
511
- - Simone Busoli <simone.busoli@gmail.com>
512
- - Spencer von der Ohe <s.vonderohe40@gmail.com>
513
- - Sven Efftinge <sven.efftinge@typefox.io>
514
- - Taegyeoung Oh <otk1090@naver.com>
515
- - Taemin Shin <cprayer13@gmail.com>
516
- - Thibault Ehrhart <1208424+ehrhart@users.noreply.github.com>
517
- - Xianming Zhong <chinesedfan@qq.com>
518
- - Yasu Flores <carlosyasu91@gmail.com>
519
- - Zac Delventhal <delventhalz@gmail.com>
520
-
521
- ### 0.19.2 (Jan 20, 2020)
522
-
523
- - Remove unnecessary XSS check ([#2679](https://github.com/axios/axios/pull/2679)) (see ([#2646](https://github.com/axios/axios/issues/2646)) for discussion)
524
-
525
- ### 0.19.1 (Jan 7, 2020)
526
-
527
- Fixes and Functionality:
528
-
529
- - Fixing invalid agent issue ([#1904](https://github.com/axios/axios/pull/1904))
530
- - Fix ignore set withCredentials false ([#2582](https://github.com/axios/axios/pull/2582))
531
- - Delete useless default to hash ([#2458](https://github.com/axios/axios/pull/2458))
532
- - Fix HTTP/HTTPs agents passing to follow-redirect ([#1904](https://github.com/axios/axios/pull/1904))
533
- - Fix ignore set withCredentials false ([#2582](https://github.com/axios/axios/pull/2582))
534
- - Fix CI build failure ([#2570](https://github.com/axios/axios/pull/2570))
535
- - Remove dependency on is-buffer from package.json ([#1816](https://github.com/axios/axios/pull/1816))
536
- - Adding options typings ([#2341](https://github.com/axios/axios/pull/2341))
537
- - Adding Typescript HTTP method definition for LINK and UNLINK. ([#2444](https://github.com/axios/axios/pull/2444))
538
- - Update dist with newest changes, fixes Custom Attributes issue
539
- - Change syntax to see if build passes ([#2488](https://github.com/axios/axios/pull/2488))
540
- - Update Webpack + deps, remove now unnecessary polyfills ([#2410](https://github.com/axios/axios/pull/2410))
541
- - Fix to prevent XSS, throw an error when the URL contains a JS script ([#2464](https://github.com/axios/axios/pull/2464))
542
- - Add custom timeout error copy in config ([#2275](https://github.com/axios/axios/pull/2275))
543
- - Add error toJSON example ([#2466](https://github.com/axios/axios/pull/2466))
544
- - Fixing Vulnerability A Fortify Scan finds a critical Cross-Site Scrip… ([#2451](https://github.com/axios/axios/pull/2451))
545
- - Fixing subdomain handling on no_proxy ([#2442](https://github.com/axios/axios/pull/2442))
546
- - Make redirection from HTTP to HTTPS work ([#2426](https://github.com/axios/axios/pull/2426)) and ([#2547](https://github.com/axios/axios/pull/2547))
547
- - Add toJSON property to AxiosError type ([#2427](https://github.com/axios/axios/pull/2427))
548
- - Fixing socket hang up error on node side for slow response. ([#1752](https://github.com/axios/axios/pull/1752))
549
- - Alternative syntax to send data into the body ([#2317](https://github.com/axios/axios/pull/2317))
550
- - Fixing custom config options ([#2207](https://github.com/axios/axios/pull/2207))
551
- - Fixing set `config.method` after mergeConfig for Axios.prototype.request ([#2383](https://github.com/axios/axios/pull/2383))
552
- - Axios create url bug ([#2290](https://github.com/axios/axios/pull/2290))
553
- - Do not modify config.url when using a relative baseURL (resolves [#1628](https://github.com/axios/axios/issues/1098)) ([#2391](https://github.com/axios/axios/pull/2391))
554
-
555
- Internal:
556
-
557
- - Revert "Update Webpack + deps, remove now unnecessary polyfills" ([#2479](https://github.com/axios/axios/pull/2479))
558
- - Order of if/else blocks is causing unit tests mocking XHR. ([#2201](https://github.com/axios/axios/pull/2201))
559
- - Add license badge ([#2446](https://github.com/axios/axios/pull/2446))
560
- - Fix travis CI build [#2386](https://github.com/axios/axios/pull/2386)
561
- - Fix cancellation error on build master. #2290 #2207 ([#2407](https://github.com/axios/axios/pull/2407))
562
-
563
- Documentation:
564
-
565
- - Fixing typo in CHANGELOG.md: s/Functionallity/Functionality ([#2639](https://github.com/axios/axios/pull/2639))
566
- - Fix badge, use master branch ([#2538](https://github.com/axios/axios/pull/2538))
567
- - Fix typo in changelog [#2193](https://github.com/axios/axios/pull/2193)
568
- - Document fix ([#2514](https://github.com/axios/axios/pull/2514))
569
- - Update docs with no_proxy change, issue #2484 ([#2513](https://github.com/axios/axios/pull/2513))
570
- - Fixing missing words in docs template ([#2259](https://github.com/axios/axios/pull/2259))
571
- - 🐛Fix request finally documentation in README ([#2189](https://github.com/axios/axios/pull/2189))
572
- - updating spelling and adding link to docs ([#2212](https://github.com/axios/axios/pull/2212))
573
- - docs: minor tweak ([#2404](https://github.com/axios/axios/pull/2404))
574
- - Update response interceptor docs ([#2399](https://github.com/axios/axios/pull/2399))
575
- - Update README.md ([#2504](https://github.com/axios/axios/pull/2504))
576
- - Fix word 'sintaxe' to 'syntax' in README.md ([#2432](https://github.com/axios/axios/pull/2432))
577
- - updating README: notes on CommonJS autocomplete ([#2256](https://github.com/axios/axios/pull/2256))
578
- - Fix grammar in README.md ([#2271](https://github.com/axios/axios/pull/2271))
579
- - Doc fixes, minor examples cleanup ([#2198](https://github.com/axios/axios/pull/2198))
580
-
581
- ### 0.19.0 (May 30, 2019)
582
-
583
- Fixes and Functionality:
584
-
585
- - Added support for no_proxy env variable ([#1693](https://github.com/axios/axios/pull/1693/files)) - Chance Dickson
586
- - Unzip response body only for statuses != 204 ([#1129](https://github.com/axios/axios/pull/1129)) - drawski
587
- - Destroy stream on exceeding maxContentLength (fixes [#1098](https://github.com/axios/axios/issues/1098)) ([#1485](https://github.com/axios/axios/pull/1485)) - Gadzhi Gadzhiev
588
- - Makes Axios error generic to use AxiosResponse ([#1738](https://github.com/axios/axios/pull/1738)) - Suman Lama
589
- - Fixing Mocha tests by locking follow-redirects version to 1.5.10 ([#1993](https://github.com/axios/axios/pull/1993)) - grumblerchester
590
- - Allow uppercase methods in typings. ([#1781](https://github.com/axios/axios/pull/1781)) - Ken Powers
591
- - Fixing building url with hash mark ([#1771](https://github.com/axios/axios/pull/1771)) - Anatoly Ryabov
592
- - This commit fix building url with hash map (fragment identifier) when parameters are present: they must not be added after `#`, because client cut everything after `#`
593
- - Preserve HTTP method when following redirect ([#1758](https://github.com/axios/axios/pull/1758)) - Rikki Gibson
594
- - Add `getUri` signature to TypeScript definition. ([#1736](https://github.com/axios/axios/pull/1736)) - Alexander Trauzzi
595
- - Adding isAxiosError flag to errors thrown by axios ([#1419](https://github.com/axios/axios/pull/1419)) - Ayush Gupta
596
-
597
- Internal:
598
-
599
- - Fixing .eslintrc without extension ([#1789](https://github.com/axios/axios/pull/1789)) - Manoel
600
- - Fix failing SauceLabs tests by updating configuration - Emily Morehouse
601
- - Add issue templates - Emily Morehouse
602
-
603
- Documentation:
604
-
605
- - Consistent coding style in README ([#1787](https://github.com/axios/axios/pull/1787)) - Ali Servet Donmez
606
- - Add information about auth parameter to README ([#2166](https://github.com/axios/axios/pull/2166)) - xlaguna
607
- - Add DELETE to list of methods that allow data as a config option ([#2169](https://github.com/axios/axios/pull/2169)) - Daniela Borges Matos de Carvalho
608
- - Update ECOSYSTEM.md - Add Axios Endpoints ([#2176](https://github.com/axios/axios/pull/2176)) - Renan
609
- - Add r2curl in ECOSYSTEM ([#2141](https://github.com/axios/axios/pull/2141)) - 유용우 / CX
610
- - Update README.md - Add instructions for installing with yarn ([#2036](https://github.com/axios/axios/pull/2036)) - Victor Hermes
611
- - Fixing spacing for README.md ([#2066](https://github.com/axios/axios/pull/2066)) - Josh McCarty
612
- - Update README.md. - Change `.then` to `.finally` in example code ([#2090](https://github.com/axios/axios/pull/2090)) - Omar Cai
613
- - Clarify what values responseType can have in Node ([#2121](https://github.com/axios/axios/pull/2121)) - Tyler Breisacher
614
- - docs(ECOSYSTEM): add axios-api-versioning ([#2020](https://github.com/axios/axios/pull/2020)) - Weffe
615
- - It seems that `responseType: 'blob'` doesn't actually work in Node (when I tried using it, response.data was a string, not a Blob, since Node doesn't have Blobs), so this clarifies that this option should only be used in the browser
616
- - Update README.md. - Add Querystring library note ([#1896](https://github.com/axios/axios/pull/1896)) - Dmitriy Eroshenko
617
- - Add react-hooks-axios to Libraries section of ECOSYSTEM.md ([#1925](https://github.com/axios/axios/pull/1925)) - Cody Chan
618
- - Clarify in README that default timeout is 0 (no timeout) ([#1750](https://github.com/axios/axios/pull/1750)) - Ben Standefer
619
-
620
- ### 0.19.0-beta.1 (Aug 9, 2018)
621
-
622
- **NOTE:** This is a beta version of this release. There may be functionality that is broken in
623
- certain browsers, though we suspect that builds are hanging and not erroring. See
624
- https://saucelabs.com/u/axios for the most up-to-date information.
625
-
626
- New Functionality:
627
-
628
- - Add getUri method ([#1712](https://github.com/axios/axios/issues/1712))
629
- - Add support for no_proxy env variable ([#1693](https://github.com/axios/axios/issues/1693))
630
- - Add toJSON to decorated Axios errors to facilitate serialization ([#1625](https://github.com/axios/axios/issues/1625))
631
- - Add second then on axios call ([#1623](https://github.com/axios/axios/issues/1623))
632
- - Typings: allow custom return types
633
- - Add option to specify character set in responses (with http adapter)
634
-
635
- Fixes:
636
-
637
- - Fix Keep defaults local to instance ([#385](https://github.com/axios/axios/issues/385))
638
- - Correctly catch exception in http test ([#1475](https://github.com/axios/axios/issues/1475))
639
- - Fix accept header normalization ([#1698](https://github.com/axios/axios/issues/1698))
640
- - Fix http adapter to allow HTTPS connections via HTTP ([#959](https://github.com/axios/axios/issues/959))
641
- - Fix Removes usage of deprecated Buffer constructor. ([#1555](https://github.com/axios/axios/issues/1555), [#1622](https://github.com/axios/axios/issues/1622))
642
- - Fix defaults to use httpAdapter if available ([#1285](https://github.com/axios/axios/issues/1285))
643
- - Fixing defaults to use httpAdapter if available
644
- - Use a safer, cross-platform method to detect the Node environment
645
- - Fix Reject promise if request is cancelled by the browser ([#537](https://github.com/axios/axios/issues/537))
646
- - [Typescript] Fix missing type parameters on delete/head methods
647
- - [NS]: Send `false` flag isStandardBrowserEnv for Nativescript
648
- - Fix missing type parameters on delete/head
649
- - Fix Default method for an instance always overwritten by get
650
- - Fix type error when socketPath option in AxiosRequestConfig
651
- - Capture errors on request data streams
652
- - Decorate resolve and reject to clear timeout in all cases
653
-
654
- Huge thanks to everyone who contributed to this release via code (authors listed
655
- below) or via reviews and triaging on GitHub:
656
-
657
- - Andrew Scott <ascott18@gmail.com>
658
- - Anthony Gauthier <antho325@hotmail.com>
659
- - arpit <arpit2438735@gmail.com>
660
- - ascott18
661
- - Benedikt Rötsch <axe312ger@users.noreply.github.com>
662
- - Chance Dickson <me@chancedickson.com>
663
- - Dave Stewart <info@davestewart.co.uk>
664
- - Deric Cain <deric.cain@gmail.com>
665
- - Guillaume Briday <guillaumebriday@gmail.com>
666
- - Jacob Wejendorp <jacob@wejendorp.dk>
667
- - Jim Lynch <mrdotjim@gmail.com>
668
- - johntron
669
- - Justin Beckwith <beckwith@google.com>
670
- - Justin Beckwith <justin.beckwith@gmail.com>
671
- - Khaled Garbaya <khaledgarbaya@gmail.com>
672
- - Lim Jing Rong <jjingrong@users.noreply.github.com>
673
- - Mark van den Broek <mvdnbrk@gmail.com>
674
- - Martti Laine <martti@codeclown.net>
675
- - mattridley
676
- - mattridley <matt.r@joinblink.com>
677
- - Nicolas Del Valle <nicolas.delvalle@gmail.com>
678
- - Nilegfx
679
- - pbarbiero
680
- - Rikki Gibson <rikkigibson@gmail.com>
681
- - Sako Hartounian <sakohartounian@yahoo.com>
682
- - Shane Fitzpatrick <fitzpasd@gmail.com>
683
- - Stephan Schneider <stephanschndr@gmail.com>
684
- - Steven <steven@ceriously.com>
685
- - Tim Garthwaite <tim.garthwaite@jibo.com>
686
- - Tim Johns <timjohns@yahoo.com>
687
- - Yutaro Miyazaki <yutaro@studio-rubbish.com>
688
-
689
- ### 0.18.0 (Feb 19, 2018)
690
-
691
- - Adding support for UNIX Sockets when running with Node.js ([#1070](https://github.com/axios/axios/pull/1070))
692
- - Fixing typings ([#1177](https://github.com/axios/axios/pull/1177)):
693
- - AxiosRequestConfig.proxy: allows type false
694
- - AxiosProxyConfig: added auth field
695
- - Adding function signature in AxiosInstance interface so AxiosInstance can be invoked ([#1192](https://github.com/axios/axios/pull/1192), [#1254](https://github.com/axios/axios/pull/1254))
696
- - Allowing maxContentLength to pass through to redirected calls as maxBodyLength in follow-redirects config ([#1287](https://github.com/axios/axios/pull/1287))
697
- - Fixing configuration when using an instance - method can now be set ([#1342](https://github.com/axios/axios/pull/1342))
698
-
699
- ### 0.17.1 (Nov 11, 2017)
700
-
701
- - Fixing issue with web workers ([#1160](https://github.com/axios/axios/pull/1160))
702
- - Allowing overriding transport ([#1080](https://github.com/axios/axios/pull/1080))
703
- - Updating TypeScript typings ([#1165](https://github.com/axios/axios/pull/1165), [#1125](https://github.com/axios/axios/pull/1125), [#1131](https://github.com/axios/axios/pull/1131))
704
-
705
- ### 0.17.0 (Oct 21, 2017)
706
-
707
- - **BREAKING** Fixing issue with `baseURL` and interceptors ([#950](https://github.com/axios/axios/pull/950))
708
- - **BREAKING** Improving handing of duplicate headers ([#874](https://github.com/axios/axios/pull/874))
709
- - Adding support for disabling proxies ([#691](https://github.com/axios/axios/pull/691))
710
- - Updating TypeScript typings with generic type parameters ([#1061](https://github.com/axios/axios/pull/1061))
711
-
712
- ### 0.16.2 (Jun 3, 2017)
713
-
714
- - Fixing issue with including `buffer` in bundle ([#887](https://github.com/axios/axios/pull/887))
715
- - Including underlying request in errors ([#830](https://github.com/axios/axios/pull/830))
716
- - Convert `method` to lowercase ([#930](https://github.com/axios/axios/pull/930))
717
-
718
- ### 0.16.1 (Apr 8, 2017)
719
-
720
- - Improving HTTP adapter to return last request in case of redirects ([#828](https://github.com/axios/axios/pull/828))
721
- - Updating `follow-redirects` dependency ([#829](https://github.com/axios/axios/pull/829))
722
- - Adding support for passing `Buffer` in node ([#773](https://github.com/axios/axios/pull/773))
723
-
724
- ### 0.16.0 (Mar 31, 2017)
725
-
726
- - **BREAKING** Removing `Promise` from axios typings in favor of built-in type declarations ([#480](https://github.com/axios/axios/issues/480))
727
- - Adding `options` shortcut method ([#461](https://github.com/axios/axios/pull/461))
728
- - Fixing issue with using `responseType: 'json'` in browsers incompatible with XHR Level 2 ([#654](https://github.com/axios/axios/pull/654))
729
- - Improving React Native detection ([#731](https://github.com/axios/axios/pull/731))
730
- - Fixing `combineURLs` to support empty `relativeURL` ([#581](https://github.com/axios/axios/pull/581))
731
- - Removing `PROTECTION_PREFIX` support ([#561](https://github.com/axios/axios/pull/561))
732
-
733
- ### 0.15.3 (Nov 27, 2016)
734
-
735
- - Fixing issue with custom instances and global defaults ([#443](https://github.com/axios/axios/issues/443))
736
- - Renaming `axios.d.ts` to `index.d.ts` ([#519](https://github.com/axios/axios/issues/519))
737
- - Adding `get`, `head`, and `delete` to `defaults.headers` ([#509](https://github.com/axios/axios/issues/509))
738
- - Fixing issue with `btoa` and IE ([#507](https://github.com/axios/axios/issues/507))
739
- - Adding support for proxy authentication ([#483](https://github.com/axios/axios/pull/483))
740
- - Improving HTTP adapter to use `http` protocol by default ([#493](https://github.com/axios/axios/pull/493))
741
- - Fixing proxy issues ([#491](https://github.com/axios/axios/pull/491))
742
-
743
- ### 0.15.2 (Oct 17, 2016)
744
-
745
- - Fixing issue with calling `cancel` after response has been received ([#482](https://github.com/axios/axios/issues/482))
746
-
747
- ### 0.15.1 (Oct 14, 2016)
748
-
749
- - Fixing issue with UMD ([#485](https://github.com/axios/axios/issues/485))
750
-
751
- ### 0.15.0 (Oct 10, 2016)
752
-
753
- - Adding cancellation support ([#452](https://github.com/axios/axios/pull/452))
754
- - Moving default adapter to global defaults ([#437](https://github.com/axios/axios/pull/437))
755
- - Fixing issue with `file` URI scheme ([#440](https://github.com/axios/axios/pull/440))
756
- - Fixing issue with `params` objects that have no prototype ([#445](https://github.com/axios/axios/pull/445))
757
-
758
- ### 0.14.0 (Aug 27, 2016)
759
-
760
- - **BREAKING** Updating TypeScript definitions ([#419](https://github.com/axios/axios/pull/419))
761
- - **BREAKING** Replacing `agent` option with `httpAgent` and `httpsAgent` ([#387](https://github.com/axios/axios/pull/387))
762
- - **BREAKING** Splitting `progress` event handlers into `onUploadProgress` and `onDownloadProgress` ([#423](https://github.com/axios/axios/pull/423))
763
- - Adding support for `http_proxy` and `https_proxy` environment variables ([#366](https://github.com/axios/axios/pull/366))
764
- - Fixing issue with `auth` config option and `Authorization` header ([#397](https://github.com/axios/axios/pull/397))
765
- - Don't set XSRF header if `xsrfCookieName` is `null` ([#406](https://github.com/axios/axios/pull/406))
766
-
767
- ### 0.13.1 (Jul 16, 2016)
768
-
769
- - Fixing issue with response data not being transformed on error ([#378](https://github.com/axios/axios/issues/378))
770
-
771
- ### 0.13.0 (Jul 13, 2016)
772
-
773
- - **BREAKING** Improved error handling ([#345](https://github.com/axios/axios/pull/345))
774
- - **BREAKING** Response transformer now invoked in dispatcher not adapter ([10eb238](https://github.com/axios/axios/commit/10eb23865101f9347570552c04e9d6211376e25e))
775
- - **BREAKING** Request adapters now return a `Promise` ([157efd5](https://github.com/axios/axios/commit/157efd5615890301824e3121cc6c9d2f9b21f94a))
776
- - Fixing issue with `withCredentials` not being overwritten ([#343](https://github.com/axios/axios/issues/343))
777
- - Fixing regression with request transformer being called before request interceptor ([#352](https://github.com/axios/axios/issues/352))
778
- - Fixing custom instance defaults ([#341](https://github.com/axios/axios/issues/341))
779
- - Fixing instances created from `axios.create` to have same API as default axios ([#217](https://github.com/axios/axios/issues/217))
780
-
781
- ### 0.12.0 (May 31, 2016)
782
-
783
- - Adding support for `URLSearchParams` ([#317](https://github.com/axios/axios/pull/317))
784
- - Adding `maxRedirects` option ([#307](https://github.com/axios/axios/pull/307))
785
-
786
- ### 0.11.1 (May 17, 2016)
787
-
788
- - Fixing IE CORS support ([#313](https://github.com/axios/axios/pull/313))
789
- - Fixing detection of `FormData` ([#325](https://github.com/axios/axios/pull/325))
790
- - Adding `Axios` class to exports ([#321](https://github.com/axios/axios/pull/321))
791
-
792
- ### 0.11.0 (Apr 26, 2016)
793
-
794
- - Adding support for Stream with HTTP adapter ([#296](https://github.com/axios/axios/pull/296))
795
- - Adding support for custom HTTP status code error ranges ([#308](https://github.com/axios/axios/pull/308))
796
- - Fixing issue with ArrayBuffer ([#299](https://github.com/axios/axios/pull/299))
797
-
798
- ### 0.10.0 (Apr 20, 2016)
799
-
800
- - Fixing issue with some requests sending `undefined` instead of `null` ([#250](https://github.com/axios/axios/pull/250))
801
- - Fixing basic auth for HTTP adapter ([#252](https://github.com/axios/axios/pull/252))
802
- - Fixing request timeout for XHR adapter ([#227](https://github.com/axios/axios/pull/227))
803
- - Fixing IE8 support by using `onreadystatechange` instead of `onload` ([#249](https://github.com/axios/axios/pull/249))
804
- - Fixing IE9 cross domain requests ([#251](https://github.com/axios/axios/pull/251))
805
- - Adding `maxContentLength` option ([#275](https://github.com/axios/axios/pull/275))
806
- - Fixing XHR support for WebWorker environment ([#279](https://github.com/axios/axios/pull/279))
807
- - Adding request instance to response ([#200](https://github.com/axios/axios/pull/200))
808
-
809
- ### 0.9.1 (Jan 24, 2016)
810
-
811
- - Improving handling of request timeout in node ([#124](https://github.com/axios/axios/issues/124))
812
- - Fixing network errors not rejecting ([#205](https://github.com/axios/axios/pull/205))
813
- - Fixing issue with IE rejecting on HTTP 204 ([#201](https://github.com/axios/axios/issues/201))
814
- - Fixing host/port when following redirects ([#198](https://github.com/axios/axios/pull/198))
815
-
816
- ### 0.9.0 (Jan 18, 2016)
817
-
818
- - Adding support for custom adapters
819
- - Fixing Content-Type header being removed when data is false ([#195](https://github.com/axios/axios/pull/195))
820
- - Improving XDomainRequest implementation ([#185](https://github.com/axios/axios/pull/185))
821
- - Improving config merging and order of precedence ([#183](https://github.com/axios/axios/pull/183))
822
- - Fixing XDomainRequest support for only <= IE9 ([#182](https://github.com/axios/axios/pull/182))
823
-
824
- ### 0.8.1 (Dec 14, 2015)
825
-
826
- - Adding support for passing XSRF token for cross domain requests when using `withCredentials` ([#168](https://github.com/axios/axios/pull/168))
827
- - Fixing error with format of basic auth header ([#178](https://github.com/axios/axios/pull/173))
828
- - Fixing error with JSON payloads throwing `InvalidStateError` in some cases ([#174](https://github.com/axios/axios/pull/174))
829
-
830
- ### 0.8.0 (Dec 11, 2015)
831
-
832
- - Adding support for creating instances of axios ([#123](https://github.com/axios/axios/pull/123))
833
- - Fixing http adapter to use `Buffer` instead of `String` in case of `responseType === 'arraybuffer'` ([#128](https://github.com/axios/axios/pull/128))
834
- - Adding support for using custom parameter serializer with `paramsSerializer` option ([#121](https://github.com/axios/axios/pull/121))
835
- - Fixing issue in IE8 caused by `forEach` on `arguments` ([#127](https://github.com/axios/axios/pull/127))
836
- - Adding support for following redirects in node ([#146](https://github.com/axios/axios/pull/146))
837
- - Adding support for transparent decompression if `content-encoding` is set ([#149](https://github.com/axios/axios/pull/149))
838
- - Adding support for transparent XDomainRequest to handle cross domain requests in IE9 ([#140](https://github.com/axios/axios/pull/140))
839
- - Adding support for HTTP basic auth via Authorization header ([#167](https://github.com/axios/axios/pull/167))
840
- - Adding support for baseURL option ([#160](https://github.com/axios/axios/pull/160))
841
-
842
- ### 0.7.0 (Sep 29, 2015)
843
-
844
- - Fixing issue with minified bundle in IE8 ([#87](https://github.com/axios/axios/pull/87))
845
- - Adding support for passing agent in node ([#102](https://github.com/axios/axios/pull/102))
846
- - Adding support for returning result from `axios.spread` for chaining ([#106](https://github.com/axios/axios/pull/106))
847
- - Fixing typescript definition ([#105](https://github.com/axios/axios/pull/105))
848
- - Fixing default timeout config for node ([#112](https://github.com/axios/axios/pull/112))
849
- - Adding support for use in web workers, and react-native ([#70](https://github.com/axios/axios/issue/70)), ([#98](https://github.com/axios/axios/pull/98))
850
- - Adding support for fetch like API `axios(url[, config])` ([#116](https://github.com/axios/axios/issues/116))
851
-
852
- ### 0.6.0 (Sep 21, 2015)
853
-
854
- - Removing deprecated success/error aliases
855
- - Fixing issue with array params not being properly encoded ([#49](https://github.com/axios/axios/pull/49))
856
- - Fixing issue with User-Agent getting overridden ([#69](https://github.com/axios/axios/issues/69))
857
- - Adding support for timeout config ([#56](https://github.com/axios/axios/issues/56))
858
- - Removing es6-promise dependency
859
- - Fixing issue preventing `length` to be used as a parameter ([#91](https://github.com/axios/axios/pull/91))
860
- - Fixing issue with IE8 ([#85](https://github.com/axios/axios/pull/85))
861
- - Converting build to UMD
862
-
863
- ### 0.5.4 (Apr 08, 2015)
864
-
865
- - Fixing issue with FormData not being sent ([#53](https://github.com/axios/axios/issues/53))
866
-
867
- ### 0.5.3 (Apr 07, 2015)
868
-
869
- - Using JSON.parse unconditionally when transforming response string ([#55](https://github.com/axios/axios/issues/55))
870
-
871
- ### 0.5.2 (Mar 13, 2015)
872
-
873
- - Adding support for `statusText` in response ([#46](https://github.com/axios/axios/issues/46))
874
-
875
- ### 0.5.1 (Mar 10, 2015)
876
-
877
- - Fixing issue using strict mode ([#45](https://github.com/axios/axios/issues/45))
878
- - Fixing issue with standalone build ([#47](https://github.com/axios/axios/issues/47))
879
-
880
- ### 0.5.0 (Jan 23, 2015)
881
-
882
- - Adding support for intercepetors ([#14](https://github.com/axios/axios/issues/14))
883
- - Updating es6-promise dependency
884
-
885
- ### 0.4.2 (Dec 10, 2014)
886
-
887
- - Fixing issue with `Content-Type` when using `FormData` ([#22](https://github.com/axios/axios/issues/22))
888
- - Adding support for TypeScript ([#25](https://github.com/axios/axios/issues/25))
889
- - Fixing issue with standalone build ([#29](https://github.com/axios/axios/issues/29))
890
- - Fixing issue with verbs needing to be capitalized in some browsers ([#30](https://github.com/axios/axios/issues/30))
891
-
892
- ### 0.4.1 (Oct 15, 2014)
893
-
894
- - Adding error handling to request for node.js ([#18](https://github.com/axios/axios/issues/18))
895
-
896
- ### 0.4.0 (Oct 03, 2014)
897
-
898
- - Adding support for `ArrayBuffer` and `ArrayBufferView` ([#10](https://github.com/axios/axios/issues/10))
899
- - Adding support for utf-8 for node.js ([#13](https://github.com/axios/axios/issues/13))
900
- - Adding support for SSL for node.js ([#12](https://github.com/axios/axios/issues/12))
901
- - Fixing incorrect `Content-Type` header ([#9](https://github.com/axios/axios/issues/9))
902
- - Adding standalone build without bundled es6-promise ([#11](https://github.com/axios/axios/issues/11))
903
- - Deprecating `success`/`error` in favor of `then`/`catch`
904
-
905
- ### 0.3.1 (Sep 16, 2014)
906
-
907
- - Fixing missing post body when using node.js ([#3](https://github.com/axios/axios/issues/3))
908
-
909
- ### 0.3.0 (Sep 16, 2014)
910
-
911
- - Fixing `success` and `error` to properly receive response data as individual arguments ([#8](https://github.com/axios/axios/issues/8))
912
- - Updating `then` and `catch` to receive response data as a single object ([#6](https://github.com/axios/axios/issues/6))
913
- - Fixing issue with `all` not working ([#7](https://github.com/axios/axios/issues/7))
914
-
915
- ### 0.2.2 (Sep 14, 2014)
916
-
917
- - Fixing bundling with browserify ([#4](https://github.com/axios/axios/issues/4))
918
-
919
- ### 0.2.1 (Sep 12, 2014)
920
-
921
- - Fixing build problem causing ridiculous file sizes
922
-
923
- ### 0.2.0 (Sep 12, 2014)
924
-
925
- - Adding support for `all` and `spread`
926
- - Adding support for node.js ([#1](https://github.com/axios/axios/issues/1))
927
-
928
- ### 0.1.0 (Aug 29, 2014)
929
-
930
- - Initial release
89
+ - [Dan Mooney](https://github.com/danmooney)
90
+ - [Michael Li](https://github.com/xiaoyu-tamu)
91
+ - [aong](https://github.com/yxwzaxns)
92
+ - [Des Preston](https://github.com/despreston)
93
+ - [Ted Robertson](https://github.com/tredondo)
94
+ - [zhoulixiang](https://github.com/zh-lx)
95
+ - [Arthur Fiorette](https://github.com/arthurfiorette)
96
+ - [Kumar Shanu](https://github.com/Kr-Shanu)
97
+ - [JALAL](https://github.com/JLL32)
98
+ - [Jingyi Lin](https://github.com/MageeLin)
99
+ - [Philipp Loose](https://github.com/phloose)
100
+ - [Alexander Shchukin](https://github.com/sashsvamir)
101
+ - [Dave Cardwell](https://github.com/davecardwell)
102
+ - [Cat Scarlet](https://github.com/catscarlet)
103
+ - [Luca Pizzini](https://github.com/lpizzinidev)
104
+ - [Kai](https://github.com/Schweinepriester)
105
+ - [Maxime Bargiel](https://github.com/mbargiel)
106
+ - [Brian Helba](https://github.com/brianhelba)
107
+ - [reslear](https://github.com/reslear)
108
+ - [Jamie Slome](https://github.com/JamieSlome)
109
+ - [Landro3](https://github.com/Landro3)
110
+ - [rafw87](https://github.com/rafw87)
111
+ - [Afzal Sayed](https://github.com/afzalsayed96)
112
+ - [Koki Oyatsu](https://github.com/kaishuu0123)
113
+ - [Dave](https://github.com/wangcch)
114
+ - [暴走老七](https://github.com/baozouai)
115
+ - [Spencer](https://github.com/spalger)
116
+ - [Adrian Wieprzkowicz](https://github.com/Argeento)
117
+ - [Jamie Telin](https://github.com/lejahmie)
118
+ - [毛呆](https://github.com/aweikalee)
119
+ - [Kirill Shakirov](https://github.com/turisap)
120
+ - [Rraji Abdelbari](https://github.com/estarossa0)
121
+ - [Jelle Schutter](https://github.com/jelleschutter)
122
+ - [Tom Ceuppens](https://github.com/KyorCode)
123
+ - [Johann Cooper](https://github.com/JohannCooper)
124
+ - [Dimitris Halatsis](https://github.com/mitsos1os)
125
+ - [chenjigeng](https://github.com/chenjigeng)
126
+ - [João Gabriel Quaresma](https://github.com/joaoGabriel55)
127
+ - [Victor Augusto](https://github.com/VictorAugDB)