2017-02-25 17:37:57 -05:00
|
|
|
#: * `release-notes` [`--markdown`] [<previous_tag>] [<end_ref>]:
|
2016-10-22 12:10:48 +01:00
|
|
|
#: Output the merged pull requests on Homebrew/brew between two Git refs.
|
2018-04-10 10:23:40 -05:00
|
|
|
#: If no <previous_tag> is provided it defaults to the latest tag.
|
2017-02-25 17:37:57 -05:00
|
|
|
#: If no <end_ref> is provided it defaults to `origin/master`.
|
2016-10-22 12:10:48 +01:00
|
|
|
#:
|
|
|
|
#: If `--markdown` is passed, output as a Markdown list.
|
|
|
|
|
2018-03-24 19:21:10 +05:30
|
|
|
require "cli_parser"
|
|
|
|
|
2016-10-22 12:10:48 +01:00
|
|
|
module Homebrew
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def release_notes
|
2018-03-25 17:48:22 +05:30
|
|
|
args = Homebrew::CLI::Parser.parse do
|
2018-03-24 19:21:10 +05:30
|
|
|
switch "--markdown"
|
2018-03-25 17:48:22 +05:30
|
|
|
end
|
2018-03-24 19:21:10 +05:30
|
|
|
|
2016-10-22 12:10:48 +01:00
|
|
|
previous_tag = ARGV.named.first
|
2018-04-10 10:23:40 -05:00
|
|
|
previous_tag ||= Utils.popen_read(
|
|
|
|
"git", "-C", HOMEBREW_REPOSITORY, "tag", "--list", "--sort=-version:refname"
|
|
|
|
).lines.first.chomp
|
2016-10-22 12:10:48 +01:00
|
|
|
odie "Could not find any previous tags!" unless previous_tag
|
|
|
|
|
|
|
|
end_ref = ARGV.named[1] || "origin/master"
|
|
|
|
|
|
|
|
[previous_tag, end_ref].each do |ref|
|
2018-04-10 10:23:40 -05:00
|
|
|
next if quiet_system "git", "-C", HOMEBREW_REPOSITORY, "rev-parse", "--verify", "--quiet", ref
|
2016-10-22 12:10:48 +01:00
|
|
|
odie "Ref #{ref} does not exist!"
|
|
|
|
end
|
|
|
|
|
2018-04-10 10:23:40 -05:00
|
|
|
output = Utils.popen_read(
|
|
|
|
"git", "-C", HOMEBREW_REPOSITORY, "log", "--pretty=format:'%s >> - %b%n'", "#{previous_tag}..#{end_ref}"
|
|
|
|
).lines.grep(/Merge pull request/)
|
2016-10-22 12:10:48 +01:00
|
|
|
|
|
|
|
output.map! do |s|
|
2017-06-03 20:52:36 +01:00
|
|
|
s.gsub(%r{.*Merge pull request #(\d+) from ([^/]+)/[^>]*(>>)*},
|
2017-06-03 19:06:19 +01:00
|
|
|
"https://github.com/Homebrew/brew/pull/\\1 (@\\2)")
|
2016-10-22 12:10:48 +01:00
|
|
|
end
|
2018-03-24 19:21:10 +05:30
|
|
|
if args.markdown?
|
2016-10-22 12:10:48 +01:00
|
|
|
output.map! do |s|
|
2017-06-03 19:06:19 +01:00
|
|
|
/(.*\d)+ \(@(.+)\) - (.*)/ =~ s
|
2017-06-10 20:23:20 +03:00
|
|
|
"- [#{Regexp.last_match(3)}](#{Regexp.last_match(1)}) (@#{Regexp.last_match(2)})"
|
2016-10-22 12:10:48 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
puts "Release notes between #{previous_tag} and #{end_ref}:"
|
|
|
|
puts output
|
|
|
|
end
|
|
|
|
end
|