Re: Display outstanding backported fixes for each release?
From: Julian Foad <julianfoad_at_apache.org>
Date: Thu, 03 Jan 2019 15:58:55 +0000
The itch I'm scratching is this: I want the people who are interested in our patch releases, and who read our CHANGES file, to be able to see what changes are coming or likely to be coming in the next patch release.
As an example, a few weeks ago a downstream packager/distributor asked me, "are there any server-side fixes coming in the next 1.10.x patch release?" I was disappointed to realize that there wasn't a quick self-serve answer to that.
There are several possible solutions. All that matters to me is that end-users can easily find the information. It would be ideal in the form that we use for CHANGES file entries, but it doesn't have to be as "digested" as that.
Mark Phippard commented:
That is true for trunk changes: there, every meaningful change is built from a series of commits, many of which are trivial or meaningless in isolation, and rarely is there a single commit that describes the whole change well. However, a backport branch is very different: there, every backport commit should be a complete, meaningful, tested, documented, change. So showing commits (even a raw log output) is meaningful.
Given that we don't yet keep CHANGES up to date, I am thinking a reasonable short-term solution could look like this (example for the 1.9.x branch):
$ svn log -r1:HEAD --limit=1 --stop-on-copy ^/subversion/tags/1.9.9 -vq
# note the parent branch copy-from revision -- 1835931 -- and add one
$ svn log -r1835932:HEAD ^/subversion/branches/1.9.x > commits-on-1.9.x
$ vim commits-on-1.9.x
Result:
On the '1.9.x' branch: Fix german translation for 'svn help merge'.
(Merge r1837037 from trunk.)
Patch by: Christoph VogtlÃĪnder <Christoph.Vogtlaender{_AT_}sigma-surface-science.com>
* subversion/subversion/po/de.po
------------------------------------------------------------------------
Merge r1844882 from trunk:
* r1844882
------------------------------------------------------------------------
Merge the 1.9.x-issue4791 branch:
* r1847572, r1847596
------------------------------------------------------------------------
This output contains roughly the same level of information as if we had filled in the CHANGES file. Of course it's not the same, but for these purposes it's enough to start with.
To that list of merged backports I would want to add the lists of proposed backports. We can do this by literally appending a copy of the STATUS file. Again, if we had prepared CHANGES entries in advance, that would surely be nicer, but it's enough to start with.
Where and how to display the information? Our roadmap page would be an obvious place to look for it. So, I envision a section there called something catchy like "Upcoming changes in the next patch release in each supported release line". Under that heading, either inline or links to the verbose text samples above.
I will reiterate: I would not propose to do this at all if it has to be manually updated, only if we can auto-generate it.
- Julian
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.