Release 3.0.0 - drop SharePoint 2016/2019 support (SE-only) - #14
Merged
Merged
Conversation
…r module only The CredSSP remoting base script used the deprecated Microsoft.SharePoint.PowerShell PSSnapin (Add-PSSnapin), which only exists on SharePoint Server 2013/2016/2019. Since 2016 and 2019 reached end of support on 14 July 2026, load the Subscription Edition SharePointServer module instead (idempotent), the only supported code path. Refs #13
State compatibility with SharePoint Server Subscription Edition and add a note directing SharePoint Server 2016/2019 users to the previous major release (v2.1.0), since both reached end of support on 14 July 2026. Refs #13
- Manifest ModuleVersion 2.1.0 -> 3.0.0. - Bump the version-guard test to 3.0.0. - CHANGELOG: add the 3.0.0 section (Removed/Changed/Migration). - RELEASE-NOTES: replace with the 3.0.0 block (GitHub Release body). Refs #13
Pester Test Results88 tests 88 ✅ 2s ⏱️ Results for commit 06d195b. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Drop support for SharePoint Server 2016 and 2019 (both reached end of support on 14 July 2026) and make SPSTrust Subscription Edition (SE) only. This is a breaking change → major bump 2.1.0 → 3.0.0.
Changes
Invoke-SPSCommand: the CredSSP remoting base script no longer uses the deprecatedMicrosoft.SharePoint.PowerShellPSSnapin (Add-PSSnapin). It now loads the Subscription EditionSharePointServermodule (Import-Module SharePointServer, idempotent) as the only supported code path.ModuleVersion2.1.0 → 3.0.0; version-guard test bumped; CHANGELOG 3.0.0 section (Removed/Changed/Migration); RELEASE-NOTES replaced with the 3.0.0 block.Migration
Users still running SharePoint Server 2016 or 2019 must stay on v2.1.0, which retains the PSSnapin code path.
Validation
Note
Not yet tested on a live Subscription Edition farm (no infra available); to be validated later on an SE VM.
Fixes #13