-
-
Notifications
You must be signed in to change notification settings - Fork 34
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 #2050
Upcoming Release Changes #2050
Conversation
234502a
to
2e56425
Compare
WalkthroughThis pull request removes two changeset files that documented patch updates for the Changes
Sequence Diagram(s)sequenceDiagram
participant Client as Client
participant NodeFetch as @whatwg-node/node-fetch
Client->>NodeFetch: Send HTTP request
NodeFetch->>NodeFetch: Check if response requires redirection
NodeFetch-->>Client: Return response with proper HTTP redirect status code (e.g., 301/302)
sequenceDiagram
participant Client as Client
participant NodeFetch as @whatwg-node/node-fetch
Client->>NodeFetch: Request resource via file:/// URL
NodeFetch->>NodeFetch: Verify file existence and permission
alt File not found
NodeFetch-->>Client: Return 404 error
else Access forbidden
NodeFetch-->>Client: Return 403 error
else File found and accessible
NodeFetch-->>Client: Return file content
end
Possibly Related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
💤 Files with no reviewable changes (2)
🚧 Files skipped from review as they are similar to previous changes (2)
⏰ Context from checks skipped due to timeout of 90000ms (18)
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 (
|
2e56425
to
65bba01
Compare
✅
|
✅
|
✅
|
✅
|
✅
|
5d49a5c
to
b133db4
Compare
b133db4
to
51c5693
Compare
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
#2049
7c95998
Thanks @ardatan! - Redirect with correct status codes
#2051
252f68b
Thanks @ardatan! - Fix crash on null header values during inspect
#2009
5b5ae5f
Thanks @ardatan! - When
fetch('file:///...')
is used to readfiles;
Summary by CodeRabbit
New Features
Bug Fixes