@michaelthielemann/kestrel-events-queue 5.7.0 → 5.8.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/README.md +1 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -6,7 +6,7 @@ attempt and requeues the row after `backoffSeconds[attempt - 1]` (the last entry
6
6
  `maxAttempts` failures the row is `dead` with the last error. A row stuck in `running` longer than
7
7
  `lockTtlSeconds` (a crashed process) is picked up again. Delivery is therefore at least once, with
8
8
  no ordering guarantee across events — listener pipelines must be idempotent. The triggering
9
- pipeline no longer waits for listeners; a listener pipeline ending with a failure status counts as
9
+ pipeline does not wait for listeners; a listener pipeline ending with a failure status counts as
10
10
  a failed attempt. `emit` rejects only when the row cannot be written, and the `events.emit` step
11
11
  then fails the run with the persistence error (503 `TRANSIENT`) instead of dropping the event.
12
12
  Alternative to `events-inmemory` (same steps, same envelope, same `triggers.event` hook); configure
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@michaelthielemann/kestrel-events-queue",
3
- "version": "5.7.0",
3
+ "version": "5.8.0",
4
4
  "description": "events@1 with a persistent queue: emit returns after the write, an in-process worker runs the listener pipelines with retry, backoff and dead-letter.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "engines": {
8
- "node": ">=22.13.0"
8
+ "node": ">=22.18.0"
9
9
  },
10
10
  "exports": {
11
11
  ".": {
@@ -22,15 +22,15 @@
22
22
  "README.md"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@michaelthielemann/kestrel": "^5.7.0",
26
- "@michaelthielemann/kestrel-contracts": "^5.7.0"
25
+ "@michaelthielemann/kestrel": "^5.8.0",
26
+ "@michaelthielemann/kestrel-contracts": "^5.8.0"
27
27
  },
28
28
  "dependencies": {
29
29
  "zod": "^3.23.8"
30
30
  },
31
31
  "devDependencies": {
32
- "@michaelthielemann/kestrel": "5.7.0",
33
- "@michaelthielemann/kestrel-contracts": "5.7.0",
32
+ "@michaelthielemann/kestrel": "5.8.0",
33
+ "@michaelthielemann/kestrel-contracts": "5.8.0",
34
34
  "vitest": "^3.2.0"
35
35
  },
36
36
  "repository": {