-
Notifications
You must be signed in to change notification settings - Fork 68
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
📣 PSGSuite 3.0.0 Incoming! Release and breaking change details inside 👀 🎉 #397
Comments
It is great to see some updates coming through. Great work everyone. Concerning the requirement for Powershell v7+. I was under the impression that Windows Powershell (v5.1) and Powershell (v7+) both support using .netstandard 2.0 libraries? It appears that the Google APIs are released with a .netstandard 2.0 support, so I would have thought Windows Powershell was still compatible? Please, tell me how I am wrong though as this is an area that I don't know much about. The v7 requirement isn't a huge issue for me, I am more trying to understand how it all works. |
@mbhs-josh Excellent question! You are correct that they support Windows PowerShell was never built on a version of .NET greater than 4.5 (first sentence here). There is always the possibility of switching back to REST directly, but we'd need to figure out an alternate approach for some of the function generation we're doing based on the .NET class/method signatures that offered the same level of scalability we currently see from it. |
Thanks for the link. It was an informative read. I am still a bit confused though, I understand that Windows PowerShell was built on .NET 4.5 but I also understand that it uses the .NET Common Language Runtime (CLR) which allows it to use a combination of supported .NET framework versions that are installed. On a machine in front of me that has .NET 4.8 installed, Windows PowerShell is reporting a CLR version of If you are able to answer, am I understanding correctly that theoretically it would be possible to safely use netstandard2.0 libraries with Windows PowerShell on machines that have .NET 4.6+ installed? With the obvious caveat that it would be a difficult depdendency to enforce for a PowerShell module. Note, I am not advocating that PSGSuite should still support Windows PowerShell, I saw the opportunity to try and learn more about how this all works and figured I would ask some questions. Thanks! PS. Just realized that I am using a different account. This is @Foggy2 . |
PSGSuite 3.0.0 Release & Breaking Change Details
TL;DR
If you are using PSGSuite with PowerShell 7.4 or greater, there should be no expected breaking changes with the PSGSuite 3.0.0 release.
If you are required to use PSGSuite with a PowerShell version LOWER than 7.4 such as Windows PowerShell, make sure your
Install-Module
andImport-Module
calls are referencing aMaximumVersion
of at least2.37.0
, but no greater than2.99.99
:Background
It has been just under 5 years since the last PSGSuite release, with the latest 2.x release garnishing 94,694 downloads since releasing on 2020-03-20. Since that time, there have been a number of issues building in the backlog, pending feature enhancements that the community has worked on, pull requests submitted, and much more that have not been actioned on as needed.
What's Next
3.0.0 Release
The first thing that we need to do is provide an updated release. As some may know, one of the major changes with PSGSuite 2.0.0 was the switch to using the .NET SDKs from Google for API interaction. This is a switch that continues to prove worthwhile in terms of scalability and ease of continued integration. Due to taking on heavy dependencies with Google's .NET SDKs, however, we are subsequently heavily bound to the versions of .NET that the SDKs themselves also support. At some point during the release gap, Google removed support for .NET Framework 4.5, which Windows PowerShell is still compiled with, meaning that any new release of PSGSuite would no longer support Windows PowerShell (at least). After discussion amongst the maintainer team, we've determined to bump the minimum required version of PowerShell for PSGSuite to the current LTS version of PowerShell itself (7.4)
Beyond
From this point, we will start addressing the backlog of issues and prioritizing work based on interest, support and/or overall impact in GitHub Projects (work in progress).
Expect normal release cadences to resume, although we're still figuring out how often that "normal" may be 🙂 .
Contributors are always appreciated, we are also happy to consider additional maintainers! Please reach out to @scrthq, @jgeron-suhsd, or @FISHMANPET for more info.
The text was updated successfully, but these errors were encountered: