Version Packages - #1206
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 4, 2026 18:47
cf818fe to
0b1c7df
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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 main, this PR will be updated.
Releases
@opennextjs/aws@4.1.1
Patch Changes
#1195
eb04b808731abdab6ed5c8dd30f0eb3b17355336Thanks @JiahaoZhu11! - Fixserver/instrumentation.js does not existbuild failure on Next.js 16On Next.js 16 the standalone output no longer copies
server/instrumentation.jsinto the standalone directory, but
copyTracedFilescopies the instrumentation.nft.jsontrace and then asserts the.jsfile exists in the standalone dir,throwing
File server/instrumentation.js does not existduring the serverbundle. The instrumentation file is now copied from the build dir into the
standalone dir (mirroring the existing
.nft.jsoncopy) so the assertion passesand the file ships in the bundle.
#1207
33422799811e281a0882f2be24264730ae68fff0Thanks @conico974! - Fix stale entries being revalidated in a blocking way on Next.js 16.3To flag a cache entry as stale, the incremental cache adapter reported a
lastModifiedof1(i.e. right after the epoch) to Next.js. Starting withNext.js 16.3 the incremental cache also compares
lastModified + expireto nowand forces a blocking revalidation (
x-nextjs-cache: REVALIDATED) when that isin the past, which an epoch based value always is. Stale entries were therefore
never served while revalidating in the background.
On Next.js 16.3 and above, stale entries now report a
lastModifiedjust pasttheir revalidate window, so they stay inside their expire window and are served
stale as intended. Earlier versions keep the previous behaviour.
app-pages-router@0.1.65
Patch Changes
eb04b808731abdab6ed5c8dd30f0eb3b17355336,33422799811e281a0882f2be24264730ae68fff0]: