Skip to content

Commit 177dc1a

Browse files
committed
Updated CHANGELOG.md and fixed typo [skip ci]
1 parent 043c157 commit 177dc1a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*Note: Numbers like (\#123) point to closed Pull Requests on the fractal-web repository.*
22

3+
# Unreleased
4+
5+
* Used form data in tasks collection endpoint (\#669);
6+
37
# 1.11.2
48

59
* Removed usage of `cache_dir` field (\#667);

src/routes/proxy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function createPostProxy(path) {
3535
headers: filterHeaders(request.headers),
3636
body: request.body,
3737
// To avoid error "RequestInit: duplex option is required when sending a body"
38-
// @ts-ignore, not standard, but supported by undici; enable restraming of request
38+
// @ts-ignore, not standard, but supported by undici; enable re-streaming of request
3939
duplex: 'half'
4040
});
4141
} catch (err) {
@@ -57,7 +57,7 @@ export function createPatchProxy(path) {
5757
credentials: 'include',
5858
headers: filterHeaders(request.headers),
5959
body: request.body,
60-
// @ts-ignore, not standard, but supported by undici; enable restraming of request
60+
// @ts-ignore, not standard, but supported by undici; enable re-streaming of request
6161
duplex: 'half'
6262
});
6363
} catch (err) {

0 commit comments

Comments
 (0)