aboutsummaryrefslogtreecommitdiff
path: root/node_modules/node-fetch/CHANGELOG.md
diff options
context:
space:
mode:
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