chiark / gitweb /
a55ee20d547ad4d7ff05e00a13175af35a97ad31
[dgit.git] / debian / changelog
1 dgit (1.5~~) unstable; urgency=medium
2
3   Incompatible change:
4   * dgit sbuild does not pass -A to sbuild.  Consequently the default
5     build is now simply sbuild's default.  With older sbuilds it was
6     possible to override dgit's -A by passing another option.  But this
7     has been changed recently and now this default setting is very awkward
8     to change for the dgit user.
9
10   New checks and improved behaviours:
11   * When running dpkg-buildpackage, cope if user specified -g or -G.
12   * dgit sbuild: check that the set of .changes files found is as we
13     expect, before calling mergechanges.
14   * dgit sbuild: Rename the used-up .changes files to `.inmulti' to
15     avoid accidental use of the wrong one (by software, or by users).
16   * dgit sbuild: Check that the binary .changes file doesn't contain a
17     .dsc.
18   * Introduce --rm-old-changes to delete previous builds' changes files.
19   * Remove any pre-existing _source.changes file before building source,
20     as a safety check.
21   * No longer tolerate a multitude of .changes files when doing push.
22     Instead, insist on a single one.
23   * dgit sbuild no longer deletes extranious .changes files; instead
24     we rely on --rm-old-changes, or failing that, fail early.
25   * When doing quilt linearisation, treat upstream .gitignores not
26     in the toplevel the same way we treat ones in the toplevel.
27   * When automatically generating quilt patch, honour GIT_COMMITTER_DATE
28     for filename creation (makes filename deterministic in test suite).
29   * New --overwrite option, replaces need to for user to use
30     git merge -s ours.  Closes:#838718.
31
32   Infrastructure:
33   * Better error handling in dgit-repos-policy-debian.
34   * dgit-repos-policy-debian.: fix git-cat-file-handling with multiple
35     taints in db (!).
36
37   Documentation:
38   * Document the dgit-distro.DISTRO.quilt-mode config setting.
39
40   Bugfixes:
41   * When cleaning up after failed clone, stat the to-be-cleaned-up
42     directory before running rmtree on it.  Closes:#796773.
43   * Do not call "warn" on failure of cleanup handler in END block
44     (since warn has been made fatal and aborts the cleanup chain).
45   * Print better error message (with `fail' rather than `die') if
46     `dgit clone' cannot create the destination directory.
47   * Properly substitute $changesfile in one of the `You can retry'
48     messages.  Closes:#800078.
49   * Pass --ch:* and -v options to dpkg-buildpackage when building
50     source.  Fixes bad Perl poetry syntax.  Closes:#829121.
51   * When synthesing a commit from a .dsc from the archive, stop
52     internal git reset from printing a confusing message about HEAD.
53   * Turn off git gc in the private working areas.
54   * Do not fail to do some important quilt processing in some
55     --quilt modes.
56   * Fix two calls to chdir without proper error checking.
57   * Fix a couple of bugs in error reporting.
58   * Fix up .orig detection to be less trustful of (ambiguous) filenames.
59   * Fix up .orig detection to correctly allow exactly the right
60     .orig-comp components accorging to dpkg-source(1).
61
62   Test suite:
63   * When sbuild fails, do not crash due to sed not finding the log
64     file.  Instead, simply tolerate the absence of the log file.
65   * Put --no-arch-all in build-modes-sbuild act, not only its real_act.
66     Cosmetic change only.
67   * Set GIT_COMMITTER_DATE and GIT_AUTHOR_DATE and increment them
68     explicitly in drs-push-rejects test.  This avoids date dependencies
69     which can cause that test to fail on fast computers.
70   * Remove some spurios .debs from the example_1.0.tar.
71   * Increase sqlite_busy_timeout in debpolicy-dbretry, because
72     zealot is very slow and we need to give the other processes time
73     to rollback and release the lock.
74   * Test quilt single-debian-patch.
75   * Provide `tartree-edit gitfetchinfo' etc. to help with comparing
76     different test case git working tree tarballs.
77   * Test dgit-repos-policy-debian with multiple (identical, as it happens)
78     existing taints.
79   * Provide better log output for certain failures.
80
81  --
82
83 dgit (1.4) unstable; urgency=high
84
85   Bugfixes:
86   * Unbreak --dry-run (`exiting subroutine via next', broken in
87     ac221d67, bug released in 0.22).
88   * When running git-add in commit-quilty-patch, properly escape
89     filenames (which git-add treats as glob patterns).
90   * When running git-add in commit-quilty-patch, use -f and sometimes -A,
91     so as to avoid being broken by any .gitignore, etc.
92   * When quilt linearisation fails, print the right information in
93     the error message.  (This has been broken forever.)
94   * Cope properly with `3.0 (quilt)' with single-debian-patch.
95     Closes:#796016.  (Still does not work with wheezy's dpkg-source, so
96     no test case yet.)
97   * With dgit sbuild, pass our -d before the user's arguments, so that
98     the user can override it.  Closes:#796019.
99
100   New checks and improved behaviours:
101   * Detect and reject git trees containing debian/source/local-options
102     or debian/source/local-patch-header.
103   * In --dry-run mode, _do_ actually run dpkg-source --commit so that we
104     actually do construct the quilt fixup commit; instead, honour
105     --dry-run by avoiding pulling it back to your HEAD.
106   * quilt-fixup checks that the git tree is clean, as for build-prep.
107
108   Documentation:
109   * In dgit(7), discuss binaries and documentation present in upstream but
110     removed by rules clean.
111
112   Test suite:
113   * Run quilt-fixup with -wgf in distropatches-reject,
114     so that we don't need build-depends.
115
116  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 22 Aug 2015 15:31:02 +0100
117
118 dgit (1.3) unstable; urgency=high
119
120   Important bugfixes:
121   * In option parser test `@ARGV' not `length @ARGV'.  Closes:#795710.
122   * Properly quote package name when constructing regexp in
123     complete_file_from_dsc.  Closes:#795736.  Also, grep the code for
124     likely similar problems elsewhere and improve a (harmless) instance in
125     dgit-repos-server.
126
127   Other improvements:
128   * If a .orig in .. is a symlink, hardlink the link target into our
129     private unpack directory, rather than the link itself (since latter
130     won't work if the symlink is relative).  Closes:#795665.
131   * Test suite: Fix t-restriction-x-dgit-schroot-build in non-adt mode.
132   * Infrastructure: Improve an error message in dgit-repos-policy-debian.
133
134  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 16 Aug 2015 17:51:02 +0100
135
136 dgit (1.2) unstable; urgency=high
137
138   Improvements:
139   * Honour *.clean-mode configuration setting for --clean= mode.
140   * No longer require option values to be cuddled: support `--opt val' and
141     `-o val'.  Closes:#763332.
142
143   Manpages:
144   * Fix typos.
145   * Document that tags are in DEP-14 format, and that they
146     are used for authenticating pushes.
147   * Correct cross-reference to point to browse.d.d.o.
148   * Move dgit.default.* to main CONFIGURATION section.
149
150   Administrivia:
151   * Add missing close of #793060 to changelog for version 1.1.
152
153  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 14 Aug 2015 18:27:20 +0100
154
155 dgit (1.1) unstable; urgency=medium
156
157   Bugfixes:
158   * When source package contains things called .git (even files, and even
159     in subdirectories), remove them.  Closes:#793671.
160   * Work around curl -sS -I printing `HTTP/1.0 200 Connection established'
161     before the actual header, so dgit works with https_proxy set (!)
162   * --new is needed for read access to packages in NEW, too.  Document
163     this, and make it work properly.
164   * Work around #793471 (madness with $SIG{__WARN__} and Perl's system
165     builtin): move $SIG{} setting into setup_sigwarn in Dgit.pm, and
166     check getppid.
167   * When invoking git-buildpackage via dgit gbp-build, consider our
168     command line arguments when massaging the dpkg-buildpackage arguments,
169     so that we don't end up giving dpkg-buildpackage contradictory
170     instructions.
171   * Cope with new git-buildpackage which provides gbp, rather than the
172     eponymous command, on PATH.
173
174   Configurability:
175   * Honour dgit-distros.DISTRO.cmd-CMD and .opts-CMD.  Closes:#793427.
176   * Make configuration able to prevent dpkg-mergechangelogs setup.
177   * Provide dgit setup-new-tree (like dpkg-setup-mergechangelogs
178     but only does it if not disabled in config).
179   * Set up git user.email and user.name from distro access config
180     or DEBEMAIL/DEBFULLNAME.  Closes:#793410.
181   * When key to use not specified any other way, use the debian/changelog
182     trailer line.  Closes:#793423.
183   * Honour --git= (mostly).
184
185   Documentation:
186   * Fix some manpage typos.  [ Richard Hartmann ]
187   * Manpage said that --clean=check was -wn but that is --clean=none;
188     correctly document that --clean=check is actually -wc.
189   * Document that up to -DDDD (not just -DD) is meaningfully different.
190   * Document that -cname=value applies only for this run.
191   * Improve manpage comment about defining a new distro.
192   * Document that --quilt=linear is the default for Debian.
193   * Fix a formatting problem in --build-products-dir= doc.
194   * In manpage, do not seem to imply that NMU should be of only one
195     new commit.
196   * Qualify to Debian the manpage comment about how to do NMU.
197   * In discussion on how to start using dgit when already using git, do
198     not imply/assume that existing git history will have identical trees
199     to dgit history.
200   * Remove stray sentence in config section of manpage.
201   * Manpage: Clarify wording of readonly config.
202   * Manpage: Better cross-references for -k and keyid.
203   * dgit(7): No longer say that dgit-repos lives on Alioth.
204
205   Improvements:
206   * Introduce more sophisticated protocol negotiation for rpush.
207   * Do not quote `:' in shellquote.
208   * Print a supplementary message when push fails, giving advice to
209     the user about how to retry.  Closes:#793144.
210   * Slurp in entire git config, for better performance.
211   * Rename `git-build' operation to `gbp-build' to make it clearer what
212     it's for.  Keep the old name as an alias.
213   * Show `dgit sbuild' in usage message.
214   * When we are using dpkg-buildpackage to clean before using it to also
215     do the build, let it do its cleaning thing as part of its run, rather
216     than running it twice.  When we are _not_ supposed to be using
217     dpkg-buildpackage to clean, but we are running it to do the build,
218     pass -nc.  Closes:#793060.
219   * Also suppress spurious runs of the clean target when building using
220     git-buildpackage.
221   * When exec fails, always print the program name in the error message.
222
223   Infrastructure:
224   * Infrastructure: Get mirroring right for fresh repos of existing
225     packages (!)
226
227   Packaging, cleanups, debugging and test suite:
228   * Fix Vcs-Git and Vcs-Browse to refer to chiark.  (The dgit-repos on
229     alioth aren't suitable right now because the master there can
230     currently only be updated with an actual upload, ie dgit push.)
231   * Make warnings fatal in dpkg-repos-admin-debian, dgit-ssh-dispatch
232     (using setup_sigwarn).
233   * Make warnings fatal in tstunt/dpkg-parsechangelog (directly).
234   * Test suite: Honour DGIT_TEST_DEBUG=''.
235   * With -DDDD, print out all gitcfg references (copious!)
236   * Fix a debug message in the obsolete sshpsql archive access driver.
237   * Test suite: More automatic enumeration of tests.
238   * Test suite: Provide tests which check that all our various build
239     operations run the right targets as expected (ie, that we are massaging
240     the arguments to dpkg-buildpackage, and suppressing our clean target,
241     etc., correctly).
242
243  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 27 Jul 2015 16:34:31 +0100
244
245 dgit (1.0) unstable; urgency=medium
246
247   Improvements:
248   * Switch to new production git repositories for reading.
249     (this can no longer divert to alioth).  Public readonly access
250     now works.  Closes:#791447.
251   * Memoise git config lookups (big speedup!)
252   * Provide -wdd aka --clean=dpkg-source-d.  Closes:#792433.
253   * Provide -wc aka --clean=check.
254
255   Manpage updates:
256   * Remove some obsolete caveats from BUGS.
257   * Reorganise and complete the configuration section.
258   * Remove obselete comment about DMs not being able to push.
259     We have, for now, a way to add keys manually.  Closes:#720173.
260
261   Access machinery:
262   * Remove configuration relating to alioth.
263   * Provide for different access mechanisms when pushing.
264   * Provide for configurable git url suffix.
265   * Allow git-url to be '' to force fallback to git-proto etc.
266   * Provide for checking git presence via http[s].
267   * Do some quoting on debug output (needed if the server might not
268     be trustworthy and might send us bad stuff).
269   * Talk to push.dgit.debian.org, rather than the .debian.net alias.
270
271   Infrastructure:
272   * Provide for mirroring git updates to a different server.
273   * Provide cgit-regen-config command for cgi-grnet-01.
274   * Make dgit-ssh-dispatch not spew (harmless) warnings if caller
275     tries for a shell session (ie SSH_ORIGINAL_COMMAND not set).
276
277   Cleanups:
278   * Remove an obsolete comment from the code.
279   * Improve an error message from dgit-repos-policy-debian.
280   * Test suite: Break out t-make-hook-link.
281   * Fix a manpage typo.
282
283  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 19 Jul 2015 22:15:53 +0100
284
285 dgit (0.30) unstable; urgency=high
286
287   INCOMPATIBLE CHANGES:
288
289   * Client uses new infrastructure:
290     - Check for new dgit git service on dgit-git.debian.net (ie
291       gideon.debian.org), with transition plan based on diversion feature.
292       Closes:#720172.
293     - Old versions of dgit will stop working when the server-side handle is
294       pulled.
295
296   * dgit git trees no longer contain .pc for format `3.0 (quilt)' source
297     packages.  Closes:#764606.
298     - It is deleted whenever we find it.
299     - Older versions of dgit will choke on trees without .pc.
300     - (When doing quilt fixup, we recreate a suitable .pc in a temporary
301       directory so that we can do dpkg-source --comit.)
302
303   * All users are urged to upgrade ASAP.
304
305   Other significant improvements:
306
307   * When generating quilt patches, try to linearise the git history into a
308     series of individual new patches for debian/patches.  Closes:#770710.
309
310   * When receiving a push with dgit-repos-server, update the server's
311     refs/heads/master if we are pushing to what the distro regards as a
312     relevant branch, and the push would ff master.  Closes:#728209.
313
314   * For non-Debian distros, distro version release tags contain distro
315     name a la DEP-14 (rather than hardcoding `debian/').
316
317   * Set up a merge driver for debian/changelog.  Closes:#769291.
318
319   * --clean=git and --clean=none cause dgit to pass -nc to
320     dpkg-buildpackage, suppressing calls to the package's clean target.
321     Also, expand the documentation in this area slightly.  Closes:#768590.
322
323   * Provide --clean=git-ff (aka -wgf), which is useful for dgit itself (!)
324
325   Minor improvements:
326
327   * Reduce some noise output and improve the clarity of some messages.
328   * Be more careful about tag updates during fetch: only update tags
329     referring to uploads to distro we are trying to fetch from.
330   * Change realpath dependency to `coreutils (>= 8.23-1~) | realpath'
331     (Closes:#786955.)
332
333   Bugfixes:
334
335   * Fix handling of rmadison-based and gitless distros (e.g., Ubuntu).
336   * Add missing `gpgv' to test dependencies in debian/tests/control.
337   * Strip `-b <branch>' from contents of Vcs-Git header, when setting up
338     the vcs-git remote.  Closes:#759374.
339   * Do not offer wget as an alternative dependency to curl.  We always
340     unconditionally invoke curl and have no code to use wget.
341     Closes:#760805.
342   * Complain about lack of cuddled values for value-taking single-letter
343     options, rather than thinking the user meat an empty value.
344     Closes:#763332.
345   * Reject (rather than ignoring) further options merged witth -wn, -wg,
346     -wd.
347   * Fix inaccurate error message when archive's git hash is not an
348     ancestor of git repo's git hash.
349   * Detect and bomb out on vendor-specific `3.0 (quilt)' patch series.
350   * Fix the rules clean target to remove test results and output.
351
352   Documentation improvements:
353
354   * Break out dgit(7) from dgit(1).
355   * Provide example workflow for dgit rpush.  Closes:#763334.
356     (Also part of the fix for #768470.)
357   * Document that dgit repos are cloneable with git, in dgit(1)
358     section MODEL.  [Andreas Barth.]  Closes:#768470.
359   * Better documentation for quilt series handling.
360   * Document under `dgit push' that it is best to build with dgit too.
361     Closes:#763333.
362   * Other minor clarifications and improvements.
363
364   Behind-the-scenes work:
365
366   * Use ftpmasterapi archive query method.
367     (Closes:#727702.  Also partly obsoletes #768470.)
368   * New dgit-infrastructure binary package containing dgit-repos-server et
369     al.  Client users probably don't want this stuff.  Also, it provides a
370     convenient way to publish the dependencies.
371   * Many many bugfixes to the server side (dpkg-repos-server et al.).
372   * Add :..; prefix to ssh remote commands, for the benefit of future
373     forced command wrappers.  Implicitly, this defines a new ssh-based
374     command protocol.  Closes:#720174, #720175.
375   * Distro access configuration handling changes (should not be noticeable
376     to most users).
377   * In places, significant restructuring or tidying up.
378   * Turn all perl warnings into errors using $SIG{__WARN__}.
379
380  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 05 Jul 2015 01:34:55 +0100
381
382 dgit (0.22.1) unstable; urgency=high
383
384   * Use Dpkg::Version::version_compare everywhere, not
385     Dpkg::Version::version_compare_string.  The latter is entirely wrong,
386     meaning that dgit would get many version comparisons wrong.
387     Closes:#768038.
388
389  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 04 Nov 2014 12:46:40 +0000
390
391 dgit (0.22) unstable; urgency=medium
392
393   Bugfixes:
394   * Clone removes destination directory on error.  Closes:#736153.
395   * Work with wheezy-backports (and keep squeeze-backports working too).
396     Closes:#736524.
397   * Work in read-only no-git-history mode with Ubuntu.  You still have
398     to pass -dubuntu.  Closes:#751781.
399   * Use mirror.ftp-master.debian.org DNS alias rather than coccia.
400     Closes:#752602.
401   * Check hashes of files ourselves rather than running dget to
402     re-retreive the .dsc.
403   * Check SHA-256 of .dsc against hash from archive_query (ie projectb)
404     rather than letting dpkg-source do a signature verification.
405     Closes:#737619.  Closes:#737625.
406   * Treat .dsc as bytes, just like everything else, rather than letting
407     HTTP::Message convert it to a Perl unicode string which the rest of
408     the program mishandles.  Closes:#738536.
409
410   Minor improvements:
411   * Include canonicalised suite name in signed tag message.
412   * Mention cross-version dgit rpush incompatibility in manpage.
413   * Check for rpush protocol version incompatibility and crash early
414     if incompatible.
415   * New script tests/using-intree for running tests on the source tree.
416   * Do not spew diff output to terminal (by default).  Print sensible
417     message instead.  Closes:#736526.
418   * Print better message for lack of configuration settings.
419   * Document that dgit rpush needs gnupg and your public key on the build
420     host.  Closes:#736529.
421   * Fix a manpage reference to `--dget=' where `--dgit=' was intended.
422   * Provide t-archive-process-incoming and t-archive-query subroutines for
423     regression test scripts to use.
424   * Print better message for unknown operations.
425   * Provide `dgit clean'.  Closes:#736527.
426   * When cloning, set up a remote `vcs-git' from the package's Vcs-Git
427     (and put an appropriate caveat in the manpage).  Closes:#740687.
428     Closes:#740721.
429   * Improve error message for .dsc having already been signed (iff
430     using libdpkg-perl 1.17.x).  Closes:#731635.
431   * Improve error message for .dsc parsing failures more generally.
432   * Better reporting of child exit statuses (esp. deaths due to signals).
433   * In rpush, on protocol error talking to build host, check if the
434     subprocess died and report differently if so.  Closes:#736528.
435   * Fixed a manpage typo.
436   * When tests invoke dgit, use --dgit= so that subprocesses use our
437     dgit rather than system one.
438   * Add a test for dgit rpush.
439
440   Major new feature, currently stalled awaiting server infrastructure:
441   * dgit-repos-server: New program for receiving signed-tag-based
442     pushes.  Corresponding support in dgit itself, but not currently
443     used by default for any distro.
444   * Bring forward push of the version tag ref so it happens alongside
445     the push of the suite branch ref.
446   * New git-check and git-create methods "true" which are no-ops.
447   * test-dummy-drs `distro': for testing dgit and dgit-repos-server.
448
449  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 19 Aug 2014 11:24:02 +0100
450
451 dgit (0.21) unstable; urgency=medium
452
453   Bugfixes relating to unclean trees:
454   * Run a clean (of the specified type) before any build operation; do
455     this with `dpkg-buildpackage -T' clean if necessary, so -wd now works
456     with all the building methods.
457   * Refuse to do quilt fixup (explicitly requested, or as a result of
458     build) if the tree contains ignored files.  Closes:#731632.
459
460   Error message improvements:
461   * Use failedcmd to report errors when ssh psql fails.  Closes:#734281.
462   * failedcmd prints $us, not $_[0] - ie, dgit doesn't pretend,
463     in the error message, to be its child.
464   * Do not report the (irrelevant) $? when madison parsing fails.
465
466   Better workflow flexibility:
467   * Provide --build-products-dir option (and corresponding semantics
468     for -C) to specify where to find the files to upload.  Closes:#731633.
469
470   Support for Debian backports suites:
471   * New quirks infrastructure in configuration and internals,
472     for suites (or perhaps distros) which are a bit like others.
473   * Use correct default archive location.
474   * Compute "-v" option default value correctly.
475   * Closes:#733954.
476
477   Packaging improvement:
478   * Add `Testsuite: autopkgtest' to debian/control.  (This will only have
479     the right effect with recent enought dpkg; it will generate a harmless
480     warning with earlier versions of dpkg.)
481
482  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 19 Jan 2014 02:14:25 +0000
483
484 dgit (0.20) unstable; urgency=high
485
486   * Use newest (not oldest) version currently in suite when calculating
487     what value to use for -v<version> by default.  Closes:#732781.
488
489  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 21 Dec 2013 19:13:56 +0000
490
491 dgit (0.19) unstable; urgency=low
492
493   Testing facilities:
494   * Provide "test-dummy" distro with "dummycat" access method.
495   * Provide a selection of autopkgtest (DEP-8) tests.
496
497  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Wed, 27 Nov 2013 18:27:17 +0000
498
499 dgit (0.18.2) unstable; urgency=high
500
501   Bump archive upload urgency to high.
502
503  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 24 Nov 2013 17:42:57 +0000
504 dgit (0.18.1) unstable; urgency=low
505
506   Bugfixes:
507   * sshpsql archive query method passes LANG=C.  Closes:#729788.
508   * Subcommand program or argument options containing hyphens work.
509     (Eg, --dpkg-buildpackage:blah was previously incorrectly rejected.)
510
511   Packaging fixes:
512   * Depend on dput.
513   * Depend on curl | wget, as dget needs one of those.  (The dput package,
514     which contains dget, doesn't require them because dput itself works
515     without.)
516
517  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 24 Nov 2013 17:36:03 +0000
518
519 dgit (0.18) unstable; urgency=low
520
521   Major new feature:
522   * Remote push (dgit rpush), a la debsign -r.  Closes:#721185.
523
524   Improved behaviours:
525   * dgit build, by default, uses the archive to find out what the correct
526     -v<version> option is to pass to dpkg-genchanges.  Closes:#727200.
527   * Abolish the sshdakls method and replace it with sshpsql: that is, ssh
528     (to coccia, by default) and run sql commands on the ftpmaster
529     database.  This is faster and has fewer bugs but is vulnerable to db
530     schema changes.  Closes:#726955.  Closes:#720170.  Closes:#720176.
531   * When generating git tags, quote the (uncanonicalised) changelog's
532     Distribution field as the suite.
533   * Command execution reports from --dry-run go to stderr.
534
535   Other new features:
536   * Support --gpg=... to provide a replacement command for gpg.
537   * Support --ssh=... and --ssh:... to affect how we run ssh.
538
539   Bugfixes:
540   * When using sbuild, pass the arguments to mergechanges in the right
541     order so that we use the correct Description (the _source one,
542     not the one from sbuild which didn't get e.g. -v<version>).
543   * push actually takes an optional suite, like it says in the synopsis.
544     Closes:#727125.
545   * Fix dgit --damp-run sbuild to actually work.
546   * Fix the "shellquote" internal subroutine.  The bugs in it ought not to
547     have caused any real trouble in previous versions of dgit.
548
549   Documentation and message fixes:
550   * manpage: Clarify comments about orig tarballs.  Closes: #723605.
551   * manpage: Remove comment in BUGS about lack of policy docs
552     for Dgit field, which is specified now.  Closes:#720201.
553   * manpage: Make discussion of --existing-package less scary.  The
554     default archive access method no longer needs it.  Closes:#720171.
555   * Mention "git merge", not "git-merge", in helpful message.
556     Closes:#725632.
557
558   Internal and debugging improvements:
559   * Report chdir actions in debugging output.
560   * Improvements to implementation of --dry-run and --damp-run.
561   * Some code motion and cleanups.
562
563   Note: changelog entries for the following versions, which were uploaded
564   to Debian experimental, have been collapsed into this single entry:
565     0.18~experimental2 0.18~experimental1
566     0.17~experimental7 0.17~experimental6 0.17~experimental5
567     0.17~experimental4 0.17~experimental3 0.17~experimental2
568     0.17~experimental1
569     0.16~experimental3 0.16~experimental2 0.16~experimental1
570   We do describe here all the changes since 0.17.
571
572  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 09 Nov 2013 10:12:13 +0000
573
574 dgit (0.17) unstable; urgency=high
575
576   * Do not grobble around in .git/refs/; instead, use git-show-ref.
577     This avoids breaking when git makes packed refs.  Closes:728893.
578   * Clarify error message for missing refs/remotes/dgit/dgit/<suite>.
579
580  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 07 Nov 2013 00:02:47 +0000
581
582 dgit (0.16) unstable; urgency=high
583
584   * Format `(3.0) quilt' fixup does not mind extraneous other files
585     in the build tree (e.g., build products and logs).  Closes: #727053.
586   * Set autoflush on stdout, to get better ordering of debugging
587     etc. output when stdout is redirected.
588   * New --damp-run mode, for more convenient and fuller testing etc.
589
590  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 22 Oct 2013 13:06:54 +0100
591
592 dgit (0.15) unstable; urgency=low
593
594   * Better handling of packages pushed using dgit and stuck in NEW.
595     (And, use of `--new' is not needed with fetch.)  Closes: #722199.
596   * More comprehensive warnings in many cases of archive skew.
597   * Implement `dgit help' as well as `--help'.  Closes: #721661.
598   * Provide `dgit version' and `--version'.  Closes: #721654.
599
600  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 12 Sep 2013 00:14:05 +0100
601
602 dgit (0.14) unstable; urgency=low
603
604   * Include package name in tag message.
605   * Create directory .git/dgit when needed during build.  Closes: #721428.
606   * Add Vcs-Git and Vcs-Browser [Richard Hartmann].  Closes: #721404.
607     These fields refer to the development branch, "master", on alioth,
608     not to the dgit suite refs (which are not accessible to git clone).
609
610  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 01 Sep 2013 18:30:44 +0100
611
612 dgit (0.13) unstable; urgency=low
613
614   * Reuse already-downloaded .orig files after checking their hashes.
615     Closes: #720526.  (This introduces a dependency on Digest::SHA.)
616   * Do not always pointlessly fetch the .dsc twice.  (That code was
617     erroneously duplicated during editing, apparently.)
618   * Remove DGET_UNPACK from the environment in case the user has set it.
619   * Remove scary warning from Description.
620   * When uploading to Debian, tell dput to upload to "ftp-master".  This
621     avoids problems with derivatives whose dput has a different default.
622     Closes: #720958.
623   * Fix some bugs in dgit fetch --dry-run which made dgit push
624     --dry-run often not work at all.
625   * Update the local tracking branch for the dgit remote, when pushing.
626     Closes: #720956.
627   * Fix references in manpage to old Vcs-Dgit-Master field name.
628   * Reorganise manpage sections to be in a more conventional order.
629   * New manpage section on FILES IN THE SOURCE PACKAGE BUT NOT IN GIT.
630     Closes: #721186.
631
632  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 29 Aug 2013 00:27:23 +0100
633
634 dgit (0.12) unstable; urgency=low
635
636   * Cope with packages with epoch.  Closes: #720897.
637   * Improve error message for non-fast-forward push.  Closes: #720896.
638   * New --ignore-dirty option to skip noncritical check.  Closes: #720895.
639   * New --no-quilt-fixup option to suppress quilt fixup.  RTFM.
640   * Add Closes line for #720595 to changelog entry for 0.11.
641
642  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 26 Aug 2013 16:50:39 +0100
643
644 dgit (0.11) unstable; urgency=low
645
646   * Location of dgit-repos is now git.debian.org:/git/dgit-repos/repos.
647     Closes: #720525.  The rename on the server side will break older
648     versions of dgit.
649   * Fix bug which would make quilt patch fixup fail if git status
650     produced "M" lines.
651   * Autogenerated quilt patch fixup patch Description contains several
652     recent git commits, rather than implying that the patch corresponds
653     exactly to the top git commit.
654   * Use "ftp.debian.org" not "http.debian.net" as the default Debian
655     archive.  (http.debian.net tends to defeat certain kinds of cacheing,
656     and can also have more skew.)
657   * dgit build uses dpkg-buildpackage; there is a dgit git-build
658     for using git-buildpackage.  Closes: #720595.
659   * Better error message for use of UNRELEASED suite.  Closes: #720523.
660   * Do not canonicalise suite more than once.  Related to: #720526.
661   * Fix a badly open-coded copy of check_not_dirty.  Closes: #720524.
662   * Fix some bugs in building (eg build-source would fail to do the quilt
663     fixup; the --clean check in build was wrong).
664   * Add missing dependency on realpath.
665   * git-build (git-buildpackage wrapper) does not bother canonicalising
666     the suite if --git-ignore-branch is used.
667
668  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 25 Aug 2013 17:00:43 +0100
669
670 dgit (0.10) unstable; urgency=low
671
672   * Create .pc/applied-patches - do not empty it (!)
673
674  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 25 Aug 2013 00:51:50 +0100
675
676 dgit (0.9) unstable; urgency=low
677
678   * New cleaning arrangements.
679   * More comprehensive workaround for `3.0 (quilt)'.
680   * In push, double-check the .changes against the changelog.
681   * Better error when source package contains .git.  Closes: #720555.
682   * Change our .dsc field name to `Dgit'.  Relevant to #720201.
683   * Fix bug handling our synthetic merges when we see them in
684     the remote suite branch.
685   * `3.0 (quilt)' fixup creates .pc/applied-patches since modern
686     dpkg-source creates it even though old ones didn't always.
687
688  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 24 Aug 2013 18:49:02 +0100
689
690 dgit (0.8) unstable; urgency=low
691
692   * Fix comparison of archive's .dsc's hash and git branch head
693     to DTRT.
694   * When creating repos in dgit-repos (using the ssh-cmd method),
695     copy _template rather than using mkdir and git init.
696     Closes: #720522.
697   * In push, do git fetch as well as archive fetch, or archive
698     fetch can fail.
699
700  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 23 Aug 2013 12:24:09 +0100
701
702 dgit (0.7) unstable; urgency=low
703
704   * If dak ls, or rmadison, reports multiple versions, look for them
705     all, and pick the newest .dsc that doesn't give 404.
706   * Manpage formatting fix.
707   * Name the local remote tracking branch remotes/dgit/dgit/<suite>
708     so that we avoid a warning from git about ambiguous branch names.
709
710  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 18:29:10 +0100
711
712 dgit (0.6) unstable; urgency=low
713
714   * Allow fetching when archive has out-of-date git hash in .dsc.
715     Closes: #720490.
716
717  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 16:02:10 +0100
718
719 dgit (0.5) unstable; urgency=low
720
721   * Upload to unstable, as this version mostly works.  (All the RC
722     bugs of which I'm aware are now properly represented in the BTS.)
723
724  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 15:38:00 +0100
725
726 dgit (0.4~pre2) experimental; urgency=low
727
728   * Mangle debian/<version> tags the way git-buildpackage does
729     (as of git-buildpackage 0.5.5, 3c6bbd0f4992f8da).
730   * Support dgit-distro.<distro>.keyid config option.
731   * Revert change to ssh to alioth CNAME, as the recommended CNAME
732     is to something with no write access to the fs and the new CNAME
733     has not yet been set up.  This reintroduces #720172 :-/.
734
735  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 15:31:17 +0100
736
737 dgit (0.4~pre1) experimental; urgency=low
738
739   * Use dgit.debian.net vhost on alioth.  Closes:#720172.
740   * Usage message.  Closes:#720085.
741   * Provide "dgit sbuild".
742   * Assorted manpage fixes and improvements.
743   * Fail if a required config item is missing.
744   * Much better error messages.
745   * Better error checking when parsing RFC822-style control data.
746   * Better checking that the supplied .dsc and debian/changes correspond.
747   * Ordering improvement in push: don't add dsc field until git push done.
748   * New --distro option (helps with unknown suites).
749   * Bugfixes.
750
751  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 13:36:44 +0100
752
753 dgit (0.3) experimental; urgency=low
754
755   * New version which appears to be able to sort of work at least
756     some of the time.
757
758  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 17 Aug 2013 09:18:04 +0100
759
760 dgit (0.2) experimental; urgency=low
761
762   * New version which might actually work but probably won't.
763
764  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 16 Aug 2013 16:52:17 +0100
765
766 dgit (0.1) experimental; urgency=low
767
768   * Initial experimental (partial) version.
769
770  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 15 Aug 2013 12:09:01 +0100
771