From f15cbd5ca9afb02094031ec192724e2585466d19 Mon Sep 17 00:00:00 2001 From: saimachi Date: Thu, 16 May 2024 18:32:01 -0400 Subject: [PATCH 1/2] Update gateway App Config settings for 0.8.0. --- src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs | 6 +++--- src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs b/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs index 52e03267ea..412fb3c117 100644 --- a/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs +++ b/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs @@ -509,7 +509,7 @@ public static class AppConfigurationCatalog new( key: AppConfigurationKeys.FoundationaLLM_APIs_GatewayAPI_APIUrl, - minimumVersion: "0.6.0", + minimumVersion: "0.8.0", defaultValue: "", description: "The URL of the Gateway API.", keyVaultSecretName: "", @@ -519,7 +519,7 @@ public static class AppConfigurationCatalog new( key: AppConfigurationKeys.FoundationaLLM_APIs_GatewayAPI_APIKey, - minimumVersion: "0.6.0", + minimumVersion: "0.8.0", defaultValue: "Key Vault secret name: `foundationallm-apis-gatewayapi-apikey`", description: "The API key of the Gateway API.", keyVaultSecretName: KeyVaultSecretNames.FoundationaLLM_APIs_GatewayAPI_APIKey, @@ -530,7 +530,7 @@ public static class AppConfigurationCatalog new( key: AppConfigurationKeys .FoundationaLLM_APIs_GatewayAPI_AppInsightsConnectionString, - minimumVersion: "0.6.0", + minimumVersion: "0.8.0", defaultValue: "Key Vault secret name: `foundationallm-app-insights-connection-string`", description: "The connection string to the Application Insights instance used by the vectorization API.", diff --git a/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs b/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs index 248f6b3e1d..009e42209e 100644 --- a/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs +++ b/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs @@ -97,7 +97,7 @@ public static class KeyVaultSecretsCatalog ), new ( secretName: KeyVaultSecretNames.FoundationaLLM_APIs_GatewayAPI_APIKey, - minimumVersion: "0.6.0", + minimumVersion: "0.8.0", description: "The API key of the Gateway API" ) ]; From 6b4b7fb52321db995f4e92fc25238454f8939049 Mon Sep 17 00:00:00 2001 From: saimachi Date: Fri, 17 May 2024 05:21:23 -0400 Subject: [PATCH 2/2] Updated versions to 0.7.0 --- src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs | 6 +++--- src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs b/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs index 412fb3c117..80a2cc2c9a 100644 --- a/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs +++ b/src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs @@ -509,7 +509,7 @@ public static class AppConfigurationCatalog new( key: AppConfigurationKeys.FoundationaLLM_APIs_GatewayAPI_APIUrl, - minimumVersion: "0.8.0", + minimumVersion: "0.7.0", defaultValue: "", description: "The URL of the Gateway API.", keyVaultSecretName: "", @@ -519,7 +519,7 @@ public static class AppConfigurationCatalog new( key: AppConfigurationKeys.FoundationaLLM_APIs_GatewayAPI_APIKey, - minimumVersion: "0.8.0", + minimumVersion: "0.7.0", defaultValue: "Key Vault secret name: `foundationallm-apis-gatewayapi-apikey`", description: "The API key of the Gateway API.", keyVaultSecretName: KeyVaultSecretNames.FoundationaLLM_APIs_GatewayAPI_APIKey, @@ -530,7 +530,7 @@ public static class AppConfigurationCatalog new( key: AppConfigurationKeys .FoundationaLLM_APIs_GatewayAPI_AppInsightsConnectionString, - minimumVersion: "0.8.0", + minimumVersion: "0.7.0", defaultValue: "Key Vault secret name: `foundationallm-app-insights-connection-string`", description: "The connection string to the Application Insights instance used by the vectorization API.", diff --git a/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs b/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs index 009e42209e..0b009f95c4 100644 --- a/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs +++ b/src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs @@ -97,7 +97,7 @@ public static class KeyVaultSecretsCatalog ), new ( secretName: KeyVaultSecretNames.FoundationaLLM_APIs_GatewayAPI_APIKey, - minimumVersion: "0.8.0", + minimumVersion: "0.7.0", description: "The API key of the Gateway API" ) ];