Skip to content
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

feat(release-notes): Update the HostOS release notes to also use merge commits #550

Merged
merged 2 commits into from
Jun 28, 2024
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
94 changes: 85 additions & 9 deletions scripts/host-os-release-notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
import time
import webbrowser

COMMIT_HASH_LENGTH = 9

REPLICA_TEAMS = set(
[
"consensus-owners",
"crypto-owners",
"interface-owners",
"Orchestrator",
"message-routing-owners",
"networking-team",
Expand Down Expand Up @@ -61,15 +63,14 @@
"runtime-owners": "Runtime",
"trust-team": "Trust",
"sdk-team": "SDK",
"utopia": "Utopia"
"utopia": "Utopia",
}


EXCLUDE_PACKAGES_FILTERS = [
r".+\/sns\/.+",
r".+\/ckbtc\/.+",
r".+\/cketh\/.+",
r".+canister.+",
r"rs\/nns.+",
r".+test.+",
r"^bazel$",
Expand Down Expand Up @@ -119,6 +120,75 @@ def show(j, item):
print("\n", flush=True, file=out)


def get_rc_branch(repo_dir, commit_hash):
"""Get the branch name for a commit hash."""
all_branches = (
subprocess.check_output(
[
"git",
"--git-dir",
"{}/.git".format(repo_dir),
"branch",
"--contains",
commit_hash,
"--remote",
]
)
.decode("utf-8")
.strip()
.splitlines()
)
all_branches = [branch.strip() for branch in all_branches]
rc_branches = [branch for branch in all_branches if branch.startswith("origin/rc--20")]
if rc_branches:
return rc_branches[0]
return ""


def get_merge_commit(repo_dir, commit_hash):
# Reference: https://stackoverflow.com/questions/8475448/find-merge-commit-which-includes-a-specific-commit
rc_branch = get_rc_branch(repo_dir, commit_hash)

try:
# Run the Git commands and capture their output
git_cmd = ["git", "--git-dir", f"{repo_dir}/.git", "rev-list", f"{commit_hash}..{rc_branch}"]
ancestry_path = subprocess.run(
git_cmd + ["--ancestry-path"],
capture_output=True,
text=True,
check=True,
).stdout.splitlines()
first_parent = subprocess.run(
git_cmd + ["--first-parent"],
capture_output=True,
text=True,
check=True,
).stdout.splitlines()

# Combine and process the outputs
combined_output = [(i + 1, line) for i, line in enumerate(ancestry_path + first_parent)]
combined_output.sort(key=lambda x: x[1])

# Find duplicates
seen = {}
duplicates = []
for number, commit_hash in combined_output:
if commit_hash in seen:
duplicates.append((seen[commit_hash], number, commit_hash))
seen[commit_hash] = number

# Sort by the original line number and get the last one
if duplicates:
duplicates.sort()
_, _, merge_commit = duplicates[-1]
return merge_commit
return None

except subprocess.CalledProcessError as e:
print(f"Error: {e}")
return None


def get_commits(repo_dir, first_commit, last_commit):
def get_commits_info(git_commit_format):
return (
Expand Down Expand Up @@ -305,7 +375,11 @@ def main():

commits = get_commits(ic_repo_path, first_commit, last_commit)
for i in range(len(commits)):
commits[i] = commits[i] + (str(commits[i][0]),)
commit_hash = str(commits[i][0])
merge_commit = get_merge_commit(ic_repo_path, commit_hash)
used_commit = (merge_commit or commit_hash)[:COMMIT_HASH_LENGTH]
print("Commit: {} ==> using commit: {}".format(commit_hash, used_commit))
commits[i] = commits[i] + (used_commit,)

print("Generating changes for hostos from {} commits".format(len(commits)))

Expand Down Expand Up @@ -373,9 +447,6 @@ def main():

commit_type = conventional["type"].lower()
commit_type = commit_type if commit_type in TYPE_PRETTY_MAP else "other"
if len(teams) >= 3:
# The change seems to be touching many teams, let's mark it as "other" (generic)
commit_type = "other"

included = True
if ["ic-testing-verification"] == teams or all([team in EXCLUDED_TEAMS for team in teams]):
Expand Down Expand Up @@ -434,7 +505,7 @@ def main():

for change in sorted(change_infos[current_type], key=lambda x: ",".join(x["team"])):
commit_part = '[<a href="https://github.com/dfinity/ic/commit/{0}">{0}</a>]'.format(
change["commit"][:9]
change["commit"][:COMMIT_HASH_LENGTH]
)
team_part = ",".join([TEAM_PRETTY_MAP.get(team, team) for team in change["team"]])
team_part = team_part if team_part else "General"
Expand All @@ -446,8 +517,13 @@ def main():
message_part = change["message"]
commiter_part = f"&lt!-- {change['commiter']} {change['changed_path']} --&gt"

text = "* {0} {4} {1}{2} {3}<br>".format(
commit_part, team_part, scope_part, message_part, commiter_part
text = "* {0} {4} {1}{2} {3} {5}<br>".format(
commit_part,
team_part,
scope_part,
message_part,
commiter_part,
"" if change["included"] else "[AUTO-EXCLUDED]",
)
if not change["included"]:
text = "<s>{}</s>".format(text)
Expand Down
1 change: 1 addition & 0 deletions scripts/release-notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"prodsec": "Prodsec",
"runtime-owners": "Runtime",
"trust-team": "Trust",
"sdk-team": "SDK",
"utopia": "Utopia",
}

Expand Down
Loading