Skip to content

Commit edc7d15

Browse files
Version Packages (#132)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8d64ce0 commit edc7d15

File tree

14 files changed

+52
-22
lines changed

14 files changed

+52
-22
lines changed

.changeset/blue-mirrors-roll.md

Lines changed: 0 additions & 13 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.2.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2f13e8b]
8+
- @pgflow/core@0.2.4
9+
310
## 0.2.3
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.2.3",
3+
"version": "0.2.4",
44
"type": "module",
55
"main": "./dist/index.js",
66
"typings": "./dist/index.d.ts",

pkgs/core/CHANGELOG.md

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

3+
## 0.2.4
4+
5+
### Patch Changes
6+
7+
- 2f13e8b: Fix `poll_for_tasks` latency
8+
9+
The previous implementation were calling `read_with_poll` in same statement
10+
as the `SELECT FROM step_tasks`, which resulted in new tasks that were inserted
11+
after the `read_with_poll` started were not discovered as those were not visible
12+
in the statement.
13+
14+
Now `poll_for_tasks` is split to separate statements so step tasks created
15+
during the `poll_for_tasks` will be immediately picked up.
16+
17+
- @pgflow/dsl@0.2.4
18+
319
## 0.2.3
420

521
### 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.2.3",
3+
"version": "0.2.4",
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.2.4
4+
35
## 0.2.3
46

57
## 0.2.2

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.2.3",
3+
"version": "0.2.4",
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.2.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [2f13e8b]
8+
- @pgflow/core@0.2.4
9+
- @pgflow/dsl@0.2.4
10+
311
## 0.2.3
412

513
### Patch Changes

pkgs/edge-worker/jsr.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@pgflow/edge-worker",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"license": "AGPL-3.0",
55
"exports": "./src/index.ts",
66
"imports": {
77
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.7",
88
"postgres": "npm:postgres@3.4.5",
9-
"@pgflow/core": "npm:@pgflow/core@0.2.3",
10-
"@pgflow/dsl": "npm:@pgflow/dsl@0.2.3"
9+
"@pgflow/core": "npm:@pgflow/core@0.2.4",
10+
"@pgflow/dsl": "npm:@pgflow/dsl@0.2.4"
1111
},
1212
"publish": {
1313
"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.2.3",
3+
"version": "0.2.4",
44
"license": "AGPL-3.0",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)