Skip to content

Commit 962f0c1

Browse files
Merge remote-tracking branch 'origin/dev' into waf-prdc
2 parents 705f61b + 5f7fc6f commit 962f0c1

File tree

5 files changed

+22
-7
lines changed

5 files changed

+22
-7
lines changed

App/backend-api/Microsoft.GS.DPS.Host/Microsoft.GS.DPS.Host.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.2.0" />
2020
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.6" />
2121
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.6" />
22-
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.98.250508.3" />
23-
<PackageReference Include="Microsoft.SemanticKernel" Version="1.59.0" />
22+
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.79.241014.2" />
23+
<PackageReference Include="Microsoft.SemanticKernel" Version="1.32.0" />
2424
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
2525
<PackageReference Include="MimeTypesMap" Version="1.0.9" />
2626
<PackageReference Include="MongoDB.Bson" Version="2.29.0" />

App/backend-api/Microsoft.GS.DPS/Microsoft.GS.DPS.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Azure.Search.Documents" Version="11.6.1" />
1313
<PackageReference Include="FluentValidation" Version="12.0.0" />
1414
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
15-
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.98.250508.3" />
15+
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.79.241014.2" />
1616
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.81" />
1717
<PackageReference Include="Microsoft.Maui.Graphics.Skia" Version="9.0.81" />
1818
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />

App/kernel-memory/Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<!-- Semantic Kernel -->
6767
<ItemGroup>
6868
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.15.1" />
69-
<PackageVersion Include="Microsoft.SemanticKernel.Abstractions" Version="1.44.0" />
69+
<PackageVersion Include="Microsoft.SemanticKernel.Abstractions" Version="1.15.1" />
7070
<PackageVersion Include="Microsoft.SemanticKernel.Connectors.OpenAI" Version="1.15.1" />
7171
</ItemGroup>
7272
<!-- Documentation -->

Deployment/main.bicep

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ var resourceGroupLocation = resourceGroup().location
2323
// Load the abbrevations file required to name the azure resources.
2424
var abbrs = loadJsonContent('./abbreviations.json')
2525

26+
@description('Optional created by user name')
27+
param createdBy string
28+
29+
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
30+
name: 'default'
31+
properties: {
32+
tags: {
33+
TemplateName: 'DKM'
34+
CreatedBy: createdBy
35+
}
36+
}
37+
}
2638

2739
// Create a storage account
2840
module gs_storageaccount 'bicep/azurestorageaccount.bicep' = {
@@ -202,3 +214,5 @@ output gs_containerregistry_endpoint string = gs_containerregistry.outputs.acrEn
202214
//return resourcegroup resource ID
203215
output gs_resourcegroup_id string = resourceGroup().id
204216

217+
output createdByOutput string = createdBy
218+

Deployment/resourcedeployment.ps1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ function ValidateVariableIsNullOrEmpty {
7474
function PromptForParameters {
7575
param(
7676
[string]$email
77-
)
77+
78+
)
7879

7980
Clear-Host
8081

@@ -109,7 +110,7 @@ function LoginAzure([string]$tenantId, [string]$subscriptionID) {
109110
az login --service-principal `
110111
--username $env:AZURE_CLIENT_ID `
111112
--password $env:AZURE_CLIENT_SECRET `
112-
--tenant $env:AZURE_TENANT_ID
113+
--tenant $env:AZURE_TENANT_ID `
113114
Write-Host "CI deployment mode"
114115
}
115116
else{
@@ -125,7 +126,7 @@ function LoginAzure([string]$tenantId, [string]$subscriptionID) {
125126
Write-Host "manual deployment mode"
126127
}
127128
az account set --subscription $subscriptionID
128-
Write-Host "Switched subscription to '$subscriptionID' `r`n" -ForegroundColor Yellow
129+
Write-Host "Switched subscription to '$subscriptionID' `r`n" -ForegroundColor Yellow
129130
}
130131

131132
function DisplayResult([DeploymentResult]$displayResult) {

0 commit comments

Comments
 (0)