Skip to content

Commit 43a6de0

Browse files
Version Packages (#458)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6b3c90c commit 43a6de0

File tree

15 files changed

+93
-40
lines changed

15 files changed

+93
-40
lines changed

.changeset/auto-compile-http-control.md

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

.changeset/json-status-response.md

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

pkgs/cli/CHANGELOG.md

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

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- 9fa2dd0: ## @pgflow/edge-worker
8+
9+
- Add ControlPlane HTTP server for flow compilation (`ControlPlane.serve()`)
10+
- Support namespace imports for flow registration
11+
12+
## @pgflow/cli
13+
14+
### Breaking Changes
15+
16+
- `pgflow compile` now takes flow slug instead of file path
17+
- Compilation happens via HTTP to ControlPlane (local Deno no longer required)
18+
- Deprecate `--deno-json` flag (will be removed in v1.0)
19+
20+
### New Features
21+
22+
- `pgflow install` now scaffolds complete setup:
23+
- Creates `supabase/flows/` with example GreetUser flow
24+
- Creates `supabase/functions/pgflow/` Control Plane
25+
- Creates `supabase/functions/greet-user-worker/` example worker
26+
- Add `--control-plane-url` option to compile command
27+
- Dynamic version injection in generated deno.json files
28+
29+
### Patch Changes
30+
31+
- @pgflow/core@0.9.0
32+
333
## 0.8.1
434

535
### 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.8.1",
3+
"version": "0.9.0",
44
"license": "Apache-2.0",
55
"type": "module",
66
"main": "./dist/index.js",

pkgs/client/CHANGELOG.md

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

3+
## 0.9.0
4+
5+
### Patch Changes
6+
7+
- @pgflow/core@0.9.0
8+
- @pgflow/dsl@0.9.0
9+
310
## 0.8.1
411

512
### 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.8.1",
3+
"version": "0.9.0",
44
"license": "Apache-2.0",
55
"type": "module",
66
"scripts": {

pkgs/core/CHANGELOG.md

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

3+
## 0.9.0
4+
5+
### Patch Changes
6+
7+
- @pgflow/dsl@0.9.0
8+
39
## 0.8.1
410

511
### 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.8.1",
3+
"version": "0.9.0",
44
"license": "Apache-2.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.9.0
4+
35
## 0.8.1
46

57
## 0.8.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.8.1",
3+
"version": "0.9.0",
44
"license": "Apache-2.0",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)