On Fri, Aug 30, 2013 at 11:38 PM, Ben Reser <b...@reser.org> wrote: > On 8/30/13 4:01 AM, Branko Čibej wrote: >> A log message should describe what changed in the code. Automatically >> generating release notes and/or CHANGES from log messages is, in my >> experience, quite impractical. A better approach would be to require the >> CHANGES file to be updated in the same commit as the actual relevant >> change. But even that's not realistic, because often such a change will >> be split across several commits -- or, for example, developed on a branch. > > I'm going to respond to Branko's email because he brings up some important > points, but in general I'm replying to everyone. > > I agree completely automated generation is a not going to happen. My > motivation is to just make the job easier. It can take a lot of time to > figure > out what to say to users when producing CHANGES.
That's not really an argument, because that's true whether you do it at commit time or afterwards. You don't save any time (quite the contrary) by postponing it until CHANGES needs to be produced, or until the revision needs to be backported. Except perhaps by having better understanding of which changes matter to users and why, but I'd say that's true for perhaps 5% of CHANGES. Unless you're saying you don't want to put this burden on the committer (right at the point of committing), because that would hinder commits? Then I'd argue that this is just a habit, and once you get used to it, it doesn't really slow you down much (just like we are all used to writing good, concise, high-information-density log messages for our fellow developers). And for those really hard ones, you can always come back to the log message later, and massage the user-facing text (or add it if it's not there). So that would leave the argument of "that's not what we are used to do", and I can accept that (habits matter, and can be hard to change). It's an important argument, but not a technical one. So far, I haven't read a really rational argument against my suggestion. "That's not what log message are for"? Why not? > This is a much less ambitious > goal than full automation. Fair enough. I understand you're currently only trying to solve the CHANGES-for-backports problem for the RM, and that's okay. I just want to put this in the larger context of producing user-facing messages for our changes for *all* our releases, minor or major. Think back to all the time spent by several developers while preparing for the 1.8.0 release, sifting through all the log messages since the last release (in batches of 500 commits), trying to extract user-facing information [1]. That's a huge waste of valuable developer-time, IMO. > Making commits to CHANGES along side your other changes is a bad idea. Let me > explain why: > > 1) Conflicts. CHANGES on trunk is drastically different than CHANGES on the > branches. So it'll increase the hoop jumping we have to do to avoid conflicts > when backporting changes. I agree, making concurrent commits to CHANGES is a bad idea. Much better to put it in the log message :-). > 2) Backporting. We are never really sure what we're going to backport. 1.9.x > should not mention a change that was included in say 1.8.6. It's not a change > from the user's perspective. So it's entirely unclear where you should add > your data to the CHANGES file. Ah, but that can be solved perfectly automatically (we do this at my workplace too): it's the perfect use case for 'svn mergeinfo --show-revs eligible'. When you're about to produce CHANGES for 1.9.0, and 1.8.6 is currently the latest 1.8 release, you'll want to process all the revisions produced by svn mergeinfo --show-revs eligible ^/branches/1.9.x ^/tags/1.8.6 > Already the fact that we start putting 1.9.x > CHANGES entries into trunk messes up release.py's attempt to detect unmerged > CHANGES. I've changed that to a warning. I haven't objected to this practice > because I think it makes sense to put things we know we'll never backport in > CHANGES. But we also can't just start doing it all the time. > > We also can't require changes entries be attached to commits since sometimes > we're commiting fixes to things that were never released in a broken state. > So > there is no effective change as far as a user is concerned. Okay, but usually the developer who makes such a change knows he's fixing something (on trunk or whatever) that's never been in the hands of users. In that case, of course he doesn't write such a user-facing note in the log message. The entire idea hinges on the fact that a developer usually knows what his change means to users. Also, when working with feature branches, it's clear that commits to the branch are usually not interesting to users. In this case you usually end up with one summary "change", when the branch gets reintegrate (e.g. "Change: add new FSX repository back-end (experimental)", as a result of integrating the fsx branch). > If you look at the 411 Content-Length issue I think any attempt to put the > CHANGES entry in the log files would have been a mess. You'll have to refresh my memory here. But there can be exceptions of course, where it's better to wait a bit for the dust to settle on a particular issue, and then come up with what it means to users. But those are exceptions. Also, most commits won't end up with a "Change:" note, just like not every commit has a "Review by:" note. Only when you have something interesting to say to users. > Putting details from the user perspective in the commit message is still > helpful in that case, since the person nominating a change may not be the > person who wrote the change. Also sometimes what we thought the user impact > was at commit time is incomplete. We find many times where a change made for > one reason fixes something else and we decide to backport it for that reason. Yes, in that case the log message can be amended after the fact. This can happen both for changes that need to be backported, and for changes that are just slated for the next major release. > So I felt that STATUS was a reasonable compromise for now. Okay, and it's a very reasonable solution if you're only focused on solving the CHANGES-for-backports problem. [1] http://wiki.apache.org/subversion/Svn18Changes -- Johan