Skip to content

ModuleFast v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Feb 05:10
· 22 commits to refs/heads/main since this release

✨New Features

Support for PSResourceGet, RequiredModules, and PSDepend manifest files (#60) @JustinGrote

The -Path parameter can now be directed to a manifest .psd1 or .json file of these alternate specification formats and ModuleFast will resolve and install the packages. In PSDepends case, only Module Specifications are handled, other specifications such as Git repos or formats are ignored. The Repository specification is also ignored until multi-repository support lands in ModuleFast.

ModuleFast has some limited autodetection for the format used, but in case it guesses wrong, there is also a new -SpecFileType parameter to explicitly define which format the file is in. Check the debug messages to see which format it detected and why.

-Scope CurrentUser Parameter

-Scope CurrentUser has been added to mimic the Install-Module behavior, and the automatic profile setup is excluded when this parameter is used on Windows. Thanks @trackd!

🐛Bug Fixes

  • 🐛 Some classic paths not able to be processed correctly (#72) @JustinGrote
  • -PassThru Output is broken (#71) @JustinGrote
  • 🐛 Make CurrentUser work properly and ignore profile setup (#65) @trackd
  • 🐛 Handle NuGetVersion Edge Case with repeated zeroes (#59) @JustinGrote