You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 13, 2024. It is now read-only.
- 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.
8
+
For PowerShell version 6.0.0 and above, the default installation scope is always CurrentUser. (#421)
9
+
10
+
Bug Fixes
11
+
12
+
- Update-ModuleManifest no longer clears FunctionsToExport, AliasesToExport, nor NestModules (#415 & #425) (Thanks @pougetat and @tnieto88!)
13
+
- Update-Module no longer changes repository URL (#407)
14
+
- Update-ModuleManifest no longer preprends 'PSGet_' to module name (#403) (Thanks @ThePoShWolf)
15
+
- Update-ModuleManifest now throws error and fails to update when provided invalid entries (#398) (Thanks @pougetat!)
16
+
- Ignore files no longer being included when uploading modules (#396)
17
+
18
+
New Features
19
+
20
+
- New DSC resource, PSRepository (#426) (Thanks @johlju!)
21
+
- Piping of PS respositories (#420)
22
+
- utf8 support for .nuspec (#419)
23
+
2
24
## 2.0.4
25
+
3
26
Bug Fix
4
-
* Remove PSGallery availability checks (#374)
27
+
28
+
- Remove PSGallery availability checks (#374)
5
29
6
30
## 2.0.3
31
+
7
32
Bug fixes and Improvements
8
-
* Fix CommandAlreadyAvailable error for PackageManagement module (#333)
9
-
* Remove trailing whitespace when value is not provided for Get-PSScriptInfoString (#337) (Thanks @thomasrayner)
10
-
* Expanded aliases for improved readability (#338) (Thanks @lazywinadmin)
11
-
* Improvements for Catalog tests (#343)
12
-
* Fix Update-ScriptInfoFile to preserve PrivateData (#346) (Thanks @tnieto88)
13
-
* Install modules with many commands faster (#351)
33
+
34
+
- Fix CommandAlreadyAvailable error for PackageManagement module (#333)
35
+
- Remove trailing whitespace when value is not provided for Get-PSScriptInfoString (#337) (Thanks @thomasrayner)
36
+
- Expanded aliases for improved readability (#338) (Thanks @lazywinadmin)
37
+
- Improvements for Catalog tests (#343)
38
+
- Fix Update-ScriptInfoFile to preserve PrivateData (#346) (Thanks @tnieto88)
39
+
- Install modules with many commands faster (#351)
14
40
15
41
New Features
16
-
* Tab completion for -Repository parameter (#339) and for Publish-Module -Name (#359) (Thanks @matt9ucci)
42
+
43
+
- Tab completion for -Repository parameter (#339) and for Publish-Module -Name (#359) (Thanks @matt9ucci)
17
44
18
45
## 2.0.1
46
+
19
47
Bug fixes
48
+
20
49
- Resolved Publish-Module doesn't report error but fails to publish module (#316)
21
50
- Resolved CommandAlreadyAvailable error while installing the latest version of PackageManagement module (#333)
22
51
23
52
## 2.0.0
53
+
24
54
Breaking Change
55
+
25
56
- Default installation scope for Install-Module, Install-Script, and Install-Package has changed. 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.
26
57
For PowerShell version 6.0.0 and above, the default installation scope is always CurrentUser.
27
58
28
-
29
59
## 1.6.7
30
60
31
61
Bug fixes
62
+
32
63
- Resolved Install/Save-Module error in PSCore 6.1.0-preview.4 on Ubuntu 18.04 OS (WSL/Azure) (#313)
33
64
- Updated error message in Save-Module cmdlet when the specified path is not accessible (#313)
34
65
- Added few additional verbose messages (#313)
35
66
36
67
## 1.6.6
37
68
38
69
Dependency Updates
39
-
* Add dependency on version 4.1.0 or newer of NuGet.exe
40
-
* Update NuGet.exe bootstrap URL to https://aka.ms/psget-nugetexe
70
+
71
+
- Add dependency on version 4.1.0 or newer of NuGet.exe
72
+
- Update NuGet.exe bootstrap URL to https://aka.ms/psget-nugetexe
41
73
42
74
Build and Code Cleanup Improvements
43
-
* Improved error handling in network connectivity tests.
75
+
76
+
- Improved error handling in network connectivity tests.
44
77
45
78
Bug fixes
79
+
46
80
- Change Update ModuleManifest so that prefix is not added to CmdletsToExport.
47
81
- Change Update ModuleManifest so that parameters will not reset to default values.
48
-
- Specify AllowPrereleseVersions provider option only when AllowPrerelease is specified on the PowerShellGet cmdlets.
82
+
- Specify AllowPrereleaseVersions provider option only when AllowPrerelease is specified on the PowerShellGet cmdlets.
49
83
50
84
## 1.6.5
51
85
52
86
New features
53
-
* Allow Pester/PSReadline installation when signed by non-Microsoft certificate (#258)
87
+
88
+
- Allow Pester/PSReadline installation when signed by non-Microsoft certificate (#258)
54
89
- Whitelist installation of non-Microsoft signed Pester and PSReadline over Microsoft signed Pester and PSReadline.
55
90
56
91
Build and Code Cleanup Improvements
57
-
* Splitting of functions (#229) (Thanks @Benny1007)
92
+
93
+
- Splitting of functions (#229) (Thanks @Benny1007)
58
94
- Moves private functions into respective private folder.
59
95
- Moves public functions as defined in PSModule.psd1 into respective public folder.
60
96
- Removes all functions from PSModule.psm1 file.
61
97
- Dot sources the functions from PSModule.psm1 file.
62
98
- Uses Export-ModuleMember to export the public functions from PSModule.psm1 file.
63
99
64
-
* Add build step to construct a single .psm1 file (#242) (Thanks @Benny1007)
100
+
- Add build step to construct a single .psm1 file (#242) (Thanks @Benny1007)
65
101
- Merged public and private functions into one .psm1 file to increase load time performance.
66
102
67
103
Bug fixes
104
+
68
105
- Fix null parameter error caused by MinimumVersion in Publish-PackageUtility (#201)
69
106
- Change .ExternalHelp link from PSGet.psm1-help.xml to PSModule-help.xml in PSModule.psm1 file (#215)
70
107
- Change Publish-* to allow version comparison instead of string comparison (#219)
@@ -76,87 +113,95 @@ Bug fixes
76
113
## 1.6.0
77
114
78
115
New features
79
-
* Prerelease Version Support (#185)
116
+
117
+
- Prerelease Version Support (#185)
80
118
- Implemented prerelease versions functionality in PowerShellGet cmdlets.
81
119
- Enables publishing, discovering, and installing the prerelease versions of modules and scripts from the PowerShell Gallery.
* Enabled publish cmdlets on PWSH and Nano Server (#196)
122
+
- Enabled publish cmdlets on PWSH and Nano Server (#196)
85
123
- Dotnet command version 2.0.0 or newer should be installed by the user prior to using the publish cmdlets on PWSH and Windows Nano Server.
86
124
- Users can install the dotnet command by following the instructions specified at https://aka.ms/dotnet-install-script .
87
125
- On Windows, users can install the dotnet command by running *Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -OutFile '.\dotnet-install.ps1'; & '.\dotnet-install.ps1' -Channel Current -Version '2.0.0'*
88
126
- Publish cmdlets on Windows PowerShell supports using the dotnet command for publishing operations.
89
127
90
128
Breaking Change
129
+
91
130
- PWSH: Changed the installation location of AllUsers scope to the parent of $PSHOME instead of $PSHOME. It is the SHARED_MODULES folder on PWSH.
92
131
93
132
Bug fixes
133
+
94
134
- Update HelpInfoURI to 'https://go.microsoft.com/fwlink/?linkid=855963' (#195)
95
135
- Ensure MyDocumentsPSPath path is correct (#179) (Thanks @lwsrbrts)
96
136
97
137
## 1.5.0.0
98
138
99
139
New features
100
-
* Added support for modules requiring license acceptance (#150)
140
+
141
+
- Added support for modules requiring license acceptance (#150)
* Disabled PowerShellGet Telemetry on PS Core as PowerShell Telemetry APIs got removed in PowerShell Core beta builds. (#153)
115
-
* Fixed for DateTime format serialization issue. (#141)
116
-
* Update-ModuleManifest should add ExternalModuleDependencies value as a collection. (#129)
156
+
157
+
- Disabled PowerShellGet Telemetry on PS Core as PowerShell Telemetry APIs got removed in PowerShell Core beta builds. (#153)
158
+
- Fixed for DateTime format serialization issue. (#141)
159
+
- Update-ModuleManifest should add ExternalModuleDependencies value as a collection. (#129)
117
160
118
161
## 1.1.3.1
119
162
120
163
New features
121
-
* Added `PrivateData` field to ScriptFileInfo. (#119)
164
+
165
+
- Added `PrivateData` field to ScriptFileInfo. (#119)
122
166
123
167
Bug fixes
124
-
* Fixed Add-Type issue in v6.0.0-beta.1 release of PowerShellCore. (#125, #124)
125
-
* Install-Script -Scope CurrentUser PATH changes should not require a reboot for new PS processes. (#124)
126
-
- Made changes to broadcast the Environment variable changes, so that other processes pick changes to Environment variables without having to reboot or logoff/logon.
127
-
* Changed `Get-EnvironmentVariable` to get the unexpanded version of `%path%`. (#117)
128
-
* Refactor credential parameter propagation to sub-functions. (#104)
129
-
* Added credential parameter to subsequent calls of `Publish-Module/Script`. (#93)
130
-
- This is needed when a module is published that has the RequiredModules attribute in the manifest on a repository that does not have anonymous access because the required module lookups will fail.
168
+
169
+
- Fixed Add-Type issue in v6.0.0-beta.1 release of PowerShellCore. (#125, #124)
170
+
- Install-Script -Scope CurrentUser PATH changes should not require a reboot for new PS processes. (#124)
171
+
- Made changes to broadcast the Environment variable changes, so that other processes pick changes to Environment variables without having to reboot or logoff/logon.
172
+
- Changed `Get-EnvironmentVariable` to get the unexpanded version of `%path%`. (#117)
173
+
- Refactor credential parameter propagation to sub-functions. (#104)
174
+
- Added credential parameter to subsequent calls of `Publish-Module/Script`. (#93)
175
+
- This is needed when a module is published that has the RequiredModules attribute in the manifest on a repository that does not have anonymous access because the required module lookups will fail.
131
176
132
177
## 1.1.2.0
133
178
134
179
Bug fixes
135
-
* Renamed `PublishModuleIsNotSupportedOnNanoServer` errorid to `PublishModuleIsNotSupportedOnPowerShellCoreEdition`. (#44)
136
-
- Also renamed `PublishScriptIsNotSupportedOnNanoServer` to `PublishScriptIsNotSupportedOnPowerShellCoreEdition`.
137
-
* Fixed an issue in `Update-Module` and `Update-Script` cmdlets to show proper version of current item being updated in `Confirm`/`WhatIf` message. (#44)
138
-
* Updated `Test-ModuleInstalled` function to return single module instead of multiple modules. (#44)
139
-
* Updated `ModuleCommandAlreadyAvailable` error message to include all conflicting commands instead of one. (#44)
140
-
- Corresponding changes to collect the complete set of conflicting commands from the being installed.
141
-
- Also ensured that conflicting commands from PSModule.psm1 are ignored in the command collision analysis as Get-Command includes the commands from current local scope as well.
142
180
143
-
* Fixed '[Test-ScriptFileInfo] Fails on *NIX newlines (LF vs. CRLF)' (#18)
181
+
- Renamed `PublishModuleIsNotSupportedOnNanoServer` errorid to `PublishModuleIsNotSupportedOnPowerShellCoreEdition`. (#44)
182
+
- Also renamed `PublishScriptIsNotSupportedOnNanoServer` to `PublishScriptIsNotSupportedOnPowerShellCoreEdition`.
183
+
- Fixed an issue in `Update-Module` and `Update-Script` cmdlets to show proper version of current item being updated in `Confirm`/`WhatIf` message. (#44)
184
+
- Updated `Test-ModuleInstalled` function to return single module instead of multiple modules. (#44)
185
+
- Updated `ModuleCommandAlreadyAvailable` error message to include all conflicting commands instead of one. (#44)
186
+
- Corresponding changes to collect the complete set of conflicting commands from the being installed.
187
+
- Also ensured that conflicting commands from PSModule.psm1 are ignored in the command collision analysis as Get-Command includes the commands from current local scope as well.
144
188
189
+
- Fixed '[Test-ScriptFileInfo] Fails on *NIX newlines (LF vs. CRLF)' (#18)
145
190
146
191
## 1.1.1.0
147
192
148
193
Bug fixes
149
-
* Fixed 'Update-Module fails with `ModuleAuthenticodeSignature` error for modules with signed PSD1'. (#12) (#8)
150
-
* Fixed 'Properties of `AdditionalMetadata` are case-sensitive'. #7
151
-
* Changed `ErrorAction` to `Ignore` for few cmdlet usages as they should not show up in ErrorVariable.
152
-
- For example, error returned by `Get-Command Test-FileCatalog` should be ignored.
153
194
195
+
- Fixed 'Update-Module fails with `ModuleAuthenticodeSignature` error for modules with signed PSD1'. (#12) (#8)
196
+
- Fixed 'Properties of `AdditionalMetadata` are case-sensitive'. #7
197
+
- Changed `ErrorAction` to `Ignore` for few cmdlet usages as they should not show up in ErrorVariable.
198
+
- For example, error returned by `Get-Command Test-FileCatalog` should be ignored.
154
199
155
200
## 1.1.0.0
156
201
157
-
* Initial release from GitHub.
158
-
* PowerShellCore support.
159
-
* Security enhancements including the enforcement of catalog-signed modules during installation.
160
-
* Authenticated Repository support.
161
-
* Proxy Authentication support.
162
-
* Responses to a number of user requests and issues.
202
+
- Initial release from GitHub.
203
+
- PowerShellCore support.
204
+
- Security enhancements including the enforcement of catalog-signed modules during installation.
205
+
- Authenticated Repository support.
206
+
- Proxy Authentication support.
207
+
- Responses to a number of user requests and issues.
Copy file name to clipboardExpand all lines: CODE_OF_CONDUCT.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,6 @@
3
3
This project has adopted the [Microsoft Open Source Code of Conduct][conduct-code].
4
4
For more information see the [Code of Conduct FAQ][conduct-FAQ] or contact [opencode@microsoft.com][conduct-email] with any additional questions or comments.
0 commit comments