-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Comparing changes
Open a pull request
base repository: vercel/next.js
base: v14.2.13
head repository: vercel/next.js
compare: v14.2.14
- 11 commits
- 67 files changed
- 7 contributors
Commits on Sep 24, 2024
-
feat(next/image): add support for
images.remotePatterns.search
(#70302) This PR adds a new feature to the existing `remotePatterns` allowlist configuration, that enables the ability to filter on `search` (aka query string). The most common usage will likely be `search: ''`, which means no query string allowed. You can also set the exact query string such as `search: '?v=1'` which can be useful to invalidate the cache one time for a specific version without opening the door to any version. Note the leading question mark to match the behavior of `new URL(url).search`.
Configuration menu - View commit details
-
Copy full SHA for ab03c77 - Browse repository at this point
Copy the full SHA ab03c77View commit details -
add missing node modules to externals (#70382)
We should not attempt to bundle builtin node modules on the server. This adds modules provided by Node.js to our externals list (along with some missing internal ones in Turbopack. These were copied from [here](https://github.com/vercel/next.js/blob/a675bde6c738318264573144663e38819aeb2661/crates/next-custom-transforms/src/transforms/warn_for_edge_runtime.rs#L77-L89)). Fixes #70262 Closes NDX-314 # Conflicts: # turbopack/crates/turbopack-resolve/src/resolve.rs
Configuration menu - View commit details
-
Copy full SHA for e19d91c - Browse repository at this point
Copy the full SHA e19d91cView commit details
Commits on Sep 30, 2024
-
backport: fix prefetch bailout detection for nested loading segments (#…
Configuration menu - View commit details
-
Copy full SHA for 50e41a2 - Browse repository at this point
Copy the full SHA 50e41a2View commit details -
Investigating failing tests on `14-2-1` branch
Configuration menu - View commit details
-
Copy full SHA for f81e681 - Browse repository at this point
Copy the full SHA f81e681View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3020a11 - Browse repository at this point
Copy the full SHA 3020a11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 190faf4 - Browse repository at this point
Copy the full SHA 190faf4View commit details -
Fix
revalidateTag()
behaviour when invoked in server components (#7……0446) (#70642) This backports #70446 to 14-2-1 Fixes #70403 ### What? When `revalidateTag()` is called directly in server components, the cache is not purged for the corresponding tags. Reproduction steps available in #70403 ### How? Check [app-render.tsx](https://github.com/vercel/next.js/compare/canary...abhi12299:fix-revalidatetag-rsc?expand=1#diff-a3e2e024db1faa1b501e0dd6040eaaf0d931cb9878ae0fb0f4c3658daa982768) This issue was introduced in #65296 in this file: [revalidate.ts](https://github.com/vercel/next.js/pull/65296/files#diff-7f0cb5bb30d44b9153d724e31c25859b9aab6cc258b35563a1d9464cd0688283). The lines removed from the file resulted in the revalidation checks to be skipped when there is an RSC request. Also fixed checks on `pendingRevalidates` to also check for `revalidatedTags`. Co-authored-by: Abhishek Mehandiratta <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0ffea65 - Browse repository at this point
Copy the full SHA 0ffea65View commit details
Commits on Oct 1, 2024
-
Externalize node binary modules for app router (#70646)
backport #70330 Fixes #69912 --------- Co-authored-by: JJ Kasper <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e1da07e - Browse repository at this point
Copy the full SHA e1da07eView commit details -
Respect reexports from metadata API routes (#70508) (#70647)
backport #70508 Co-authored-by: JJ Kasper <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 73f6b7d - Browse repository at this point
Copy the full SHA 73f6b7dView commit details -
fix: clone response in first handler to prevent race (#70082) (#70649)
This fixes a race where if the body was resolved before the clone operation, it would clone later, resulting in an error being thrown due to the body already being consumed. backports #70082 --------- Co-authored-by: Wyatt Johnson <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 887a419 - Browse repository at this point
Copy the full SHA 887a419View commit details -
Configuration menu - View commit details
-
Copy full SHA for dbbec6a - Browse repository at this point
Copy the full SHA dbbec6aView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v14.2.13...v14.2.14