You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I often have a need for viewing the entire changelog between two versions. GitHub web UI does not have support for that, but implementing it in GitHub CLI could be trivial.
gh release view <oldversion>..<newversion>#=> equivalent to `gh release view <version>`, but for every version in the semver range
I'm not a fan of the syntax for ranges I've made up: <oldversion>..<newversion>. Better ideas welcome!
Ranges could also be specified using x or * syntax:
gh release view v3.1.x
#=> prints everything from v3.1.0 to the latest v3.1.x release
For simplicity of output, release assets would not be printed.
The text was updated successfully, but these errors were encountered:
I often have a need for viewing the entire changelog between two versions. GitHub web UI does not have support for that, but implementing it in GitHub CLI could be trivial.
I'm not a fan of the syntax for ranges I've made up:
<oldversion>..<newversion>
. Better ideas welcome!Ranges could also be specified using
x
or*
syntax:gh release view v3.1.x #=> prints everything from v3.1.0 to the latest v3.1.x release
For simplicity of output, release assets would not be printed.
The text was updated successfully, but these errors were encountered: