Still True?
← Back to the board
Data revalidation

On Next.js 16 revalidateTag takes a cacheLife profile as its second argument. Use updateTag in a Server Action for read your writes.

officialNext.js 16 release announcementconfidence 85%current as of Aug 2026

Next.js 16 changed revalidateTag to take a cacheLife profile as a second argument for stale while revalidate behavior, for example revalidateTag('posts', 'max'). The single argument form is deprecated. A new updateTag gives read your writes semantics inside a Server Action. A new refresh call updates uncached data only.

Related claims