Skip to content

Commit 8e33967

Browse files
committed
chore(rivetkit): auto-update auto-start engine version (#3344)
1 parent ecd4e04 commit 8e33967

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rivetkit-typescript/packages/rivetkit/src/registry/run-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { EngingConfigSchema as EngineConfigSchema } from "@/drivers/engine/confi
66
import { InspectorConfigSchema } from "@/inspector/config";
77
import type { ManagerDriverBuilder } from "@/manager/driver";
88
import type { GetUpgradeWebSocket } from "@/utils";
9-
import { getEnvUniversal } from "@/utils";
9+
import { getEnvUniversal, VERSION } from "@/utils";
1010

1111
export const DriverConfigSchema = z.object({
1212
/** Machine-readable name to identify this driver by. */
@@ -45,7 +45,7 @@ export const RunnerConfigSchema = z
4545
.string()
4646
.optional()
4747
.default(
48-
() => getEnvUniversal("RIVET_RUN_ENGINE_VERSION") ?? "25.8.2",
48+
() => getEnvUniversal("RIVET_RUN_ENGINE_VERSION") ?? VERSION,
4949
),
5050

5151
/** @experimental */

0 commit comments

Comments
 (0)