Skip to content

Drop superseded msys2 runtime entries from the release notes #620

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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
2 changes: 0 additions & 2 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ Git for Windows is distributed with other components yet, such as Bash, zlib, cu
### New Features

* Comes with [MinTTY v3.7.8](https://github.com/mintty/mintty/releases/tag/3.7.8).
* Comes with the MSYS2 runtime (Git for Windows flavor) based on [Cygwin v3.6.0](https://cygwin.com/pipermail/cygwin-announce/2025-March/012224.html).
* Comes with [OpenSSH v10.0.P1](https://github.com/openssh/openssh-portable/releases/tag/V_10_0_P1).
* Comes with the MSYS2 runtime (Git for Windows flavor) based on [Cygwin v3.6.1](https://cygwin.com/pipermail/cygwin-announce/2025-April/012266.html).
* Comes with the MSYS2 runtime (Git for Windows flavor) based on [Cygwin v3.6.2](https://cygwin.com/pipermail/cygwin-announce/2025-May/012350.html).
* Comes with [cURL v8.14.0](https://curl.se/changes.html#8_14_0).

Expand Down
2 changes: 1 addition & 1 deletion add-release-note.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const addReleaseNote = (type, message) => {

// Remove any superseded entries
if (type === 'feature') {
const match = message.match(/^(Comes with \[[^\]]+ )(v|patch level)/)
const match = message.match(/^(Comes with (?:\[[^\]]+|the MSYS2 runtime .*Cygwin) )(v|patch level)/)
if (match) sections.feature = sections.feature.filter(e => !e.startsWith(`* ${match[1]}${match[2]}`))
}

Expand Down