-
-
Notifications
You must be signed in to change notification settings - Fork 36
Upcoming Release Changes #2098
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
Upcoming Release Changes #2098
Conversation
0b4738c to
56cbafa
Compare
WalkthroughThis pull request removes a patch changeset that addressed a TypeError when using HTTP/2 with the @whatwg-node packages. In addition, it bumps version numbers and updates dependency versions across multiple packages including benchmarks/server, e2e/aws-lambda, e2e/shared-server, e2e/vercel, packages/fetch, packages/node-fetch, and packages/server. The changes focus on fixing HTTP/2 request parsing errors (affecting methods like Request.json, Request.text, Request.formData, and Request.blob) without modifying the public API. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant HTTP2Module as HTTP/2 Module
participant Server as @whatwg-node/server
participant Fetch as @whatwg-node/fetch
Client->>HTTP2Module: Send HTTP/2 Request
HTTP2Module->>Server: Forward Request
Server->>Fetch: Process request with Request.json/text/formData/blob
Fetch-->>Server: Return parsed body (patched)
Server-->>HTTP2Module: Send response
HTTP2Module-->>Client: Deliver response
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (15)
💤 Files with no reviewable changes (1)
✅ Files skipped from review due to trivial changes (10)
⏰ Context from checks skipped due to timeout of 90000ms (15)
🔇 Additional comments (6)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
✅
|
✅
|
✅
|
✅
|
🚀 Snapshot Release (
|
| Package | Version | Info |
|---|---|---|
@whatwg-node/fetch |
0.10.5-rc-20250224102947-56cbafa57aa3a2d5c97ffcd44f35cb98d37c47a3 |
npm ↗︎ unpkg ↗︎ |
@whatwg-node/node-fetch |
0.7.11-rc-20250224102947-56cbafa57aa3a2d5c97ffcd44f35cb98d37c47a3 |
npm ↗︎ unpkg ↗︎ |
@whatwg-node/server |
0.9.69-rc-20250224102947-56cbafa57aa3a2d5c97ffcd44f35cb98d37c47a3 |
npm ↗︎ unpkg ↗︎ |
✅
|
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@whatwg-node/[email protected]
Patch Changes
#2093
31f021aThanks @ardatan! - Fixes the
TypeError: bodyInit.stream is not a functionerror thrown when@whatwg-node/serveris usedwith
node:http2and attempts the incoming HTTP/2 request to parse withRequest.json,Request.text,Request.formData, orRequest.blobmethods.Updated dependencies
[
31f021a]:@whatwg-node/[email protected]
Patch Changes
31f021aThanks @ardatan! - Fixes the
TypeError: bodyInit.stream is not a functionerror thrown when@whatwg-node/serveris usedwith
node:http2and attempts the incoming HTTP/2 request to parse withRequest.json,Request.text,Request.formData, orRequest.blobmethods.@whatwg-node/[email protected]
Patch Changes
#2093
31f021aThanks @ardatan! - Fixes the
TypeError: bodyInit.stream is not a functionerror thrown when@whatwg-node/serveris usedwith
node:http2and attempts the incoming HTTP/2 request to parse withRequest.json,Request.text,Request.formData, orRequest.blobmethods.Updated dependencies
[
31f021a]:@benchmarks/[email protected]
Patch Changes
[
31f021a]:@e2e/[email protected]
Patch Changes
[
31f021a]:@e2e/[email protected]
Patch Changes
[
31f021a]:@e2e/[email protected]
Patch Changes
Summary by CodeRabbit
Bug Fixes
Chores