|
4 | 4 |
|
5 | 5 | Fixes and Functionality:
|
6 | 6 |
|
7 |
| -- Updating axios requests to be delayed by pre-emptive promise creation (#2702) |
8 |
| -- Adding "synchronous" and "runWhen" options to interceptors api (#2702) |
9 |
| -- Updating of transformResponse (#3377) |
10 |
| -- Adding ability to omit User-Agent header (#3703) |
11 |
| -- Adding multiple JSON improvements (#3688, #3763) |
12 |
| -- Fixing quadratic runtime and extra memory usage when setting a maxContentLength (#3738) |
13 |
| -- Adding parseInt to config.timeout (#3781) |
14 |
| -- Adding custom return type support to interceptor (#3783) |
15 |
| -- Adding security fix for ReDoS vulnerability (#3980) |
| 7 | +- Updating axios requests to be delayed by pre-emptive promise creation ([#2702](https://github.com/axios/axios/pull/2702)) |
| 8 | +- Adding "synchronous" and "runWhen" options to interceptors api ([#2702](https://github.com/axios/axios/pull/2702)) |
| 9 | +- Updating of transformResponse ([#3377](https://github.com/axios/axios/pull/3377)) |
| 10 | +- Adding ability to omit User-Agent header ([#3703](https://github.com/axios/axios/pull/3703)) |
| 11 | +- Adding multiple JSON improvements ([#3688](https://github.com/axios/axios/pull/3688), [#3763](https://github.com/axios/axios/pull/3763)) |
| 12 | +- Fixing quadratic runtime and extra memory usage when setting a maxContentLength ([#3738](https://github.com/axios/axios/pull/3738)) |
| 13 | +- Adding parseInt to config.timeout ([#3781](https://github.com/axios/axios/pull/3781)) |
| 14 | +- Adding custom return type support to interceptor ([#3783](https://github.com/axios/axios/pull/3783)) |
| 15 | +- Adding security fix for ReDoS vulnerability ([#3980](https://github.com/axios/axios/pull/3980)) |
16 | 16 |
|
17 | 17 | Internal and Tests:
|
18 | 18 |
|
19 |
| -- Updating build dev dependancies (#3401) |
20 |
| -- Fixing builds running on Travis CI (#3538) |
21 |
| -- Updating follow rediect version (#3694, #3771) |
22 |
| -- Updating karma sauce launcher to fix failing sauce tests (#3712, #3717) |
23 |
| -- Updating content-type header for application/json to not contain charset field, according do RFC 8259 (#2154) |
24 |
| -- Fixing tests by bumping karma-sauce-launcher version (#3813) |
25 |
| -- Changing testing process from Travis CI to GitHub Actions (#3938) |
| 19 | +- Updating build dev dependancies ([#3401](https://github.com/axios/axios/pull/3401)) |
| 20 | +- Fixing builds running on Travis CI ([#3538](https://github.com/axios/axios/pull/3538)) |
| 21 | +- Updating follow rediect version ([#3694](https://github.com/axios/axios/pull/3694), [#3771](https://github.com/axios/axios/pull/3771)) |
| 22 | +- 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)) |
| 23 | +- Updating content-type header for application/json to not contain charset field, according do RFC 8259 ([#2154](https://github.com/axios/axios/pull/2154)) |
| 24 | +- Fixing tests by bumping karma-sauce-launcher version ([#3813](https://github.com/axios/axios/pull/3813)) |
| 25 | +- Changing testing process from Travis CI to GitHub Actions ([#3938](https://github.com/axios/axios/pull/3938)) |
26 | 26 |
|
27 | 27 | Documentation:
|
28 | 28 |
|
29 |
| -- Updating documentation around the use of `AUTH_TOKEN` with multiple domain endpoints (#3539) |
30 |
| -- Remove duplication of item in changelog (#3523) |
31 |
| -- Fixing gramatical errors (#2642) |
32 |
| -- Fixing spelling error (#3567) |
33 |
| -- Moving gitpod metion (#2637) |
34 |
| -- Adding new axios documentation website link (#3681, #3707) |
35 |
| -- Updating documentation around dispatching requests (#3772) |
36 |
| -- Adding documentation for the type guard isAxiosError (#3767) |
37 |
| -- Adding explanation of cancel token (#3803) |
38 |
| -- Updating CI status badge (#3953) |
39 |
| -- Fixing errors with JSON documentation (#3936) |
40 |
| -- Fixing README typo under Request Config (#3825) |
41 |
| -- Adding axios-multi-api to the ecosystem file (#3817) |
42 |
| -- Adding SECURITY.md to properly disclose security vulnerabilities (#3981) |
| 29 | +- Updating documentation around the use of `AUTH_TOKEN` with multiple domain endpoints ([#3539](https://github.com/axios/axios/pull/3539)) |
| 30 | +- Remove duplication of item in changelog ([#3523](https://github.com/axios/axios/pull/3523)) |
| 31 | +- Fixing gramatical errors ([#2642](https://github.com/axios/axios/pull/2642)) |
| 32 | +- Fixing spelling error ([#3567](https://github.com/axios/axios/pull/3567)) |
| 33 | +- Moving gitpod metion ([#2637](https://github.com/axios/axios/pull/2637)) |
| 34 | +- Adding new axios documentation website link ([#3681](https://github.com/axios/axios/pull/3681), [#3707](https://github.com/axios/axios/pull/3707)) |
| 35 | +- Updating documentation around dispatching requests ([#3772](https://github.com/axios/axios/pull/3772)) |
| 36 | +- Adding documentation for the type guard isAxiosError ([#3767](https://github.com/axios/axios/pull/3767)) |
| 37 | +- Adding explanation of cancel token ([#3803](https://github.com/axios/axios/pull/3803)) |
| 38 | +- Updating CI status badge ([#3953](https://github.com/axios/axios/pull/3953)) |
| 39 | +- Fixing errors with JSON documentation ([#3936](https://github.com/axios/axios/pull/3936)) |
| 40 | +- Fixing README typo under Request Config ([#3825](https://github.com/axios/axios/pull/3825)) |
| 41 | +- Adding axios-multi-api to the ecosystem file ([#3817](https://github.com/axios/axios/pull/3817)) |
| 42 | +- Adding SECURITY.md to properly disclose security vulnerabilities ([#3981](https://github.com/axios/axios/pull/3981)) |
| 43 | + |
| 44 | +Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub: |
| 45 | + |
| 46 | + |
| 47 | +- [Sasha Korotkov](https://github.com/SashaKoro) |
| 48 | +- [Daniel Lopretto](https://github.com/timemachine3030) |
| 49 | +- [Mike Bishop](https://github.com/MikeBishop) |
| 50 | +- [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS) |
| 51 | +- [Mark](https://github.com/bimbiltu) |
| 52 | +- [Philipe Gouveia Paixão](https://github.com/piiih) |
| 53 | +- [hippo](https://github.com/hippo2cat) |
| 54 | +- [ready-research](https://github.com/ready-research) |
| 55 | +- [Xianming Zhong](https://github.com/chinesedfan) |
| 56 | +- [Christopher Chrapka](https://github.com/OJezu) |
| 57 | +- [Brian Anglin](https://github.com/anglinb) |
| 58 | +- [Kohta Ito](https://github.com/koh110) |
| 59 | +- [Ali Clark](https://github.com/aliclark) |
| 60 | +- [caikan](https://github.com/caikan) |
| 61 | +- [Elina Gorshkova](https://github.com/elinagorshkova) |
| 62 | +- [Ryota Ikezawa](https://github.com/paveg) |
| 63 | +- [Nisar Hassan Naqvi](https://github.com/nisarhassan12) |
| 64 | +- [Jake](https://github.com/codemaster138) |
| 65 | +- [TagawaHirotaka](https://github.com/wafuwafu13) |
| 66 | +- [Johannes Jarbratt](https://github.com/johachi) |
| 67 | +- [Mo Sattler](https://github.com/MoSattler) |
| 68 | +- [Sam Carlton](https://github.com/ThatGuySam) |
| 69 | +- [Matt Czapliński](https://github.com/MattCCC) |
| 70 | +- [Ziding Zhang](https://github.com/zidingz) |
43 | 71 |
|
44 | 72 | ### 0.21.1 (December 21, 2020)
|
45 | 73 |
|
46 | 74 | Fixes and Functionality:
|
47 | 75 |
|
48 |
| -- Hotfix: Prevent SSRF (#3410) |
49 |
| -- Protocol not parsed when setting proxy config from env vars (#3070) |
50 |
| -- Updating axios in types to be lower case (#2797) |
51 |
| -- Adding a type guard for `AxiosError` (#2949) |
| 76 | +- Hotfix: Prevent SSRF ([#3410](https://github.com/axios/axios/pull/3410)) |
| 77 | +- Protocol not parsed when setting proxy config from env vars ([#3070](https://github.com/axios/axios/pull/3070)) |
| 78 | +- Updating axios in types to be lower case ([#2797](https://github.com/axios/axios/pull/2797)) |
| 79 | +- Adding a type guard for `AxiosError` ([#2949](https://github.com/axios/axios/pull/2949)) |
52 | 80 |
|
53 | 81 | Internal and Tests:
|
54 | 82 |
|
55 |
| -- Remove the skipping of the `socket` http test (#3364) |
56 |
| -- Use different socket for Win32 test (#3375) |
| 83 | +- Remove the skipping of the `socket` http test ([#3364](https://github.com/axios/axios/pull/3364)) |
| 84 | +- Use different socket for Win32 test ([#3375](https://github.com/axios/axios/pull/3375)) |
57 | 85 |
|
58 | 86 | Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:
|
59 | 87 |
|
|
0 commit comments