-
Notifications
You must be signed in to change notification settings - Fork 7.8k
beta.8 changelog draft #5006
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
beta.8 changelog draft #5006
Changes from 1 commit
8674e8c
1537ce1
1ad0e31
6fa41ff
dec415b
a73ef65
8e0a494
009c06d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,111 @@ | ||
# Changelog | ||
|
||
## v6.0.0-beta.8 - 2017-10-05 | ||
|
||
### Engine updates and fixes | ||
|
||
* Make calls to void CodeMethod work (#4850) (Thanks @powercode) | ||
* Get 'PSVersion' and 'GitCommitId' from the 'ProductVersion' attribute of assembly (#4863) (Thanks @iSazonov) | ||
* Write an error and return an exit code for powershell -version 2 (#4931) (Thanks @iSazonov) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This code was essentially replaced by #4958, perhaps just combine them and attribute to Ilya There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. resolved |
||
* Load the assembly with 'Assembly.LoadFrom' before 'Assembly.Load' when the file path is given (#4196) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Assembly.LoadFrom and Assembly.Load should be in code block I think. |
||
* Add a generic f 10000 ile watcher function in HelpersCommon.psm1 (#4775) | ||
* Update old links and fix broken links in host-powershell/README.md (#4877) | ||
* Fix importing remote module using version filters and added tests (#4900) | ||
* Enable transcription of native commands on non-Windows (#4871) | ||
* Fix `powershell -version` and help to align with other tools (#4958) | ||
* Fix incorrect position of a parameter which resulted in the args passed as input instead of as args (#4963) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should call out this is for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. resolved |
||
* Add a new line to 'CommandNotFoundException' error string (#4934 & #4991) | ||
|
||
### General cmdlet updates and fixes | ||
|
||
* Added Remove-service to Management module (#4858) (Thanks @joandrsn) | ||
* Added functionality to set credientials on `Set-Service` command (#4844) (Thanks @joandrsn) | ||
* `Select-String` changes: | ||
* Exclude directories discovered from `-Path` (#4829) (Thanks @iSazonov) | ||
* Support more argument completion scenarios by adding `ArgumentCompletionsAttribute` (#4835) (Thanks @iSazonov) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is for |
||
* Exclude `-Comobject` parameter of `New-Object` on unsupported platforms (#4922) (Thanks @iSazonov) | ||
* Updated default `ModuleVersion` in `New-ModuleManifest` (#4842) (Thanks @LDSpits) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. resolved |
||
* Add Multipart Support to Web Cmdlets (#4782) (Thanks @markekraus) | ||
* Initialize Web Cmdlets Headers Dictionary Only Once (#4853) (Thanks @markekraus) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we shouldn't use a capital letter for the first letter for "headers dictionary only once". |
||
* Change Web Cmdlets UserAgent from `WindowsPowerShell` to `PowerShell` (#4914) | ||
* Allow * to be used in registry path for `remove-item` (#4866) | ||
|
||
### Build and Packaging Improvements | ||
|
||
* Make the build output the WiX compilation log if it failed. (#4831) (Thanks @bergmeister) | ||
* Use a simple file based check in the MSI for the VC++ 2015 redistributables (#4745) (Thanks @bergmeister) | ||
* Build powershell core using the generic RID 'linux-x64' (#4841) | ||
* Create generic Linux-x64 packages that are portable to all supported RPM Linux (and more similar for Debian based) distros (#4902 & #4994) | ||
* Suppress the output of building test tools in Compress-TestContent (#4957) | ||
* Remove unnecessary error messages from output (#4954) | ||
* Update travis-ci script so that PRs can fail due to pester tests (#4830) | ||
* Revert the changes to Pester from merged PR #4184 (#4881) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like this isn't worth mentioning as there's no user impact There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved |
||
* Move release build definition into PowerShell (#4884) | ||
* Fix credential scan issues (#4927) | ||
* Add line secret suppression (#4935) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like we can combine this with #4927 above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved |
||
* Enable security flags in native compiler (#4933) | ||
* Add VS 2017 solution file for powershell-win-core (#4748) | ||
|
||
### Code Cleanup | ||
|
||
* Remove remainder of Utility.Activities (Workflow code) (#4880) | ||
* Remove Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.dll (#4868) | ||
* Remove unsupported -showwindow switch (#4903) | ||
* Enable auto EOL on git repo side, fix some character encoding issues (#4912) | ||
* Autocorrected CRLF to LF (#4943) | ||
* Change CRLF to LF for files that are already in repository (#4956) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Combine with #4943. Just say: Updated EOL for all files to be LF in the repository. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved |
||
* Removed leading whitespace (#4991) | ||
|
||
### DSC Language | ||
|
||
* Update version of PSDesiredStateConfiguration in project files (#4979) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe mention "to support compile configuration on windows"? |
||
|
||
### Test | ||
|
||
* Replace httpbin.org tests with WebListener (Thanks @markekraus) | ||
* headers (#4799) | ||
* user-agent (#4798) | ||
* redirect (#4852) | ||
* encoding (#4869) | ||
* delay (#4905) | ||
* gzip & enable deflate (#4948) | ||
* related changes and fixes (#4920) | ||
* Fix for Linux platform PowerShell exit on error during SSH remoting connection (#4993) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should go under There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved |
||
* Port tests for constrained language mode (#4816) | ||
* Enable `Select-String` test from a Network path (#4921) (Thanks @iSazonov) | ||
* Reformat Measure-Object test (#4972) (Thanks @iSazonov) | ||
* Mitigate intermittent failures in access denied tests. (#4788) | ||
* Fix tests that incorrectly use ShouldBeErrorId (#4793) | ||
* Fix a test issue that causes tests to be skipped in Travis CI run (#4891) | ||
* Skip Web CmdLet Certificate Authentication tests on CentOS and Mac (#4822) | ||
* Validate product resource strings against resx files (#4811 & #4861) | ||
* Add the timezone offset correctly in CDXML tests (#4867) | ||
* Add source files for coverage run (#4925) | ||
* Be sure to change psdefaultparametervalue in the global scope (#4977 & #4892) | ||
* Fix set-service failing test (#4802) | ||
* Reduce output of pester for CI (#4855) | ||
* Add tests for | ||
* `Get-Content` (#4723) (Thanks @sarithsutha) | ||
* Remoting and Jobs (#4928) | ||
* `Get-Help` (#4895) | ||
* `Get-Command -ShowCommandInfo` (#4906) | ||
* `Get-Content -Tail` (#4790) | ||
* `Get-Module` over remoting (#4787) | ||
* Start/stop/suspend/resume/restart service cmdlets (#4774) | ||
* WSMan Config provider tests (#4756) | ||
* CDXML CIM DateTime test (#4796) | ||
|
||
### Documentation and Graphics | ||
|
||
* New icon for PowerShell Core (#4848) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be in the packaging section There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved |
||
* Sort .spelling (Thanks @markekraus) | ||
* Improve the guideline for perf consideration (#4824) | ||
* Fix issues with expression redirected to file (#4847) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is an engine fix |
||
* Add setup steps for MacOS to use PSRP over SSH (#4872) | ||
* Instructions to demo PowerShell Core on Raspbian (#4882) | ||
* Added instructions to get permission to use assets (#4938) | ||
* Added demo for using Windows PowerShell modules (#4886) | ||
|
||
## v6.0.0-beta.7 - 2017-09-13 | ||
|
||
### Breaking change | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to have the
Breaking Changes
on top: #4802, #4866, #4903, #4963There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved