◐ Shell
clean mode source ↗

De-duplicate changelog references in 7.5 changelog by Copilot · Pull Request #27588 · PowerShell/PowerShell

CHANGELOG/7.5.md contained a duplicate changelog reference that fails the duplicate-validation check run during the release process (surfaced by a downstream PowerShell/Infrastructure validation job).

A full pass over the file found one duplicated entry in the 7.5.0-preview.5 section, listed under both Breaking Changes and General Cmdlet Updates and Fixes:

- Treat large `Enum` values as numbers in `ConvertTo-Json` (#20999) (#24304)

Changes

  • Removed the duplicate copy from General Cmdlet Updates and Fixes; retained it under Breaking Changes, since the change alters ConvertTo-Json output and is a behavioral/breaking change.

Verification

  • grep -oE '\(#[0-9]+\)' CHANGELOG/7.5.md | sort | uniq -d returns no duplicate PR references.
  • No duplicate [7.5.x]: link-reference definitions.
  • Single line removed; no other changelog content modified.