Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,7 @@ PkgES
Microsoft.PowerShell.Native
rtm.20526.5
jcotton42
RPMs
- CHANGELOG/preview.md
Gimly
jborean93
Expand Down
32 changes: 32 additions & 0 deletions CHANGELOG/7.1.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 0 additions & 2 deletions test/hosting/NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down