Skip to content

Commit 109bd21

Browse files
authored
release minor change (3.1.0) (node-fetch#1364)
1 parent ff71348 commit 109bd21

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed

docs/CHANGELOG.md

Lines changed: 35 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,41 @@ All notable changes will be recorded here.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## unreleased
8-
9-
- other: Deprecated/Discourage [form-data](https://www.npmjs.com/package/form-data) and `body.buffer()` (#1212)
10-
- feat: Add `Body#formData()` (#1314)
11-
- fix: Normalize `Body.body` into a `node:stream` (#924)
12-
- fix: Pass url string to `http.request` for parsing IPv6 urls (#1268)
13-
- fix: Throw error when constructing Request with urls including basic auth (#1268)
7+
## 3.1.0
8+
9+
## What's Changed
10+
* fix(Body): Discourage form-data and buffer() by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1212
11+
* fix: Pass url string to http.request by @serverwentdown in https://github.com/node-fetch/node-fetch/pull/1268
12+
* Fix octocat image link by @lakuapik in https://github.com/node-fetch/node-fetch/pull/1281
13+
* fix(Body.body): Normalize `Body.body` into a `node:stream` by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/924
14+
* docs(Headers): Add default Host request header to README.md file by @robertoaceves in https://github.com/node-fetch/node-fetch/pull/1316
15+
* Update CHANGELOG.md by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1292
16+
* Add highWaterMark to cloned properties by @davesidious in https://github.com/node-fetch/node-fetch/pull/1162
17+
* Update README.md to fix HTTPResponseError by @thedanfernandez in https://github.com/node-fetch/node-fetch/pull/1135
18+
* docs: switch `url` to `URL` by @dhritzkiv in https://github.com/node-fetch/node-fetch/pull/1318
19+
* fix(types): declare buffer() deprecated by @dnalborczyk in https://github.com/node-fetch/node-fetch/pull/1345
20+
* chore: fix lint by @dnalborczyk in https://github.com/node-fetch/node-fetch/pull/1348
21+
* refactor: use node: prefix for imports by @dnalborczyk in https://github.com/node-fetch/node-fetch/pull/1346
22+
* Bump data-uri-to-buffer from 3.0.1 to 4.0.0 by @dependabot in https://github.com/node-fetch/node-fetch/pull/1319
23+
* Bump mocha from 8.4.0 to 9.1.3 by @dependabot in https://github.com/node-fetch/node-fetch/pull/1339
24+
* Referrer and Referrer Policy by @tekwiz in https://github.com/node-fetch/node-fetch/pull/1057
25+
* Add typing for Response.redirect(url, status) by @c-w in https://github.com/node-fetch/node-fetch/pull/1169
26+
* chore: Correct stuff in README.md by @Jiralite in https://github.com/node-fetch/node-fetch/pull/1361
27+
* docs: Improve clarity of "Loading and configuring" by @serverwentdown in https://github.com/node-fetch/node-fetch/pull/1323
28+
* feat(Body): Added support for `BodyMixin.formData()` and constructing bodies with FormData by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1314
29+
30+
## New Contributors
31+
* @serverwentdown made their first contribution in https://github.com/node-fetch/node-fetch/pull/1268
32+
* @lakuapik made their first contribution in https://github.com/node-fetch/node-fetch/pull/1281
33+
* @robertoaceves made their first contribution in https://github.com/node-fetch/node-fetch/pull/1316
34+
* @davesidious made their first contribution in https://github.com/node-fetch/node-fetch/pull/1162
35+
* @thedanfernandez made their first contribution in https://github.com/node-fetch/node-fetch/pull/1135
36+
* @dhritzkiv made their first contribution in https://github.com/node-fetch/node-fetch/pull/1318
37+
* @dnalborczyk made their first contribution in https://github.com/node-fetch/node-fetch/pull/1345
38+
* @dependabot made their first contribution in https://github.com/node-fetch/node-fetch/pull/1319
39+
* @c-w made their first contribution in https://github.com/node-fetch/node-fetch/pull/1169
40+
41+
**Full Changelog**: https://github.com/node-fetch/node-fetch/compare/v3.0.0...v3.1.0
1442

1543
## v3.0.0
1644

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-fetch",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "A light-weight module that brings Fetch API to node.js",
55
"main": "./src/index.js",
66
"sideEffects": false,

0 commit comments

Comments
 (0)