File tree Expand file tree Collapse file tree 4 files changed +40
-3
lines changed
tools/releaseBuild/azureDevOps/templates Expand file tree Collapse file tree 4 files changed +40
-3
lines changed Original file line number Diff line number Diff line change @@ -1148,6 +1148,7 @@ PkgES
11481148Microsoft.PowerShell.Native
11491149rtm.20526.5
11501150jcotton42
1151+ RPMs
11511152 - CHANGELOG/preview.md
11521153Gimly
11531154jborean93
Original file line number Diff line number Diff line change 11# 7.1 Changelog
22
3+ ## [ 7.1.1] - 2021-01-14
4+
5+ ### General Cmdlet Updates and Fixes
6+
7+ - Avoid an exception if file system does not support reparse points (#13634 ) (Thanks @iSazonov !)
8+ - Make AppLocker Enforce mode take precedence over UMCI Audit mode (#14353 )
9+
10+ ### Code Cleanup
11+
12+ - Fix syntax error in Windows packaging script (#14377 )
13+
14+ ### Build and Packaging Improvements
15+
16+ <details >
17+
18+ <ul >
19+ <li >Use one feed in each nuget.config in official builds (#14363)</li >
20+ <li >Fix path signed RPMs are uploaded from in release build (#14424)</li >
21+ <li >Fix issue with unsigned build (#14367)</li >
22+ <li >Move macOS and NuGet packages to ESRP signing (#14324)</li >
23+ <li >Move Windows packages signing to use ESRP (#14060)</li >
24+ <li >Move Linux packages to ESRP signing (#14210)</li >
25+ <li >Migrate 3rd party signing to ESRP (#14010)</li >
26+ <li >Don't do a shallow checkout (#13992)</li >
27+ <li >Move to ESRP signing for Windows files (#13988)</li >
28+ <li >Add checkout step to release build templates (#13840)</li >
29+ </ul >
30+
31+ </details >
32+
33+ [ 7.1.1 ] : https://github.com/PowerShell/PowerShell/compare/v7.1.0...v7.1.1
34+
335## [ 7.1.0] - 2020-11-11
436
537### Engine Updates and Fixes
Original file line number Diff line number Diff line change 22<configuration >
33 <packageSources >
44 <clear />
5- <add key =" powershell-core" value =" https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
65 <add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" />
7- <add key =" dotnet-core" value =" https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
86 </packageSources >
97</configuration >
Original file line number Diff line number Diff line change 5454 Write-Verbose -Message "Register new package source 'dotnet5'" -verbose
5555 }
5656
57- ## Install latest version from the channel
57+ ## Remove old .NET SDKs if any exists
58+ if (Test-Path -Type Container $Home/.dotnet)
59+ {
60+ Remove-Item $Home/.dotnet -Recurse -Force
61+ }
5862
63+ ## Install latest version from the channel
5964 #Install-Dotnet -Channel "$Channel" -Version $sdkVersion
65+
6066 Start-PSBootstrap
6167
6268 Write-Verbose -Message "Installing .NET SDK completed." -Verbose
You can’t perform that action at this time.
0 commit comments