v2026.1.0-preview: New PSSA version and lots of fixes!#5458
v2026.1.0-preview: New PSSA version and lots of fixes!#5458andyleejordan merged 1 commit intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the extension release metadata for the next release.
Changes:
- Bumps the extension version in
package.jsonto2026.1.0. - Adds a new
v2026.1.0-previewentry toCHANGELOG.md.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| package.json | Updates extension manifest version (and implicitly release channel metadata). |
| CHANGELOG.md | Adds the release notes header/links for v2026.1.0-preview. |
| "displayName": "PowerShell", | ||
| "version": "2025.4.0", | ||
| "version": "2026.1.0", | ||
| "preview": false, |
There was a problem hiding this comment.
The release is labeled as a preview in CHANGELOG.md (v2026.1.0-preview), but the extension manifest has "preview": false and the version is set to a stable-looking 2026.1.0. This will likely publish as a stable Marketplace release instead of a pre-release; align the manifest (set preview true and/or adjust version/tagging) so the Marketplace channel matches the changelog and release tag.
| "preview": false, | |
| "preview": true, |
| "name": "powershell", | ||
| "displayName": "PowerShell", | ||
| "version": "2025.4.0", | ||
| "version": "2026.1.0", |
There was a problem hiding this comment.
package-lock.json still reports the package version as 2025.4.0 while package.json was bumped to 2026.1.0. Regenerate/update the lockfile so the repository metadata stays consistent and avoids noisy diffs or CI checks that validate version alignment.
| ## v2026.1.0-preview | ||
| ### Wednesday, April 08, 2026 | ||
|
|
||
| With PowerShell Editor Services [v4.5.0](https://github.com/PowerShell/PowerShellEditorServices/releases/tag/v4.5.0)! | ||
|
|
||
| New PSSA version and lots of fixes! | ||
|
|
||
| See more details at the GitHub Release for [v2026.1.0-preview](https://github.com/PowerShell/vscode-powershell/releases/tag/v2026.1.0-preview). |
There was a problem hiding this comment.
This entry is marked as v2026.1.0-preview and links to a -preview release tag, but package.json was updated to 2026.1.0 with "preview": false. Please make the changelog versioning/links consistent with the actual extension version and release channel (stable vs preview).
It's happening!