This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 9e0ea7f
[perl5.git] / Porting / how_to_write_a_perldelta.pod
CommitLineData
3d6c5fec
DG
1=head1 NAME
2
3how_to_write_a_perldelta - How to write a perldelta
4
5=head2 Description
20a4c497
NC
6
7This is intended as a guide for how to write a perldelta. There has never
8been a formal specification - the working rule is "fake up a document that
9looks something close to the existing perldeltas". So if it's unclear how
919671d7 10to do something, see if it's been done before, and if the approach works
20a4c497
NC
11there, steal it.
12
57b3b745
DM
13=head2 Template
14
236a53f1 15Note there is a file F<Porting/perldelta_template.pod> which contains a
57b3b745
DM
16skeleton version of a perldelta.pod file, which should normally be copied
17in at the start of a new release.
18
20a4c497
NC
19=head2 Style
20
21Pod is more a physical markup language, rather than a logical markup language.
22Despite that it has some built in conventions. B<Stick to them>:
23
24=over 4
25
26=item * C<FE<lt>E<gt>> is for File
27
28=item * C<CE<lt>E<gt>> is for Code
29
30=item * C<LE<lt>E<gt>> is for Link
31
32=back
33
34Whilst modules could also be links, usually in the context of the perldelta
35the reference is to code C<use>ing them, rather than something within their
36documentation.
37
38Be consistent in how bugs are referenced. One style is
39
40=over 4
41
42=item rt.perl.org
43
5cfe25fd
DG
44C<perl #43010> inline, but enclose in square brackets after a sentence.
45C<[perl #43010]>. This mirrors how rt.perl.org subject lines appear.
46
47=item rt.cpan.org
48
49C<rt.cpan.org #43010> inline, but enclose in square brackets after a sentence.
50C<[rt.cpan.org #43010]>. This mirrors how rt.cpan.org subject lines appear.
20a4c497
NC
51
52=item ActiveState
53
54C<http://bugs.activestate.com/show_bug.cgi?id=72443>
55
56=item Debian
57
58C<Debian bug #379463>
59
60=back
61
62=head2 Copy editing
63
64Be consistent.
65
66In a list, either make every item a note, or a full sentence. Either end
f337e982
NC
67every item with a full stop, or ensure that no item ends with one. I<regex>
68B<xor> I<regexp> - choose exactly one, and stick to it.
20a4c497
NC
69
70=head2 Sections
71
72Historically, the perldelta has consisted of a sequence of C<=head1>
73sections, usually in the same order. Un-needed sections are deleted,
74and if something doesn't fit nicely into the existing sections, a new
75more appropriate section is created.
76
77=over
78
79=item NAME
80
81Follows this formula:
82
83 perl5104delta - what is new for perl v5.10.4
84
85=item DESCRIPTION
86
87For a release on a stable branch, follows this formula:
88
555bd962
BG
89 This document describes differences between the 5.10.3 release
90 and the 5.10.4 release.
20a4c497
NC
91
92For the start of a new stable branch, follows this formula:
93
555bd962
BG
94 This document describes differences between the 5.12.0 release
95 and the 5.10.0 release.
20a4c497 96
68346ec5 97Clearly this sets the scope of which changes are to be summarised in the rest
20a4c497
NC
98of the document.
99
100=item Notice
101
102There was a I<Notice> section in L<perl589delta>, to carry an important
103notice.
104
105=item Incompatible Changes
106
107For a release on a stable branch, this section aspires to be
108
555bd962
BG
109 There are no changes intentionally incompatible with 5.10.3.
110 If any exist, they are bugs and reports are welcome.
20a4c497
NC
111
112=item Core Enhancements
113
114New core language features go here. Summarise user-visible core language
115enhancements. Particularly prominent performance optimisations could go
116here, but most should go in the L</Performance Enhancements> section.
117
118Feature inside modules (pure-Perl and XS) go in L</Modules and Pragmata>
119
120=item New Platforms
121
122List any platforms that this version of perl compiles on, that previous
123versions did not. These will either be enabled by new files in the F<hints/>
124directories, or new subdirectories and F<README> files at the top level of the
125source tree.
126
127=item Modules and Pragmata
128
129All changes to installed files in F<ext/> and F<lib/> go here, in a list
130ordered by distribution name. Minimally it should be the module version,
131but it's more useful to the end user to give a paragraph's summary of the
132module's changes. In an ideal world, dual-life modules would have a
133F<Changes> file that could be cribbed.
134
135Whilst this section could be built by incrementally working through change
136descriptions applying to files, this is prone to error. It's better to
137collate changes to F<ext/> and F<lib/> by module, and then summarise all
138changes to a module as a group. This can be done by partitioning directories
139within F<ext/> and F<lib/> to a number of people.
140
60984f2f 141B<FIXME> - this could be automated better
0be987a2 142
60984f2f 143If Module::CoreList has been updated, then F<Porting/corelist-perldelta.pl>
47e01c32 144will automatically print out several sections if relevant that can be
88e14305
DG
145pasted into F<perldelta>:
146
147 * New Modules and Pragmata
148 * Pragmata Changes
149 * Updated Modules
150 * Removed Modules and Pragmata
151
152Each section will have stub entries following a template like this:
0be987a2 153
60984f2f 154 =item C<less>
0be987a2 155
60984f2f 156 Upgraded from version 0.01 to 0.02
0be987a2 157
88e14305 158It does not include modules listed in F<Porting/Maintainers.pl> under
47e01c32 159C<_PERLLIB>, but it's a start. Where relevant, a summary of changes can be
88e14305 160added by hand.
0be987a2 161
60984f2f 162A more adventurous enhancement would be to automate grabbing
0be987a2
NC
163the changelogs for dual lived modules. For each of them, grab the relevant
164changes files from CPAN for the old and new versions, and if the old one is
165a strict subset of the new one, splice the extra lines right into the output,
166as a basis for summarising.
167
168(And if not, experiment with using F<git> to get the relevant part of changelog
169for the particular file in core)
170
171These could also be enhanced further by using a Pod parser module to produce
172a parse tree of F<perl${whatever}delta.pod>, and splicing in the updates
173correctly without throwing existing entries away.
174
175If you think that's nuts, take a look at what F<pod/buildtoc> already does to
176splice into existing Makefiles on various platforms:
177
178http://perl5.git.perl.org/perl.git/blob/blead:/pod/buildtoc#l498
179
180Perl is this really powerful language for text manipulation. And fun to
181play with. We need to get that message out. :-)
182
20a4c497
NC
183=item Utility Changes
184
185Changes to installed programs such as F<perlbug> and F<xsubpp> go here. Most
186of these are built within the directories F<utils> and F<x2p>.
187
188=item New Documentation
189
190Changes which create B<new> files in F<pod/> go here.
191
0be987a2
NC
192B<FIXME> - this could be automated, at least as far as generating a first
193draft.
194
195=over
196
197=item 1
198
199Start with a clean exploded tarball of the previous release, and a clean
200checkout of the branch in question
201
202=item 2
203
204Take the F<MANIFEST> file of each
205
206=item 3
207
208Search for lines matching C<m!^pod/.*\.pod!>
209
210=item 4
211
212Diff them
213
214=item 5
215
216Explode if anyone deleted documentation. [No idea what the policy on that is
217yet]
218
219=item 6
220
221For each file only in the newer F<MANIFEST>
222
223=over
224
60984f2f 225=item 1
0be987a2
NC
226
227Use F<git> to determine its Author
228
229=item 2
230
231Open the pod file itself
232
233=item 3
234
235Grab the description section
236
237=item 4
238
239Write out a block of text starting roughly
240
241 L<perlfoo>, by A. U. Thor, provides @description
242
243=back
244
245=back
246
20a4c497
NC
247=item Changes to Existing Documentation
248
249Changes which significantly change existing files in F<pod/> go here.
250Any changes to F<pod/perldiag.pod> should go in
251L</New or Changed Diagnostics>.
252
253=item Performance Enhancements
254
255Changes which enhance performance without changing behaviour go here. There
256may well be none in a stable release.
257
258=item Installation and Configuration Improvements
259
260Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
261go here.
262
263=item Selected Bug Fixes
264
265Important bug fixes in the core language are summarised here.
266Bug fixes in files in F<ext/> and F<lib/> are best summarised in
267L</Modules and Pragmata>.
268
269=item New or Changed Diagnostics
270
271New or changed warnings emitted by the core's C<C> code go here.
272
273=item Changed Internals
274
275Changes which affect the interface available to C<XS> code go here.
276
277=item New Tests
278
279Changes which create B<new> files in F<t/> go here. Changes to existing files
280in F<t/> aren't worth summarising, although the bugs that they represent
281may be.
282
f95a4791 283Autogenerate this section by running something like this:
0be987a2 284
f95a4791 285 # perl newtests-perldelta.pl v5.11.1 HEAD
0be987a2 286
20a4c497
NC
287=item Known Problems
288
289Descriptions of platform agnostic bugs we know we can't fix go here. Any
290tests that had to be C<TODO>ed for the release would be noted here, unless
291they were specific to a particular platform (see below).
292
87b6d269
DM
293=item Deprecations
294
295Add any new known deprecations here.
296
20a4c497
NC
297=item Platform Specific Notes
298
299Any changes specific to a particular platform. VMS and Win32 are the usual
300stars here. It's probably best to group changes under the same section layout
301as the main perldelta.
302
303=item Obituary
304
305If any significant core contributor has died, we've added a short obituary
306here.
307
308=item Acknowledgements
309
548e9a3a 310Generate this with:
20a4c497 311
548e9a3a 312 perl Porting/acknowledgements.pl v5.15.0..HEAD
a59108e8 313
20a4c497
NC
314=item Reporting Bugs
315
316This doesn't usually need to be changed from the previous perldelta.
317
318=item SEE ALSO
319
320This doesn't usually need to be changed from the previous perldelta.
321
322=back