@ultimat3/jobs 11.2.0 → 11.3.0

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/driver-pg.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ultimat3/jobs",
3
- "version": "11.2.0",
3
+ "version": "11.3.0",
4
4
  "description": "Durable background work: steps, transactional outbox, cron tasks, one driver interface",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,9 +32,9 @@
32
32
  "test": "bun test"
33
33
  },
34
34
  "dependencies": {
35
- "@ultimat3/core": "11.2.0",
36
- "@ultimat3/entity": "11.2.0",
37
- "@ultimat3/schema": "11.2.0",
38
- "@ultimat3/time": "11.2.0"
35
+ "@ultimat3/core": "11.3.0",
36
+ "@ultimat3/entity": "11.3.0",
37
+ "@ultimat3/schema": "11.3.0",
38
+ "@ultimat3/time": "11.3.0"
39
39
  }
40
40
  }
package/src/driver-pg.ts CHANGED
@@ -57,7 +57,7 @@ import type { StepStore } from './steps';
57
57
  * The one thing this driver needs from the DB layer, declared structurally so this package can
58
58
  * depend on no database package at all.
59
59
  *
60
- * **Not satisfied by `Bun.sql`** — verified against Bun 1.3.14: `Bun.sql.query` is `undefined`.
60
+ * **Not satisfied by `Bun.sql`** — verified against Bun 1.4.0: `Bun.sql.query` is `undefined`.
61
61
  * `Bun.sql` is a tagged template whose positional form is `unsafe`, so a `{ executor: Bun.sql }`
62
62
  * would `TypeError` on the first claim. What satisfies it is a one-line adapter over a client that
63
63
  * already speaks `(text, values)` — `@ultimat3/cli`'s `pgExecutorFor(client)` is the framework's