Skip to content

Commit bfc5284

Browse files
alericksonHeiðar Hólmberg Jónsson
authored andcommitted
Merge development to master (PowerShell#440)
1 parent 0f667f2 commit bfc5284

File tree

2 files changed

+82
-82
lines changed

2 files changed

+82
-82
lines changed

SignConfig.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
<file src="__INPATHROOT__\PowerShellGet\Modules\PowerShellGet.ResourceHelper\PowerShellGet.ResourceHelper.psm1" signType="AuthenticodeFormer" dest="__OUTPATHROOT__\Modules\PowerShellGet.ResourceHelper\PowerShellGet.ResourceHelper.psm1" />
2222
<file src="__INPATHROOT__\PowerShellGet\Modules\PowerShellGet.LocalizationHelper\PowerShellGet.LocalizationHelper.psm1" signType="AuthenticodeFormer" dest="__OUTPATHROOT__\Modules\PowerShellGet.LocalizationHelper\PowerShellGet.LocalizationHelper.psm1" />
2323
</job>
24-
</SignConfigXML>
24+
</SignConfigXML>

src/PowerShellGet/PowerShellGet.psd1

Lines changed: 81 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,59 @@
11
@{
2-
RootModule = 'PSModule.psm1'
3-
ModuleVersion = '2.1.4'
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-InstalledModule',
18-
'Get-InstalledScript',
19-
'Get-PSRepository',
20-
'Install-Module',
21-
'Install-Script',
22-
'New-ScriptFileInfo',
23-
'Publish-Module',
24-
'Publish-Script',
25-
'Register-PSRepository',
26-
'Save-Module',
27-
'Save-Script',
28-
'Set-PSRepository',
29-
'Test-ScriptFileInfo',
30-
'Uninstall-Module',
31-
'Uninstall-Script',
32-
'Unregister-PSRepository',
33-
'Update-Module',
34-
'Update-ModuleManifest',
35-
'Update-Script',
36-
'Update-ScriptFileInfo')
37-
38-
VariablesToExport = "*"
39-
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
40-
FileList = @('PSModule.psm1',
41-
'PSGet.Format.ps1xml',
42-
'PSGet.Resource.psd1')
43-
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.4' })
44-
PrivateData = @{
45-
"PackageManagementProviders" = 'PSModule.psm1'
46-
"SupportedPowerShellGetFormatVersions" = @('1.x', '2.x')
47-
PSData = @{
48-
Tags = @('Packagemanagement',
49-
'Provider',
50-
'PSEdition_Desktop',
51-
'PSEdition_Core',
52-
'Linux',
53-
'Mac')
54-
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
55-
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
56-
ReleaseNotes = @'
2+
RootModule = 'PSModule.psm1'
3+
ModuleVersion = '2.1.4'
4+
Description = 'PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.'
5+
PowerShellVersion = '3.0'
6+
FormatsToProcess = 'PSGet.Format.ps1xml'
7+
FunctionsToExport = @(
8+
'Find-Command',
9+
'Find-DSCResource',
10+
'Find-Module',
11+
'Find-RoleCapability',
12+
'Find-Script',
13+
'Get-InstalledModule',
14+
'Get-InstalledScript',
15+
'Get-PSRepository',
16+
'Install-Module',
17+
'Install-Script',
18+
'New-ScriptFileInfo',
19+
'Publish-Module',
20+
'Publish-Script',
21+
'Register-PSRepository',
22+
'Save-Module',
23+
'Save-Script',
24+
'Set-PSRepository',
25+
'Test-ScriptFileInfo',
26+
'Uninstall-Module',
27+
'Uninstall-Script',
28+
'Unregister-PSRepository',
29+
'Update-Module',
30+
'Update-ModuleManifest',
31+
'Update-Script',
32+
'Update-ScriptFileInfo')
33+
34+
VariablesToExport = "*"
35+
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
36+
FileList = @('PSModule.psm1',
37+
'PSGet.Format.ps1xml',
38+
'PSGet.Resource.psd1')
39+
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.1.7.0' })
40+
PrivateData = @{
41+
"PackageManagementProviders" = 'PSModule.psm1'
42+
"SupportedPowerShellGetFormatVersions" = @('1.x', '2.x')
43+
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.4' })
44+
'Linux',
45+
'Mac')
46+
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
47+
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
48+
ReleaseNotes = @'
49+
## 2.1.2
50+
51+
New Feature
52+
53+
- Added support for registering repositories with special characters
54+
55+
## 2.1.1
56+
5757
5858
## 2.1.4
5959
- Fixed hang while publishing some packages (#478)
@@ -75,32 +75,6 @@ New Feature
7575
7676
- Added support for registering repositories with special characters
7777
78-
## 2.1.1
79-
80-
- Fix DSC resource folder structure
81-
82-
## 2.1.0
83-
84-
Breaking Change
85-
86-
- Default installation scope for Update-Module and Update-Script has changed to match Install-Module and Install-Script. For Windows PowerShell (version 5.1 or below), the default scope is AllUsers when running in an elevated session, and CurrentUser at all other times.
87-
For PowerShell version 6.0.0 and above, the default installation scope is always CurrentUser. (#421)
88-
89-
Bug Fixes
90-
91-
- Update-ModuleManifest no longer clears FunctionsToExport, AliasesToExport, nor NestModules (#415 & #425) (Thanks @pougetat and @tnieto88!)
92-
- Update-Module no longer changes repository URL (#407)
93-
- Update-ModuleManifest no longer preprends 'PSGet_' to module name (#403) (Thanks @ThePoShWolf)
94-
- Update-ModuleManifest now throws error and fails to update when provided invalid entries (#398) (Thanks @pougetat!)
95-
- Ignore files no longer being included when uploading modules (#396)
96-
97-
New Features
98-
99-
- New DSC resource, PSRepository (#426) (Thanks @johlju!)
100-
- Piping of PS respositories (#420)
101-
- utf8 support for .nuspec (#419)
102-
103-
## 2.0.4
10478
10579
Bug Fix
10680
* Remove PSGallery availability checks (#374)
@@ -250,6 +224,32 @@ Bug fixes
250224
* Fixed '[Test-ScriptFileInfo] Fails on *NIX newlines (LF vs. CRLF)' (#18)
251225
252226
227+
## 1.1.1.0
228+
229+
Bug fixes
230+
* Fixed 'Update-Module fails with `ModuleAuthenticodeSignature` error for modules with signed PSD1'. (#12) (#8)
231+
* Fixed 'Properties of `AdditionalMetadata` are case-sensitive'. #7
232+
* Changed `ErrorAction` to `Ignore` for few cmdlet usages as they should not show up in ErrorVariable.
233+
- For example, error returned by `Get-Command Test-FileCatalog` should be ignored.
234+
235+
236+
## 1.1.0.0
237+
238+
* Initial release from GitHub.
239+
* PowerShellCore support.
240+
* Security enhancements including the enforcement of catalog-signed modules during installation.
241+
* Authenticated Repository support.
242+
* Proxy Authentication support.
243+
* Responses to a number of user requests and issues.
244+
'@
245+
}
246+
}
247+
248+
HelpInfoURI = 'http://go.microsoft.com/fwlink/?linkid=855963'
249+
}
250+
* Fixed '[Test-ScriptFileInfo] Fails on *NIX newlines (LF vs. CRLF)' (#18)
251+
252+
253253
## 1.1.1.0
254254

255255
Bug fixes

0 commit comments

Comments
 (0)