Skip to content

Commit 36e47e8

Browse files
authored
3.1.1 release (node-fetch#1451)
1 parent 5304f3f commit 36e47e8

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

docs/CHANGELOG.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,30 @@ 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-
* fix(request): fix crash when an invalid redirection URL is encountered https://github.com/node-fetch/node-fetch/pull/1387
9-
* fix: handle errors from the request body stream by @mdmitry01 in https://github.com/node-fetch/node-fetch/pull/1392
7+
## What's Changed
8+
* core: update fetch-blob by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1371
9+
* docs: Fix typo around sending a file by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1381
10+
* core: (http.request): Cast URL to string before sending it to NodeJS core by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1378
11+
* core: handle errors from the request body stream by @mdmitry01 in https://github.com/node-fetch/node-fetch/pull/1392
12+
* core: Better handle wrong redirect header in a response by @tasinet in https://github.com/node-fetch/node-fetch/pull/1387
13+
* core: Don't use buffer to make a blob by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1402
14+
* docs: update readme for TS @types/node-fetch by @adamellsworth in https://github.com/node-fetch/node-fetch/pull/1405
15+
* core: Fix logical operator priority to disallow GET/HEAD with non-empty body by @maxshirshin in https://github.com/node-fetch/node-fetch/pull/1369
16+
* core: Don't use global buffer by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1422
17+
* ci: fix main branch by @dnalborczyk in https://github.com/node-fetch/node-fetch/pull/1429
18+
* core: use more node: protocol imports by @dnalborczyk in https://github.com/node-fetch/node-fetch/pull/1428
19+
* core: Warn when using data by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1421
20+
* docs: Create SECURITY.md by @JamieSlome in https://github.com/node-fetch/node-fetch/pull/1445
21+
* core: don't forward secure headers to 3th party by @jimmywarting in https://github.com/node-fetch/node-fetch/pull/1449
22+
23+
## New Contributors
24+
* @mdmitry01 made their first contribution in https://github.com/node-fetch/node-fetch/pull/1392
25+
* @tasinet made their first contribution in https://github.com/node-fetch/node-fetch/pull/1387
26+
* @adamellsworth made their first contribution in https://github.com/node-fetch/node-fetch/pull/1405
27+
* @maxshirshin made their first contribution in https://github.com/node-fetch/node-fetch/pull/1369
28+
* @JamieSlome made their first contribution in https://github.com/node-fetch/node-fetch/pull/1445
29+
30+
**Full Changelog**: https://github.com/node-fetch/node-fetch/compare/v3.1.0...v3.1.2
1031

1132
## 3.1.0
1233

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.1.0",
3+
"version": "3.1.1",
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)