Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .changeset/auto-compile-http-control.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/json-status-response.md

This file was deleted.

30 changes: 30 additions & 0 deletions pkgs/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# pgflow

## 0.9.0

### Minor Changes

- 9fa2dd0: ## @pgflow/edge-worker

- Add ControlPlane HTTP server for flow compilation (`ControlPlane.serve()`)
- Support namespace imports for flow registration

## @pgflow/cli

### Breaking Changes

- `pgflow compile` now takes flow slug instead of file path
- Compilation happens via HTTP to ControlPlane (local Deno no longer required)
- Deprecate `--deno-json` flag (will be removed in v1.0)

### New Features

- `pgflow install` now scaffolds complete setup:
- Creates `supabase/flows/` with example GreetUser flow
- Creates `supabase/functions/pgflow/` Control Plane
- Creates `supabase/functions/greet-user-worker/` example worker
- Add `--control-plane-url` option to compile command
- Dynamic version injection in generated deno.json files

### Patch Changes

- @pgflow/core@0.9.0

## 0.8.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkgs/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pgflow",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
Expand Down
7 changes: 7 additions & 0 deletions pkgs/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pgflow/client

## 0.9.0

### Patch Changes

- @pgflow/core@0.9.0
- @pgflow/dsl@0.9.0

## 0.8.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkgs/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pgflow/client",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions pkgs/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pgflow/core

## 0.9.0

### Patch Changes

- @pgflow/dsl@0.9.0

## 0.8.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkgs/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pgflow/core",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions pkgs/dsl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @pgflow/dsl

## 0.9.0

## 0.8.1

## 0.8.0
Expand Down
2 changes: 1 addition & 1 deletion pkgs/dsl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pgflow/dsl",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
Expand Down
32 changes: 32 additions & 0 deletions pkgs/edge-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @pgflow/edge-worker

## 0.9.0

### Minor Changes

- 9fa2dd0: ## @pgflow/edge-worker

- Add ControlPlane HTTP server for flow compilation (`ControlPlane.serve()`)
- Support namespace imports for flow registration

## @pgflow/cli

### Breaking Changes

- `pgflow compile` now takes flow slug instead of file path
- Compilation happens via HTTP to ControlPlane (local Deno no longer required)
- Deprecate `--deno-json` flag (will be removed in v1.0)

### New Features

- `pgflow install` now scaffolds complete setup:
- Creates `supabase/flows/` with example GreetUser flow
- Creates `supabase/functions/pgflow/` Control Plane
- Creates `supabase/functions/greet-user-worker/` example worker
- Add `--control-plane-url` option to compile command
- Dynamic version injection in generated deno.json files

### Patch Changes

- 6b3c90c: Return JSON response with status, workerId, and functionName from edge worker HTTP endpoint
- @pgflow/core@0.9.0
- @pgflow/dsl@0.9.0

## 0.8.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions pkgs/edge-worker/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pgflow/edge-worker",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"exports": {
".": "./src/index.ts",
Expand All @@ -9,8 +9,8 @@
"imports": {
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.7",
"postgres": "npm:postgres@3.4.5",
"@pgflow/core": "npm:@pgflow/core@0.8.1",
"@pgflow/dsl": "npm:@pgflow/dsl@0.8.1"
"@pgflow/core": "npm:@pgflow/core@0.9.0",
"@pgflow/dsl": "npm:@pgflow/dsl@0.9.0"
},
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion pkgs/edge-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pgflow/edge-worker",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
Expand Down
7 changes: 7 additions & 0 deletions pkgs/example-flows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pgflow/example-flows

## 0.9.0

### Patch Changes

- @pgflow/core@0.9.0
- @pgflow/dsl@0.9.0

## 0.8.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkgs/example-flows/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pgflow/example-flows",
"version": "0.8.1",
"version": "0.9.0",
"license": "Apache-2.0",
"dependencies": {
"@pgflow/core": "workspace:*",
Expand Down