|
1 | 1 | @{
|
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 = @' |
58 | 58 | ### 2.2.5
|
59 | 59 | - Security patch for code injection bug
|
60 | 60 |
|
@@ -190,7 +190,7 @@ Bug fixes
|
190 | 190 |
|
191 | 191 | New features
|
192 | 192 | * 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. |
194 | 194 |
|
195 | 195 | Build and Code Cleanup Improvements
|
196 | 196 | * Splitting of functions (#229) (Thanks @Benny1007)
|
@@ -280,8 +280,8 @@ Bug fixes
|
280 | 280 | ## For full history of release notes see changelog:
|
281 | 281 | https://github.com/PowerShell/PowerShellGet/blob/master/CHANGELOG.md
|
282 | 282 | '@
|
283 |
| - } |
284 | 283 | }
|
| 284 | + } |
285 | 285 |
|
286 |
| - HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=2113539' |
| 286 | + HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=855963' |
287 | 287 | }
|
0 commit comments