Skip to content
Merged
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.0-4c8399d.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
"@vinext/cloudflare": patch
"vinext": patch
---

- fix(build): honor inline next config for static export (#2543)
- fix(app-router): preserve streamed metadata placement parity (#2572)
- fix(app-router): delay dynamic SSR stream pulls (#2575)
- fix(pages): preserve missing page props on errors (#2568)
- fix(pages): align preview mode behavior (#2561)
- fix(pages): mark auto exports in next data (#2569)
- fix(pages): normalize i18n router URLs (#2565)
- fix(build): gate native typeof window folding (#2574)
- perf(build): use native typeof window folding (#2564)
- fix(app-router): handle redirects in route-miss fallbacks (#2553)
- perf(pages): reuse dev stylesheet dependency analysis (#2550)
- fix(app-router): preserve semicolons in redirect digests (#2487)
- fix: pass server externals to Nitro traceDeps (#2521)
- fix(pages): preserve fast refresh state (#2544)
- fix(routing): discover dot-directory routes (#2531)
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"454dfbdf6b8429624f583f494f742a10452a782a",
"9eed2527018ba4a9459b28edff0450bb8b689aa7",
"auto-_vinext_cloudflare_0.2.1-ed0e343",
"auto-_vinext_cloudflare_1.0.0-beta.0-4c8399d",
"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.1

### Bug Fixes

- **Build:** honor inline next config for static export (#2543)

### Contributors

- @james-elicx

## 1.0.0-beta.0

### Features
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.0",
"version": "1.0.0-beta.1",
"description": "Cloudflare adapters for vinext (KV data cache and Images-backed image optimization).",
"license": "MIT",
"repository": {
Expand Down
38 changes: 38 additions & 0 deletions packages/vinext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# vinext

## 1.0.0-beta.1

### Bug Fixes

#### App Router

- preserve streamed metadata placement parity (#2572)
- delay dynamic SSR stream pulls (#2575)
- handle redirects in route-miss fallbacks (#2553)
- preserve semicolons in redirect digests (#2487)

#### Pages

- preserve missing page props on errors (#2568)
- align preview mode behavior (#2561)
- mark auto exports in next data (#2569)
- normalize i18n router URLs (#2565)
- preserve fast refresh state (#2544)

#### Misc

- **Build:** gate native typeof window folding (#2574)
- pass server externals to Nitro traceDeps (#2521)
- **Build:** honor inline next config for static export (#2543)
- **Routing:** discover dot-directory routes (#2531)

### Performance

- **Build:** use native typeof window folding (#2564)
- **Pages:** reuse dev stylesheet dependency analysis (#2550)

### Contributors

- @james-elicx
- @LubomirGeorgiev
- @NathanDrake2406
- @WilliamK112

## 1.0.0-beta.0

### Features
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.0",
"version": "1.0.0-beta.1",
"description": "Run Next.js apps on Vite. Drop-in replacement for the next CLI.",
"license": "MIT",
"repository": {
Expand Down
Loading