Skip to content

Commit 7eccf8e

Browse files
chore: version packages (beta) (#2616)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0252ea1 commit 7eccf8e

10 files changed

Lines changed: 109 additions & 5 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
"@vinext/cloudflare": patch
3+
"@vinext/types": minor
4+
"create-vinext-app": minor
5+
"vinext": minor
6+
---
7+
8+
- fix(cache): guard 'use cache' key against Cloudflare KV's 512-byte limit (#2606)
9+
- fix(create): make create-vinext-app work with npm and npx (#2618)
10+
- feat(types): ship Next-compatible types without Next.js (#2612)
11+
- fix(check): exclude test-runner files from app compatibility scans (#2596)
12+
- fix(app-router): stream generated metadata after the document shell (#2619)
13+
- fix(cache): isolate draft route responses (#2591)
14+
- fix(middleware): align unsafe matcher validation (#2599)
15+
- fix(pages): match encoded string static paths (#2629)
16+
- fix(dev): refresh routes after server restarts (#2588)
17+
- fix(pages): isolate static render router state (#2583)
18+
- fix(pages): validate redirect destinations consistently (#2586)
19+
- fix(config): keep page extensions out of module resolution (#2594)
20+
- fix(navigation): avoid rewriting URL for history metadata (#2615)
21+
- fix(og): resolve dot-hash wasm fallbacks (#2608)
22+
- fix(router): avoid repeated App path decoding (#2556)
23+
- fix(pages): preserve data route path identity (#2580)
24+
- fix(app-router): preserve Flight stream framing (#2579)
25+
- fix(pages): populate route in app initial props router (#2623)
26+
- fix(shims): align public API with vendored Next types (#2617)

.changeset/pre.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
"create-vinext-app": "0.2.0",
77
"vinext": "0.2.1",
88
"@apps/web": "0.1.0",
9-
"fumadocs-docs-template": "0.0.0"
9+
"fumadocs-docs-template": "0.0.0",
10+
"@vinext/types": "1.0.0-beta.1"
1011
},
1112
"changesets": [
1213
"454dfbdf6b8429624f583f494f742a10452a782a",
1314
"9eed2527018ba4a9459b28edff0450bb8b689aa7",
1415
"auto-_vinext_cloudflare_0.2.1-ed0e343",
1516
"auto-_vinext_cloudflare_1.0.0-beta.0-4c8399d",
17+
"auto-_vinext_cloudflare_1.0.0-beta.1-0252ea1",
1618
"enter-v1-beta"
1719
]
1820
}

packages/cloudflare/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @vinext/cloudflare
22

3+
## 1.0.0-beta.2
4+
5+
### Bug Fixes
6+
7+
- **Cache:** guard 'use cache' key against Cloudflare KV's 512-byte limit (#2606)
8+
- **Create:** make create-vinext-app work with npm and npx (#2618)
9+
10+
### Contributors
11+
12+
- @blitss
13+
- @james-elicx
14+
315
## 1.0.0-beta.1
416

517
### Bug Fixes

packages/cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vinext/cloudflare",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"description": "Cloudflare adapters for vinext (KV data cache and Images-backed image optimization).",
55
"license": "MIT",
66
"repository": {

packages/create-vinext-app/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# create-vinext-app
22

3+
## 1.0.0-beta.1
4+
5+
### Features
6+
7+
- **Types:** ship Next-compatible types without Next.js (#2612)
8+
9+
### Bug Fixes
10+
11+
- **Create:** make create-vinext-app work with npm and npx (#2618)
12+
13+
### Contributors
14+
15+
- @james-elicx
16+
317
## 1.0.0-beta.0
418

519
### Features

packages/create-vinext-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-vinext-app",
3-
"version": "1.0.0-beta.0",
3+
"version": "1.0.0-beta.1",
44
"description": "Create a vinext app for Cloudflare Workers.",
55
"license": "MIT",
66
"repository": {

packages/types/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @vinext/types
2+
3+
## 1.0.0-beta.2
4+
5+
### Features
6+
7+
- **Types:** ship Next-compatible types without Next.js (#2612)
8+
9+
### Contributors
10+
11+
- @james-elicx

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vinext/types",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"description": "Type declarations for vinext's Next.js-compatible public API.",
55
"license": "MIT",
66
"repository": {

packages/vinext/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# vinext
22

3+
## 1.0.0-beta.2
4+
5+
### Features
6+
7+
- **Types:** ship Next-compatible types without Next.js (#2612)
8+
9+
### Bug Fixes
10+
11+
#### Pages
12+
13+
- match encoded string static paths (#2629)
14+
- isolate static render router state (#2583)
15+
- validate redirect destinations consistently (#2586)
16+
- preserve data route path identity (#2580)
17+
- populate route in app initial props router (#2623)
18+
19+
#### Misc
20+
21+
- **Check:** exclude test-runner files from app compatibility scans (#2596)
22+
- **App Router:** stream generated metadata after the document shell (#2619)
23+
- **Cache:** isolate draft route responses (#2591)
24+
- **Middleware:** align unsafe matcher validation (#2599)
25+
- **Dev:** refresh routes after server restarts (#2588)
26+
- **Cache:** guard 'use cache' key against Cloudflare KV's 512-byte limit (#2606)
27+
- **Config:** keep page extensions out of module resolution (#2594)
28+
- **Navigation:** avoid rewriting URL for history metadata (#2615)
29+
- **OG:** resolve dot-hash wasm fallbacks (#2608)
30+
- **Router:** avoid repeated App path decoding (#2556)
31+
- **App Router:** preserve Flight stream framing (#2579)
32+
- **Shims:** align public API with vendored Next types (#2617)
33+
34+
### Contributors
35+
36+
- @blitss
37+
- @exKAZUu
38+
- @james-elicx
39+
- @lyzno1
40+
- @NathanDrake2406
41+
342
## 1.0.0-beta.1
443

544
### Bug Fixes

packages/vinext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vinext",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"description": "Run Next.js apps on Vite. Drop-in replacement for the next CLI.",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)