@workflow/world-postgres 4.1.0-beta.28 → 4.1.0-beta.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workflow/world-postgres",
3
- "version": "4.1.0-beta.28",
3
+ "version": "4.1.0-beta.29",
4
4
  "description": "A reference World implementation based on PostgreSQL",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -46,8 +46,8 @@
46
46
  "ulid": "3.0.1",
47
47
  "zod": "4.1.11",
48
48
  "@workflow/errors": "4.0.1-beta.13",
49
- "@workflow/world-local": "4.0.1-beta.26",
50
- "@workflow/world": "4.0.1-beta.13"
49
+ "@workflow/world": "4.0.1-beta.13",
50
+ "@workflow/world-local": "4.0.1-beta.27"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@testcontainers/postgresql": "11.7.1",
@@ -56,7 +56,7 @@
56
56
  "vitest": "^3.2.4",
57
57
  "@workflow/errors": "4.0.1-beta.13",
58
58
  "@workflow/tsconfig": "4.0.1-beta.0",
59
- "@workflow/world-testing": "4.0.1-beta.46"
59
+ "@workflow/world-testing": "4.0.1-beta.51"
60
60
  },
61
61
  "keywords": [],
62
62
  "author": "",
@@ -1,7 +0,0 @@
1
- -- Drop deprecated error columns from workflow_runs table
2
- -- Error data is now stored as JSON in the error column
3
- ALTER TABLE "workflow_runs" DROP COLUMN IF EXISTS "error_code";
4
- --> statement-breakpoint
5
-
6
- -- Drop deprecated error columns from workflow_steps table
7
- ALTER TABLE "workflow_steps" DROP COLUMN IF EXISTS "error_code";