release.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # Copyright 2020 The Matrix.org Foundation C.I.C.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. """An interactive script for doing a release. See `cli()` below.
  17. """
  18. import glob
  19. import os
  20. import re
  21. import subprocess
  22. import sys
  23. import urllib.request
  24. from os import path
  25. from tempfile import TemporaryDirectory
  26. from typing import List, Optional, Tuple
  27. import attr
  28. import click
  29. import commonmark
  30. import git
  31. import redbaron
  32. from click.exceptions import ClickException
  33. from github import Github
  34. from packaging import version
  35. def run_until_successful(command, *args, **kwargs):
  36. while True:
  37. completed_process = subprocess.run(command, *args, **kwargs)
  38. exit_code = completed_process.returncode
  39. if exit_code == 0:
  40. # successful, so nothing more to do here.
  41. return completed_process
  42. print(f"The command {command!r} failed with exit code {exit_code}.")
  43. print("Please try to correct the failure and then re-run.")
  44. click.confirm("Try again?", abort=True)
  45. @click.group()
  46. def cli():
  47. """An interactive script to walk through the parts of creating a release.
  48. Requires the dev dependencies be installed, which can be done via:
  49. pip install -e .[dev]
  50. Then to use:
  51. ./scripts-dev/release.py prepare
  52. # ... ask others to look at the changelog ...
  53. ./scripts-dev/release.py tag
  54. # ... wait for asssets to build ...
  55. ./scripts-dev/release.py publish
  56. ./scripts-dev/release.py upload
  57. If the env var GH_TOKEN (or GITHUB_TOKEN) is set, or passed into the
  58. `tag`/`publish` command, then a new draft release will be created/published.
  59. """
  60. @cli.command()
  61. def prepare():
  62. """Do the initial stages of creating a release, including creating release
  63. branch, updating changelog and pushing to GitHub.
  64. """
  65. # Make sure we're in a git repo.
  66. try:
  67. repo = git.Repo()
  68. except git.InvalidGitRepositoryError:
  69. raise click.ClickException("Not in Synapse repo.")
  70. if repo.is_dirty():
  71. raise click.ClickException("Uncommitted changes exist.")
  72. click.secho("Updating git repo...")
  73. repo.remote().fetch()
  74. # Get the current version and AST from root Synapse module.
  75. current_version, parsed_synapse_ast, version_node = parse_version_from_module()
  76. # Figure out what sort of release we're doing and calcuate the new version.
  77. rc = click.confirm("RC", default=True)
  78. if current_version.pre:
  79. # If the current version is an RC we don't need to bump any of the
  80. # version numbers (other than the RC number).
  81. if rc:
  82. new_version = "{}.{}.{}rc{}".format(
  83. current_version.major,
  84. current_version.minor,
  85. current_version.micro,
  86. current_version.pre[1] + 1,
  87. )
  88. else:
  89. new_version = "{}.{}.{}".format(
  90. current_version.major,
  91. current_version.minor,
  92. current_version.micro,
  93. )
  94. else:
  95. # If this is a new release cycle then we need to know if it's a minor
  96. # or a patch version bump.
  97. release_type = click.prompt(
  98. "Release type",
  99. type=click.Choice(("minor", "patch")),
  100. show_choices=True,
  101. default="minor",
  102. )
  103. if release_type == "minor":
  104. if rc:
  105. new_version = "{}.{}.{}rc1".format(
  106. current_version.major,
  107. current_version.minor + 1,
  108. 0,
  109. )
  110. else:
  111. new_version = "{}.{}.{}".format(
  112. current_version.major,
  113. current_version.minor + 1,
  114. 0,
  115. )
  116. else:
  117. if rc:
  118. new_version = "{}.{}.{}rc1".format(
  119. current_version.major,
  120. current_version.minor,
  121. current_version.micro + 1,
  122. )
  123. else:
  124. new_version = "{}.{}.{}".format(
  125. current_version.major,
  126. current_version.minor,
  127. current_version.micro + 1,
  128. )
  129. # Confirm the calculated version is OK.
  130. if not click.confirm(f"Create new version: {new_version}?", default=True):
  131. click.get_current_context().abort()
  132. # Switch to the release branch.
  133. parsed_new_version = version.parse(new_version)
  134. # We assume for debian changelogs that we only do RCs or full releases.
  135. assert not parsed_new_version.is_devrelease
  136. assert not parsed_new_version.is_postrelease
  137. release_branch_name = (
  138. f"release-v{parsed_new_version.major}.{parsed_new_version.minor}"
  139. )
  140. release_branch = find_ref(repo, release_branch_name)
  141. if release_branch:
  142. if release_branch.is_remote():
  143. # If the release branch only exists on the remote we check it out
  144. # locally.
  145. repo.git.checkout(release_branch_name)
  146. release_branch = repo.active_branch
  147. else:
  148. # If a branch doesn't exist we create one. We ask which one branch it
  149. # should be based off, defaulting to sensible values depending on the
  150. # release type.
  151. if current_version.is_prerelease:
  152. default = release_branch_name
  153. elif release_type == "minor":
  154. default = "develop"
  155. else:
  156. default = "master"
  157. branch_name = click.prompt(
  158. "Which branch should the release be based on?", default=default
  159. )
  160. base_branch = find_ref(repo, branch_name)
  161. if not base_branch:
  162. print(f"Could not find base branch {branch_name}!")
  163. click.get_current_context().abort()
  164. # Check out the base branch and ensure it's up to date
  165. repo.head.reference = base_branch
  166. repo.head.reset(index=True, working_tree=True)
  167. if not base_branch.is_remote():
  168. update_branch(repo)
  169. # Create the new release branch
  170. release_branch = repo.create_head(release_branch_name, commit=base_branch)
  171. # Switch to the release branch and ensure its up to date.
  172. repo.git.checkout(release_branch_name)
  173. update_branch(repo)
  174. # Update the `__version__` variable and write it back to the file.
  175. version_node.value = '"' + new_version + '"'
  176. with open("synapse/__init__.py", "w") as f:
  177. f.write(parsed_synapse_ast.dumps())
  178. # Generate changelogs.
  179. generate_and_write_changelog(current_version)
  180. # Generate debian changelogs
  181. if parsed_new_version.pre is not None:
  182. # If this is an RC then we need to coerce the version string to match
  183. # Debian norms, e.g. 1.39.0rc2 gets converted to 1.39.0~rc2.
  184. base_ver = parsed_new_version.base_version
  185. pre_type, pre_num = parsed_new_version.pre
  186. debian_version = f"{base_ver}~{pre_type}{pre_num}"
  187. else:
  188. debian_version = new_version
  189. run_until_successful(
  190. f'dch -M -v {debian_version} "New synapse release {debian_version}."',
  191. shell=True,
  192. )
  193. run_until_successful('dch -M -r -D stable ""', shell=True)
  194. # Show the user the changes and ask if they want to edit the change log.
  195. repo.git.add("-u")
  196. subprocess.run("git diff --cached", shell=True)
  197. if click.confirm("Edit changelog?", default=False):
  198. click.edit(filename="CHANGES.md")
  199. # Commit the changes.
  200. repo.git.add("-u")
  201. repo.git.commit("-m", new_version)
  202. # We give the option to bail here in case the user wants to make sure things
  203. # are OK before pushing.
  204. if not click.confirm("Push branch to github?", default=True):
  205. print("")
  206. print("Run when ready to push:")
  207. print("")
  208. print(f"\tgit push -u {repo.remote().name} {repo.active_branch.name}")
  209. print("")
  210. sys.exit(0)
  211. # Otherwise, push and open the changelog in the browser.
  212. repo.git.push("-u", repo.remote().name, repo.active_branch.name)
  213. print("Opening the changelog in your browser...")
  214. print("Please ask others to give it a check.")
  215. click.launch(
  216. f"https://github.com/matrix-org/synapse/blob/{repo.active_branch.name}/CHANGES.md"
  217. )
  218. @cli.command()
  219. @click.option("--gh-token", envvar=["GH_TOKEN", "GITHUB_TOKEN"])
  220. def tag(gh_token: Optional[str]):
  221. """Tags the release and generates a draft GitHub release"""
  222. # Make sure we're in a git repo.
  223. try:
  224. repo = git.Repo()
  225. except git.InvalidGitRepositoryError:
  226. raise click.ClickException("Not in Synapse repo.")
  227. if repo.is_dirty():
  228. raise click.ClickException("Uncommitted changes exist.")
  229. click.secho("Updating git repo...")
  230. repo.remote().fetch()
  231. # Find out the version and tag name.
  232. current_version, _, _ = parse_version_from_module()
  233. tag_name = f"v{current_version}"
  234. # Check we haven't released this version.
  235. if tag_name in repo.tags:
  236. raise click.ClickException(f"Tag {tag_name} already exists!\n")
  237. # Get the appropriate changelogs and tag.
  238. changes = get_changes_for_version(current_version)
  239. click.echo_via_pager(changes)
  240. if click.confirm("Edit text?", default=False):
  241. changes = click.edit(changes, require_save=False)
  242. repo.create_tag(tag_name, message=changes, sign=True)
  243. if not click.confirm("Push tag to GitHub?", default=True):
  244. print("")
  245. print("Run when ready to push:")
  246. print("")
  247. print(f"\tgit push {repo.remote().name} tag {current_version}")
  248. print("")
  249. return
  250. repo.git.push(repo.remote().name, "tag", tag_name)
  251. # If no token was given, we bail here
  252. if not gh_token:
  253. print("Launching the GitHub release page in your browser.")
  254. print("Please correct the title and create a draft.")
  255. if current_version.is_prerelease:
  256. print("As this is an RC, remember to mark it as a pre-release!")
  257. print("(by the way, this step can be automated by passing --gh-token,")
  258. print("or one of the GH_TOKEN or GITHUB_TOKEN env vars.)")
  259. click.launch(f"https://github.com/matrix-org/synapse/releases/edit/{tag_name}")
  260. print("Once done, you need to wait for the release assets to build.")
  261. if click.confirm("Launch the release assets actions page?", default=True):
  262. click.launch(
  263. f"https://github.com/matrix-org/synapse/actions?query=branch%3A{tag_name}"
  264. )
  265. return
  266. # Create a new draft release
  267. gh = Github(gh_token)
  268. gh_repo = gh.get_repo("matrix-org/synapse")
  269. release = gh_repo.create_git_release(
  270. tag=tag_name,
  271. name=tag_name,
  272. message=changes,
  273. draft=True,
  274. prerelease=current_version.is_prerelease,
  275. )
  276. # Open the release and the actions where we are building the assets.
  277. print("Launching the release page and the actions page.")
  278. click.launch(release.html_url)
  279. click.launch(
  280. f"https://github.com/matrix-org/synapse/actions?query=branch%3A{tag_name}"
  281. )
  282. click.echo("Wait for release assets to be built")
  283. @cli.command()
  284. @click.option("--gh-token", envvar=["GH_TOKEN", "GITHUB_TOKEN"], required=True)
  285. def publish(gh_token: str):
  286. """Publish release."""
  287. # Make sure we're in a git repo.
  288. try:
  289. repo = git.Repo()
  290. except git.InvalidGitRepositoryError:
  291. raise click.ClickException("Not in Synapse repo.")
  292. if repo.is_dirty():
  293. raise click.ClickException("Uncommitted changes exist.")
  294. current_version, _, _ = parse_version_from_module()
  295. tag_name = f"v{current_version}"
  296. if not click.confirm(f"Publish {tag_name}?", default=True):
  297. return
  298. # Publish the draft release
  299. gh = Github(gh_token)
  300. gh_repo = gh.get_repo("matrix-org/synapse")
  301. for release in gh_repo.get_releases():
  302. if release.title == tag_name:
  303. break
  304. else:
  305. raise ClickException(f"Failed to find GitHub release for {tag_name}")
  306. assert release.title == tag_name
  307. if not release.draft:
  308. click.echo("Release already published.")
  309. return
  310. release = release.update_release(
  311. name=release.title,
  312. message=release.body,
  313. tag_name=release.tag_name,
  314. prerelease=release.prerelease,
  315. draft=False,
  316. )
  317. @cli.command()
  318. def upload():
  319. """Upload release to pypi."""
  320. current_version, _, _ = parse_version_from_module()
  321. tag_name = f"v{current_version}"
  322. pypi_asset_names = [
  323. f"matrix_synapse-{current_version}-py3-none-any.whl",
  324. f"matrix-synapse-{current_version}.tar.gz",
  325. ]
  326. with TemporaryDirectory(prefix=f"synapse_upload_{tag_name}_") as tmpdir:
  327. for name in pypi_asset_names:
  328. filename = path.join(tmpdir, name)
  329. url = f"https://github.com/matrix-org/synapse/releases/download/{tag_name}/{name}"
  330. click.echo(f"Downloading {name} into {filename}")
  331. urllib.request.urlretrieve(url, filename=filename)
  332. if click.confirm("Upload to PyPI?", default=True):
  333. subprocess.run("twine upload *", shell=True, cwd=tmpdir)
  334. click.echo(
  335. f"Done! Remember to merge the tag {tag_name} into the appropriate branches"
  336. )
  337. def parse_version_from_module() -> Tuple[
  338. version.Version, redbaron.RedBaron, redbaron.Node
  339. ]:
  340. # Parse the AST and load the `__version__` node so that we can edit it
  341. # later.
  342. with open("synapse/__init__.py") as f:
  343. red = redbaron.RedBaron(f.read())
  344. version_node = None
  345. for node in red:
  346. if node.type != "assignment":
  347. continue
  348. if node.target.type != "name":
  349. continue
  350. if node.target.value != "__version__":
  351. continue
  352. version_node = node
  353. break
  354. if not version_node:
  355. print("Failed to find '__version__' definition in synapse/__init__.py")
  356. sys.exit(1)
  357. # Parse the current version.
  358. current_version = version.parse(version_node.value.value.strip('"'))
  359. assert isinstance(current_version, version.Version)
  360. return current_version, red, version_node
  361. def find_ref(repo: git.Repo, ref_name: str) -> Optional[git.HEAD]:
  362. """Find the branch/ref, looking first locally then in the remote."""
  363. if ref_name in repo.refs:
  364. return repo.refs[ref_name]
  365. elif ref_name in repo.remote().refs:
  366. return repo.remote().refs[ref_name]
  367. else:
  368. return None
  369. def update_branch(repo: git.Repo):
  370. """Ensure branch is up to date if it has a remote"""
  371. if repo.active_branch.tracking_branch():
  372. repo.git.merge(repo.active_branch.tracking_branch().name)
  373. def get_changes_for_version(wanted_version: version.Version) -> str:
  374. """Get the changelogs for the given version.
  375. If an RC then will only get the changelog for that RC version, otherwise if
  376. its a full release will get the changelog for the release and all its RCs.
  377. """
  378. with open("CHANGES.md") as f:
  379. changes = f.read()
  380. # First we parse the changelog so that we can split it into sections based
  381. # on the release headings.
  382. ast = commonmark.Parser().parse(changes)
  383. @attr.s(auto_attribs=True)
  384. class VersionSection:
  385. title: str
  386. # These are 0-based.
  387. start_line: int
  388. end_line: Optional[int] = None # Is none if its the last entry
  389. headings: List[VersionSection] = []
  390. for node, _ in ast.walker():
  391. # We look for all text nodes that are in a level 1 heading.
  392. if node.t != "text":
  393. continue
  394. if node.parent.t != "heading" or node.parent.level != 1:
  395. continue
  396. # If we have a previous heading then we update its `end_line`.
  397. if headings:
  398. headings[-1].end_line = node.parent.sourcepos[0][0] - 1
  399. headings.append(VersionSection(node.literal, node.parent.sourcepos[0][0] - 1))
  400. changes_by_line = changes.split("\n")
  401. version_changelog = [] # The lines we want to include in the changelog
  402. # Go through each section and find any that match the requested version.
  403. regex = re.compile(r"^Synapse v?(\S+)")
  404. for section in headings:
  405. groups = regex.match(section.title)
  406. if not groups:
  407. continue
  408. heading_version = version.parse(groups.group(1))
  409. heading_base_version = version.parse(heading_version.base_version)
  410. # Check if heading version matches the requested version, or if its an
  411. # RC of the requested version.
  412. if wanted_version not in (heading_version, heading_base_version):
  413. continue
  414. version_changelog.extend(changes_by_line[section.start_line : section.end_line])
  415. return "\n".join(version_changelog)
  416. def generate_and_write_changelog(current_version: version.Version):
  417. # We do this by getting a draft so that we can edit it before writing to the
  418. # changelog.
  419. result = run_until_successful(
  420. "python3 -m towncrier --draft", shell=True, capture_output=True
  421. )
  422. new_changes = result.stdout.decode("utf-8")
  423. new_changes = new_changes.replace(
  424. "No significant changes.", f"No significant changes since {current_version}."
  425. )
  426. # Prepend changes to changelog
  427. with open("CHANGES.md", "r+") as f:
  428. existing_content = f.read()
  429. f.seek(0, 0)
  430. f.write(new_changes)
  431. f.write("\n")
  432. f.write(existing_content)
  433. # Remove all the news fragments
  434. for f in glob.iglob("changelog.d/*.*"):
  435. os.remove(f)
  436. if __name__ == "__main__":
  437. cli()