@beignet/next 0.0.25 → 0.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +298 -202
- package/dist/index.d.ts +91 -19
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +128 -21
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/skills/routes-server/SKILL.md +16 -11
- package/src/index.ts +256 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @beignet/next
|
|
2
2
|
|
|
3
|
+
## 0.0.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f2461a9: Add lazy Next route server loaders and update generated route files and package docs to avoid booting providers during production build imports.
|
|
8
|
+
- 88200a0: Cron, webhook, payment webhook, and outbox drain route factories now build app
|
|
9
|
+
context from the real request via `server.createRequestContext(...)` instead
|
|
10
|
+
of `next/headers`, so route files run under `bun test` with a plain `Request`
|
|
11
|
+
and request/trace headers propagate into context creation. Webhook routes read
|
|
12
|
+
the raw body first and rehydrate the request for the context factory, so
|
|
13
|
+
signature verification never races context creation over one body stream. The
|
|
14
|
+
`server` option accepts any object exposing `createRequestContext`
|
|
15
|
+
(`NextRouteServer<Ctx>`); existing `server: getServer` call sites keep working
|
|
16
|
+
unchanged.
|
|
17
|
+
- @beignet/web@0.0.27
|
|
18
|
+
|
|
19
|
+
## 0.0.26
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 104302c: Refresh package-shipped TanStack Intent skills and add package skills for Drizzle database providers, Better Auth, React Hook Form, and React uploads.
|
|
24
|
+
- @beignet/web@0.0.26
|
|
25
|
+
|
|
3
26
|
## 0.0.25
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|