From 456f15f2ef861ece04bc507b4869ce2e4bad0f48 Mon Sep 17 00:00:00 2001 From: Krrish Mittal Date: Fri, 10 Nov 2023 10:50:54 -0700 Subject: [PATCH] update for stack (#7469) Co-authored-by: Krrish Mittal --- .../stacks/2020-10-01/stacks/function-app-stacks/Dotnet.ts | 4 ++-- server/src/stacks/2020-10-01/stacks/web-app-stacks/Dotnet.ts | 4 ++-- server/src/stacks/2020-10-01/stacks/web-app-stacks/Node.ts | 2 -- server/src/stacks/2020-10-01/stacks/web-app-stacks/Python.ts | 1 - 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/server/src/stacks/2020-10-01/stacks/function-app-stacks/Dotnet.ts b/server/src/stacks/2020-10-01/stacks/function-app-stacks/Dotnet.ts index 02c31aca27..3d2e2bd30c 100644 --- a/server/src/stacks/2020-10-01/stacks/function-app-stacks/Dotnet.ts +++ b/server/src/stacks/2020-10-01/stacks/function-app-stacks/Dotnet.ts @@ -58,7 +58,7 @@ const getDotnetStack: (useIsoDateFormat: boolean) => FunctionAppStack = (useIsoD windowsRuntimeSettings: { runtimeVersion: 'v8.0', isHidden: false, - isPreview: true, + isEarlyAccess: true, remoteDebuggingSupported: false, appInsightsSettings: { isSupported: true, @@ -81,7 +81,7 @@ const getDotnetStack: (useIsoDateFormat: boolean) => FunctionAppStack = (useIsoD linuxRuntimeSettings: { runtimeVersion: 'DOTNET-ISOLATED|8.0', isHidden: false, - isPreview: true, + isEarlyAccess: true, remoteDebuggingSupported: false, appInsightsSettings: { isSupported: true, diff --git a/server/src/stacks/2020-10-01/stacks/web-app-stacks/Dotnet.ts b/server/src/stacks/2020-10-01/stacks/web-app-stacks/Dotnet.ts index cbd83bf0fa..2475176a75 100644 --- a/server/src/stacks/2020-10-01/stacks/web-app-stacks/Dotnet.ts +++ b/server/src/stacks/2020-10-01/stacks/web-app-stacks/Dotnet.ts @@ -34,7 +34,7 @@ const getDotnetStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateFo isSupported: true, supportedVersion: '8.x', }, - isPreview: true, + isEarlyAccess: true, }, linuxRuntimeSettings: { runtimeVersion: 'DOTNETCORE|8.0', @@ -50,7 +50,7 @@ const getDotnetStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateFo supportedFeatures: { disableSsh: true, }, - isPreview: true, + isEarlyAccess: true, }, }, }, diff --git a/server/src/stacks/2020-10-01/stacks/web-app-stacks/Node.ts b/server/src/stacks/2020-10-01/stacks/web-app-stacks/Node.ts index 09ae746bfb..f1b2bed6b7 100644 --- a/server/src/stacks/2020-10-01/stacks/web-app-stacks/Node.ts +++ b/server/src/stacks/2020-10-01/stacks/web-app-stacks/Node.ts @@ -50,7 +50,6 @@ const getNodeStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateForm value: '20-lts', stackSettings: { linuxRuntimeSettings: { - isHidden: true, runtimeVersion: 'NODE|20-lts', remoteDebuggingSupported: false, appInsightsSettings: { @@ -66,7 +65,6 @@ const getNodeStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateForm }, }, windowsRuntimeSettings: { - isHidden: true, runtimeVersion: '~20', remoteDebuggingSupported: false, appInsightsSettings: { diff --git a/server/src/stacks/2020-10-01/stacks/web-app-stacks/Python.ts b/server/src/stacks/2020-10-01/stacks/web-app-stacks/Python.ts index 9a6bbe9406..9a8edc52c1 100644 --- a/server/src/stacks/2020-10-01/stacks/web-app-stacks/Python.ts +++ b/server/src/stacks/2020-10-01/stacks/web-app-stacks/Python.ts @@ -30,7 +30,6 @@ const getPythonStack: (useIsoDateFormat: boolean) => WebAppStack = (useIsoDateFo supportedFeatures: { disableSsh: true, }, - isHidden: true, }, }, },