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
11 changes: 0 additions & 11 deletions .changeset/remove-legacy-flow-compilation.md

This file was deleted.

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

## 0.16.0

### Minor Changes

- 489e1bc: Remove migration-based flow compilation. Flow workers now always compile or verify their imported definition before registration and polling.

This removes `compileFlow()`, `compareFlowShapes()`, `ControlPlane`, `pgflow compile`, `FlowWorkerConfig.compilation`, and production `allowDataLoss`. The database migration removes `pgflow.ensure_flow_compiled(text, jsonb, boolean)`, so stop old workers before applying it and upgrade the fixed pgflow package set together.

### Patch Changes

- Updated dependencies [489e1bc]
- @pgflow/core@0.16.0

## 0.15.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.15.1",
"version": "0.16.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions pkgs/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @pgflow/client

## 0.16.0

### Minor Changes

- 489e1bc: Remove migration-based flow compilation. Flow workers now always compile or verify their imported definition before registration and polling.

This removes `compileFlow()`, `compareFlowShapes()`, `ControlPlane`, `pgflow compile`, `FlowWorkerConfig.compilation`, and production `allowDataLoss`. The database migration removes `pgflow.ensure_flow_compiled(text, jsonb, boolean)`, so stop old workers before applying it and upgrade the fixed pgflow package set together.

### Patch Changes

- Updated dependencies [489e1bc]
- @pgflow/core@0.16.0
- @pgflow/dsl@0.16.0

## 0.15.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.15.1",
"version": "0.16.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
13 changes: 13 additions & 0 deletions pkgs/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @pgflow/core

## 0.16.0

### Minor Changes

- 489e1bc: Remove migration-based flow compilation. Flow workers now always compile or verify their imported definition before registration and polling.

This removes `compileFlow()`, `compareFlowShapes()`, `ControlPlane`, `pgflow compile`, `FlowWorkerConfig.compilation`, and production `allowDataLoss`. The database migration removes `pgflow.ensure_flow_compiled(text, jsonb, boolean)`, so stop old workers before applying it and upgrade the fixed pgflow package set together.

### Patch Changes

- Updated dependencies [489e1bc]
- @pgflow/dsl@0.16.0

## 0.15.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.15.1",
"version": "0.16.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions pkgs/dsl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pgflow/dsl

## 0.16.0

### Minor Changes

- 489e1bc: Remove migration-based flow compilation. Flow workers now always compile or verify their imported definition before registration and polling.

This removes `compileFlow()`, `compareFlowShapes()`, `ControlPlane`, `pgflow compile`, `FlowWorkerConfig.compilation`, and production `allowDataLoss`. The database migration removes `pgflow.ensure_flow_compiled(text, jsonb, boolean)`, so stop old workers before applying it and upgrade the fixed pgflow package set together.

## 0.15.1

## 0.15.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.15.1",
"version": "0.16.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions pkgs/edge-worker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @pgflow/edge-worker

## 0.16.0

### Minor Changes

- 489e1bc: Remove migration-based flow compilation. Flow workers now always compile or verify their imported definition before registration and polling.

This removes `compileFlow()`, `compareFlowShapes()`, `ControlPlane`, `pgflow compile`, `FlowWorkerConfig.compilation`, and production `allowDataLoss`. The database migration removes `pgflow.ensure_flow_compiled(text, jsonb, boolean)`, so stop old workers before applying it and upgrade the fixed pgflow package set together.

### Patch Changes

- Updated dependencies [489e1bc]
- @pgflow/core@0.16.0
- @pgflow/dsl@0.16.0

## 0.15.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.15.1",
"version": "0.16.0",
"license": "Apache-2.0",
"exports": {
".": "./src/index.ts",
Expand All @@ -10,8 +10,8 @@
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.7",
"@std/crypto": "jsr:@std/crypto@^1.0.5",
"postgres": "jsr:@oscar6echo/postgres@3.4.5-d",
"@pgflow/core": "npm:@pgflow/core@0.15.1",
"@pgflow/dsl": "npm:@pgflow/dsl@0.15.1"
"@pgflow/core": "npm:@pgflow/core@0.16.0",
"@pgflow/dsl": "npm:@pgflow/dsl@0.16.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.15.1",
"version": "0.16.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
Loading