@zmdb/jobs-sqlite 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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zmdb/jobs-sqlite
|
|
2
2
|
|
|
3
|
-
Explicit SQLite persistence for `@zmdb/jobs`. Install `@zmdb/jobs@1.0.0-beta.
|
|
3
|
+
Explicit SQLite persistence for `@zmdb/jobs`. Install `@zmdb/jobs@1.0.0-beta.2` and `@zmdb/jobs-sqlite@1.0.0-beta.2` on Node.js 26 or later.
|
|
4
4
|
|
|
5
5
|
`createSqliteJobStore(database)` borrows a public `SqliteDatabase` connection. Apply the exported `jobsSqliteMigrations` before starting workers. `sqliteJobEnqueuer(database)` enqueues on the caller's
|
|
6
6
|
transaction without beginning or ending it.
|
|
@@ -9,4 +9,4 @@ transaction without beginning or ending it.
|
|
|
9
9
|
open.
|
|
10
10
|
|
|
11
11
|
Pass stores to `jobsExtension({ workers, schedulers, stores })` to close them after background work stops. Both stores implement the portable queue and renewable scheduler-lease ports. The package has
|
|
12
|
-
one root export and a required `@zmdb/jobs@1.0.0-beta.
|
|
12
|
+
one root export and a required `@zmdb/jobs@1.0.0-beta.2` peer; it has no third-party runtime peer.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zmdb/jobs-sqlite",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "Explicit SQLite persistence and owned memory storage for portable zmdb jobs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jobs",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"test": "vitest run"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@zmdb/sqlite": "1.0.0-beta.
|
|
40
|
+
"@zmdb/sqlite": "1.0.0-beta.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@zmdb/jobs": "1.0.0-beta.
|
|
43
|
+
"@zmdb/jobs": "1.0.0-beta.2"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=26"
|