diff --git a/.spelling b/.spelling
index d62964dd286..f9cb61fee14 100644
--- a/.spelling
+++ b/.spelling
@@ -1148,6 +1148,7 @@ PkgES
Microsoft.PowerShell.Native
rtm.20526.5
jcotton42
+RPMs
- CHANGELOG/preview.md
Gimly
jborean93
diff --git a/CHANGELOG/7.1.md b/CHANGELOG/7.1.md
index a51cfcb7a41..6f92dd03b54 100644
--- a/CHANGELOG/7.1.md
+++ b/CHANGELOG/7.1.md
@@ -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
+
+
+
+
+- Use one feed in each nuget.config in official builds (#14363)
+- Fix path signed RPMs are uploaded from in release build (#14424)
+- Fix issue with unsigned build (#14367)
+- Move macOS and NuGet packages to ESRP signing (#14324)
+- Move Windows packages signing to use ESRP (#14060)
+- Move Linux packages to ESRP signing (#14210)
+- Migrate 3rd party signing to ESRP (#14010)
+- Don't do a shallow checkout (#13992)
+- Move to ESRP signing for Windows files (#13988)
+- Add checkout step to release build templates (#13840)
+
+
+
+
+[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
diff --git a/test/hosting/NuGet.Config b/test/hosting/NuGet.Config
index c2c6e1b7c2d..765346e5343 100644
--- a/test/hosting/NuGet.Config
+++ b/test/hosting/NuGet.Config
@@ -2,8 +2,6 @@
-
-
diff --git a/tools/releaseBuild/azureDevOps/templates/release-SDKTests.yml b/tools/releaseBuild/azureDevOps/templates/release-SDKTests.yml
index dd7c9618c9e..acb82fbb748 100644
--- a/tools/releaseBuild/azureDevOps/templates/release-SDKTests.yml
+++ b/tools/releaseBuild/azureDevOps/templates/release-SDKTests.yml
@@ -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