@pgflow/core 0.0.0-test-snapshot-releases2-8d5d9bc1-20250922101158 → 0.0.0-update-supabase-868977e5-20251119071021

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.
Files changed (31) hide show
  1. package/README.md +177 -73
  2. package/dist/ATLAS.md +32 -0
  3. package/dist/CHANGELOG.md +796 -0
  4. package/dist/PgflowSqlClient.d.ts +17 -0
  5. package/dist/PgflowSqlClient.d.ts.map +1 -0
  6. package/dist/PgflowSqlClient.js +70 -0
  7. package/dist/README.md +497 -0
  8. package/dist/database-types.d.ts +1007 -0
  9. package/dist/database-types.d.ts.map +1 -0
  10. package/dist/database-types.js +8 -0
  11. package/dist/index.d.ts +4 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +2 -0
  14. package/dist/package.json +32 -0
  15. package/dist/supabase/migrations/20250429164909_pgflow_initial.sql +579 -0
  16. package/dist/supabase/migrations/20250517072017_pgflow_fix_poll_for_tasks_to_use_separate_statement_for_polling.sql +101 -0
  17. package/dist/supabase/migrations/20250609105135_pgflow_add_start_tasks_and_started_status.sql +371 -0
  18. package/dist/supabase/migrations/20250610180554_pgflow_add_set_vt_batch_and_use_it_in_start_tasks.sql +127 -0
  19. package/dist/supabase/migrations/20250614124241_pgflow_add_realtime.sql +501 -0
  20. package/dist/supabase/migrations/20250619195327_pgflow_fix_fail_task_missing_realtime_event.sql +185 -0
  21. package/dist/supabase/migrations/20250627090700_pgflow_fix_function_search_paths.sql +6 -0
  22. package/dist/supabase/migrations/20250707210212_pgflow_add_opt_start_delay.sql +103 -0
  23. package/dist/supabase/migrations/20250719205006_pgflow_worker_deprecation.sql +2 -0
  24. package/dist/supabase/migrations/20251006073122_pgflow_add_map_step_type.sql +1244 -0
  25. package/dist/supabase/migrations/20251103222045_pgflow_fix_broadcast_order_and_timestamp_handling.sql +622 -0
  26. package/dist/supabase/migrations/20251104080523_pgflow_upgrade_pgmq_1_5_1.sql +93 -0
  27. package/dist/tsconfig.lib.tsbuildinfo +1 -0
  28. package/dist/types.d.ts +93 -0
  29. package/dist/types.d.ts.map +1 -0
  30. package/dist/types.js +1 -0
  31. package/package.json +4 -4
