Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit ddaee66

Browse files
committed
Merge branch 'development'
2 parents 7a41860 + cd09bb6 commit ddaee66

File tree

4 files changed

+63
-63
lines changed

4 files changed

+63
-63
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Bug fixes
157157
New features
158158

159159
- Allow Pester/PSReadline installation when signed by non-Microsoft certificate (#258)
160-
- Whitelist installation of non-Microsoft signed Pester and PSReadline over Microsoft signed Pester and PSReadline.
160+
- Allowlist installation of non-Microsoft signed Pester and PSReadline over Microsoft signed Pester and PSReadline.
161161

162162
Build and Code Cleanup Improvements
163163

Tests/PSGetInstallModule.Tests.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function SuiteSetup {
8181
# If it doesn't exist, attempt to download it.
8282
# If this is run offline, just fail the test for now.
8383
# This module is expected to be Microsoft-signed.
84-
# This is essentially a test hook to get around the hardcoded whitelist.
84+
# This is essentially a test hook to get around the hardcoded allowlist.
8585
$signedPester = (Get-Module Pester -ListAvailable | Where-Object { $_.Version -eq '3.4.0' }).ModuleBase
8686
if (-not $signedPester) {
8787
$psName = [System.Guid]::NewGuid().ToString()
@@ -849,7 +849,7 @@ Describe PowerShell.PSGet.InstallModuleTests -Tags 'BVT', 'InnerLoop' {
849849
AssertEquals $res.Name $moduleName2 "Install-Module failed to install with Find-Command output"
850850
}
851851

852-
# Purpose: Install a whitelisted non-Microsoft signed Pester or PSReadline version without -SkipPublisherCheck
852+
# Purpose: Install a allowlisted non-Microsoft signed Pester or PSReadline version without -SkipPublisherCheck
853853
#
854854
# Action: Install-Module -Name Pester -RequiredVersion <Anything non-Microsoft signed>
855855
#

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ build: off
4545

4646
# branches to build
4747
branches:
48-
# whitelist
48+
# allowlist
4949
only:
5050
- master
5151
- development

src/PowerShellGet/PowerShellGet.psd1

+59-59
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
@{
2-
RootModule = 'PSModule.psm1'
3-
ModuleVersion = '2.2.5.1'
4-
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
5-
Author = 'Microsoft Corporation'
6-
CompanyName = 'Microsoft Corporation'
7-
Copyright = '(c) Microsoft Corporation. All rights reserved.'
8-
Description = 'PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.'
9-
PowerShellVersion = '3.0'
10-
FormatsToProcess = 'PSGet.Format.ps1xml'
11-
FunctionsToExport = @(
12-
'Find-Command',
13-
'Find-DSCResource',
14-
'Find-Module',
15-
'Find-RoleCapability',
16-
'Find-Script',
17-
'Get-CredsFromCredentialProvider',
18-
'Get-InstalledModule',
19-
'Get-InstalledScript',
20-
'Get-PSRepository',
21-
'Install-Module',
22-
'Install-Script',
23-
'New-ScriptFileInfo',
24-
'Publish-Module',
25-
'Publish-Script',
26-
'Register-PSRepository',
27-
'Save-Module',
28-
'Save-Script',
29-
'Set-PSRepository',
30-
'Test-ScriptFileInfo',
31-
'Uninstall-Module',
32-
'Uninstall-Script',
33-
'Unregister-PSRepository',
34-
'Update-Module',
35-
'Update-ModuleManifest',
36-
'Update-Script',
37-
'Update-ScriptFileInfo')
38-
39-
VariablesToExport = 'PSGetPath'
40-
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
41-
FileList = @('PSModule.psm1',
42-
'PSGet.Format.ps1xml',
43-
'PSGet.Resource.psd1')
44-
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.4.4' })
45-
PrivateData = @{
46-
"PackageManagementProviders" = 'PSModule.psm1'
47-
"SupportedPowerShellGetFormatVersions" = @('1.x', '2.x')
48-
PSData = @{
49-
Tags = @('Packagemanagement',
50-
'Provider',
51-
'PSEdition_Desktop',
52-
'PSEdition_Core',
53-
'Linux',
54-
'Mac')
55-
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
56-
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
57-
ReleaseNotes = @'
2+
RootModule = 'PSModule.psm1'
3+
ModuleVersion = '2.2.5'
4+
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
5+
Author = 'Microsoft Corporation'
6+
CompanyName = 'Microsoft Corporation'
7+
Copyright = '(c) Microsoft Corporation. All rights reserved.'
8+
Description = 'PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.'
9+
PowerShellVersion = '3.0'
10+
FormatsToProcess = 'PSGet.Format.ps1xml'
11+
FunctionsToExport = @(
12+
'Find-Command',
13+
'Find-DSCResource',
14+
'Find-Module',
15+
'Find-RoleCapability',
16+
'Find-Script',
17+
'Get-CredsFromCredentialProvider',
18+
'Get-InstalledModule',
19+
'Get-InstalledScript',
20+
'Get-PSRepository',
21+
'Install-Module',
22+
'Install-Script',
23+
'New-ScriptFileInfo',
24+
'Publish-Module',
25+
'Publish-Script',
26+
'Register-PSRepository',
27+
'Save-Module',
28+
'Save-Script',
29+
'Set-PSRepository',
30+
'Test-ScriptFileInfo',
31+
'Uninstall-Module',
32+
'Uninstall-Script',
33+
'Unregister-PSRepository',
34+
'Update-Module',
35+
'Update-ModuleManifest',
36+
'Update-Script',
37+
'Update-ScriptFileInfo')
38+
39+
VariablesToExport = 'PSGetPath'
40+
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
41+
FileList = @('PSModule.psm1',
42+
'PSGet.Format.ps1xml',
43+
'PSGet.Resource.psd1')
44+
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.4.4' })
45+
PrivateData = @{
46+
"PackageManagementProviders" = 'PSModule.psm1'
47+
"SupportedPowerShellGetFormatVersions" = @('1.x', '2.x')
48+
PSData = @{
49+
Tags = @('Packagemanagement',
50+
'Provider',
51+
'PSEdition_Desktop',
52+
'PSEdition_Core',
53+
'Linux',
54+
'Mac')
55+
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
56+
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
57+
ReleaseNotes = @'
5858
### 2.2.5
5959
- Security patch for code injection bug
6060
@@ -190,7 +190,7 @@ Bug fixes
190190
191191
New features
192192
* Allow Pester/PSReadline installation when signed by non-Microsoft certificate (#258)
193-
- Whitelist installation of non-Microsoft signed Pester and PSReadline over Microsoft signed Pester and PSReadline.
193+
- Allowlist installation of non-Microsoft signed Pester and PSReadline over Microsoft signed Pester and PSReadline.
194194
195195
Build and Code Cleanup Improvements
196196
* Splitting of functions (#229) (Thanks @Benny1007)
@@ -280,8 +280,8 @@ Bug fixes
280280
## For full history of release notes see changelog:
281281
https://github.com/PowerShell/PowerShellGet/blob/master/CHANGELOG.md
282282
'@
283-
}
284283
}
284+
}
285285

286-
HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=2113539'
286+
HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=855963'
287287
}

0 commit comments

Comments
 (0)