Skip to content

Commit f214d1c

Browse files
authored
Merge pull request #151 from pgflow-dev/changeset-release/main
Version Packages
2 parents 33bbdce + 359a6fb commit f214d1c

File tree

15 files changed

+54
-28
lines changed

15 files changed

+54
-28
lines changed

.changeset/stupid-parents-obey.md

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

.changeset/thin-stars-repeat.md

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

pkgs/core/CHANGELOG.md

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

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- d08fd2d: Optimize message visibility timeout updates with batch operations
8+
9+
- Added `pgflow.set_vt_batch()` function to update multiple message visibility timeouts in a single database call
10+
- Replaced individual `pgmq.set_vt()` calls in `start_tasks()` with efficient batch updates
11+
- Reduces database round-trips from N calls to 1 call when starting N tasks
12+
- Improves performance and reduces database load during high-throughput task processing
13+
- @pgflow/dsl@0.3.1
14+
315
## 0.3.0
416

517
### Minor 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.3.0",
3+
"version": "0.3.1",
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.3.1
4+
35
## 0.3.0
46

57
## 0.2.6

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.3.0",
3+
"version": "0.3.1",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

pkgs/edge-worker/CHANGELOG.md

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

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- 33bbdce: Add internal exports for experimental use
8+
9+
Expose internal components through a new `_internal` export path to enable experimentation with alternative worker architectures. These APIs are unstable and may change without notice. The internal exports are organized by namespace (core, platform, flow, queue) for better discoverability.
10+
11+
**⚠️ WARNING: These internal APIs are subject to change without notice. Import from `_internal` at your own risk!**
12+
13+
- Updated dependencies [d08fd2d]
14+
- @pgflow/core@0.3.1
15+
- @pgflow/dsl@0.3.1
16+
317
## 0.3.0
418

519
### Minor 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.3.0",
3+
"version": "0.3.1",
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.3.0",
13-
"@pgflow/dsl": "npm:@pgflow/dsl@0.3.0"
12+
"@pgflow/core": "npm:@pgflow/core@0.3.1",
13+
"@pgflow/dsl": "npm:@pgflow/dsl@0.3.1"
1414
},
1515
"publish": {
1616
"include": [

0 commit comments

Comments
 (0)