2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-21 13:24:11 +03:00
Commit Graph

538 Commits

Author SHA1 Message Date
Nick Uraltsev 166d68ca1c Highlight breaking changes in 0.14.0 2016-09-12 11:47:47 -07:00
Nick Uraltsev 436d14b976 Fixing issue with responseURL property
`responseURL` is not supported in IE
2016-09-12 11:38:28 -07:00
Nick Uraltsev 4c4e648f40 Replacing Object.hasOwnProperty with Object.prototype.hasOwnProperty 2016-09-12 11:26:40 -07:00
Matt Zabriskie de7d02318b Merge pull request #416 from woodb/changelog-breaking-changes
Added note about breaking changes in v0.13.0
2016-09-12 11:49:22 -06:00
Matt Zabriskie 086a855b83 Merge pull request #438 from 3846masa/3846masa/cookiejar
Add @3846masa/axios-cookiejar-support to ECOSYSTEM
2016-09-12 11:47:47 -06:00
Matt Zabriskie 85548964a6 Merge pull request #440 from kenvunz/patch-2
Add exception for file protocol request
2016-09-12 11:44:32 -06:00
Matt Zabriskie 6cc03f06a7 Merge pull request #445 from tony-kerz/tk/has-own-prop
[for-each] has-own-prop issue node
2016-09-12 11:43:10 -06:00
Tony L. Kerz 077153a0a7 [for-each] has-own-prop issue node 2016-09-11 09:15:22 -04:00
kenvunz 8813068958 Add exception for file protocol request
Without this patch, it's not possible using `axios` for fetching local content for `cordova/phonegap` applications
2016-09-08 12:49:11 +07:00
3846masa 977512da64 Updating ECOSYSTEM 2016-09-06 14:21:17 +09:00
Nick Uraltsev 755a9b3459 Merge pull request #431 from andykog/patch-1
README.md: Add missing comma
2016-08-30 09:06:09 -07:00
Andy Kogut 58a734e652 README.md: Add missing comma 2016-08-30 18:57:45 +03:00
Matt Zabriskie 0b8c86e297 Updating README 2016-08-29 22:30:43 -06:00
Nick Uraltsev c96348660d Releasing 0.14.0 2016-08-27 11:29:52 -07:00
Nick Uraltsev 66ec8c0a32 Updating Changelog and Upgrade Guide 2016-08-27 11:26:53 -07:00
Nick Uraltsev 8bbe4c86b6 Update README.md 2016-08-27 09:37:15 -07:00
Nick Uraltsev 20666942d6 Adding proxy to TypeScript definitions 2016-08-24 15:48:14 -07:00
Nick Uraltsev 65ffdaefe8 Fixing build failure 2016-08-24 15:42:03 -07:00
Hubert Boma Manilla 93ae90ae6e Adding support for http_proxy and https_proxy environment variables 2016-08-24 09:05:26 -07:00
Nick Uraltsev 96d7ac2a0c Replacing progress with onUploadProgress and onDownloadProgress in TypeScript definitions 2016-08-23 18:29:25 -07:00
Dylan Lundy 63f41b53aa Splitting progress event handlers into upload and download handlers 2016-08-22 21:52:59 -07:00
Nick Uraltsev 59080e68d9 Merge pull request #419 from nickuraltsev/ts
Updating TypeScript definitions
2016-08-18 20:42:03 -07:00
Nick Uraltsev 0dfd53f151 Merging master 2016-08-18 20:34:23 -07:00
Nick Uraltsev 1bd9b195a5 Modifying Gruntfile to install typings before running TypeScript tests 2016-08-18 20:14:13 -07:00
Nick Uraltsev 2325216239 Updating TypeScript definition tests 2016-08-18 20:01:54 -07:00
Nick Uraltsev 48549c8de7 Updating TypeScript definitions for axios.all and axios.spread 2016-08-16 19:03:28 -07:00
Brandon Wood 7241be2160 Added note about breaking changes in v0.13.0
Additionally, I moved the breaking changes to the top of the list so that they
were more obvious.
2016-08-16 13:08:14 -05:00
Nick Uraltsev 9a5e77bf6e Adding TypeScript definitions for adapters 2016-08-16 10:49:32 -07:00
Nick Uraltsev 0664d9895a Adding TypeScript definitions for interceptors 2016-08-16 09:34:23 -07:00
Matt Zabriskie fa5ce95fdc Merge pull request #407 from axelboc/patch-2
Fixing doc on accessing response with then/catch
2016-08-12 22:16:30 -05:00
Nick Uraltsev 6132d9630d Merge pull request #406 from pracucci/master
Fixing xsrf header on missing xsrfCookieName
2016-08-12 17:02:59 -07:00
Marco Pracucci e861a6cf75 Added test to ensure that XHR adapter does not read cookies if xsrfCookieName is null 2016-08-11 10:47:53 +02:00
Nick Uraltsev 8f0973c6b9 Fixing failing test 2016-08-09 23:23:08 -07:00
Nick Uraltsev 5176dfdec5 Converting TypeScript definitions to ES2015 module syntax 2016-08-09 23:17:11 -07:00
Axel Bocciarelli 1525e8771b Fixing doc on accessing response with then/catch
Docs were suggesting that accessing the response with `catch` was the same as accessing it with `then`. Split the two cases and point to the Handling Errors section. Also mention the case where a rejection callback is specified as second parameter of `then`.
2016-08-09 13:24:24 +10:00
Marco Pracucci 85b9015890 Fixing xsrf header on missing xsrfCookieName 2016-08-08 14:31:11 +02:00
Nick Uraltsev 8abe0d4007 Merge pull request #397 from madebyherzblut/fix-auth-header
Fixing issue with auth config option and Authorization header
2016-08-04 09:18:16 -07:00
Christian Schuhmann 1ffcbb0369 Fixing Authorization header with basic auth
The http adapater did not remove a custom Authorization header when auth is set.
2016-08-04 08:34:07 +02:00
Nick Uraltsev 8332392bfd Merge pull request #387 from rubennorte/feature/allow-http-and-https-agents
Replace 'agent' option with 'httpAgent' and 'httpsAgent'
2016-07-24 23:15:03 -07:00
Rubén Norte f504dbaba8 Adding documentation for httpAgent and httpsAgent in README 2016-07-25 00:08:17 +02:00
Rubén Norte 4c790d5a7a Replacing 'agent' option with 'httpAgent' and 'httpsAgent' 2016-07-22 21:10:58 +02:00
Matt Zabriskie 0578445929 Moar tests 2016-07-16 11:15:46 -06:00
Matt Zabriskie 377efb89ae Releasing 0.13.1 2016-07-16 11:13:15 -06:00
Matt Zabriskie af07c3145b Releasing 0.13.1 2016-07-16 11:12:43 -06:00
Matt Zabriskie 98d489558e Transform response data on error
closes #378
2016-07-16 11:10:58 -06:00
Matt Zabriskie ff919487e1 0.13.0 2016-07-13 13:42:23 -06:00
Matt Zabriskie 76186e0a75 Releasing 0.13.0 2016-07-13 13:41:30 -06:00
Matt Zabriskie f51bb27ce8 Merge pull request #372 from rubennorte/promise-adapters
Changing adapter signature to receive config and return promises
2016-07-13 12:58:30 -06:00
Rubén Norte 157efd5615 Changing adapter signature to receive config and return promises 2016-07-09 21:30:16 +02:00
Nick Uraltsev 8f3a4301ab Merge pull request #368 from rubennorte/feature/improve-error-handling
Enhance adapter errors
2016-07-08 08:39:10 -07:00