From 61327866b90efaa299b3a560327c6e11c31c7707 Mon Sep 17 00:00:00 2001 From: Max Hauser Date: Tue, 1 Oct 2024 10:30:12 +0200 Subject: [PATCH] incerase adapter-core version to ^3.2.1 (#2932) --- packages/cli/src/lib/setup/setupSetup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/lib/setup/setupSetup.ts b/packages/cli/src/lib/setup/setupSetup.ts index 2289e45a1..e21618e16 100644 --- a/packages/cli/src/lib/setup/setupSetup.ts +++ b/packages/cli/src/lib/setup/setupSetup.ts @@ -66,7 +66,7 @@ export class Setup { /** Object IDs which are not allowed to exist but could be generated due to errors in the past */ private readonly KNOWN_GARBAGE_OBJECT_IDS = ['null', 'undefined']; /** Adapter core version supported by this js-controller */ - private readonly SUPPORTED_ADAPTER_CORE_VERSION = '^3.1.6'; + private readonly SUPPORTED_ADAPTER_CORE_VERSION = '^3.2.1'; /** Default name for redis sentinels */ private readonly DEFAULT_SENTINEL_NAME = 'mymaster'; private readonly processExit: ProcessExitCallback;