Skip to content

Commit 7a1b7ed

Browse files
Version Packages
1 parent 53c399f commit 7a1b7ed

File tree

16 files changed

+55
-17
lines changed

16 files changed

+55
-17
lines changed

.changeset/evil-hounds-own.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

pkgs/cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# pgflow
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [220c867]
8+
- @pgflow/core@0.4.2
9+
310
## 0.4.1
411

512
### Patch Changes

pkgs/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pgflow",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"type": "module",
55
"main": "./dist/index.js",
66
"typings": "./dist/index.d.ts",

pkgs/client/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pgflow/client
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [220c867]
8+
- @pgflow/core@0.4.2
9+
- @pgflow/dsl@0.4.2
10+
311
## 0.4.1
412

513
### Patch Changes

pkgs/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/client",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"type": "module",
55
"scripts": {
66
"verify-exports": "node scripts/verify-exports.js"

pkgs/core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @pgflow/core
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- 220c867: Fix step:failed events not being broadcast when steps fail
8+
9+
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.
10+
11+
- @pgflow/dsl@0.4.2
12+
313
## 0.4.1
414

515
### Patch Changes

pkgs/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/core",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"license": "AGPL-3.0",
55
"type": "module",
66
"main": "./dist/index.js",

pkgs/dsl/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @pgflow/dsl
22

3+
## 0.4.2
4+
35
## 0.4.1
46

57
## 0.4.0

pkgs/dsl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/dsl",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

pkgs/edge-worker/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pgflow/edge-worker
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [220c867]
8+
- @pgflow/core@0.4.2
9+
- @pgflow/dsl@0.4.2
10+
311
## 0.4.1
412

513
### Patch Changes

pkgs/edge-worker/jsr.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/edge-worker",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"license": "AGPL-3.0",
55
"exports": {
66
".": "./src/index.ts",
@@ -9,8 +9,8 @@
99
"imports": {
1010
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.7",
1111
"postgres": "npm:postgres@3.4.5",
12-
"@pgflow/core": "npm:@pgflow/core@0.4.1",
13-
"@pgflow/dsl": "npm:@pgflow/dsl@0.4.1"
12+
"@pgflow/core": "npm:@pgflow/core@0.4.2",
13+
"@pgflow/dsl": "npm:@pgflow/dsl@0.4.2"
1414
},
1515
"publish": {
1616
"include": [

pkgs/edge-worker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/edge-worker",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"license": "AGPL-3.0",
55
"type": "module",
66
"main": "./dist/index.js",

pkgs/example-flows/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pgflow/example-flows
22

3+
## 0.4.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [220c867]
8+
- @pgflow/core@0.4.2
9+
- @pgflow/dsl@0.4.2
10+
311
## 0.4.1
412

513
### Patch Changes

pkgs/example-flows/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pgflow/example-flows",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"dependencies": {
55
"@pgflow/core": "workspace:*",
66
"@pgflow/dsl": "workspace:*"

pkgs/website/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @pgflow/website
22

3+
## 0.4.2
4+
35
## 0.4.1
46

57
## 0.4.0

pkgs/website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pgflow/website",
33
"type": "module",
4-
"version": "0.4.1",
4+
"version": "0.4.2",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",
77
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)