@zmdb/jobs-postgres 1.0.0-beta.1 → 1.0.0-beta.2
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/README.md +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,12 +8,12 @@ operations under a bounded deadline; only internally acquired pool connections a
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
yarn add @zmdb/jobs@1.0.0-beta.
|
|
11
|
+
yarn add @zmdb/jobs@1.0.0-beta.2 @zmdb/jobs-postgres@1.0.0-beta.2 pg@^8.23.0
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
> **Prerelease** (`1.0.0-beta.
|
|
14
|
+
> **Prerelease** (`1.0.0-beta.2`). Requires **Node.js 26+** and is **ESM-only**. Ships built ESM `.js` + `.d.ts` under `./dist`.
|
|
15
15
|
|
|
16
|
-
The required peers are `@zmdb/jobs@1.0.0-beta.
|
|
16
|
+
The required peers are `@zmdb/jobs@1.0.0-beta.2` and `pg@^8.23.0`. Neither jobs, pg nor this adapter is installed by `yarn add @zmdb/core@1.0.0-beta.2`. Portable jobs owns queues, workers, retries and
|
|
17
17
|
scheduling; the provider owns its fresh schema.
|
|
18
18
|
|
|
19
19
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zmdb/jobs-postgres",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "node-postgres JobStore adapter for caller-owned PostgreSQL pools and clients.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adapter",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"test": "vitest run"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@zmdb/postgres": "1.0.0-beta.
|
|
42
|
+
"@zmdb/postgres": "1.0.0-beta.2"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@zmdb/jobs": "1.0.0-beta.
|
|
45
|
+
"@zmdb/jobs": "1.0.0-beta.2",
|
|
46
46
|
"pg": "^8.23.0"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|