Client cache incorrectly resolves nested force-dynamic
routes despite query parameter change (does not happen on /
route)
#58057
Labels
bug
Issue was opened via the bug report template.
Linking and Navigating
Related to Next.js linking (e.g., <Link>) and navigation.
Pages Router
Related to Pages Router.
Link to the code that reproduces this issue
https://codesandbox.io/p/sandbox/next-caching-5t73nd
To Reproduce
next build && next start
(works ok innext dev
)/
and see that theLoad #
link works (updating query parameters)/route
and see that clickingLoad #
only works initially, and subsequently only every ~15s when client cache is invalidatedexport const dynamic = "force-dynamic";
in/route
to fix the problemCurrent vs. Expected behavior
Clicking
Load #
in nested routes marked as"force-dynamic"
would correctly load server components and not hit client cache.Verify canary release
Provide environment information
Operating System: Platform: linux Arch: x64 Version: #1 SMP PREEMPT_DYNAMIC Sun Aug 6 20:05:33 UTC 2023 Binaries: Node: 20.5.1 npm: 9.8.0 Yarn: 1.22.19 pnpm: N/A Relevant Packages: next: 14.0.1 eslint-config-next: N/A react: 18.2.0 react-dom: 18.2.0 typescript: N/A Next.js Config: output: N/A
Which area(s) are affected? (Select all that apply)
App Router, Data fetching (gS(S)P, getInitialProps), Routing (next/router, next/navigation, next/link)
Additional context
Next 14.0.1. I noticed this happening as soon as 13.5.x, but 13.4.12 worked fine.
The text was updated successfully, but these errors were encountered: