Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .changeset/auto-_vinext_cloudflare_1.0.0-beta.4-ad991a7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
"@vinext/cloudflare": patch
"vinext": patch
---

- fix(app-router): honor cacheLife stale on the client router (#2708)
- fix(pages): refresh next/head tags when regenerating ISR HTML (#2729)
- fix(document): HTML-escape NextScript.getInlineScriptSource output (#2727)
- fix(app-router): render pages before consuming layouts (#2751)
- fix(build): recognize Vite dist client aliases (#2750)
- fix(server): support Node production entry contracts (#2749)
- fix(build): support dynamic package subpath imports (#2746)
- fix(server): reject unsupported static asset methods (#2714)
- fix(build): skip unhelpful precompressed variants (#2712)
- fix(navigation): reuse router.prefetch payloads during navigation (#2709)
- fix(server): honor static freshness validators (#2715)
- fix(server): use weak comparison for If-None-Match (#2710)
- fix(server): serve static assets with standard MIME types (#2713)
- fix(metadata): preserve Content-Length for fully buffered responses (#2703)
- fix(image): match Next.js 16 default image sizes (#2704)
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"auto-_vinext_cloudflare_1.0.0-beta.1-0252ea1",
"auto-_vinext_cloudflare_1.0.0-beta.2-023aa76",
"auto-_vinext_cloudflare_1.0.0-beta.3-1c69ce3",
"auto-_vinext_cloudflare_1.0.0-beta.4-ad991a7",
"enter-v1-beta"
]
}
10 changes: 10 additions & 0 deletions packages/cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @vinext/cloudflare

## 1.0.0-beta.5

### Bug Fixes

- **App Router:** honor cacheLife stale on the client router (#2708)

### Contributors

- @NathanDrake2406

## 1.0.0-beta.4

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vinext/cloudflare",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "Cloudflare adapters for vinext (KV data cache and Images-backed image optimization).",
"license": "MIT",
"repository": {
Expand Down
35 changes: 35 additions & 0 deletions packages/vinext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# vinext

## 1.0.0-beta.5

### Bug Fixes

#### Build

- recognize Vite dist client aliases (#2750)
- support dynamic package subpath imports (#2746)
- skip unhelpful precompressed variants (#2712)

#### Server

- support Node production entry contracts (#2749)
- reject unsupported static asset methods (#2714)
- honor static freshness validators (#2715)
- use weak comparison for If-None-Match (#2710)
- serve static assets with standard MIME types (#2713)

#### Misc

- **Pages:** refresh next/head tags when regenerating ISR HTML (#2729)
- **Document:** HTML-escape NextScript.getInlineScriptSource output (#2727)
- **App Router:** render pages before consuming layouts (#2751)
- **App Router:** honor cacheLife stale on the client router (#2708)
- **Navigation:** reuse router.prefetch payloads during navigation (#2709)
- **Metadata:** preserve Content-Length for fully buffered responses (#2703)
- **Image:** match Next.js 16 default image sizes (#2704)

### Contributors

- @Boyeep
- @james-elicx
- @NathanDrake2406
- @tomvoss

## 1.0.0-beta.4

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/vinext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vinext",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "Run Next.js apps on Vite. Drop-in replacement for the next CLI.",
"license": "MIT",
"repository": {
Expand Down
5 changes: 4 additions & 1 deletion tests/fixtures/ecosystem/next-intl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"type": "module",
"exports": {
".": "./package-entry.ts",
"./locales/*": ["./messages/*", "./messages/*.json"]
"./locales/*": [
"./messages/*",
"./messages/*.json"
]
},
"dependencies": {
"react": "catalog:",
Expand Down
Loading