From f569894ebc84171704b388047b8a3ce2f8c0cbfd Mon Sep 17 00:00:00 2001 From: Matt Zabriskie Date: Wed, 20 Apr 2016 22:51:24 -0600 Subject: [PATCH] Releasing 0.10.0 --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a097f84..5964536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +### 0.10.0 (Apr 20, 2016) + +- Fixing issue with some requests sending `undefined` instead of `null` ([#250](https://github.com/mzabriskie/axios/pull/250)) +- Fixing basic auth for HTTP adapter ([#252](https://github.com/mzabriskie/axios/pull/252)) +- Fixing request timeout for XHR adapter ([#227](https://github.com/mzabriskie/axios/pull/227)) +- Fixing IE8 support by using `onreadystatechange` instead of `onload` ([#249](https://github.com/mzabriskie/axios/pull/249)) +- Fixing IE9 cross domain requests ([#251](https://github.com/mzabriskie/axios/pull/251)) +- Adding `maxContentLength` option ([#275](https://github.com/mzabriskie/axios/pull/275)) +- Fixing XHR support for WebWorker environment ([#279](https://github.com/mzabriskie/axios/pull/279)) +- Adding request instance to response ([#200](https://github.com/mzabriskie/axios/pull/200)) + ### 0.9.1 (Jan 24, 2016) - Improving handling of request timeout in node ([#124](https://github.com/mzabriskie/axios/issues/124))