create-beignet 0.0.47 → 0.0.49
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 +31 -0
- package/README.md +4 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# create-beignet
|
|
2
2
|
|
|
3
|
+
## 0.0.49
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e597d53: Require Node.js 22.12 or newer across every Beignet package, generated app,
|
|
8
|
+
and documented workflow.
|
|
9
|
+
- 3049831: Prevent outbox job registries from silently running without a dispatcher by
|
|
10
|
+
wiring generated jobs, reporting incomplete app-port configuration, and
|
|
11
|
+
validating delivery transports before claiming messages. Jobs provider presets
|
|
12
|
+
replace only the marked generated inline fallback.
|
|
13
|
+
- e597d53: Migrate the Beignet MCP server to the stable TypeScript SDK v2 packages while
|
|
14
|
+
preserving stdio transport and protocol compatibility.
|
|
15
|
+
- Updated dependencies [e597d53]
|
|
16
|
+
- Updated dependencies [3049831]
|
|
17
|
+
- Updated dependencies [ea4bcf7]
|
|
18
|
+
- Updated dependencies [ac46aad]
|
|
19
|
+
- Updated dependencies [a06c5b9]
|
|
20
|
+
- Updated dependencies [e597d53]
|
|
21
|
+
- Updated dependencies [8c0b355]
|
|
22
|
+
- Updated dependencies [b2188d8]
|
|
23
|
+
- @beignet/cli@0.0.49
|
|
24
|
+
|
|
25
|
+
## 0.0.48
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 728c942: Add read-only migration status reports, connected validation, stable generated migration hashes, preflight pending detection, generated Drizzle status scripts, and serialized deployment guidance.
|
|
30
|
+
- Updated dependencies [728c942]
|
|
31
|
+
- Updated dependencies [2391a09]
|
|
32
|
+
- @beignet/cli@0.0.48
|
|
33
|
+
|
|
3
34
|
## 0.0.47
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
Create a new Beignet app with one command.
|
|
8
8
|
|
|
9
|
+
Beignet requires Node.js 22.12 or newer. Bun 1.3.14 or newer is supported for
|
|
10
|
+
the create command.
|
|
11
|
+
|
|
9
12
|
## Create an app
|
|
10
13
|
|
|
11
14
|
```bash
|
|
@@ -27,6 +30,7 @@ cd my-app
|
|
|
27
30
|
bun install
|
|
28
31
|
cp .env.example .env.local
|
|
29
32
|
bun beignet db migrate
|
|
33
|
+
bun beignet db status
|
|
30
34
|
bun run dev
|
|
31
35
|
```
|
|
32
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-beignet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Create a new Beignet app with one command.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
58
|
+
"node": ">=22.12.0"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@beignet/cli": "^0.0.
|
|
61
|
+
"@beignet/cli": "^0.0.49"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/bun": "^1.3.13",
|
|
65
|
-
"@types/node": "^
|
|
65
|
+
"@types/node": "^22.0.0",
|
|
66
66
|
"typescript": "^5.3.0"
|
|
67
67
|
}
|
|
68
68
|
}
|