Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 45 additions & 1 deletion CHANGELOG/preview.md → CHANGELOG/7.6.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,48 @@
# Preview Changelog
# 7.6 Changelog

## [7.6.0] - 2026-03-12

### General Cmdlet Updates and Fixes

- Update PowerShell Profile DSC resource manifests to allow `null` for content (#26973)

### Tests

- Add GitHub Actions annotations for Pester test failures (#26969)
- Fix `Import-Module.Tests.ps1` to handle Arm32 platform (#26888)

### Build and Packaging Improvements

<details>

<summary>

<p>We thank the following contributors!</p>
<p>@kasperk81</p>

</summary>

<ul>
<li>Update branch for release (#26989)</li>
<li>Fix <code>ConvertFrom-ClearlyDefinedCoordinates</code> to handle API object coordinates (#26986)</li>
<li>Update NuGet package versions in <code>cgmanifest.json</code> to actually match the branch (#26982)</li>
<li>Bump actions/upload-artifact from 6 to 7 (#26979)</li>
<li>Split TPN manifest and Component Governance manifest (#26978)</li>
<li>Bump github/codeql-action from 4.32.4 to 4.32.6 (#26975)</li>
<li>Bump actions/dependency-review-action from 4.8.3 to 4.9.0 (#26974)</li>
<li>Hardcode Official templates (#26972)</li>
<li>Fix a preview detection test for the packaging script (#26971)</li>
<li>Fetch latest ICU release version dynamically (#26970) (Thanks @kasperk81!)</li>
<li>Add PMC packages for debian13 and rhel10 (#26917)</li>
<li>Add version in description and pass store task on failure (#26889)</li>
<li>Exclude .exe packages from publishing to GitHub (#26887)</li>
<li>Correct the package name for .deb and .rpm packages (#26884)</li>
<li>Update <code>Microsoft.PowerShell.PSResourceGet</code> version to 1.2.0 (#27007)</li>
</ul>

</details>

[7.6.0]: https://github.com/PowerShell/PowerShell/compare/v7.6.0-rc.1...v7.6.0

## [7.6.0-rc.1] - 2026-02-19

Expand Down
2 changes: 1 addition & 1 deletion src/Modules/PSGalleryModules.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<ItemGroup>
<PackageReference Include="PowerShellGet" Version="2.2.5" />
<PackageReference Include="PackageManagement" Version="1.4.8.1" />
<PackageReference Include="Microsoft.PowerShell.PSResourceGet" Version="1.2.0-rc3" />
<PackageReference Include="Microsoft.PowerShell.PSResourceGet" Version="1.2.0" />
<PackageReference Include="Microsoft.PowerShell.Archive" Version="1.2.5" />
<PackageReference Include="PSReadLine" Version="2.4.5" />
<PackageReference Include="Microsoft.PowerShell.ThreadJob" Version="2.2.0" />
Expand Down
4 changes: 2 additions & 2 deletions tools/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"ReleaseTag": "v7.5.4",
"LTSReleaseTag" : ["v7.4.13"],
"NextReleaseTag": "v7.6.0-preview.6",
"LTSRelease": { "PublishToChannels": false, "Package": false },
"StableRelease": { "PublishToChannels": false, "Package": false }
"LTSRelease": { "PublishToChannels": false, "Package": true },
"StableRelease": { "PublishToChannels": true, "Package": true }
Copy link

Copilot AI Mar 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

StableRelease.Package is set to true here, but there are currently no references to StableRelease.Package anywhere else in the repo (only StableRelease.PublishToChannels and LTSRelease.Package are referenced). If this flag is intended to control stable package creation, consider wiring it into the relevant pipeline logic or documenting that it is currently informational only, to avoid confusion.

Suggested change
"StableRelease": { "PublishToChannels": true, "Package": true }
"StableRelease": { "PublishToChannels": true }

Copilot uses AI. Check for mistakes.
}
5 changes: 5 additions & 0 deletions tools/packaging/boms/windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,11 @@
"FileType": "NonProduct",
"Architecture": null
},
{
"Pattern": "Modules\\Microsoft.PowerShell.PSResourceGet\\.signature.p7s",
"FileType": "NonProduct",
"Architecture": null
},
{
"Pattern": "Modules\\Microsoft.PowerShell.PSResourceGet\\Microsoft.PowerShell.PSResourceGet.pdb",
"FileType": "NonProduct",
Expand Down
Loading