Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Request() constructor init.duplex parameter #25488

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 51 additions & 1 deletion api/Request.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,60 @@
}
}
},
"init_duplex_parameter": {
"__compat": {
"description": "`init.duplex` parameter",
"spec_url": "https://fetch.spec.whatwg.org/#dom-requestinit-duplex",
"support": {
"chrome": {
"version_added": "131"
},
Comment on lines +227 to +229
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How did you determine this version?

"chrome_android": {
"version_added": false
},
"deno": {
"version_added": false
},
"edge": "mirror",
"firefox": {
"version_added": false,
"impl_url": "https://bugzil.la/1792434"
},
"firefox_android": "mirror",
"ie": {
"version_added": false
},
"nodejs": [
{
"version_added": "19.3.0"
},
{
"version_added": "18.13.0",
"version_removed": "19.0.0"
}
],
Comment on lines +245 to +253
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you share links to the PRs/commits?

"oculus": "mirror",
"opera": "mirror",
"opera_android": "mirror",
"safari": {
"version_added": false,
"impl_url": "https://webkit.org/b/245671"
},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": "mirror"
},
"status": {
"experimental": true,
"standard_track": true,
"deprecated": false
}
}
},
"init_keepalive_parameter": {
"__compat": {
"description": "`init.keepalive` parameter",
"mdn_url": "https://developer.mozilla.org/docs/Web/API/Request/keepalive",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ LGTM.

"spec_url": "https://fetch.spec.whatwg.org/#dom-requestinit-keepalive",
"tags": [
"web-features:fetch-keepalive"
Expand Down
7 changes: 7 additions & 0 deletions browsers/nodejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,13 @@
"engine": "V8",
"engine_version": "10.7"
},
"19.3.0": {
"release_date": "2022-12-14",
"release_notes": "https://nodejs.org/en/blog/release/v19.3.0/",
"status": "retired",
"engine": "V8",
"engine_version": "10.7"
},
"19.5.0": {
"release_date": "2023-01-24",
"release_notes": "https://nodejs.org/en/blog/release/v19.5.0/",
Expand Down
Loading