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

fix: properly merge headers in fetchWithEvent #980

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

brc-dd
Copy link
Contributor

@brc-dd brc-dd commented Feb 21, 2025

fixes nuxt/nuxt#31073 (will need backporting to v1 to actually fix though)

Currently, the merging behavior is inconsistent between useRequestFetch and client $fetch because of spreading headers without normalization. This PR fixes that by doing essentially same as what's done above in that file:

h3/src/utils/proxy.ts

Lines 37 to 42 in 0a796ff

// Headers
const fetchHeaders = mergeHeaders(
getProxyRequestHeaders(event, { host: target.startsWith("/") }),
opts.fetchOptions?.headers,
opts.headers,
);

@brc-dd brc-dd requested a review from pi0 as a code owner February 21, 2025 13:07
Copy link

codecov bot commented Feb 21, 2025

Codecov Report

Attention: Patch coverage is 0% with 4 lines in your changes missing coverage. Please review.

Project coverage is 79.36%. Comparing base (a58d7c9) to head (f70b39a).
Report is 224 commits behind head on main.

Files with missing lines Patch % Lines
src/utils/proxy.ts 0.00% 4 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #980      +/-   ##
==========================================
+ Coverage   77.83%   79.36%   +1.53%     
==========================================
  Files          47       43       -4     
  Lines        4286     3296     -990     
  Branches      611      795     +184     
==========================================
- Hits         3336     2616     -720     
+ Misses        933      677     -256     
+ Partials       17        3      -14     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

case-sensitivity of headers changes the merged headers in routeRules proxies
1 participant