Backport changes from the PowerShell v7.1.1 release (#14621)

* Backport changes from the PowerShell v7.1.1 release

* Update the .spelling file
This commit is contained in:
Dongbo Wang 2021-01-19 04:43:01 -08:00 committed by GitHub
parent 68821932c5
commit de782fdec6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 40 additions and 3 deletions

View file

@ -1148,6 +1148,7 @@ PkgES
Microsoft.PowerShell.Native
rtm.20526.5
jcotton42
RPMs
- CHANGELOG/preview.md
Gimly
jborean93

View file

@ -1,5 +1,37 @@
# 7.1 Changelog
## [7.1.1] - 2021-01-14
### General Cmdlet Updates and Fixes
- Avoid an exception if file system does not support reparse points (#13634) (Thanks @iSazonov!)
- Make AppLocker Enforce mode take precedence over UMCI Audit mode (#14353)
### Code Cleanup
- Fix syntax error in Windows packaging script (#14377)
### Build and Packaging Improvements
<details>
<ul>
<li>Use one feed in each nuget.config in official builds (#14363)</li>
<li>Fix path signed RPMs are uploaded from in release build (#14424)</li>
<li>Fix issue with unsigned build (#14367)</li>
<li>Move macOS and NuGet packages to ESRP signing (#14324)</li>
<li>Move Windows packages signing to use ESRP (#14060)</li>
<li>Move Linux packages to ESRP signing (#14210)</li>
<li>Migrate 3rd party signing to ESRP (#14010)</li>
<li>Don't do a shallow checkout (#13992)</li>
<li>Move to ESRP signing for Windows files (#13988)</li>
<li>Add checkout step to release build templates (#13840)</li>
</ul>
</details>
[7.1.1]: https://github.com/PowerShell/PowerShell/compare/v7.1.0...v7.1.1
## [7.1.0] - 2020-11-11
### Engine Updates and Fixes

View file

@ -2,8 +2,6 @@
<configuration>
<packageSources>
<clear />
<add key="powershell-core" value="https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
</packageSources>
</configuration>

View file

@ -54,9 +54,15 @@ jobs:
Write-Verbose -Message "Register new package source 'dotnet5'" -verbose
}
## Install latest version from the channel
## Remove old .NET SDKs if any exists
if (Test-Path -Type Container $Home/.dotnet)
{
Remove-Item $Home/.dotnet -Recurse -Force
}
## Install latest version from the channel
#Install-Dotnet -Channel "$Channel" -Version $sdkVersion
Start-PSBootstrap
Write-Verbose -Message "Installing .NET SDK completed." -Verbose