sindresorhus/refined-github

See the differences between a release and the main branch #4329

dorian-marchal posted onGitHub

The release page shows a changelog for every release but doesn't let us see the diff between the latest release and the main branch (i.e. the next release).

More precisely, I'd like to have new links on the release page:

As I'm writing this, I notice that this may not be relevant for all git flows (e.g. the ones where the main branch always match the latest release) but maybe there is a clever way to make this feature helpful to everyone?

Some examples of release pages:

Currently, I use a simple userscript to do that but it has some issues and I'd love to see this feature baked in Refined Github:


// ==UserScript==
// @name         Get next release changelog
// @match        https://github.com/*
// @grant        GM_registerMenuCommand
// ==/UserScript==

// Caveats:
// - only works for tags (not full featured releases).
// - doesn't work with "folded" releases (e.g. https://github.com/phoenixframework/phoenix/releases)
// - hardcoded "master" branch.

const goToCompareUrl = (getRange) => {
  const latestTag = document
    .querySelector(".release-entry .release-entry .commit-title a")
    .innerText.trim();
  window.location.href = window.location.href.replace(
    /\/releases/,
    `/compare/${getRange(latestTag)}`
  );
};

GM_registerMenuCommand("Files changes (..)", () => {
  goToCompareUrl((tag) => `${tag}..master`);
});
GM_registerMenuCommand("Unreleased commits (...)", () => {
  goToCompareUrl((tag) => `${tag}...master`);
});
GM_registerMenuCommand("Hotfixed commits", () => {
  goToCompareUrl((tag) => `master...${tag}`);
});

This already exists, but only when on a specific release it seems, example: https://github.com/sindresorhus/refined-github/releases/tag/21.5.1 shows "11 commits to main since release" right now.

How do you know what tag to use here? This seems hard to make generic.

You get this view with some scrolling from the first link or a new tab when there's a lot of changed, e.g. https://github.com/phoenixframework/phoenix/compare/v1.5.3...master

Like you said, this likely isn't generic to all users of GitHub, except maybe the first bullet. I think the userscript you have makes the most sense, but let's see what others think.

posted by busches almost 4 years ago

I think the userscript you have makes the most sense, but let's see what others think.

šŸ‘

posted by yakov116 almost 4 years ago

GitHub already has one of those links in 1 click and let's you pick one of the others in 2 clicks. $tag is arbitrary and dependent on the repo so if you have to pick it you can just do so with the dropdown GitHub provides next to each release.

posted by fregante over 3 years ago

Fund this Issue

$0.00
Funded

Pull requests