diff --git a/CHANGELOG/7.4.md b/CHANGELOG/7.4.md index 89a3f64e37c..f999c20315f 100644 --- a/CHANGELOG/7.4.md +++ b/CHANGELOG/7.4.md @@ -1,5 +1,82 @@ # 7.4 Changelog +## [7.4.14] + +### General Cmdlet Updates and Fixes + +- Fix `PSMethodInvocationConstraints.GetHashCode` method (#26959) + +### Tools + +- Add merge conflict marker detection to `linux-ci` workflow and refactor existing actions to use reusable `get-changed-files` action (#26362) +- Add reusable `get-changed-files` action and refactor existing actions (#26361) +- Refactor analyze job to reusable workflow and enable on Windows CI (#26342) + +### Tests + +- Skip the flaky `Update-Help` test for the `PackageManagement` module (#26871) +- Fix `$PSDefaultParameterValues` leak causing tests to skip unexpectedly (#26869) +- Add GitHub Actions annotations for Pester test failures (#26800) +- Mark flaky `Update-Help` web tests as pending to unblock CI (#26805) +- Update the `Update-Help` tests to use `-Force` to remove read-only files (#26786) +- Fix merge conflict checker for empty file lists and filter `*.cs` files (#26387) +- Add markdown link verification for PRs (#26340) + +### Build and Packaging Improvements + + + + + +Update .NET SDK to 8.0.419 + + + + +Update MaxVisitCount and MaxHashtableKeyCount if visitor safe value context indicates SkipLimitCheck is true (Internal 38882) +Hardcode Official templates (#26962) +Split TPN manifest and Component Governance manifest (#26961) +Correct the package name for .deb and .rpm packages (#26960) +Bring over all changes for MSIX packaging template (#26933) +.NET Resolution and Store Publishing Updates (#26930) +Update Application Insights package version to 2.23.0 (#26883) +Update metadata.json to update the Latest attribute with a better name (#26872) +Update Get-ChangeLog to handle backport PRs correctly (#26870) +Remove unused runCodesignValidationInjection variable from pipeline templates (#26868) +Refactor: Centralize xUnit tests into reusable workflow and remove legacy verification (#26864) +Fix buildinfo.json uploading for preview, LTS, and stable releases (#26863) +Fix macOS preview package identifier detection to use version string (#26774) +Update the macOS package name for preview releases to match the previous pattern (#26435) +Fix condition syntax for StoreBroker package tasks in MSIX pipeline (#26434) +Fix template path for rebuild branch check in package.yml (#26433) +Add rebuild branch support with conditional MSIX signing (#26418) +Move package validation to package pipeline (#26417) +Backport Store publishing improvements (#26401) +Fix path to metadata.json in channel selection script (#26399) +Optimize/split Windows package signing (#26413) +Improve ADO package build and validation across platforms (#26405) +Separate Store Automation Service Endpoints, Resolve AppID (#26396) +Fix the task name to not use the pre-release task (#26395) +Remove usage of fpm for DEB package generation (#26382) +Replace fpm with native macOS packaging tools (pkgbuild/productbuild) (#26344) +Replace fpm with native rpmbuild for RPM package generation (#26337) +Add log grouping to build.psm1 for collapsible GitHub Actions logs (#26363) +Convert Azure DevOps Linux Packaging pipeline to GitHub Actions workflow (#26336) +Integrate Windows packaging into windows-ci workflow using reusable workflow (#26335) +Add network isolation policy parameter to vPack pipeline (#26339) +GitHub Workflow cleanup (#26334) +Add build to vPack Pipeline (#25980) +Update vPack name (#26222) + + + + +### Documentation and Help Content + +- Update Third Party Notices (#26892) + +[7.4.14]: https://github.com/PowerShell/PowerShell/compare/v7.4.13...v7.4.14 + ## [7.4.13] ### Build and Packaging Improvements diff --git a/src/Modules/PSGalleryModules.csproj b/src/Modules/PSGalleryModules.csproj index 9136df5c7b3..3903b164b09 100644 --- a/src/Modules/PSGalleryModules.csproj +++ b/src/Modules/PSGalleryModules.csproj @@ -13,7 +13,7 @@ - + diff --git a/tools/packaging/boms/windows.json b/tools/packaging/boms/windows.json index 8248b3d03aa..8d900902bc2 100644 --- a/tools/packaging/boms/windows.json +++ b/tools/packaging/boms/windows.json @@ -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",
Update .NET SDK to 8.0.419
Get-ChangeLog