@rivetkit/engine-runner 2.1.4 → 2.1.5

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": "@rivetkit/engine-runner",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -22,7 +22,7 @@
22
22
  "pino": "^9.9.5",
23
23
  "ws": "^8.18.3",
24
24
  "@rivetkit/virtual-websocket": "2.0.33",
25
- "@rivetkit/engine-runner-protocol": "2.1.4"
25
+ "@rivetkit/engine-runner-protocol": "2.1.5"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.18.1",
package/src/mod.ts CHANGED
@@ -18,7 +18,7 @@ export { RunnerActor, type ActorConfig };
18
18
  export { idToStr } from "./utils";
19
19
 
20
20
  const KV_EXPIRE: number = 30_000;
21
- const PROTOCOL_VERSION: number = 5;
21
+ const PROTOCOL_VERSION: number = 6;
22
22
 
23
23
  /** Warn once the backlog significantly exceeds the server's ack batch size. */
24
24
  const EVENT_BACKLOG_WARN_THRESHOLD = 10_000;