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
30 changes: 30 additions & 0 deletions .changeset/auto-_vinext_cloudflare_1.0.0-beta.6-8370369.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
"@vinext/cloudflare": minor
"vinext": minor
---

- fix(cloudflare): finalize CDN version metadata output (#3137)
- fix(cloudflare): support explicit CDN warm targets (#3138)
- fix(cloudflare): harden post-deploy readiness checks (#3136)
- fix(cloudflare): restore web CDN warmup deploy (#3135)
- fix(cloudflare): classify CDN cacheability per concrete route (#3115)
- feat(cache): classify and warm static Route Handlers (#3113)
- feat(cache): probe Pages Router cacheability (#3098)
- fix(cache): certify staged cache fills before promotion (#3094)
- feat(cache): deploy probed manifests in two stages (#3093)
- fix(cache): gate CDN admission on probed routes (#3092)
- fix(cloudflare): discover prewarm paths from staged worker (#3090)
- fix(cloudflare): verify Worker version IDs during CDN warmup (#3072)
- fix(build): validate CDN warm discovery and deploy inputs (#3057)
- fix(cloudflare): complete warmup response and promotion contracts (#3046)
- fix(cloudflare): harden canonical RSC warmup end to end (#3040)
- feat(cloudflare): configure warmup promotion delay (#3017)
- feat(cloudflare): allow warmup without promotion (#3016)
- fix(cloudflare): default CDN warmup concurrency to 25 (#3015)
- feat(cloudflare): prewarm canonical ISR RSC requests (#3002)
- fix(cache): preserve Cache Components ownership during probing (#3103)
- feat(cache): probe App Page cacheability on staged Workers (#3091)
- fix(app-router): support soft navigation in static exports (#3112)
- fix(build): support trailing-slash static exports (#3081)
- fix(app-router): validate interception context identity (#3078)
- fix(app): authenticate static file signals (#3077)
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"auto-_vinext_cloudflare_1.0.0-beta.4-25a33ce",
"auto-_vinext_cloudflare_1.0.0-beta.5-3ec5bdc",
"auto-_vinext_cloudflare_1.0.0-beta.6-52c81f3",
"auto-_vinext_cloudflare_1.0.0-beta.6-8370369",
"auto-_vinext_cloudflare_1.0.0-beta.6-ff3b722",
"enter-v1-beta"
]
Expand Down
41 changes: 41 additions & 0 deletions packages/cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# @vinext/cloudflare

## 1.0.0-beta.7

### Features

#### Cache

- classify and warm static Route Handlers (#3113)
- probe Pages Router cacheability (#3098)
- deploy probed manifests in two stages (#3093)

#### Cloudflare

- configure warmup promotion delay (#3017)
- allow warmup without promotion (#3016)
- prewarm canonical ISR RSC requests (#3002)

### Bug Fixes

#### Cloudflare

- finalize CDN version metadata output (#3137)
- support explicit CDN warm targets (#3138)
- harden post-deploy readiness checks (#3136)
- restore web CDN warmup deploy (#3135)
- classify CDN cacheability per concrete route (#3115)
- discover prewarm paths from staged worker (#3090)
- verify Worker version IDs during CDN warmup (#3072)
- complete warmup response and promotion contracts (#3046)
- harden canonical RSC warmup end to end (#3040)
- default CDN warmup concurrency to 25 (#3015)

#### Misc

- **Cache:** certify staged cache fills before promotion (#3094)
- **Cache:** gate CDN admission on probed routes (#3092)
- **Build:** validate CDN warm discovery and deploy inputs (#3057)

### Contributors

- @james-elicx

## 1.0.0-beta.6

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

## 1.0.0-beta.9

### Features

#### Cache

- classify and warm static Route Handlers (#3113)
- probe Pages Router cacheability (#3098)
- deploy probed manifests in two stages (#3093)
- probe App Page cacheability on staged Workers (#3091)

#### Misc

- **Cloudflare:** prewarm canonical ISR RSC requests (#3002)

### Bug Fixes

#### Cloudflare

- finalize CDN version metadata output (#3137)
- harden post-deploy readiness checks (#3136)
- classify CDN cacheability per concrete route (#3115)
- discover prewarm paths from staged worker (#3090)
- verify Worker version IDs during CDN warmup (#3072)
- complete warmup response and promotion contracts (#3046)
- harden canonical RSC warmup end to end (#3040)

#### Misc

- **Cache:** preserve Cache Components ownership during probing (#3103)
- **Cache:** gate CDN admission on probed routes (#3092)
- **App Router:** support soft navigation in static exports (#3112)
- **Build:** support trailing-slash static exports (#3081)
- **App Router:** validate interception context identity (#3078)
- **App:** authenticate static file signals (#3077)
- **Build:** validate CDN warm discovery and deploy inputs (#3057)

### Contributors

- @james-elicx

## 1.0.0-beta.8

### 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.8",
"version": "1.0.0-beta.9",
"description": "Run Next.js apps on Vite. Drop-in replacement for the next CLI.",
"homepage": "https://vinext.dev/",
"license": "MIT",
Expand Down
Loading