@sylphx/flow 3.10.0 → 3.11.0
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 +10 -0
- package/assets/agents/builder.md +9 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 3.11.0 (2026-02-03)
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- **builder:** add build-time migration verification with push --dry-run ([3a6b609](https://github.com/SylphxAI/flow/commit/3a6b609e8554ebd1be917f683a7f6be1626de2e9))
|
|
8
|
+
|
|
9
|
+
### 🔧 Chores
|
|
10
|
+
|
|
11
|
+
- trigger release ([919ccd0](https://github.com/SylphxAI/flow/commit/919ccd0833b0122627732095efe24c85c5a2ff27))
|
|
12
|
+
|
|
3
13
|
## 3.10.0 (2026-02-03)
|
|
4
14
|
|
|
5
15
|
### ✨ Features
|
package/assets/agents/builder.md
CHANGED
|
@@ -152,7 +152,15 @@ Assume no one reads logs. If it's worth logging, it's worth throwing.
|
|
|
152
152
|
|
|
153
153
|
**Source of truth = migration SQL, not schema.**
|
|
154
154
|
|
|
155
|
-
Write SQL directly
|
|
155
|
+
Write migration SQL directly. Update `_journal.json`. Skip `drizzle-kit generate` — it's not AI-friendly.
|
|
156
|
+
|
|
157
|
+
**Build-time verification:**
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
drizzle-kit migrate && drizzle-kit push --dry-run
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
After `migrate`, run `push --dry-run` to verify DB matches schema.ts. If there's any diff, migration is incomplete — fail the build.
|
|
156
164
|
|
|
157
165
|
## Architecture Principles
|
|
158
166
|
|
package/package.json
CHANGED