-
Notifications
You must be signed in to change notification settings - Fork 67
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
[Poll] Would you like automated module update checking? #44
Comments
…ck function #### 2.6.0 * Added: `Compare-ModuleVersion` function to get latest installed version and compare against the latest version on the PSGallery ([Issue #44](#44)) * Fixed: Pipeline support, so you can do things like the following and get group, group member and user details (as an example) easily ([Issue #45](#45)): ```powershell #much pipe $users = Get-GSGroup $groupEmail -Verbose -OutVariable group | Get-GSGroupMember -Verbose -OutVariable members | Get-GSUser -Verbose #contains the group's info $group #contains the group members' info $members #contains the group members' full user info $users ```
Option 2 has been added in v2.6.0 as the function |
Keeping poll open in case there are those that want to have the version check happen on module load as well. |
As the poll is a tie right now with 5 votes each, I am closing it and leave it as-is. As of v2.6.0, you can run the following and determine if there are updates available on the PS Gallery for PSGSuite (default) or any other module you'd like: > Compare-ModuleVersion
ModuleName InstalledVersion GalleryVersion UpdateAvailable
---------- ---------------- -------------- ---------------
PSGSuite 2.6.1 2.6.1 False
> Compare-ModuleVersion -ModuleName Configuration,PSSlack
ModuleName InstalledVersion GalleryVersion UpdateAvailable
---------- ---------------- -------------- ---------------
Configuration 1.3.0 1.3.0 False
PSSlack 0.0.27 0.0.36 True |
Hey y'all!
Just curious, would it be useful to have built in update checks for PSGSuite?
The goal with this would be to allow you to get a notification when there is a new version of PSGSuite available on the PowerShell Gallery, either on module load or when running a custom function built specifically for update checking.
Choose your preference below!
Please note: This would only tell you if a newer version of PSGSuite is available on the PowerShell Gallery, it would NOT update PSGSuite for you (so no risk of introducing potentially breaking changes in existing scripts).
The text was updated successfully, but these errors were encountered: