Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 2.89 KB

changelog.md

File metadata and controls

65 lines (51 loc) · 2.89 KB

Changelog for PSFunctionTools

v1.0.0

  • Added online help links for previously published commands.
  • Bumped version number to reflect feature-complete release.
  • Added Export-FunctionToFile to export a loaded function from your session to a script file.
  • Help updates.
  • Updated README.md.

v0.6.0

  • Added online help links for previously published commands.
  • Modified Get-FunctionAttribute to accept pipeline input for Name and Path parameters.
  • Modified Get-FunctionAlias to accept pipeline input for Path.
  • Added command Get-PSFunctionTools and a related custom format file. This command makes it easy to see all module commands.
  • Added alias ffn for Format-FunctionName.
  • Added alias gfn for Get-FunctionName.
  • Added alias tfn for Test-FunctionName.
  • Added command Get-FunctionProfile and alias gfp.
  • Revised warning message in Get-FunctionAttribute and Get-ParameterBlock to include function name and path.
  • Updated README.md.
  • Help updates.
  • Initial public release to the PowerShell Gallery.

v0.5.0

  • Module will be written to support PowerShell 7.1 and later. Commands may run in Windows PowerShell but I am not marking the module as Desktop compatible.
  • Added a parameter called AsTree to Get-ModuleLayout to show module layout as a tree.
  • Moved code to parse path for AST data to a private helper function.
  • Help documentation updates.
  • Initial Pester 5 tests for the module and functions.
  • Module manifest updates.
  • Updated README.md.
  • First public preview release.

v0.4.0

  • Moved helper functions in New-ModuleFromFiles to functions\private\helpers.ps1'.
  • Updated New-ModuleFromFiles to use Functionpath parameter when creating the root psm1 file.
  • Added function New-ModuleFromLayout.
  • Help updates.

v0.3.0

  • Added sample scripts.
  • Modified New-CommentHelp with a -TemplateOnly parameter to generate help without any parameter definitions.
  • Modified Get-FunctionName to accept Path parameter values from pipeline input.
  • Modified Get-ParameterBlock to accept Path and Name values from pipeline input by property name.
  • Added function New-ModuleFromFiles. This should be considered experimental.

v0.2.0

  • Updated help documentation.
  • Modified Format-FunctionName to accept pipeline input by value.
  • Added function Get-ParameterBlock with an alias of gpb.
  • Added function Get-FunctionAttribute with an alias of gfa.
  • Added a parameter called Detailed to Get-FunctionName to write a custom object to the pipeline which includes the path to the file. Added a custom format file psfunctionname.format.ps1xml.

v0.1.0

  • Initial files.
  • Added Get-ModuleLayout with format file modulelayout.format.ps1xml.
  • Modified Get-PSScriptRequirements to write a PSScriptRequirements object to the pipeline. Added the format file psscriptrequirements.format.ps1xml.
  • Updated help documentation.