@pgflow/core 0.0.0-array-map-steps-302d00a8-20250922101336 → 0.0.0-test-snapshot-releases-8d5d9bc1-20250922101013

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 (38) hide show
  1. package/README.md +1 -7
  2. package/package.json +2 -2
  3. package/dist/ATLAS.md +0 -32
  4. package/dist/CHANGELOG.md +0 -645
  5. package/dist/PLAN_race_condition_testing.md +0 -176
  6. package/dist/PgflowSqlClient.d.ts +0 -17
  7. package/dist/PgflowSqlClient.d.ts.map +0 -1
  8. package/dist/PgflowSqlClient.js +0 -70
  9. package/dist/README.md +0 -399
  10. package/dist/database-types.d.ts +0 -832
  11. package/dist/database-types.d.ts.map +0 -1
  12. package/dist/database-types.js +0 -8
  13. package/dist/index.d.ts +0 -4
  14. package/dist/index.d.ts.map +0 -1
  15. package/dist/index.js +0 -2
  16. package/dist/package.json +0 -32
  17. package/dist/supabase/migrations/20250429164909_pgflow_initial.sql +0 -579
  18. package/dist/supabase/migrations/20250517072017_pgflow_fix_poll_for_tasks_to_use_separate_statement_for_polling.sql +0 -101
  19. package/dist/supabase/migrations/20250609105135_pgflow_add_start_tasks_and_started_status.sql +0 -371
  20. package/dist/supabase/migrations/20250610180554_pgflow_add_set_vt_batch_and_use_it_in_start_tasks.sql +0 -127
  21. package/dist/supabase/migrations/20250614124241_pgflow_add_realtime.sql +0 -501
  22. package/dist/supabase/migrations/20250619195327_pgflow_fix_fail_task_missing_realtime_event.sql +0 -185
  23. package/dist/supabase/migrations/20250627090700_pgflow_fix_function_search_paths.sql +0 -6
  24. package/dist/supabase/migrations/20250707210212_pgflow_add_opt_start_delay.sql +0 -103
  25. package/dist/supabase/migrations/20250719205006_pgflow_worker_deprecation.sql +0 -2
  26. package/dist/supabase/migrations/20250912075001_pgflow_temp_pr1_schema.sql +0 -185
  27. package/dist/supabase/migrations/20250912080800_pgflow_temp_pr2_root_maps.sql +0 -95
  28. package/dist/supabase/migrations/20250912125339_pgflow_TEMP_task_spawning_optimization.sql +0 -146
  29. package/dist/supabase/migrations/20250916093518_pgflow_temp_add_cascade_complete.sql +0 -321
  30. package/dist/supabase/migrations/20250916142327_pgflow_temp_make_initial_tasks_nullable.sql +0 -624
  31. package/dist/supabase/migrations/20250916203905_pgflow_temp_handle_arrays_in_start_tasks.sql +0 -157
  32. package/dist/supabase/migrations/20250918042753_pgflow_temp_handle_map_output_aggregation.sql +0 -489
  33. package/dist/supabase/migrations/20250919101802_pgflow_temp_orphaned_messages_index.sql +0 -688
  34. package/dist/supabase/migrations/20250919135211_pgflow_temp_return_task_index_in_start_tasks.sql +0 -178
  35. package/dist/tsconfig.lib.tsbuildinfo +0 -1
  36. package/dist/types.d.ts +0 -95
  37. package/dist/types.d.ts.map +0 -1
  38. package/dist/types.js +0 -1
package/README.md CHANGED
@@ -231,16 +231,10 @@ The system handles failures by:
231
231
  - Preventing processing until the visibility timeout expires
232
232
  3. When retries are exhausted:
233
233
  - Marking the task as 'failed'
234
- - Storing the task output (even for failed tasks)
235
234
  - Marking the step as 'failed'
236
235
  - Marking the run as 'failed'
237
236
  - Archiving the message in PGMQ
