Skip to content

Commit 26943c9

Browse files
authored
Merge the 1.0.0-preview.5 release branch back to main
This release is a security patch only, including the following changes: - Upgrade to .NET SDK 8.0.411 to address the .NET security issue [CVE-2025-30399](dotnet/announcements#362): .NET Remote Code Vulnerability - OpenAI agent: update `DefaultAzureCredential` to allow `InteractiveBrowserCredential` (#383)
2 parents b591ed9 + b483500 commit 26943c9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup .NET
2121
uses: actions/setup-dotnet@v4
2222
with:
23-
dotnet-version: 8.0.409
23+
dotnet-version: 8.0.411
2424
- name: Build
2525
shell: pwsh
2626
run: |
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup .NET
3838
uses: actions/setup-dotnet@v4
3939
with:
40-
dotnet-version: 8.0.409
40+
dotnet-version: 8.0.411
4141
- name: Build
4242
shell: pwsh
4343
run: |
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup .NET
5555
uses: actions/setup-dotnet@v4
5656
with:
57-
dotnet-version: 8.0.409
57+
dotnet-version: 8.0.411
5858
- name: Build
5959
shell: pwsh
6060
run: |

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "8.0.409"
3+
"version": "8.0.411"
44
}
55
}

shell/AIShell.Integration/AIShell.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
RootModule = 'AIShell.psm1'
33
NestedModules = @("AIShell.Integration.dll")
4-
ModuleVersion = '1.0.4'
4+
ModuleVersion = '1.0.5'
55
GUID = 'ECB8BEE0-59B9-4DAE-9D7B-A990B480279A'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'
@@ -14,5 +14,5 @@
1414
VariablesToExport = '*'
1515
AliasesToExport = @('aish', 'askai', 'fixit')
1616
HelpInfoURI = 'https://aka.ms/aishell-help'
17-
PrivateData = @{ PSData = @{ Prerelease = 'preview4'; ProjectUri = 'https://github.com/PowerShell/AIShell' } }
17+
PrivateData = @{ PSData = @{ Prerelease = 'preview5'; ProjectUri = 'https://github.com/PowerShell/AIShell' } }
1818
}

shell/shell.common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<TargetFramework>net8.0</TargetFramework>
99
<ImplicitUsings>enable</ImplicitUsings>
1010
<LangVersion>12.0</LangVersion>
11-
<Version>1.0.0-preview.4</Version>
11+
<Version>1.0.0-preview.5</Version>
1212

1313
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)