@@ -0,0 +1,796 @@
1
+ # @pgflow/core
2
+
3
+ ## 0.0.0-update-supabase-868977e5-20251119071021
4
+
5
+ ### Minor Changes
6
+
7
+ - 3d8b13b: BREAKING CHANGE: pgflow 0.8.0 requires pgmq 1.5.0+, PostgreSQL 17, and Supabase CLI 2.34.3+
8
+
9
+ This version modernizes infrastructure dependencies and will NOT work with pgmq 1.4.x or earlier. The migration includes a compatibility check that aborts with a clear error message if requirements are not met.
10
+
11
+ **Requirements:**
12
+
13
+ - pgmq 1.5.0 or higher (previously supported 1.4.x)
14
+ - PostgreSQL 17 (from 15)
15
+ - Supabase CLI 2.34.3 or higher (includes pgmq 1.5.0+)
16
+
17
+ **For Supabase users:** Upgrade your Supabase CLI to 2.34.3+ which includes pgmq 1.5.0 by default.
18
+
19
+ **For self-hosted users:** Upgrade pgmq to 1.5.0+ and PostgreSQL to 17 before upgrading pgflow.
20
+
21
+ **If you cannot upgrade immediately:** Stay on pgflow 0.7.x until your infrastructure is ready. The migration safety check ensures you cannot accidentally upgrade to an incompatible version.
22
+
23
+ ### Patch Changes
24
+
25
+ - @pgflow/dsl@0.0.0-update-supabase-868977e5-20251119071021
26
+
27
+ ## 0.7.3
28
+
29
+ ### Patch Changes
30
+
31
+ - @pgflow/dsl@0.7.3
32
+
33
+ ## 0.7.2
34
+
35
+ ### Patch Changes
36
+
37
+ - c22a1e5: Fix missing realtime broadcasts for step:started and step:completed events
38
+
39
+ **Critical bug fix:** Clients were not receiving `step:started` events when steps transitioned to Started status, and `step:completed` events for empty map steps and cascade completions were also missing.
40
+
41
+ **Root cause:** PostgreSQL query optimizer was eliminating CTEs containing `realtime.send()` calls because they were not referenced by subsequent operations or the final RETURN statement.
42
+
43
+ **Solution:** Moved `realtime.send()` calls directly into RETURNING clauses of UPDATE statements, ensuring they execute atomically with state changes and cannot be optimized away.
44
+
45
+ **Changes:**
46
+
47
+ - `start_ready_steps()`: Broadcasts step:started and step:completed events in RETURNING clauses
48
+ - `cascade_complete_taskless_steps()`: Broadcasts step:completed events atomically with cascade completion
49
+ - `complete_task()`: Added PERFORM statements for run:failed and step:failed broadcasts
50
+ - Client: Added `applySnapshot()` methods to FlowRun and FlowStep for proper initial state hydration without event emission
51
+ - @pgflow/dsl@0.7.2
52
+
53
+ ## 0.7.1
54
+
55
+ ### Patch Changes
56
+
57
+ - a71b371: Fix installation failures on new Supabase projects by removing pgmq version pin.
58
+
59
+ Supabase upgraded to pgmq 1.5.1 in Postgres 17.6.1.016+ (https://github.com/supabase/postgres/pull/1668), but pgflow was pinned to 1.4.4, causing "extension has no installation script" errors on fresh instances.
60
+
61
+ Only affects new projects - existing installations are unaffected and require no action.
62
+
63
+ Thanks to @kallebysantos for reporting this issue!
64
+
65
+ - @pgflow/dsl@0.7.1
66
+
67
+ ## 0.7.0
68
+
69
+ ### Minor Changes
70
+
71
+ - 524db03: Add map step type infrastructure in SQL core
72
+
73
+ ⚠️ **This migration includes automatic data migration**
74
+
75
+ The migration will automatically update existing `step_states` rows to satisfy new constraints. This should complete without issues due to strict check constraints enforced in previous versions.
76
+
77
+ 💡 **Recommended: Verify before deploying to production**
78
+
79
+ If you have existing production data and want to verify the migration will succeed cleanly, run this **read-only check query** (does not modify data) in **Supabase Studio** against your **production database**:
80
+
81
+ 1. Open Supabase Studio → SQL Editor
82
+ 2. Copy contents of `pkgs/core/queries/PRE_MIGRATION_CHECK_20251006073122.sql`
83
+ 3. Execute against your production database (not local dev!)
84
+ 4. Review results
85
+
86
+ **Expected output for successful migration:**
87
+
88
+ ```
89
+ type | identifier | details
90
+ ---------------------------|---------------------------|------------------------------------------
91
+ DATA_BACKFILL_STARTED | run=def67890 step=process | initial_tasks will be set to 1 (...)
92
+ DATA_BACKFILL_COMPLETED | Found 100 completed steps | initial_tasks will be set to 1 (...)
93
+ INFO_SUMMARY | total_step_states=114 | created=0 started=1 completed=113 failed=0
94
+ ```
95
+
96
+ **Interpretation:**
97
+
98
+ - ✅ Only `DATA_BACKFILL_*` and `INFO_SUMMARY` rows? **Safe to migrate**
99
+ - ⚠️ These are expected data migrations handled automatically by the migration
100
+ - 🆘 Unexpected rows or errors? Copy output and share on Discord for help
101
+
102
+ 📝 **Note:** This check identifies data that needs migration but does not modify anything. Only useful for production databases with existing runs.
103
+
104
+ **Automatic data updates:**
105
+
106
+ - Sets `initial_tasks = 1` for all existing steps (correct for pre-map-step schema)
107
+ - Sets `remaining_tasks = NULL` for 'created' status steps (new semantics)
108
+
109
+ No manual intervention required.
110
+
111
+ ***
112
+
113
+ ## Changes
114
+
115
+ This patch introduces the foundation for map step functionality in the SQL core layer:
116
+
117
+ ### Schema Changes
118
+
119
+ - Added `step_type` column to `steps` table with constraint allowing 'single' or 'map' values
120
+ - Added `initial_tasks` column to `step_states` table (defaults to 1, stores planned task count)
121
+ - Modified `remaining_tasks` column to be nullable (NULL = not started, >0 = active countdown)
122
+ - Added constraint `remaining_tasks_state_consistency` to ensure `remaining_tasks` is only set when step has started
123
+ - Removed `only_single_task_per_step` constraint from `step_tasks` table to allow multiple tasks per step
124
+
125
+ ### Function Updates
126
+
127
+ - **`add_step()`**: Now accepts `step_type` parameter (defaults to 'single') with validation that map steps can have at most 1 dependency
128
+ - **`start_flow()`**: Sets `initial_tasks = 1` for all steps (map step array handling will come in future phases)
129
+ - **`start_ready_steps()`**: Copies `initial_tasks` to `remaining_tasks` when starting a step, maintaining proper task counting semantics
130
+
131
+ ### Testing
132
+
133
+ - Added comprehensive test coverage for map step creation and validation
134
+ - All existing tests pass with the new schema changes
135
+ - Tests validate the new step_type parameter and dependency constraints for map steps
136
+
137
+ This is Phase 2a of the map step implementation, establishing the SQL infrastructure needed for parallel task execution in future phases.
138
+
139
+ ### Patch Changes
140
+
141
+ - 524db03: Improve failure handling and prevent orphaned messages in queue
142
+
143
+ - Archive all queued messages when a run fails to prevent resource waste
144
+ - Handle type constraint violations gracefully without exceptions
145
+ - Store output on failed tasks (including type violations) for debugging
146
+ - Add performance index for efficient message archiving
147
+ - Prevent retries on already-failed runs
148
+ - Update table constraint to allow output storage on failed tasks
149
+
150
+ - Updated dependencies [524db03]
151
+ - Updated dependencies [524db03]
152
+ - @pgflow/dsl@0.7.0
153
+
154
+ ## 0.6.1
155
+
156
+ ### Patch Changes
157
+
158
+ - @pgflow/dsl@0.6.1
159
+
160
+ ## 0.6.0
161
+
162
+ ### Patch Changes
163
+
164
+ - 81d552f: Implement worker deprecation for graceful shutdowns
165
+
166
+ - Add deprecation support to enable zero-downtime deployments
167
+ - Workers now check deprecation status via heartbeat and stop accepting new work when deprecated
168
+ - Repurpose unused `stopped_at` column as `deprecated_at` for tracking deprecation timestamps
169
+ - Refactor heartbeat logic directly into lifecycle classes for improved type safety
170
+ - Add configurable heartbeat interval (default: 5 seconds)
171
+ - Workers complete in-flight work before shutting down when deprecated
172
+
173
+ - Updated dependencies [a67bf27]
174
+ - @pgflow/dsl@0.6.0
175
+
176
+ ## 0.5.4
177
+
178
+ ### Patch Changes
179
+
180
+ - Updated dependencies [9f219a4]
181
+ - @pgflow/dsl@0.5.4
182
+
183
+ ## 0.5.3
184
+
185
+ ### Patch Changes
186
+
187
+ - af787ff: Add `startDelay` option for workflow steps
188
+
189
+ Introduces the ability to delay a step's **initial execution** by a specified number of seconds, enabling multi-day workflows and scheduled tasks within pgflow.
190
+
191
+ **Important**: `startDelay` only applies to the first execution attempt. Retries use the standard exponential backoff mechanism based on `baseDelay`, not `startDelay`.
192
+
193
+ ### Core Changes (@pgflow/core)
194
+
195
+ - Added `opt_start_delay` column (integer, nullable, CHECK >= 0) to `pgflow.steps` table
196
+ - Updated `add_step` function to accept and validate the new `start_delay` parameter
197
+ - Modified `start_ready_steps` to schedule initial task execution with delay via `pgmq.send(queue, message, delay)`
198
+ - Requires pgmq >= 0.40 for delay support
199
+ - Migration: `20250707210212_pgflow_add_opt_start_delay.sql`
200
+ - Added comprehensive PgTAP tests for validation and scheduling behavior
201
+
202
+ ### DSL Changes (@pgflow/dsl)
203
+
204
+ - Extended `StepOptions` and `StepRuntimeOptions` interfaces with optional `startDelay` (in seconds)
205
+ - Updated `compileFlow()` to emit `start_delay => value` in generated SQL
206
+ - Added validation: `startDelay` is only allowed at step level, not flow level (prevents cascading delays)
207
+ - Valid range: 0 to 2,147,483,647 seconds (~68 years)
208
+ - Added unit tests for compilation and validation
209
+
210
+ ### Documentation Updates (@pgflow/website)
211
+
212
+ - Added `startDelay` section in configuration guide with detailed explanation
213
+ - Created multi-day workflow example (onboarding email sequence)
214
+ - Updated "Update Flow Options" to include `opt_start_delay`
215
+ - Enhanced VS comparison pages to mention "Native step delays" capability
216
+ - Documented why `startDelay` is step-level only
217
+
218
+ ### Example Usage
219
+
220
+ ```typescript
221
+ new Flow({
222
+ slug: 'user_onboarding',
223
+ maxAttempts: 3,
224
+ baseDelay: 5, // Retry delay (not initial delay)
225
+ timeout: 60,
226
+ })
227
+ .step(
228
+ {
229
+ slug: 'send_welcome_email',
230
+ // Executes immediately when step becomes ready
231
+ },
232
+ sendWelcomeHandler
233
+ )
234
+ .step(
235
+ {
236
+ slug: 'send_day_3_tips',
237
+ startDelay: 259200, // Wait 3 days before first execution
238
+ timeout: 120,
239
+ },
240
+ sendTipsHandler
241
+ )
242
+ .step(
243
+ {
244
+ slug: 'send_week_review',
245
+ startDelay: 604800, // Wait 7 days after dependencies complete
246
+ timeout: 120,
247
+ },
248
+ sendReviewHandler
249
+ );
250
+ ```
251
+
252
+ ### Use Cases
253
+
254
+ - **Multi-day workflows**: Onboarding sequences, follow-up reminders
255
+ - **Scheduled notifications**: Send reports or alerts at specific intervals
256
+ - **Rate limiting**: Enforce minimum time between API calls
257
+ - **Compliance delays**: Cooling-off periods before actions
258
+
259
+ ### Technical Notes
260
+
261
+ - Non-breaking, additive change (hence minor version bump)
262
+ - No changes required in `@pgflow/edge-worker` - delays handled by pgmq
263
+ - `startDelay` does not affect retry timing - only the initial execution
264
+ - Delays are reliable even across worker restarts (persisted in queue)
265
+
266
+ - Updated dependencies [af787ff]
267
+ - @pgflow/dsl@0.5.3
268
+
269
+ ## 0.5.2
270
+
271
+ ### Patch Changes
272
+
273
+ - @pgflow/dsl@0.5.2
274
+
275
+ ## 0.5.1
276
+
277
+ ### Patch Changes
278
+
279
+ - @pgflow/dsl@0.5.1
280
+
281
+ ## 0.5.0
282
+
283
+ ### Patch Changes
284
+
285
+ - @pgflow/dsl@0.5.0
286
+
287
+ ## 0.4.3
288
+
289
+ ### Patch Changes
290
+
291
+ - fa78968: Fix Supabase Security Advisor warnings by setting empty search_path on functions
292
+ - @pgflow/dsl@0.4.3
293
+
294
+ ## 0.4.2
295
+
296
+ ### Patch Changes
297
+
298
+ - 220c867: Fix step:failed events not being broadcast when steps fail
299
+
300
+ Fixed a bug where step:failed events were not being broadcast to real-time subscribers when a step failed permanently. The issue was caused by PostgreSQL optimizing away the CTE that contained the realtime.send() call. The fix replaces the CTE approach with a direct PERFORM statement in the function body, ensuring the event is always sent when a step fails.
301
+
302
+ - @pgflow/dsl@0.4.2
303
+
304
+ ## 0.4.1
305
+
306
+ ### Patch Changes
307
+
308
+ - 50ab557: feat: add multi-target build support for @pgflow/client package
309
+
310
+ The @pgflow/client package now builds for multiple environments, making it usable in Node.js, browsers, and bundlers.
311
+
312
+ **What's new:**
313
+
314
+ - ES modules (`.js`) and CommonJS (`.cjs`) builds for Node.js
315
+ - Browser bundle (`.browser.js`) with all dependencies included
316
+ - Full TypeScript declarations
317
+ - CDN support via unpkg
318
+ - Production builds with minification
319
+ - Proper tree-shaking support
320
+ - `@supabase/supabase-js` is now a regular dependency (not peer dependency)
321
+
322
+ **You can now use it in:**
323
+
324
+ - Node.js: `import { PgflowClient } from '@pgflow/client'`
325
+ - CommonJS: `const { PgflowClient } = require('@pgflow/client')`
326
+ - Browser: `<script src="https://unpkg.com/@pgflow/client"></script>` - then use `window.pgflow.createClient(supabase)`
327
+ - Bundlers: Automatically picks the right format
328
+
329
+ **Other changes:**
330
+
331
+ - Pin Supabase CLI to exact version 2.21.1 to ensure consistent type generation between local and CI environments
332
+ - @pgflow/dsl@0.4.1
333
+
334
+ ## 0.4.0
335
+
336
+ ### Minor Changes
337
+
338
+ - 98556d3: Add TypeScript client library for pgflow workflow management
339
+
340
+ ## @pgflow/client
341
+
342
+ Introduces a new TypeScript client library that provides both event-based and promise-based APIs for interacting with pgflow workflows:
343
+
344
+ ### Features
345
+
346
+ - **Type-safe workflow management** with full TypeScript support and automatic type inference from flow definitions
347
+ - **Dual API approach**: Choose between event-based subscriptions or promise-based async/await patterns
348
+ - **Real-time monitoring** via Supabase broadcasts with granular event subscriptions
349
+ - **Resource management** with automatic cleanup and disposal
350
+ - **Comprehensive error handling** and recovery mechanisms
351
+
352
+ ### Core Components
353
+
354
+ - `PgflowClient` - Main client for starting and managing workflow runs
355
+ - `FlowRun` - Monitor and interact with workflow executions
356
+ - `FlowStep` - Track individual step progress and outputs
357
+
358
+ ### Example Usage
359
+
360
+ ```typescript
361
+ // Start a workflow
362
+ const pgflow = new PgflowClient(supabase);
363
+ const run = await pgflow.startFlow('analyze_website', {
364
+ url: 'https://example.com',
365
+ });
366
+
367
+ // Event-based monitoring
368
+ run.on('completed', (event) => {
369
+ console.log('Workflow completed:', event.output);
370
+ });
371
+
372
+ // Promise-based monitoring
373
+ const completed = await run.waitForStatus(FlowRunStatus.Completed, {
374
+ timeoutMs: 30000,
375
+ });
376
+ ```
377
+
378
+ ## @pgflow/core
379
+
380
+ ### Database Enhancements
381
+
382
+ - Add `start_flow_with_states()` function to start flows and return complete initial state
383
+ - Add `get_run_with_states()` function to retrieve runs with all step states efficiently
384
+ - Implement `SECURITY DEFINER` functions for secure API access
385
+ - Add real-time broadcast support for workflow state changes
386
+
387
+ ## @pgflow/edge-worker
388
+
389
+ ### Test Infrastructure Updates
390
+
391
+ - Update test database configuration to use standard PostgreSQL credentials
392
+ - Improve test helper functions for database transactions
393
+ - Update Docker Compose configuration for test environment
394
+
395
+ ## @pgflow/dsl
396
+
397
+ ### Build Configuration
398
+
399
+ - Add TypeScript references to tsconfig.spec.json for improved type checking in tests
400
+
401
+ ### Patch Changes
402
+
403
+ - Updated dependencies [98556d3]
404
+ - @pgflow/dsl@0.4.0
405
+
406
+ ## 0.3.1
407
+
408
+ ### Patch Changes
409
+
410
+ - d08fd2d: Optimize message visibility timeout updates with batch operations
411
+
412
+ - Added `pgflow.set_vt_batch()` function to update multiple message visibility timeouts in a single database call
413
+ - Replaced individual `pgmq.set_vt()` calls in `start_tasks()` with efficient batch updates
414
+ - Reduces database round-trips from N calls to 1 call when starting N tasks
415
+ - Improves performance and reduces database load during high-throughput task processing
416
+ - @pgflow/dsl@0.3.1
417
+
418
+ ## 0.3.0
419
+
420
+ ### Minor Changes
421
+
422
+ - c3653fa: Replace single-phase polling with two-phase approach to eliminate race conditions
423
+
424
+ **Breaking Change**: The `poll_for_tasks` function is now deprecated and returns an empty set. Edge workers must be updated to use the new two-phase polling mechanism.
425
+
426
+ **What Changed:**
427
+
428
+ - Added new "started" status for step_tasks with `started_at` timestamp and `last_worker_id` tracking
429
+ - Introduced `start_tasks` function for the second phase of task processing
430
+ - Edge worker now uses two-phase approach: first `read_with_poll` to get messages, then `start_tasks` to process them
431
+ - This eliminates race conditions where tasks might not be visible when processing messages
432
+
433
+ **Migration Instructions:**
434
+
435
+ 1. Run `npx pgflow install` to apply database migrations and update dependencies
436
+ 2. Redeploy your edge workers - they will automatically use the new polling mechanism
437
+ 3. Old workers will continue running but won't process any tasks (safe degradation)
438
+
439
+ **Why This Change:**
440
+ The previous `poll_for_tasks` had subtle race conditions on slower systems where messages could be read but matching step_tasks weren't visible in the same transaction, leading to lost work. The new two-phase approach provides stronger guarantees and better observability.
441
+
442
+ ### Patch Changes
443
+
444
+ - @pgflow/dsl@0.3.0
445
+
446
+ ## 0.2.6
447
+
448
+ ### Patch Changes
449
+
450
+ - @pgflow/dsl@0.2.6
451
+
452
+ ## 0.2.5
453
+
454
+ ### Patch Changes
455
+
456
+ - @pgflow/dsl@0.2.5
457
+
458
+ ## 0.2.4
459
+
460
+ ### Patch Changes
461
+
462
+ - 2f13e8b: Fix `poll_for_tasks` latency
463
+
464
+ The previous implementation were calling `read_with_poll` in same statement
465
+ as the `SELECT FROM step_tasks`, which resulted in new tasks that were inserted
466
+ after the `read_with_poll` started were not discovered as those were not visible
467
+ in the statement.
468
+
469
+ Now `poll_for_tasks` is split to separate statements so step tasks created
470
+ during the `poll_for_tasks` will be immediately picked up.
471
+
472
+ - @pgflow/dsl@0.2.4
473
+
474
+ ## 0.2.3
475
+
476
+ ### Patch Changes
477
+
478
+ - @pgflow/dsl@0.2.3
479
+
480
+ ## 0.2.2
481
+
482
+ ### Patch Changes
483
+
484
+ - @pgflow/dsl@0.2.2
485
+
486
+ ## 0.2.1
487
+
488
+ ### Patch Changes
489
+
490
+ - d553c07: Fix critical migration error that prevented installing if PGMQ was installed previously
491
+ - Updated dependencies [3f3174e]
492
+ - @pgflow/dsl@0.2.1
493
+
494
+ ## 0.2.0
495
+
496
+ ### Patch Changes
497
+
498
+ - @pgflow/dsl@0.2.0
499
+
500
+ ## 0.1.23
501
+
502
+ ### Patch Changes
503
+
504
+ - @pgflow/dsl@0.1.23
505
+
506
+ ## 0.1.22
507
+
508
+ ### Patch Changes
509
+
510
+ - Updated dependencies [8f6eb3d]
511
+ - @pgflow/dsl@0.1.22
512
+
513
+ ## 0.1.21
514
+
515
+ ### Patch Changes
516
+
517
+ - ea1ce78: Make visibilityTimeout the last option to pollForTasks so it can be skipped
518
+ - @pgflow/dsl@0.1.21
519
+
520
+ ## 0.1.20
521
+
522
+ ### Patch Changes
523
+
524
+ - 09e3210: Change name of initial migration :-(
525
+ - 985176e: Add step_index to steps and various status timestamps to runtime tables
526
+ - @pgflow/dsl@0.1.20
527
+
528
+ ## 0.1.19
529
+
530
+ ### Patch Changes
531
+
532
+ - a10b442: Add minimum set of indexes
533
+ - efbd108: Convert migrations to declarative schemas and generate initial migration
534
+ - @pgflow/dsl@0.1.19
535
+
536
+ ## 0.1.18
537
+
538
+ ### Patch Changes
539
+
540
+ - 3a7e132: Do not build edge-worker for npm
541
+ - Updated dependencies [3a7e132]
542
+ - @pgflow/dsl@0.1.18
543
+
544
+ ## 0.1.17
545
+
546
+ ### Patch Changes
547
+
548
+ - d215ed2: Trigger version change
549
+ - Updated dependencies [d215ed2]
550
+ - @pgflow/dsl@0.1.17
551
+
552
+ ## 0.1.16
553
+
554
+ ### Patch Changes
555
+
556
+ - cc7c431: Test release to verify combined publishing of both npm and jsr packages
557
+ - Updated dependencies [cc7c431]
558
+ - @pgflow/dsl@0.1.16
559
+
560
+ ## 0.1.15
561
+
562
+ ### Patch Changes
563
+
564
+ - ce34a2c: Update release pipeline to publish to jsr
565
+ - Updated dependencies [ce34a2c]
566
+ - @pgflow/dsl@0.1.15
567
+
568
+ ## 0.1.14
569
+
570
+ ### Patch Changes
571
+
572
+ - @pgflow/dsl@0.1.14
573
+
574
+ ## 0.1.13
575
+
576
+ ### Patch Changes
577
+
578
+ - @pgflow/dsl@0.1.13
579
+
580
+ ## 0.1.12
581
+
582
+ ### Patch Changes
583
+
584
+ - Updated dependencies [7b1328e]
585
+ - @pgflow/dsl@0.1.12
586
+
587
+ ## 0.1.11
588
+
589
+ ### Patch Changes
590
+
591
+ - @pgflow/dsl@0.1.11
592
+
593
+ ## 0.1.10
594
+
595
+ ### Patch Changes
596
+
597
+ - bafe767: Fix deno/ folder for cli being missing
598
+ - Updated dependencies [bafe767]
599
+ - @pgflow/dsl@0.1.10
600
+
601
+ ## 0.1.9
602
+
603
+ ### Patch Changes
604
+
605
+ - 1a30c6c: Make sure to tag and push tags
606
+ - Updated dependencies [1a30c6c]
607
+ - @pgflow/dsl@0.1.9
608
+
609
+ ## 0.1.8
610
+
611
+ ### Patch Changes
612
+
613
+ - 05f5bd8: Update release script
614
+ - Updated dependencies [05f5bd8]
615
+ - @pgflow/dsl@0.1.8
616
+
617
+ ## 0.1.7
618
+
619
+ ### Patch Changes
620
+
621
+ - summary
622
+ - @pgflow/dsl@0.1.7
623
+
624
+ ## 0.1.6
625
+
626
+ ### Patch Changes
627
+
628
+ - Test release to verify problem with bumping edge-worker
629
+ - Updated dependencies
630
+ - @pgflow/dsl@0.1.6
631
+
632
+ ## 0.1.5
633
+
634
+ ### Patch Changes
635
+
636
+ - 5820e7a: Bump version for tests
637
+ - Updated dependencies [5820e7a]
638
+ - @pgflow/dsl@0.1.5
639
+
640
+ ## 0.1.4
641
+
642
+ ### Patch Changes
643
+
644
+ - @pgflow/dsl@0.1.4
645
+
646
+ ## 0.1.3
647
+
648
+ ### Patch Changes
649
+
650
+ - @pgflow/dsl@0.1.3
651
+
652
+ ## 0.1.2
653
+
654
+ ### Patch Changes
655
+
656
+ - @pgflow/dsl@0.1.2
657
+
658
+ ## 0.1.1
659
+
660
+ ### Patch Changes
661
+
662
+ - Updated dependencies [b362364]
663
+ - @pgflow/dsl@0.1.1
664
+
665
+ ## 0.1.0
666
+
667
+ ### Minor Changes
668
+
669
+ - 7c40238: fix migration files to not set `search_path`
670
+
671
+ ### Patch Changes
672
+
673
+ - @pgflow/dsl@0.1.0
674
+
675
+ ## 0.0.23
676
+
677
+ ### Patch Changes
678
+
679
+ - @pgflow/dsl@0.0.23
680
+
681
+ ## 0.0.22
682
+
683
+ ### Patch Changes
684
+
685
+ - @pgflow/dsl@0.0.22
686
+
687
+ ## 0.0.21
688
+
689
+ ### Patch Changes
690
+
691
+ - @pgflow/dsl@0.0.21
692
+
693
+ ## 0.0.20
694
+
695
+ ### Patch Changes
696
+
697
+ - @pgflow/dsl@0.0.20
698
+
699
+ ## 0.0.19
700
+
701
+ ### Patch Changes
702
+
703
+ - 042bc64: Move migrations to pkgs/core
704
+ - @pgflow/dsl@0.0.19
705
+
706
+ ## 0.0.18
707
+
708
+ ### Patch Changes
709
+
710
+ - 53abf4a: Fix pnpm issues with linking to dist/
711
+ - Updated dependencies [53abf4a]
712
+ - @pgflow/dsl@0.0.18
713
+
714
+ ## 0.0.17
715
+
716
+ ### Patch Changes
717
+
718
+ - @pgflow/dsl@0.0.17
719
+
720
+ ## 0.0.16
721
+
722
+ ### Patch Changes
723
+
724
+ - @pgflow/dsl@0.0.16
725
+
726
+ ## 0.0.15
727
+
728
+ ### Patch Changes
729
+
730
+ - @pgflow/dsl@0.0.15
731
+
732
+ ## 0.0.14
733
+
734
+ ### Patch Changes
735
+
736
+ - @pgflow/dsl@0.0.14
737
+
738
+ ## 0.0.13
739
+
740
+ ### Patch Changes
741
+
742
+ - @pgflow/dsl@0.0.13
743
+
744
+ ## 0.0.12
745
+
746
+ ### Patch Changes
747
+
748
+ - @pgflow/dsl@0.0.12
749
+
750
+ ## 0.0.11
751
+
752
+ ### Patch Changes
753
+
754
+ - Updated dependencies [17937e3]
755
+ - @pgflow/dsl@0.0.11
756
+
757
+ ## 0.0.10
758
+
759
+ ### Patch Changes
760
+
761
+ - @pgflow/dsl@0.0.10
762
+
763
+ ## 0.0.9
764
+
765
+ ### Patch Changes
766
+
767
+ - Updated dependencies [70d3f2d]
768
+ - @pgflow/dsl@0.0.9
769
+
770
+ ## 0.0.8
771
+
772
+ ### Patch Changes
773
+
774
+ - @pgflow/dsl@0.0.8
775
+
776
+ ## 0.0.7
777
+
778
+ ### Patch Changes
779
+
780
+ - 7c83db9: Add release-related options to package.json files
781
+ - Updated dependencies [7c83db9]
782
+ - @pgflow/dsl@0.0.7
783
+
784
+ ## 0.0.6
785
+
786
+ ### Patch Changes
787
+
788
+ - @pgflow/dsl@0.0.6
789
+
790
+ ## 0.0.5
791
+
792
+ ### Patch Changes
793
+
794
+ - 196f7d8: Test patch bump
795
+ - Updated dependencies [b4b0809]
796
+ - @pgflow/dsl@0.0.5