@beignet/cli 0.0.1 → 0.0.4
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 +231 -0
- package/README.md +497 -90
- package/dist/ansi.d.ts +10 -0
- package/dist/ansi.d.ts.map +1 -0
- package/dist/ansi.js +20 -0
- package/dist/ansi.js.map +1 -0
- package/dist/choices.d.ts +72 -0
- package/dist/choices.d.ts.map +1 -0
- package/dist/choices.js +88 -0
- package/dist/choices.js.map +1 -0
- package/dist/completion.d.ts +47 -0
- package/dist/completion.d.ts.map +1 -0
- package/dist/completion.js +123 -0
- package/dist/completion.js.map +1 -0
- package/dist/config.d.ts +39 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +26 -0
- package/dist/config.js.map +1 -1
- package/dist/create-prompts.d.ts +42 -0
- package/dist/create-prompts.d.ts.map +1 -0
- package/dist/create-prompts.js +136 -0
- package/dist/create-prompts.js.map +1 -0
- package/dist/create.d.ts +12 -0
- package/dist/create.d.ts.map +1 -1
- package/dist/create.js +19 -24
- package/dist/create.js.map +1 -1
- package/dist/db.d.ts +37 -0
- package/dist/db.d.ts.map +1 -0
- package/dist/db.js +146 -0
- package/dist/db.js.map +1 -0
- package/dist/github-annotations.d.ts +18 -0
- package/dist/github-annotations.d.ts.map +1 -0
- package/dist/github-annotations.js +22 -0
- package/dist/github-annotations.js.map +1 -0
- package/dist/index.d.ts +1 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +710 -400
- package/dist/index.js.map +1 -1
- package/dist/inspect.d.ts +45 -2
- package/dist/inspect.d.ts.map +1 -1
- package/dist/inspect.js +2191 -100
- package/dist/inspect.js.map +1 -1
- package/dist/lib.d.ts +20 -0
- package/dist/lib.d.ts.map +1 -0
- package/dist/lib.js +17 -0
- package/dist/lib.js.map +1 -0
- package/dist/lint.d.ts +22 -1
- package/dist/lint.d.ts.map +1 -1
- package/dist/lint.js +370 -38
- package/dist/lint.js.map +1 -1
- package/dist/make.d.ts +109 -1
- package/dist/make.d.ts.map +1 -1
- package/dist/make.js +2225 -333
- package/dist/make.js.map +1 -1
- package/dist/outbox.d.ts +24 -0
- package/dist/outbox.d.ts.map +1 -0
- package/dist/outbox.js +138 -0
- package/dist/outbox.js.map +1 -0
- package/dist/schedule.d.ts +36 -0
- package/dist/schedule.d.ts.map +1 -0
- package/dist/schedule.js +155 -0
- package/dist/schedule.js.map +1 -0
- package/dist/task.d.ts +26 -0
- package/dist/task.d.ts.map +1 -0
- package/dist/task.js +106 -0
- package/dist/task.js.map +1 -0
- package/dist/templates.d.ts +12 -8
- package/dist/templates.d.ts.map +1 -1
- package/dist/templates.js +2144 -385
- package/dist/templates.js.map +1 -1
- package/dist/version.d.ts +8 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +18 -0
- package/dist/version.js.map +1 -0
- package/package.json +9 -8
- package/src/ansi.ts +30 -0
- package/src/choices.ts +137 -0
- package/src/completion.ts +169 -0
- package/src/config.ts +47 -0
- package/src/create-prompts.ts +182 -0
- package/src/create.ts +32 -28
- package/src/db.ts +222 -0
- package/src/github-annotations.ts +37 -0
- package/src/index.ts +1119 -535
- package/src/inspect.ts +3372 -134
- package/src/lib.ts +45 -0
- package/src/lint.ts +533 -45
- package/src/make.ts +3010 -397
- package/src/outbox.ts +249 -0
- package/src/schedule.ts +272 -0
- package/src/task.ts +169 -0
- package/src/templates.ts +2282 -462
- package/src/version.ts +20 -0
- package/dist/create-bin.d.ts +0 -3
- package/dist/create-bin.d.ts.map +0 -1
- package/dist/create-bin.js +0 -9
- package/dist/create-bin.js.map +0 -1
- package/src/create-bin.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,236 @@
|
|
|
1
1
|
# @beignet/cli
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8bcb31f: Mark package READMEs with Beignet's experimental alpha status and 0.0.x stability expectations.
|
|
8
|
+
- c1a834d: Generate an app-owned client error helper and align form error handling docs with
|
|
9
|
+
the canonical React Query and React Hook Form mutation path.
|
|
10
|
+
- 94de15c: Improve the standard starter first-hour workflow by printing database, route, feature, test, lint, and doctor next steps, updating generated starter docs, and adding generated-feature smoke coverage.
|
|
11
|
+
- 9c23782: Clarify `make feature` and `make resource` guidance in CLI output and docs so feature slices are positioned for workflows while resources are positioned for CRUD-shaped entities.
|
|
12
|
+
- df4673f: Add TanStack Query filter helpers for Beignet contract cache invalidation and update generated UI examples to use them.
|
|
13
|
+
- d137044: Declare `@beignet/core` as a peer dependency with a lockstep version range in
|
|
14
|
+
every integration and provider package instead of a regular `"*"` dependency.
|
|
15
|
+
Installs now always resolve a single shared copy of core, so `instanceof`
|
|
16
|
+
checks such as `isContractError` and upload error identity keep working, and
|
|
17
|
+
mixed Beignet versions fail loudly at install time instead of at runtime.
|
|
18
|
+
|
|
19
|
+
If your package manager does not install peer dependencies automatically, add
|
|
20
|
+
`@beignet/core` to your app alongside these packages. `@beignet/nuqs` now also
|
|
21
|
+
declares `@beignet/react-query` as a peer dependency, and
|
|
22
|
+
`@beignet/provider-storage-s3` now expects you to install
|
|
23
|
+
`@aws-sdk/client-s3` and `@aws-sdk/s3-request-presigner` yourself, matching
|
|
24
|
+
how other providers treat their SDKs.
|
|
25
|
+
|
|
26
|
+
- 4c1cb16: Formalize provider package manifest metadata with exported core types and
|
|
27
|
+
validation, and have doctor warn on malformed installed provider metadata before
|
|
28
|
+
using provider-derived diagnostics.
|
|
29
|
+
- 56daf2b: Add `beignet outbox drain` for bounded app-owned outbox delivery from local, CI, or worker entrypoints.
|
|
30
|
+
- 5e440f7: Upgrade `beignet make resource` to generate CRUD-shaped resource slices with get, update, delete, policy, repository, route, contract, test, and error-catalog wiring.
|
|
31
|
+
- 6ce179c: Generate CRUD resource lists with cursor pagination, name filtering, allowlisted sorting, and matching memory and Drizzle repository behavior.
|
|
32
|
+
- 50ab61b: Improve database lifecycle command preflight and doctor diagnostics for Drizzle config, schema exports, database scripts, seed/reset entrypoints, and reset guards.
|
|
33
|
+
- 2da5a05: Report installed-but-unregistered optional providers as informational doctor
|
|
34
|
+
hints. Provider packages can declare `registration.severity: "hint"` in their
|
|
35
|
+
`beignet.provider` manifest metadata, and `@beignet/devtools` now uses it, so
|
|
36
|
+
removing `createDevtoolsProvider()` from `server/providers.ts` no longer fails
|
|
37
|
+
`beignet doctor --strict`.
|
|
38
|
+
- 1a79090: Emit Node-compatible ESM: all relative imports in published packages now carry explicit .js extensions, fixing ERR_MODULE_NOT_FOUND when running the CLI or importing package dist files under plain Node.
|
|
39
|
+
- 94082eb: Document that durable job draining runs through the outbox command while direct provider jobs use provider-owned worker entrypoints.
|
|
40
|
+
- 82c48dc: Add canonical test port and context fixtures, and update generated tests to use them.
|
|
41
|
+
- 9c1fcdf: Add a `make feature --with ui` addon that generates a feature-colocated React Query component for the generated list and create contracts.
|
|
42
|
+
- 76692ed: Validate generated CRUD resource option combinations through typecheck, tests, lint, and strict doctor, add generated optimistic concurrency, and version doctor JSON output.
|
|
43
|
+
- 21d92ba: Update generated feature and use-case tests to use Beignet test activity helpers for stable actor and request context setup.
|
|
44
|
+
- 0f2dd89: Add `beignet make resource --soft-delete` and doctor drift checks for generated soft-delete resource slices.
|
|
45
|
+
- 6c3134e: Improve doctor OpenAPI drift checks so they follow the registered route surface, understand `contractsFromRoutes(routes)` registries, and warn when OpenAPI lists contracts that are not registered.
|
|
46
|
+
- 69b8c35: Fix `beignet lint` package bans so `@beignet/core/*` subpath entries match. Banned
|
|
47
|
+
entries such as `@beignet/core/ports` in domain files and `@beignet/core/server` in
|
|
48
|
+
use cases are now flagged, and bare package bans keep matching any subpath import.
|
|
49
|
+
- 493d23b: Make the framework own context assembly with a server context blueprint and first-class service contexts.
|
|
50
|
+
|
|
51
|
+
- `createServer(...)` (and the Next/Web adapters) replace the `createContext` option with `context`. Gate-less contexts keep the plain request-factory shorthand; contexts that declare a `gate` must use the blueprint form `{ gate: (ports) => ports.gate, request, service }`. Returning `gate` from a context factory or hook addition is now a compile error.
|
|
52
|
+
- The gate port gains `gate.attach(ctx)`: it attaches a live, non-enumerable `ctx.gate` getter that re-binds against the receiving object on every access, so identity changes (including auth-hook elevation) can never authorize against a stale context, and spread copies drop the gate loudly instead of silently keeping stale identity. `bind(...)` remains the low-level primitive.
|
|
53
|
+
- Servers expose `createRequestContext(req)` and `createServiceContext(input?)`; the optional `context.service` factory powers schedule, outbox, command, and background contexts. Provider `setup`, `start`, and `stop` receive a late-bound `createServiceContext` so infra providers no longer hand-build background contexts.
|
|
54
|
+
- `createTestContextFactory(...)` now attaches the gate after all `extra` and override fields merge, fixing a stale-identity bug in tests.
|
|
55
|
+
- CLI templates, generators, and doctor diagnostics emit and check the new context blueprint and service-context wrappers.
|
|
56
|
+
|
|
57
|
+
- 9d1bf0b: Clarify React Hook Form submit-error handling and align generated form examples with Beignet client error semantics.
|
|
58
|
+
- 532b4e9: Wrap transaction-scoped starter audit ports with devtools instrumentation so generated write use cases appear in the devtools audit timeline.
|
|
59
|
+
- d137044: Make `beignet create --preset minimal` generate working apps for the `drizzle-turso` and `better-auth` integrations. The minimal Drizzle combo now scaffolds `drizzle.config.ts`, a todos-only schema, a Drizzle todo repository, and an app-owned database provider behind a deferred `todos` port, and only emits `db:seed`/`db:reset` scripts when their entrypoints exist. The minimal Better Auth combo now wires `lib/better-auth.ts` with Better Auth's in-memory adapter, the `app/api/auth/[...all]` route, `createAuthBetterAuthProvider(...)` behind a deferred `auth` port, and an `auth` session on the request context.
|
|
60
|
+
- 4949d4f: Add doctor diagnostics for partially wired CRUD resource slices, including missing generated contracts, use cases, repository methods, route entries, not-found catalog errors, and strict-mode CRUD test coverage. Rename CLI diagnostic codes from the legacy `CK_` prefix to `BEIGNET_`.
|
|
61
|
+
- 44f1192: Move first-party provider diagnostics to package-owned `beignet.provider`
|
|
62
|
+
manifest metadata and have doctor read installed provider package manifests.
|
|
63
|
+
- 2aa77ca: Add static provider metadata and provider wiring diagnostics for generated apps.
|
|
64
|
+
- 90c2e48: Add typed operational command definitions and a `beignet make command` generator for feature-owned app commands.
|
|
65
|
+
- 4af4257: Add doctor diagnostics for route-owned error catalog drift, including missing shared catalog entries, undeclared feature app errors, and strict-mode unused feature-owned route errors.
|
|
66
|
+
- 5b5dfb0: Pin the standard starter to a known-good Better Auth version, narrow provider metadata to avoid clean installs floating into incompatible Better Auth adapter dependencies, and add first-screen starter links for the todo workflow, health check, OpenAPI document, devtools, and docs.
|
|
67
|
+
- ac78cdf: Add `createScheduleRoute(...)` to `@beignet/next` for triggering one registered schedule from a serverless cron route, with the same fail-closed bearer auth and JSON envelope conventions as `createOutboxDrainRoute(...)`. Unknown schedule names throw when the route module loads.
|
|
68
|
+
|
|
69
|
+
The inline schedule runner in `@beignet/core/schedules` now accepts `instrumentation` and `instrumentationContext` options and records `schedule` devtools events (`started`, `completed`, `failed`) itself. Recording failures are isolated from schedule execution and reported to `onHookError`. `createScheduleRoute(...)`, `beignet schedule run`, and generated cron routes use this instead of hand-rolled lifecycle hooks.
|
|
70
|
+
|
|
71
|
+
Security: cron route bearer secrets in `createScheduleRoute(...)` and `createOutboxDrainRoute(...)` are now compared with a timing-safe SHA-256 digest comparison instead of `!==`.
|
|
72
|
+
|
|
73
|
+
- 69b8c35: Require patched dependency versions for security advisories: drizzle-orm
|
|
74
|
+
`^0.45.2` (SQL injection via improperly escaped identifiers, GHSA advisory
|
|
75
|
+
patched in 0.45.2) and nodemailer `^8.0.5` (SMTP command injection fixes).
|
|
76
|
+
Generated apps now scaffold with drizzle-orm `^0.45.2` and drizzle-kit
|
|
77
|
+
`^0.31.10`.
|
|
78
|
+
- a7dfb68: Add production readiness doctor warnings for devtools exposure, cron secrets, upload size limits, provider env configuration, Better Auth route setup, and credentialed wildcard CORS.
|
|
79
|
+
- 89390fe: Decouple devtools from app code with server-owned instrumentation.
|
|
80
|
+
|
|
81
|
+
- `@beignet/core/tracing` is a new dependency-free subpath with the W3C trace
|
|
82
|
+
primitives (`TraceContext`, `createTraceContext`, `createChildTraceContext`,
|
|
83
|
+
`parseTraceparent`, `createTraceparent`, `createTraceId`, `createSpanId`).
|
|
84
|
+
App context types now use `Partial<TraceContext>` instead of importing
|
|
85
|
+
`DevtoolsTraceContext` from `@beignet/devtools`.
|
|
86
|
+
- `createServer(...)` owns request instrumentation through a new
|
|
87
|
+
`instrumentation` option (`ServerInstrumentationOptions | false`). The server
|
|
88
|
+
resolves request IDs and trace context before user hooks and context
|
|
89
|
+
creation, passes them to context factories as `requestId` and `trace`,
|
|
90
|
+
writes `x-request-id`/`traceparent` response headers by default, and records
|
|
91
|
+
request/error events into the instrumentation port resolved from final ports
|
|
92
|
+
(`ports.instrumentation`, then `ports.devtools`). The ambient request
|
|
93
|
+
context (`enterActiveRequestContext` and friends) moved into
|
|
94
|
+
`@beignet/core/server`.
|
|
95
|
+
- `createUseCase(...)` instruments runs by default, resolving the
|
|
96
|
+
instrumentation port from `ctx.ports` per run; opt out with
|
|
97
|
+
`instrumentation: false`. App `onRun` observers run in addition.
|
|
98
|
+
- `createInstrumentedAuditLog({ audit, instrumentation })` in
|
|
99
|
+
`@beignet/core/ports` replaces `createDevtoolsAuditLog`.
|
|
100
|
+
- `createServer(...)` gains `validateResponses` (default `true`) to skip
|
|
101
|
+
route-owned response validation, mirroring the client option.
|
|
102
|
+
- Removed from `@beignet/devtools`: `createDevtoolsHooks`,
|
|
103
|
+
`createDevtoolsUseCaseObserver`, `createDevtoolsAuditLog`, and the
|
|
104
|
+
trace/request-context modules. Apps now only need `createDevtoolsProvider()`
|
|
105
|
+
plus the devtools route; deleting both leaves the rest of the app compiling
|
|
106
|
+
and running unchanged.
|
|
107
|
+
- `@beignet/next` cron and upload helpers resolve their instrumentation sink
|
|
108
|
+
with `resolveProviderInstrumentationPort(ctx.ports)` instead of hardcoding
|
|
109
|
+
`ports.devtools`.
|
|
110
|
+
- `beignet create` templates generate the decoupled shape.
|
|
111
|
+
|
|
112
|
+
- 16cc113: Clarify the canonical route registration story and align generated starters on `app-context.ts`.
|
|
113
|
+
- f3cbf3d: Add `make resource` options for authorization, tenancy, and domain events so generated CRUD slices can include policy metadata, use-case gate checks, tenant-scoped repositories, policy tests, and resource event definitions.
|
|
114
|
+
- 377b6e2: Add doctor warnings for authorization metadata that drifts from feature policy coverage and audit-required metadata without audit writes or test assertions.
|
|
115
|
+
- 49a80df: Add strict doctor diagnostics for canonical Beignet app conformance drift.
|
|
116
|
+
- ac78cdf: Split the client `validate` config flag into `validateInput` (default false)
|
|
117
|
+
and `validateResponses` (default true). Client-side input validation failures
|
|
118
|
+
now throw a client-source `ContractError` with code `INPUT_VALIDATION_ERROR`
|
|
119
|
+
and no HTTP status instead of a synthetic 422 `VALIDATION_ERROR`. Setting
|
|
120
|
+
`validateResponses: false` returns success bodies as-is and classifies non-2xx
|
|
121
|
+
responses structurally while keeping `INVALID_JSON` transport errors.
|
|
122
|
+
- cca08b1: Align generated apps and package docs around the canonical auth, policy, and AppContext model.
|
|
123
|
+
- d6ad8bb: Standardize generated client helpers around `client/index.ts`, add a typed
|
|
124
|
+
React Query invalidation helper, and align package docs with the canonical app
|
|
125
|
+
client entrypoint.
|
|
126
|
+
- a6b386f: Expand architecture lint to catch cross-feature domain imports, infra/UI boundary drift, and provider imports in feature components.
|
|
127
|
+
- a67c637: Add Beignet runtime boundary markers and extend `beignet lint` to catch client-safe roots that value-reach server-only code.
|
|
128
|
+
- b46b993: Improve generated command output and lifecycle stubs for app-owned operational commands.
|
|
129
|
+
- c061bd9: Add `beignet command run` for app-owned operational commands and wire generated commands into the app command registry.
|
|
130
|
+
- eec217a: Align the minimal starter with the canonical feature structure by generating `features/todos/use-cases/index.ts` instead of `features/todos/use-cases.ts`, and keep minimal create next steps API-only.
|
|
131
|
+
- 5a8dce6: Add a low-risk doctor fixer for feature route groups that already exist but are missing from the central route registry.
|
|
132
|
+
- 493d23b: Add typed provider-contributed ports. `InferProviderPorts` (replacing
|
|
133
|
+
`ProvidedPortsOfList`) merges the ports a provider list contributes so apps can
|
|
134
|
+
type `ctx.ports` as `AppPorts & InferProviderPorts<typeof providers>` without
|
|
135
|
+
casts. The curried `definePorts<AppPorts>()({ bound, deferred })` form replaces
|
|
136
|
+
throwing stub boilerplate: deferred keys boot as descriptive placeholders and
|
|
137
|
+
`createServer(...)` fails startup with the unbound key list (configurable via
|
|
138
|
+
`onUnboundPorts: "error" | "warn" | "ignore"`). App-local providers can declare
|
|
139
|
+
required ports, app context, and service-context input through the curried
|
|
140
|
+
`createProvider<Requires, Context, ServiceInput>()` form, which types
|
|
141
|
+
`setup({ ports, createServiceContext })` and lifecycle contexts end to end.
|
|
142
|
+
CLI templates and `beignet make` generate and maintain the new forms.
|
|
143
|
+
- 8063d38: Rename the contract front door to `defineContract`/`defineContractGroup`, rename operational commands to tasks (`@beignet/core/tasks`, `defineTasks`, `runTask`, `beignet task run`, `beignet make task`, `server/tasks.ts`, `features/<feature>/tasks/`, `paths.tasks`), and standardize context binding: context-free declarations stay top-level (`defineEvent`), while context-bound definitions come from per-capability factories (`createListeners`, `createJobs`, `createSchedules`, `createNotifications`, `createTasks`) called once in `lib/`. Top-level context-generic `defineListener`, `defineJob`, `defineSchedule`, and `defineNotification` are removed.
|
|
144
|
+
- 192c6ad: Generated apps import `contractErrorMessage` and `rootFormError` from `@beignet/core/client` and `@beignet/react-hook-form` instead of owning a `client/errors.ts` copy, and doctor no longer requires that file.
|
|
145
|
+
- 192c6ad: Rename `defineFactory` to `createFactory` and `defineEnv` to `createEnvLoader` to match the naming convention: define declares things you register, create returns runtime objects you call.
|
|
146
|
+
- 192c6ad: Routes can bind a contract directly to a use case with `{ contract, useCase }` — status is inferred from a sole 2xx response, input defaults to merged path/query/body parts, and validated inputs are not re-parsed when the use case reuses the contract schema by reference. Full `handle` routes remain the escape hatch for headers, streaming, and multi-status responses.
|
|
147
|
+
- 255527d: Generated apps declare their context blueprint in `server/context.ts` via `defineServerContext` and share it with route tests; test generators use the new testing defaults; doctor learns schema-directory and test-placement checks and follows the context blueprint into `server/context.ts`.
|
|
148
|
+
- 1a79090: The CLI ships a single `beignet` bin (app scaffolding moves to the `create-beignet` package), generated apps install @beignet/cli locally and invoke it with `bun beignet`, and commands gain `--version`, `--cwd`, `--format github` annotations, lint line numbers, distinct usage exit codes, `create --dry-run/--json`, `schemaVersion` on all JSON output, and lazy command loading for fast startup.
|
|
149
|
+
- 8ad12a9: Doctor warns when @beignet/\* package versions drift apart, `beignet create` gains an interactive TTY setup (skip with flags or `--yes`), shell completions install via `beignet completion install`, and feature/integration selection uses single comma-separated `--features`/`--integrations` flags.
|
|
150
|
+
- 93e83db: Generate an isolated Drizzle/libSQL test database helper in standard starters so repository and persistence tests can reuse the app's schema, repository factory, reset, audit, and outbox wiring.
|
|
151
|
+
- ac78cdf: Enforce contract `meta.idempotency` at the HTTP boundary with the new
|
|
152
|
+
`createIdempotencyHooks(...)` server hook. The hook reserves the client key
|
|
153
|
+
after request parsing, replays completed matching responses with an
|
|
154
|
+
`idempotency-replayed: true` header, and rejects in-progress and conflicting
|
|
155
|
+
keys. The server now maps uncaught `IdempotencyConflictError` and
|
|
156
|
+
`IdempotencyInProgressError` primitives to framework-owned `409` responses
|
|
157
|
+
using the new `httpErrors.IdempotencyConflict` and
|
|
158
|
+
`httpErrors.IdempotencyInProgress` catalog entries, so apps no longer need to
|
|
159
|
+
re-map idempotency primitives to app-local catalog errors.
|
|
160
|
+
`runIdempotently(...)` remains the workflow-level primitive for non-HTTP work.
|
|
161
|
+
`beignet doctor` recognizes the new `httpErrors` catalog entries.
|
|
162
|
+
- c76c784: Add `beignet schedule run` for bounded app-owned schedule execution from local, CI, or worker entrypoints.
|
|
163
|
+
- Updated dependencies [8bcb31f]
|
|
164
|
+
- Updated dependencies [5d5e303]
|
|
165
|
+
- Updated dependencies [31c7e66]
|
|
166
|
+
- Updated dependencies [8297c7c]
|
|
167
|
+
- Updated dependencies [4c1cb16]
|
|
168
|
+
- Updated dependencies [ac78cdf]
|
|
169
|
+
- Updated dependencies [2da5a05]
|
|
170
|
+
- Updated dependencies [780955c]
|
|
171
|
+
- Updated dependencies [1a79090]
|
|
172
|
+
- Updated dependencies [7fe855b]
|
|
173
|
+
- Updated dependencies [079bf59]
|
|
174
|
+
- Updated dependencies [82c48dc]
|
|
175
|
+
- Updated dependencies [5a51869]
|
|
176
|
+
- Updated dependencies [89390fe]
|
|
177
|
+
- Updated dependencies [89390fe]
|
|
178
|
+
- Updated dependencies [303ba07]
|
|
179
|
+
- Updated dependencies [2da5a05]
|
|
180
|
+
- Updated dependencies [493d23b]
|
|
181
|
+
- Updated dependencies [493d23b]
|
|
182
|
+
- Updated dependencies [44f1192]
|
|
183
|
+
- Updated dependencies [2aa77ca]
|
|
184
|
+
- Updated dependencies [eda7b59]
|
|
185
|
+
- Updated dependencies [90c2e48]
|
|
186
|
+
- Updated dependencies [ac78cdf]
|
|
187
|
+
- Updated dependencies [89390fe]
|
|
188
|
+
- Updated dependencies [16cc113]
|
|
189
|
+
- Updated dependencies [e9c3209]
|
|
190
|
+
- Updated dependencies [ac78cdf]
|
|
191
|
+
- Updated dependencies [cca08b1]
|
|
192
|
+
- Updated dependencies [ac78cdf]
|
|
193
|
+
- Updated dependencies [a67c637]
|
|
194
|
+
- Updated dependencies [7b0f708]
|
|
195
|
+
- Updated dependencies [246c66c]
|
|
196
|
+
- Updated dependencies [242f220]
|
|
197
|
+
- Updated dependencies [493d23b]
|
|
198
|
+
- Updated dependencies [8063d38]
|
|
199
|
+
- Updated dependencies [905da0a]
|
|
200
|
+
- Updated dependencies [192c6ad]
|
|
201
|
+
- Updated dependencies [192c6ad]
|
|
202
|
+
- Updated dependencies [192c6ad]
|
|
203
|
+
- Updated dependencies [192c6ad]
|
|
204
|
+
- Updated dependencies [255527d]
|
|
205
|
+
- Updated dependencies [ac78cdf]
|
|
206
|
+
- @beignet/core@0.0.4
|
|
207
|
+
|
|
208
|
+
## 0.0.3
|
|
209
|
+
|
|
210
|
+
### Patch Changes
|
|
211
|
+
|
|
212
|
+
- 5643ae6: Add feature factory and seed generators plus database lifecycle doctor checks.
|
|
213
|
+
- 80db618: Add notification generation, route-test scaffold updates, and doctor checks for upload and notification drift.
|
|
214
|
+
- 3160184: Add `beignet db generate|migrate|seed|reset`, scaffold standard seed/reset database entrypoints, and expose a factory reset helper for test data workflows.
|
|
215
|
+
- 03f07b2: Promote the standard starter to a golden-path Beignet app with Better Auth, Drizzle/libSQL persistence, UOW, outbox, audit logging, jobs/events/schedules, uploads, notifications, devtools, and deployment entrypoints wired by default.
|
|
216
|
+
- 254ef6d: Add scoped route hooks for route and route-group policy, update auth hooks to expose public/optional/required route-hook factories, and teach CLI route inspection about curried route groups.
|
|
217
|
+
- 4cb1784: Add first-class upload router primitives, a typed browser upload client, a
|
|
218
|
+
React upload adapter, Next.js upload route helper, S3-compatible direct upload
|
|
219
|
+
signing, devtools upload watcher support, an upload generator, and a
|
|
220
|
+
first-class `beignet make feature` command with optional policy, event, job,
|
|
221
|
+
and upload artifacts for the standard vertical slice. Add first-class job retry
|
|
222
|
+
helpers, outbox retry policy integration, and job retry/dead-letter devtools
|
|
223
|
+
events. Add a Next.js outbox drain route helper and doctor warnings for
|
|
224
|
+
serverless background-work footguns.
|
|
225
|
+
|
|
226
|
+
## 0.0.2
|
|
227
|
+
|
|
228
|
+
### Patch Changes
|
|
229
|
+
|
|
230
|
+
- 90b29ad: Add pagination primitives and generate list responses with `items` and `page`.
|
|
231
|
+
- a79f60c: Add first-class notification primitives, devtools notification watcher support,
|
|
232
|
+
and dependency-direction lint coverage for feature workflow folders.
|
|
233
|
+
|
|
3
234
|
## 0.0.1
|
|
4
235
|
|
|
5
236
|
- Initial Beignet release under the `@beignet` npm scope.
|