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

Set-Cookie header duplicated when setting cookie maxAge in middleware and redirecting from a Server Component #77637

Open
reh2ur opened this issue Mar 31, 2025 · 0 comments
Labels
Cookies Related to the async cookies() function. Headers Related to the async headers() function. Middleware Related to Next.js Middleware. Redirects Related to redirecting.

Comments

@reh2ur
Copy link

reh2ur commented Mar 31, 2025

Link to the code that reproduces this issue

https://github.com/reh2ur/next-set-cookie-bug

To Reproduce

  1. Start the application in development (next dev).
  2. Directly visit http://localhost:3000/redirect.
  3. Observe the Set-Cookie response headers of the /redirect request.

Current vs. Expected behavior

Following the steps from above, I mostly observe two Set-Cookie headers in the response of /redirect, with Expires times being a second apart and therefore probably not deduped.

I would expect each cookie to be set and send only once.

This does not always happen, but it happens on production as well, and is best reproducible when restarting the dev server between tries. I assume that the middleware still needs to be compiled, which consumes more time.

Provide environment information

Operating System:
  Platform: darwin
  Arch: arm64
  Version: Darwin Kernel Version 24.2.0: Fri Dec  6 19:02:12 PST 2024; root:xnu-11215.61.5~2/RELEASE_ARM64_T6031
  Available memory (MB): 36864
  Available CPU cores: 14
Binaries:
  Node: 23.7.0
  npm: 10.9.2
  Yarn: 4.6.0
  pnpm: 10.6.2
Relevant Packages:
  next: 15.3.0-canary.26 // Latest available version is detected (15.3.0-canary.26).
  eslint-config-next: 15.1.7
  react: 19.0.0
  react-dom: 19.0.0
  typescript: 5.7.3
Next.js Config:
  output: N/A

Which area(s) are affected? (Select all that apply)

Middleware, Headers, Redirects, Cookies

Which stage(s) are affected? (Select all that apply)

next dev (local), next start (local)

Additional context

The first 15-canary version that creates duplicate cookies is v15.0.0-canary.73. Here, I can see a second Set-Cookie header but without all the other properties. In the following canaries, the behavior is changed multiple times.

@github-actions github-actions bot added Cookies Related to the async cookies() function. Headers Related to the async headers() function. Middleware Related to Next.js Middleware. Redirects Related to redirecting. labels Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Cookies Related to the async cookies() function. Headers Related to the async headers() function. Middleware Related to Next.js Middleware. Redirects Related to redirecting.
Projects
None yet
Development

No branches or pull requests

1 participant