238
- - **Archiving all queued messages for the failed run** (preventing orphaned messages)
239
- 4. Additional failure handling:
240
- - **No retries on already-failed runs** - tasks are immediately marked as failed
241
- - **Graceful type constraint violations** - handled without exceptions when single steps feed map steps
242
- - **Stores invalid output on type violations** - captures the output that caused the violation for debugging
243
- - **Performance-optimized message archiving** using indexed queries
237
+ - Notifying workers to abort pending tasks (future feature)
244
238
 
245
239
  #### Retries and Timeouts
246
240
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgflow/core",
3
- "version": "0.0.0-array-map-steps-302d00a8-20250922101336",
3
+ "version": "0.0.0-test-snapshot-releases-8d5d9bc1-20250922101013",
4
4
  "license": "AGPL-3.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "postgres": "^3.4.5",
27
- "@pgflow/dsl": "0.0.0-array-map-steps-302d00a8-20250922101336"
27
+ "@pgflow/dsl": "0.0.0-test-snapshot-releases-8d5d9bc1-20250922101013"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public"
package/dist/ATLAS.md DELETED
@@ -1,32 +0,0 @@
1
- # Atlas setup
2
-
3
- We use [Atlas](https://atlasgo.io/docs) to generate migrations from the declarative schemas stored in `./schemas/` folder.
4
-
5
- ## Configuration
6
-
7
- The setup is configured in `atlas.hcl`.
8
-
9
- It is set to compare `schemas/` to what is in `supabase/migrations/`.
10
-
11
- ### Docker dev image
12
-
13
- Atlas requires a dev database to be available for computing diffs.
14
- The database must be empty, but contain everything needed for the schemas to apply.
15
-
16
- We need a configured [PGMQ](https://github.com/tembo-io/pgmq) extension, which Atlas does not support
17
- in their dev images.
18
-
19
- That's why this setup relies on a custom built image `jumski/postgres-15-pgmq:latest`.
20
-
21
- Inspect `Dockerfile.atlas` to see how it is built.
22
-
23
- See also `./scripts/build-atlas-postgres-image` and `./scripts/push-atlas-postgres-image` scripts for building and pushing the image.
24
-
25
- ## Workflow
26
-
27
- 1. Make sure you start with a clean database (`pnpm supabase db reset`).
28
- 1. Modify the schemas in `schemas/` to a desired state.
29
- 1. Run `./scripts/atlas-migrate-diff <migration-name>` to create a new migration based on the diff.
30
- 1. Run `pnpm supabase migration up` to apply the migration.
31
- 1. In case of any errors, remove the generated migration file, make changes in `schemas/` and repeat the process.
32
- 1. After the migration is applied, verify it does not break tests with `nx test:pgtap`
package/dist/CHANGELOG.md DELETED
@@ -1,645 +0,0 @@
1
- # @pgflow/core
2
-
3
- ## 0.6.1
4
-
5
- ### Patch Changes
6
-
7
- - @pgflow/dsl@0.6.1
8
-
9
- ## 0.6.0
10
-
11
- ### Patch Changes
12
-
13
- - 81d552f: Implement worker deprecation for graceful shutdowns
14
-
15
- - Add deprecation support to enable zero-downtime deployments
16
- - Workers now check deprecation status via heartbeat and stop accepting new work when deprecated
17
- - Repurpose unused `stopped_at` column as `deprecated_at` for tracking deprecation timestamps
18
- - Refactor heartbeat logic directly into lifecycle classes for improved type safety
19
- - Add configurable heartbeat interval (default: 5 seconds)
20
- - Workers complete in-flight work before shutting down when deprecated
21
-
22
- - Updated dependencies [a67bf27]
23
- - @pgflow/dsl@0.6.0
24
-
25
- ## 0.5.4
26
-
27
- ### Patch Changes
28
-
29
- - Updated dependencies [9f219a4]
30
- - @pgflow/dsl@0.5.4
31
-
32
- ## 0.5.3
33
-
34
- ### Patch Changes
35
-
36
- - af787ff: Add `startDelay` option for workflow steps
37
-
38
- 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.
39
-
40
- **Important**: `startDelay` only applies to the first execution attempt. Retries use the standard exponential backoff mechanism based on `baseDelay`, not `startDelay`.
41
-
42
- ### Core Changes (@pgflow/core)
43
-
44
- - Added `opt_start_delay` column (integer, nullable, CHECK >= 0) to `pgflow.steps` table
45
- - Updated `add_step` function to accept and validate the new `start_delay` parameter
46
- - Modified `start_ready_steps` to schedule initial task execution with delay via `pgmq.send(queue, message, delay)`
47
- - Requires pgmq >= 0.40 for delay support
48
- - Migration: `20250707210212_pgflow_add_opt_start_delay.sql`
49
- - Added comprehensive PgTAP tests for validation and scheduling behavior
50
-
51
- ### DSL Changes (@pgflow/dsl)
52
-
53
- - Extended `StepOptions` and `StepRuntimeOptions` interfaces with optional `startDelay` (in seconds)
54
- - Updated `compileFlow()` to emit `start_delay => value` in generated SQL
55
- - Added validation: `startDelay` is only allowed at step level, not flow level (prevents cascading delays)
56
- - Valid range: 0 to 2,147,483,647 seconds (~68 years)
57
- - Added unit tests for compilation and validation
58
-
59
- ### Documentation Updates (@pgflow/website)
60
-
61
- - Added `startDelay` section in configuration guide with detailed explanation
62
- - Created multi-day workflow example (onboarding email sequence)
63
- - Updated "Update Flow Options" to include `opt_start_delay`
64
- - Enhanced VS comparison pages to mention "Native step delays" capability
65
- - Documented why `startDelay` is step-level only
66
-
67
- ### Example Usage
68
-
69
- ```typescript
70
- new Flow({
71
- slug: 'user_onboarding',
72
- maxAttempts: 3,
73
- baseDelay: 5, // Retry delay (not initial delay)
74
- timeout: 60,
75
- })
76
- .step(
77
- {
78
- slug: 'send_welcome_email',
79
- // Executes immediately when step becomes ready
80
- },
81
- sendWelcomeHandler
82
- )
83
- .step(
84
- {
85
- slug: 'send_day_3_tips',
86
- startDelay: 259200, // Wait 3 days before first execution
87
- timeout: 120,
88
- },
89
- sendTipsHandler
90
- )
91
- .step(
92
- {
93
- slug: 'send_week_review',
94
- startDelay: 604800, // Wait 7 days after dependencies complete
95
- timeout: 120,
96
- },
97
- sendReviewHandler
98
- );
99
- ```
100
-
101
- ### Use Cases
102
-
103
- - **Multi-day workflows**: Onboarding sequences, follow-up reminders
104
- - **Scheduled notifications**: Send reports or alerts at specific intervals
105
- - **Rate limiting**: Enforce minimum time between API calls
106
- - **Compliance delays**: Cooling-off periods before actions
107
-
108
- ### Technical Notes
109
-
110
- - Non-breaking, additive change (hence minor version bump)
111
- - No changes required in `@pgflow/edge-worker` - delays handled by pgmq
112
- - `startDelay` does not affect retry timing - only the initial execution
113
- - Delays are reliable even across worker restarts (persisted in queue)
114
-
115
- - Updated dependencies [af787ff]
116
- - @pgflow/dsl@0.5.3
117
-
118
- ## 0.5.2
119
-
120
- ### Patch Changes
121
-
122
- - @pgflow/dsl@0.5.2
123
-
124
- ## 0.5.1
125
-
126
- ### Patch Changes
127
-
128
- - @pgflow/dsl@0.5.1
129
-
130
- ## 0.5.0
131
-
132
- ### Patch Changes
133
-
134
- - @pgflow/dsl@0.5.0
135
-
136
- ## 0.4.3
137
-
138
- ### Patch Changes
139
-
140
- - fa78968: Fix Supabase Security Advisor warnings by setting empty search_path on functions
141
- - @pgflow/dsl@0.4.3
142
-
143
- ## 0.4.2
144
-
145
- ### Patch Changes
146
-
147
- - 220c867: Fix step:failed events not being broadcast when steps fail
148
-
149
- 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.
150
-
151
- - @pgflow/dsl@0.4.2
152
-
153
- ## 0.4.1
154
-
155
- ### Patch Changes
156
-
157
- - 50ab557: feat: add multi-target build support for @pgflow/client package
158
-
159
- The @pgflow/client package now builds for multiple environments, making it usable in Node.js, browsers, and bundlers.
160
-
161
- **What's new:**
162
-
163
- - ES modules (`.js`) and CommonJS (`.cjs`) builds for Node.js
164
- - Browser bundle (`.browser.js`) with all dependencies included
165
- - Full TypeScript declarations
166
- - CDN support via unpkg
167
- - Production builds with minification
168
- - Proper tree-shaking support
169
- - `@supabase/supabase-js` is now a regular dependency (not peer dependency)
170
-
171
- **You can now use it in:**
172
-
173
- - Node.js: `import { PgflowClient } from '@pgflow/client'`
174
- - CommonJS: `const { PgflowClient } = require('@pgflow/client')`
175
- - Browser: `<script src="https://unpkg.com/@pgflow/client"></script>` - then use `window.pgflow.createClient(supabase)`
176
- - Bundlers: Automatically picks the right format
177
-
178
- **Other changes:**
179
-
180
- - Pin Supabase CLI to exact version 2.21.1 to ensure consistent type generation between local and CI environments
181
- - @pgflow/dsl@0.4.1
182
-
183
- ## 0.4.0
184
-
185
- ### Minor Changes
186
-
187
- - 98556d3: Add TypeScript client library for pgflow workflow management
188
-
189
- ## @pgflow/client
190
-
191
- Introduces a new TypeScript client library that provides both event-based and promise-based APIs for interacting with pgflow workflows:
192
-
193
- ### Features
194
-
195
- - **Type-safe workflow management** with full TypeScript support and automatic type inference from flow definitions
196
- - **Dual API approach**: Choose between event-based subscriptions or promise-based async/await patterns
197
- - **Real-time monitoring** via Supabase broadcasts with granular event subscriptions
198
- - **Resource management** with automatic cleanup and disposal
199
- - **Comprehensive error handling** and recovery mechanisms
200
-
201
- ### Core Components
202
-
203
- - `PgflowClient` - Main client for starting and managing workflow runs
204
- - `FlowRun` - Monitor and interact with workflow executions
205
- - `FlowStep` - Track individual step progress and outputs
206
-
207
- ### Example Usage
208
-
209
- ```typescript
210
- // Start a workflow
211
- const pgflow = new PgflowClient(supabase);
212
- const run = await pgflow.startFlow('analyze_website', {
213
- url: 'https://example.com',
214
- });
215
-
216
- // Event-based monitoring
217
- run.on('completed', (event) => {
218
- console.log('Workflow completed:', event.output);
219
- });
220
-
221
- // Promise-based monitoring
222
- const completed = await run.waitForStatus(FlowRunStatus.Completed, {
223
- timeoutMs: 30000,
224
- });
225
- ```
226
-
227
- ## @pgflow/core
228
-
229
- ### Database Enhancements
230
-
231
- - Add `start_flow_with_states()` function to start flows and return complete initial state
232
- - Add `get_run_with_states()` function to retrieve runs with all step states efficiently
233
- - Implement `SECURITY DEFINER` functions for secure API access
234
- - Add real-time broadcast support for workflow state changes
235
-
236
- ## @pgflow/edge-worker
237
-
238
- ### Test Infrastructure Updates
239
-
240
- - Update test database configuration to use standard PostgreSQL credentials
241
- - Improve test helper functions for database transactions
242
- - Update Docker Compose configuration for test environment
243
-
244
- ## @pgflow/dsl
245
-
246
- ### Build Configuration
247
-
248
- - Add TypeScript references to tsconfig.spec.json for improved type checking in tests
249
-
250
- ### Patch Changes
251
-
252
- - Updated dependencies [98556d3]
253
- - @pgflow/dsl@0.4.0
254
-
255
- ## 0.3.1
256
-
257
- ### Patch Changes
258
-
259
- - d08fd2d: Optimize message visibility timeout updates with batch operations
260
-
261
- - Added `pgflow.set_vt_batch()` function to update multiple message visibility timeouts in a single database call
262
- - Replaced individual `pgmq.set_vt()` calls in `start_tasks()` with efficient batch updates
263
- - Reduces database round-trips from N calls to 1 call when starting N tasks
264
- - Improves performance and reduces database load during high-throughput task processing
265
- - @pgflow/dsl@0.3.1
266
-
267
- ## 0.3.0
268
-
269
- ### Minor Changes
270
-
271
- - c3653fa: Replace single-phase polling with two-phase approach to eliminate race conditions
272
-
273
- **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.
274
-
275
- **What Changed:**
276
-
277
- - Added new "started" status for step_tasks with `started_at` timestamp and `last_worker_id` tracking
278
- - Introduced `start_tasks` function for the second phase of task processing
279
- - Edge worker now uses two-phase approach: first `read_with_poll` to get messages, then `start_tasks` to process them
280
- - This eliminates race conditions where tasks might not be visible when processing messages
281
-
282
- **Migration Instructions:**
283
-
284
- 1. Run `npx pgflow install` to apply database migrations and update dependencies
285
- 2. Redeploy your edge workers - they will automatically use the new polling mechanism
286
- 3. Old workers will continue running but won't process any tasks (safe degradation)
287
-
288
- **Why This Change:**
289
- 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.
290
-
291
- ### Patch Changes
292
-
293
- - @pgflow/dsl@0.3.0
294
-
295
- ## 0.2.6
296
-
297
- ### Patch Changes
298
-
299
- - @pgflow/dsl@0.2.6
300
-
301
- ## 0.2.5
302
-
303
- ### Patch Changes
304
-
305
- - @pgflow/dsl@0.2.5
306
-
307
- ## 0.2.4
308
-
309
- ### Patch Changes
310
-
311
- - 2f13e8b: Fix `poll_for_tasks` latency
312
-
313
- The previous implementation were calling `read_with_poll` in same statement
314
- as the `SELECT FROM step_tasks`, which resulted in new tasks that were inserted
315
- after the `read_with_poll` started were not discovered as those were not visible
316
- in the statement.
317
-
318
- Now `poll_for_tasks` is split to separate statements so step tasks created
319
- during the `poll_for_tasks` will be immediately picked up.
320
-
321
- - @pgflow/dsl@0.2.4
322
-
323
- ## 0.2.3
324
-
325
- ### Patch Changes
326
-
327
- - @pgflow/dsl@0.2.3
328
-
329
- ## 0.2.2
330
-
331
- ### Patch Changes
332
-
333
- - @pgflow/dsl@0.2.2
334
-
335
- ## 0.2.1
336
-
337
- ### Patch Changes
338
-
339
- - d553c07: Fix critical migration error that prevented installing if PGMQ was installed previously
340
- - Updated dependencies [3f3174e]
341
- - @pgflow/dsl@0.2.1
342
-
343
- ## 0.2.0
344
-
345
- ### Patch Changes
346
-
347
- - @pgflow/dsl@0.2.0
348
-
349
- ## 0.1.23
350
-
351
- ### Patch Changes
352
-
353
- - @pgflow/dsl@0.1.23
354
-
355
- ## 0.1.22
356
-
357
- ### Patch Changes
358
-
359
- - Updated dependencies [8f6eb3d]
360
- - @pgflow/dsl@0.1.22
361
-
362
- ## 0.1.21
363
-
364
- ### Patch Changes
365
-
366
- - ea1ce78: Make visibilityTimeout the last option to pollForTasks so it can be skipped
367
- - @pgflow/dsl@0.1.21
368
-
369
- ## 0.1.20
370
-
371
- ### Patch Changes
372
-
373
- - 09e3210: Change name of initial migration :-(
374
- - 985176e: Add step_index to steps and various status timestamps to runtime tables
375
- - @pgflow/dsl@0.1.20
376
-
377
- ## 0.1.19
378
-
379
- ### Patch Changes
380
-
381
- - a10b442: Add minimum set of indexes
382
- - efbd108: Convert migrations to declarative schemas and generate initial migration
383
- - @pgflow/dsl@0.1.19
384
-
385
- ## 0.1.18
386
-
387
- ### Patch Changes
388
-
389
- - 3a7e132: Do not build edge-worker for npm
390
- - Updated dependencies [3a7e132]
391
- - @pgflow/dsl@0.1.18
392
-
393
- ## 0.1.17
394
-
395
- ### Patch Changes
396
-
397
- - d215ed2: Trigger version change
398
- - Updated dependencies [d215ed2]
399
- - @pgflow/dsl@0.1.17
400
-
401
- ## 0.1.16
402
-
403
- ### Patch Changes
404
-
405
- - cc7c431: Test release to verify combined publishing of both npm and jsr packages
406
- - Updated dependencies [cc7c431]
407
- - @pgflow/dsl@0.1.16
408
-
409
- ## 0.1.15
410
-
411
- ### Patch Changes
412
-
413
- - ce34a2c: Update release pipeline to publish to jsr
414
- - Updated dependencies [ce34a2c]
415
- - @pgflow/dsl@0.1.15
416
-
417
- ## 0.1.14
418
-
419
- ### Patch Changes
420
-
421
- - @pgflow/dsl@0.1.14
422
-
423
- ## 0.1.13
424
-
425
- ### Patch Changes
426
-
427
- - @pgflow/dsl@0.1.13
428
-
429
- ## 0.1.12
430
-
431
- ### Patch Changes
432
-
433
- - Updated dependencies [7b1328e]
434
- - @pgflow/dsl@0.1.12
435
-
436
- ## 0.1.11
437
-
438
- ### Patch Changes
439
-
440
- - @pgflow/dsl@0.1.11
441
-
442
- ## 0.1.10
443
-
444
- ### Patch Changes
445
-
446
- - bafe767: Fix deno/ folder for cli being missing
447
- - Updated dependencies [bafe767]
448
- - @pgflow/dsl@0.1.10
449
-
450
- ## 0.1.9
451
-
452
- ### Patch Changes
453
-
454
- - 1a30c6c: Make sure to tag and push tags
455
- - Updated dependencies [1a30c6c]
456
- - @pgflow/dsl@0.1.9
457
-
458
- ## 0.1.8
459
-
460
- ### Patch Changes
461
-
462
- - 05f5bd8: Update release script
463
- - Updated dependencies [05f5bd8]
464
- - @pgflow/dsl@0.1.8
465
-
466
- ## 0.1.7
467
-
468
- ### Patch Changes
469
-
470
- - summary
471
- - @pgflow/dsl@0.1.7
472
-
473
- ## 0.1.6
474
-
475
- ### Patch Changes
476
-
477
- - Test release to verify problem with bumping edge-worker
478
- - Updated dependencies
479
- - @pgflow/dsl@0.1.6
480
-
481
- ## 0.1.5
482
-
483
- ### Patch Changes
484
-
485
- - 5820e7a: Bump version for tests
486
- - Updated dependencies [5820e7a]
487
- - @pgflow/dsl@0.1.5
488
-
489
- ## 0.1.4
490
-
491
- ### Patch Changes
492
-
493
- - @pgflow/dsl@0.1.4
494
-
495
- ## 0.1.3
496
-
497
- ### Patch Changes
498
-
499
- - @pgflow/dsl@0.1.3
500
-
501
- ## 0.1.2
502
-
503
- ### Patch Changes
504
-
505
- - @pgflow/dsl@0.1.2
506
-
507
- ## 0.1.1
508
-
509
- ### Patch Changes
510
-
511
- - Updated dependencies [b362364]
512
- - @pgflow/dsl@0.1.1
513
-
514
- ## 0.1.0
515
-
516
- ### Minor Changes
517
-
518
- - 7c40238: fix migration files to not set `search_path`
519
-
520
- ### Patch Changes
521
-
522
- - @pgflow/dsl@0.1.0
523
-
524
- ## 0.0.23
525
-
526
- ### Patch Changes
527
-
528
- - @pgflow/dsl@0.0.23
529
-
530
- ## 0.0.22
531
-
532
- ### Patch Changes
533
-
534
- - @pgflow/dsl@0.0.22
535
-
536
- ## 0.0.21
537
-
538
- ### Patch Changes
539
-
540
- - @pgflow/dsl@0.0.21
541
-
542
- ## 0.0.20
543
-
544
- ### Patch Changes
545
-
546
- - @pgflow/dsl@0.0.20
547
-
548
- ## 0.0.19
549
-
550
- ### Patch Changes
551
-
552
- - 042bc64: Move migrations to pkgs/core
553
- - @pgflow/dsl@0.0.19
554
-
555
- ## 0.0.18
556
-
557
- ### Patch Changes
558
-
559
- - 53abf4a: Fix pnpm issues with linking to dist/
560
- - Updated dependencies [53abf4a]
561
- - @pgflow/dsl@0.0.18
562
-
563
- ## 0.0.17
564
-
565
- ### Patch Changes
566
-
567
- - @pgflow/dsl@0.0.17
568
-
569
- ## 0.0.16
570
-
571
- ### Patch Changes
572
-
573
- - @pgflow/dsl@0.0.16
574
-
575
- ## 0.0.15
576
-
577
- ### Patch Changes
578
-
579
- - @pgflow/dsl@0.0.15
580
-
581
- ## 0.0.14
582
-
583
- ### Patch Changes
584
-
585
- - @pgflow/dsl@0.0.14
586
-
587
- ## 0.0.13
588
-
589
- ### Patch Changes
590
-
591
- - @pgflow/dsl@0.0.13
592
-
593
- ## 0.0.12
594
-
595
- ### Patch Changes
596
-
597
- - @pgflow/dsl@0.0.12
598
-
599
- ## 0.0.11
600
-
601
- ### Patch Changes
602
-
603
- - Updated dependencies [17937e3]
604
- - @pgflow/dsl@0.0.11
605
-
606
- ## 0.0.10
607
-
608
- ### Patch Changes
609
-
610
- - @pgflow/dsl@0.0.10
611
-
612
- ## 0.0.9
613
-
614
- ### Patch Changes
615
-
616
- - Updated dependencies [70d3f2d]
617
- - @pgflow/dsl@0.0.9
618
-
619
- ## 0.0.8
620
-
621
- ### Patch Changes
622
-
623
- - @pgflow/dsl@0.0.8
624
-
625
- ## 0.0.7
626
-
627
- ### Patch Changes
628
-
629
- - 7c83db9: Add release-related options to package.json files
630
- - Updated dependencies [7c83db9]
631
- - @pgflow/dsl@0.0.7
632
-
633
- ## 0.0.6
634
-
635
- ### Patch Changes
636
-
637
- - @pgflow/dsl@0.0.6
638
-
639
- ## 0.0.5
640
-
641
- ### Patch Changes
642
-
643
- - 196f7d8: Test patch bump
644
- - Updated dependencies [b4b0809]
645
- - @pgflow/dsl@0.0.5