Skip to content

Commit adb92b7

Browse files
chore: version packages (beta)
1 parent 87a3f37 commit adb92b7

9 files changed

Lines changed: 101 additions & 4 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
"@vinext/cloudflare": patch
3+
"create-vinext-app": patch
4+
"vinext": patch
5+
---
6+
7+
- fix(app-router): honor cacheLife stale on the client router (#2708)
8+
- fix(create-vinext-app): generate next env on first run (#2768)
9+
- fix(build): exclude filtered require.context modules (#2736)
10+
- fix(server): transfer request bodies into NextRequest instead of teeing (#2741)
11+
- fix(middleware): preserve headers for empty override value (#2767)
12+
- fix(middleware): stop restoring credentials middleware deleted before external rewrites (#2739)
13+
- fix(cache): bypass shared "use cache" entries in draft mode (#2744)
14+
- fix(app-router): preserve page result render ordering (#2760)
15+
- fix(pages): refresh next/head tags when regenerating ISR HTML (#2729)
16+
- fix(document): HTML-escape NextScript.getInlineScriptSource output (#2727)
17+
- fix(app-router): render pages before consuming layouts (#2751)
18+
- fix(build): recognize Vite dist client aliases (#2750)
19+
- fix(server): support Node production entry contracts (#2749)
20+
- fix(build): support dynamic package subpath imports (#2746)
21+
- fix(server): reject unsupported static asset methods (#2714)
22+
- fix(build): skip unhelpful precompressed variants (#2712)
23+
- fix(navigation): reuse router.prefetch payloads during navigation (#2709)
24+
- fix(server): honor static freshness validators (#2715)
25+
- fix(server): use weak comparison for If-None-Match (#2710)
26+
- fix(server): serve static assets with standard MIME types (#2713)
27+
- fix(metadata): preserve Content-Length for fully buffered responses (#2703)
28+
- fix(image): match Next.js 16 default image sizes (#2704)

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"auto-_vinext_cloudflare_1.0.0-beta.1-0252ea1",
1818
"auto-_vinext_cloudflare_1.0.0-beta.2-023aa76",
1919
"auto-_vinext_cloudflare_1.0.0-beta.3-1c69ce3",
20+
"auto-_vinext_cloudflare_1.0.0-beta.4-87a3f37",
2021
"enter-v1-beta"
2122
]
2223
}

packages/cloudflare/CHANGELOG.md

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

3+
## 1.0.0-beta.5
4+
5+
### Bug Fixes
6+
7+
- **App Router:** honor cacheLife stale on the client router (#2708)
8+
9+
### Contributors
10+
11+
- @NathanDrake2406
12+
313
## 1.0.0-beta.4
414

515
### 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.4",
3+
"version": "1.0.0-beta.5",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# create-vinext-app
22

3+
## 1.0.0-beta.2
4+
5+
### Bug Fixes
6+
7+
- **Create Vinext App:** generate next env on first run (#2768)
8+
9+
### Contributors
10+
11+
- @james-elicx
12+
313
## 1.0.0-beta.1
414

515
### 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.1",
3+
"version": "1.0.0-beta.2",
44
"description": "Create a vinext app for Cloudflare Workers.",
55
"license": "MIT",
66
"repository": {

packages/vinext/CHANGELOG.md

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

3+
## 1.0.0-beta.5
4+
5+
### Bug Fixes
6+
7+
#### App Router
8+
9+
- preserve page result render ordering (#2760)
10+
- render pages before consuming layouts (#2751)
11+
- honor cacheLife stale on the client router (#2708)
12+
13+
#### Build
14+
15+
- exclude filtered require.context modules (#2736)
16+
- recognize Vite dist client aliases (#2750)
17+
- support dynamic package subpath imports (#2746)
18+
- skip unhelpful precompressed variants (#2712)
19+
20+
#### Server
21+
22+
- transfer request bodies into NextRequest instead of teeing (#2741)
23+
- support Node production entry contracts (#2749)
24+
- reject unsupported static asset methods (#2714)
25+
- honor static freshness validators (#2715)
26+
- use weak comparison for If-None-Match (#2710)
27+
- serve static assets with standard MIME types (#2713)
28+
29+
#### Misc
30+
31+
- **Middleware:** preserve headers for empty override value (#2767)
32+
- **Create Vinext App:** generate next env on first run (#2768)
33+
- **Middleware:** stop restoring credentials middleware deleted before external rewrites (#2739)
34+
- **Cache:** bypass shared "use cache" entries in draft mode (#2744)
35+
- **Pages:** refresh next/head tags when regenerating ISR HTML (#2729)
36+
- **Document:** HTML-escape NextScript.getInlineScriptSource output (#2727)
37+
- **Navigation:** reuse router.prefetch payloads during navigation (#2709)
38+
- **Metadata:** preserve Content-Length for fully buffered responses (#2703)
39+
- **Image:** match Next.js 16 default image sizes (#2704)
40+
41+
### Contributors
42+
43+
- @Boyeep
44+
- @james-elicx
45+
- @NathanDrake2406
46+
- @tomvoss
47+
348
## 1.0.0-beta.4
449

550
### 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.4",
3+
"version": "1.0.0-beta.5",
44
"description": "Run Next.js apps on Vite. Drop-in replacement for the next CLI.",
55
"license": "MIT",
66
"repository": {

tests/fixtures/ecosystem/next-intl/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
"type": "module",
55
"exports": {
66
".": "./package-entry.ts",
7-
"./locales/*": ["./messages/*", "./messages/*.json"]
7+
"./locales/*": [
8+
"./messages/*",
9+
"./messages/*.json"
10+
]
811
},
912
"dependencies": {
1013
"react": "catalog:",

0 commit comments

Comments
 (0)