Skip to content

Commit de782fd

Browse files
authored
Backport changes from the PowerShell v7.1.1 release (#14621)
* Backport changes from the PowerShell v7.1.1 release * Update the .spelling file
1 parent 6882193 commit de782fd

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

.spelling

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,6 +1148,7 @@ PkgES
11481148
Microsoft.PowerShell.Native
11491149
rtm.20526.5
11501150
jcotton42
1151+
RPMs
11511152
- CHANGELOG/preview.md
11521153
Gimly
11531154
jborean93

CHANGELOG/7.1.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
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

test/hosting/NuGet.Config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
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>

tools/releaseBuild/azureDevOps/templates/release-SDKTests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,15 @@ jobs:
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

0 commit comments

Comments
 (0)