aboutsummaryrefslogtreecommitdiff
path: root/node_modules/node-fetch/CHANGELOG.md
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/node-fetch/CHANGELOG.md
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
fix build issues and add typedoc
Diffstat (limited to 'node_modules/node-fetch/CHANGELOG.md')
-rw-r--r--node_modules/node-fetch/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/node_modules/node-fetch/CHANGELOG.md b/node_modules/node-fetch/CHANGELOG.md
index 857fc8d49..24cf5f8c4 100644
--- a/node_modules/node-fetch/CHANGELOG.md
+++ b/node_modules/node-fetch/CHANGELOG.md
@@ -5,6 +5,13 @@ Changelog
# 1.x release
+## v1.7.0
+
+(Note: this is a maintenance release, `1.x` will only have backported bugfix beyond this release.)
+
+- Fix: revert change in `v1.6.2` where 204 no-content response is handled with a special case, this conflicts with browser Fetch implementation (as browsers always throw when res.json() parses an empty string). Since this is an operational error, it's wrapped in a `FetchError` for easier error handling.
+- Fix: move code coverage tool to codecov platform and update travis config
+
## v1.6.3
- Enhance: error handling document to explain `FetchError` design