~mvo/unattended-upgrades/fix-on-error-mail

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
unattended-upgrades (0.80~exp2) experimental; urgency=low

  * add codename based matching 
  * add support for "${distro_id}", "${distro_codename}" in the 
    Unattended-Upgrade::Origins-Pattern based matching too
  * data/50unattended-upgrades.Debian:
    - improve documentation, thanks to Russell Stuart

 -- Michael Vogt <mvo@debian.org>  Thu, 14 Mar 2013 09:16:12 +0100

unattended-upgrades (0.80~exp1) experimental; urgency=low

  [ Michael Vogt ]
  * lp:~mvo/unattended-upgrades/verbose:
    - add --verbose that shows output and terminal output
  * drop --with python2 as its just a single script
  * debian/control:
    - depend on latest python-apt in experimental for the "codename"
      based origin matching
  * data/50unattended-upgrades.Debian:
    - re-add the codename (n=) based matching example

  [ Brian Murray ]
  * unattended-upgrade:
    - log that sendmail works as an alternative to mailx
    - fix a issue with the tense of packages being upgraded
      Richard for the initial patch (LP: #1069809)

 -- Michael Vogt <mvo@debian.org>  Thu, 14 Mar 2013 06:34:27 +0100

unattended-upgrades (0.79.5) unstable; urgency=low

  * data/50unattended-upgrades.{Debian,Ubuntu}:
    - add missing ";" in the example config, thanks to  Tomas Pospisek
      closes: #684876
    - remove codename based matching example as this needs a newer 
      python-apt than available in wheezy, thanks to Russell Stuart
  * unattended-upgrade, test/test_origin_pattern.py:
    - if a unknown matcher token is found, raise a error instead of
      silently ignoring it, thanks to Russell Stuart 
  * unattended-upgrade:
    - do not nice/ionice as this wil affect daemon restarts
      (closes: #701850)

 -- Michael Vogt <mvo@debian.org>  Fri, 01 Mar 2013 10:07:30 +0100

unattended-upgrades (0.79.4) unstable; urgency=low

  * lp:~mvo/unattended-upgrades/xz-support:
     - add missing xz-utils dependency, thanks to Bastian Blank
       (closes: #698552)

 -- Michael Vogt <mvo@debian.org>  Mon, 21 Jan 2013 17:27:31 +0100

unattended-upgrades (0.79.3) unstable; urgency=low

  * unattended-upgrade:
    - fix assert text, thanks to Niels Thykier
  * really include the updated es.po, thanks to Niels Thykier

 -- Michael Vogt <mvo@debian.org>  Tue, 07 Aug 2012 12:20:05 +0200

unattended-upgrades (0.79.2) unstable; urgency=low

  * use "mail -s" again to ensure there is a proper subject line when
    using mailx
  * do not attach headers when using mailx
  * use sendmail instead of mailx when available to get a proper mime
    mail with correct encoding etc (closes: #654851, #681442)
    Thanks to Bjørn Mork and Teodor MICU
  * po/es.po:
    - updated, thanks to Omar Campagne, closes: #681334
  * debian/control:
    - add suggests for mail-transport-agent
  * only use ionice if available (closes: #681467)
  * make pyflakes clean and add test

 -- Michael Vogt <mvo@debian.org>  Fri, 13 Jul 2012 20:54:05 +0200

unattended-upgrades (0.79.1) unstable; urgency=low

  * Set apt-listchanges frontend to "mail" if sendmail is available,
    the default behavior of apt-listchanges is to send a mail (if there
    is a email_address in apt-listchanges.conf) even with pager/gtk
    frontends so this will ensure the same behavior (closes: #579733)
  * Do not use "mail -a" as this is not POSIX, instead use the python
    email.Message package to construct a proper utf8 message
    (closes: #654851)

 -- Michael Vogt <mvo@debian.org>  Wed, 11 Jul 2012 22:34:14 +0200

unattended-upgrades (0.79) unstable; urgency=low

  [ Translation updates ]
  * po/pt_BR.po:
    - updated, thanks to David Prévot, closes: #678423
  * po/cs.po:
    - removed, was a debconf translation
  * po/ru.po:
    - updated, thanks to Yuri Kozlov, closes: #678427
  * po/gl.po:
    - added, thanks to Jorge Barreiro, closes: #678634
  * po/pt.po:
    - added, thanks to Pedro Ribeiro, closes: #678738
  * po/sk.po:
    - added, thanks to helix84, closes: #677471
  
  [ Teodor MICU ]
  * debian/unattended-upgrades.init:
    - fixes new style lsb-init output, closes: #678030

  [ Michael Vogt ]
  * correctly detect conffile prompt for new conffiles that were 
    normal files previously (like /etc/profile in base-files 6.8),
    closes: #673237
  * code cleanup in conffile detection and tests
  * Set mail header to utf8 for the summary email (closes: #654851)
  * use stdout instead of stderr in --debug mode (closes: #674140)
  * data/50unattended-upgrades.{Debian,Ubuntu}:
    - change default mail recipient to "root" intead of "root@localhost"
      to help systems without a real mail setup (closes: #648149)
  * ignore packages in the blacklist early to avoid un-upgradable warning
    for mixed stable/testing systems (closes: #645382)

 -- Michael Vogt <mvo@debian.org>  Fri, 29 Jun 2012 13:22:54 +0200

unattended-upgrades (0.78) unstable; urgency=low

  [ Michael Vogt ]
  * data/logrotate.d/unattended-upgrades:
    - simplify, thanks to Teodor MICU
  * refresh po/pot automatically on clean, closes: #670473
  * po/da.po:
    - updated, thanks to Joe Dalton, closes: #677804
  * po/de.po:
    - updated, thanks to Chris Leick (closes: #678204)
  
  [ Teodor MICU ]
  * debian/unattended-upgrades.init:
    - use new style lsb-init output, closes: #678030

 -- Michael Vogt <mvo@debian.org>  Thu, 21 Jun 2012 17:05:22 +0200

unattended-upgrades (0.77) unstable; urgency=low

  * unattended-upgrade:
    - ignore md5sum "newconffile" (LP: #936870)
    - simply ignore SIGHUP instead of the setsid() magic
    - redirect ionice stderr output to /dev/null to avoid
      showing a error in a OpenVZ env (closes: #675021)
  * unattended-upgrade-shutdown:
    - be robust about import apt_pkg failures (LP: #808449), e.g.
      during upgrades
    - log when install finished to help track down LP #434835
    - do not log to syslog anymore as this *might* block and 
      could cause  LP #434835 and was not working in most cases
      as syslog was killed before it could log
    - log instead to /var/log/unattended-upgrades-shutdown.log 
      to help track down LP #434835
  * debian/unattended-upgrades.init:
    - add Required-{Start,Stop}: $local_fs to help track down LP #434835
  * po/fr.po:
    - updated french translation (closes: #675916)

 -- Michael Vogt <mvo@debian.org>  Mon, 11 Jun 2012 16:57:33 +0200

unattended-upgrades (0.76.3) unstable; urgency=low

  * unattended-upgrades:
    - check if "apt.package.Version" has "policy_priority" before
      using it (closes: #670131)

 -- Michael Vogt <mvo@debian.org>  Tue, 24 Apr 2012 09:07:58 +0200

unattended-upgrades (0.76.2) unstable; urgency=low

  * unattended-upgrades:
    - its ok if setsid fails (closes: #669583)

 -- Michael Vogt <mvo@debian.org>  Fri, 20 Apr 2012 09:21:38 +0200

unattended-upgrades (0.76.1) unstable; urgency=low

  * unattended-upgrade:
    - honor pin priority of < 0 when selecting new candidates
    - use os.setsid() to not get killed when the terminal goes away
    - only print to stdout if there is no summary mail configured

 -- Michael Vogt <mvo@debian.org>  Thu, 19 Apr 2012 19:06:18 +0200

unattended-upgrades (0.76) unstable; urgency=low

  * add basic "Unattended-Upgrades::InstallOnShutdown" option to do
    the install step on shutdown (closes: #652982) instead of doing
    it in the backgroud while the machine is running
  * test improvements
  * fix mispelled "Unattended-Upgrade::MinimalSteps" (and add compat
    mode)
  * unattended-upgrade:
    - cleanup FDs to hopefully fix zombies (closes: #646620)

 -- Michael Vogt <mvo@debian.org>  Fri, 09 Mar 2012 09:42:33 +0100

unattended-upgrades (0.75.1) unstable; urgency=low

  * print conffile hold-backs to stdout to ensure its part of
    the cron mail (LP: #773007), thanks to Jean-Baptiste Lallement
  * unattended-upgrade:
    - fix crash on automatic-reboot, thanks to Teodor (closes: #651822)
  * typo fixes, thanks to Lei Zhang

 -- Michael Vogt <mvo@debian.org>  Mon, 12 Dec 2011 14:01:41 +0100

unattended-upgrades (0.75) unstable; urgency=low

  * add tests for compat mode and spaces in a origin
  * escape "," in the Allowed-Origins compat mode (LP: #824856)
  * merged lp:~mvo/unattended-upgrades/unshadow-versions, this will
    ensure that higher versions in a non-origin branch do not "shadow"
    the versions from a desired origin (LP: #891747)

 -- Michael Vogt <mvo@debian.org>  Tue, 22 Nov 2011 15:27:56 +0100

unattended-upgrades (0.74.4) UNRELEASED; urgency=low

  * add tests for compat mode and spaces in a origin
  * escape "," in the Allowed-Origins compat mode (LP: #824856)
  * merged lp:~mvo/unattended-upgrades/unshadow-versions, this will
    ensure that higher versions in a non-origin branch do not "shadow"
    the versions from a desired origin (LP: #891747)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 21 Nov 2011 18:00:57 +0100

unattended-upgrades (0.74.3) unstable; urgency=low

  * add missing "." to dh_installinit (closes: #648216)

 -- Michael Vogt <mvo@debian.org>  Wed, 09 Nov 2011 20:16:12 +0100

unattended-upgrades (0.74.2) unstable; urgency=low

  * add missing "." to dh_installinit (closes: #648216)

 -- Michael Vogt <mvo@debian.org>  Wed, 09 Nov 2011 19:27:43 +0100

unattended-upgrades (0.74.1) unstable; urgency=low

  * debian/unattended-upgrades.init:
    - only run unattended-upgrades-shutdown if its actually installed
      (closes: #643607)
  * pm/sleep.d/10_unattended-upgrades-hibernate:
    - only run shutdown helper when its available
  * updated README and defaults based on the work from
    Reuben Thomas, many thanks (closes: #632336)
  * lintian fixes
  * debian/rules, debian/unattended-upgrades.init:
    - fix dh_initallinit arguments (closes: #630732) 

 -- Michael Vogt <mvo@debian.org>  Wed, 09 Nov 2011 09:26:56 +0100

unattended-upgrades (0.74) unstable; urgency=low

  * test improvements
  * fix crash when no packages are upgraded
  * only run dpkg if there are packages to upgrade (closes: #647476)
  * include "stable-updates" in the configuration example
  * debian/po/de.po:
    - updated, thanks to Helge Kreutzmann (closes: #647172)
  * debian/rules:
    - install initscripts but do not run them on install/upgrade
      (closes: #645919), thanks to Teodor MICU
  * data/50unattended-upgrades.Debian:
    - update default Debian config for squeeze, thanks to 
      John Feuerstein for the example (closes: #609854)
  * debian/prerm:
    - ignore failures from versions where the initscript is run
      with "stop" even when not in shutdown mode (closes: #645919)
  * unattended-upgrade:
    - ensure to release shutdown-lock before shutting down 
      (closes: #645919)
  * debian/postinst, data/20auto-upgrades-disabled:
    - allow disabling via debconf (closes: #645971)

 -- Michael Vogt <mvo@debian.org>  Tue, 08 Nov 2011 17:37:31 +0100

unattended-upgrades (0.73.1) unstable; urgency=low

  [ Michael Vogt ]
  * unattended-upgrade:
    - re-eval pkgs_kept_back after a successful upgrade to ensure
      that its in sync with the cache (closes: #639840), thanks to
      Iain Nicol
    - do not write dpkg terminal log in --dry-run mode instead just
      output to stdout (closes: #640329)
  * test/test_origin_pattern.py:
    - test fixes
  
  [ Peter Eisentraut ]
  * debian/unattended-upgrade.init:
    - add support for "status" action
  
  [ Iain Nicol ]
  * unattended-upgrade:
    - ensure pkgs_to_upgrade stays sorted and fix crash

 -- Michael Vogt <mvo@debian.org>  Wed, 19 Oct 2011 15:16:20 +0200

unattended-upgrades (0.73ubuntu1) oneiric; urgency=low

  * debian/po/de.po:
    - updated, closes: #631316 (thanks to Helge Kreutzmann)
  * merged lp:~brian-murray/unattended-upgrades/init-eol, this
    makes the shutdown message nicer, thanks to Brian Murray
  * unattended-upgrade:
    - write progress information /var/run/unattended-upgrades.progres
      so that the progress can be displayed on shutdown
  * unattended-upgrade-shutdown:
    - show install progress during shutdown
  * po/unattended-upgrades.pot:
    - refresh
  * unattended-upgrade:
    - Do not upgrade apps if "XB-Upgrade-Requires: app-restart"
      is set in the debian/control file.
      This can be override with the option:
      Unattended-Upgrade::IgnoreAppsRequireRestart=true

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 19 Jul 2011 16:44:51 +0200

unattended-upgrades (0.72.3) unstable; urgency=low

  * debian/rules:
    - run the original targets after override_dh_
  * test/create_debug_lock.py, unattended-upgrade:
    - fix two missing python-apt 0.8 transition issues
      (thanks to Reinhard Tartler, closes: #630192)

 -- Michael Vogt <mvo@debian.org>  Thu, 16 Jun 2011 09:13:49 +0200

unattended-upgrades (0.72.2) unstable; urgency=low

  * po/fr.po:
    - updated, thanks to to Steve Petruzzello (closes: #622718)
  * debian/po/ca.po:
    - added, thanks to Innocent De Marchi (closes: #628368)
  * unattended-upgrade:
    - fix conffile prompt detection (closes: #624148)
  * debian/rules, debian/control:
    - move to dh7
  * work with python-apt 0.8 (closes: #630192)
  * switch to dh_python2

 -- Michael Vogt <mvo@debian.org>  Wed, 15 Jun 2011 09:50:25 +0200

unattended-upgrades (0.72.1ubuntu1) natty; urgency=low

  * unattended-upgrade:
    - fix detection of unclean dpkg state if another package manager
      is working (LP: #754330)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 12 Apr 2011 10:34:42 +0200

unattended-upgrades (0.72ubuntu1) natty; urgency=low

  * unattended-upgrade, data/50unattended-upgrades.{Debian,Ubuntu}:
    - automatically fix a interrupted dpkg (e.g. from a powerfailure)
      (LP: #584817)
    - add Unattended-Upgrade::AutoFixInterruptedDpkg to allow the admin
      to configure this option

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 07 Apr 2011 11:43:26 +0200

unattended-upgrades (0.71ubuntu1) natty; urgency=low

  * debian/po/da.po:
    - added, thanks toJoe Dalton (closes: #619320)
  * unattended-upgrade, test/test_conffile.py:
    - use apt_inst.DebFile.control.extractdata() instead of
      apt_inst.debExtractControl() to not hit the limit of the
      tag section parser (LP: #724994)
    - add regression test

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 06 Apr 2011 11:44:48 +0200

unattended-upgrades (0.70ubuntu1) natty; urgency=low

  * merged lp:~mvo/unattended-upgrades/minimal-steps-upgrade
    - This allows performaing the upgrades in minimal chunks so
      that they can be interrupted (relatively) quickly with
      SIGUSR1
    - This feature is not enabled by default yet, in order
      to use it, uncomment the line in 50unattended-upgrades:
       Unattended-Upgrades::MinimalSteps "true";
    LP: #729214

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 14 Mar 2011 11:49:02 +0100

unattended-upgrades (0.70) unstable; urgency=low

  * pm/sleep.d/10_unattended-upgrades-hibernate:
    - remove some unneeded lines from the script, thanks to
      Seth Arnold (LP: #595792)
  * test/test_mail.py:
    - add tests for apt-listchanges.conf parser
  * unattended-upgrade:
    - add new Unattended-Upgrade::Origins-Pattern option that is much
      more flexible than the previous Allowed-Origins. It supports 
      match patterns like:
      "origin=Debian,label=Debian-Security,component=main"
      "site=security.debian.org"
    - add support for escaping, so "origin=Google\, Inc,suite=stable"
      is possible (thanks to Alexander Reichle-Schmehl), closes: #609876
    - do not send a summary mail in --dry-run mode (closes: #609516)
  * make Package-Blacklist a regexp (thanks to Raymond Lee) and add
    test
  * README:
    - fixed outdated ubuntu centric info (closes: #611675)
  * po/fr.po:
    - updated, thanks to Steve Petruzzello (closes: #597606)
  * data/50unattended-upgrades.Debian:
    - add oldstable example (closes: #515980)
  * test/test_against_real_archive.py, test/aptroot:
    - add regression test that talks against the real archive
  * unattended-upgrade:
    - remove MyCache, apt.Cache has all the features we need
    - add rootdir option to better support automatic testing
  * unattended-upgrade:
    - create logdir based on configuration, thanks to Arno Schuring
      (closes: #615486)
    - support Unattended-Upgrade::Log{Dir,File} as a config option, but
      keep APT::UnattendedUpgrades::Log{Dir,File} for compatiblity
  * test/test_logdir.py:
    - add test for _setup_logging

 -- Michael Vogt <mvo@debian.org>  Fri, 04 Mar 2011 13:17:39 +0100

unattended-upgrades (0.65ubuntu2) natty; urgency=low

  * add missing lsb-release build-depends

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 07 Jan 2011 19:00:05 +0100

unattended-upgrades (0.65ubuntu1) natty; urgency=low

  [ Michael Vogt ]
  * debian/po/pt_BR.po:
    - updated, thanks to Adriano Rafael Gomes (closes: #607403)
  * debian/rules:
    - use different template depending on the build host 
      (ubuntu,debian)
    - remove obsolete arch-build target
  * data/50unattended-upgrades.Debian:
    - add debian specific template

  [ Nobuto MURATA ]
  * data/50unattended-upgrades.Ubuntu:
    - adapt repository format for Ubuntu, LP: #691886

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 07 Jan 2011 15:57:20 +0100

unattended-upgrades (0.64ubuntu1) natty; urgency=low

  * debian/postinst:
    - fixup incorrect LSB Default-Start and Stop values

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 18 Nov 2010 09:35:39 +0100

unattended-upgrades (0.63ubuntu1) natty; urgency=low

  * debian/unattended-upgrades.init:
    - fix default stop value, thanks to Petter Reinholdtsen,
      closes: #593987
  * unattended-upgrade:
    - add new Unattended-Upgrade::MailOnlyOnError option that will
      make the script only send a mail when a error occured (thanks
      to Steffen Kittel)
  * test/test_mail.py:
    - add test for Unattended-Upgrade::MailOnlyOnError feature
  * README:
    - improve description for the Allowed-Origins option
  * test/Makefile:
    - run test on bzr-buildpackage and fail if one of the tests
      fail

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 10 Nov 2010 15:18:37 +0100

unattended-upgrades (0.62.2) unstable; urgency=low

  * debian/postinst:
    - add fixup code for installs with incorrect values from
      the stop value (really closes: #593987), thanks to
      Peter Reinholdtsen

 -- Michael Vogt <mvo@debian.org>  Thu, 18 Nov 2010 09:00:44 +0100

unattended-upgrades (0.62.1) unstable; urgency=low

  * debian/unattended-upgrades.init:
    - fix default stop value, thanks to Petter Reinholdtsen,
      closes: #593987

 -- Michael Vogt <mvo@debian.org>  Wed, 17 Nov 2010 21:26:10 +0100

unattended-upgrades (0.62ubuntu1) maverick; urgency=low

  * merged fixes from debian/sid, notably allowing ":"
    as seperator for (origin, archive)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 26 Aug 2010 18:45:07 +0200

unattended-upgrades (0.62) unstable; urgency=low

  [ Michael Vogt ]
  * updated Russian program translation, thanks to
    Yuri Kozlov, closes: #592646
  * updated pt_BR translations, thanks to Sergio Cipolla,
    closes: #593755

  [ Alex Owen ]
  * allow ":" as seperator in Unattended-Upgrade::Allowed-Origins
    (closes: #536754) 

 -- Michael Vogt <mvo@debian.org>  Thu, 26 Aug 2010 18:41:06 +0200

unattended-upgrades (0.61) unstable; urgency=low

  * merged changes from the ubuntu branch

 -- Michael Vogt <mvo@debian.org>  Mon, 02 Aug 2010 12:10:00 +0200

unattended-upgrades (0.60ubuntu3) maverick; urgency=low

  * merged changes from debian-sid
  * fix crash when the old package had a conffile but that 
    disappears in the new pacakge

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 02 Aug 2010 12:08:21 +0200

unattended-upgrades (0.60ubuntu2) maverick; urgency=low

  * debian/control:
    - add missing lsb-release dependency
  * debian/control:
    - depend on python-apt (>= 0.7.90)
  * unattended-upgrade:
    - port to python-apt 0.8 API

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 02 Aug 2010 10:29:46 +0200

unattended-upgrades (0.60ubuntu1) maverick; urgency=low

  * Include reboot required notification in sent emails (LP: #415202)
    and add test for it (thanks to Paul Elliott for the initial patch)
  * allow ${distro_id} and ${distro_codename} in 
    Unattended-Upgrade::Allowed-Origins and update conffile to it

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 17 May 2010 15:19:21 +0200

unattended-upgrades (0.55ubuntu4) lucid-proposed; urgency=low

  * unattended-upgrade:
    - fix rewind_cache if a pkg fails to get marked for upgrade 
      (LP: #571734)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 29 Apr 2010 16:39:45 +0200

unattended-upgrades (0.55ubuntu3) lucid; urgency=low

  [ Michael Vogt ]
  * add Vcs-Bzr header
  * unattended-upgrade-shutdown:
    - add information to plymouth shutdown screen if a 
      unattended-upgrade is in progress (LP: #506709)

  [ Loïc Minier ]
  * Fix typo in README.

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 17 Mar 2010 17:47:08 +0100

unattended-upgrades (0.55ubuntu2) lucid; urgency=low

  * Suggest bsd-mailx instead of mailx as mailx is a transitional package.

 -- Loïc Minier <loic.minier@ubuntu.com>  Thu, 21 Jan 2010 10:25:12 +0100

unattended-upgrades (0.55ubuntu1) lucid; urgency=low

  * updated for lucid
  * add new "Unattended-Upgrade::Remove-Unused-Dependencies"
    option that is off by default to allow removal of new unused
    dependencies
  * data/50unattended-upgrades:
    - add example setting for the apt bandwidth limit option
      (closes: #557258)
  * fix bug in conffile prompt check (LP: #336558)
  * lintian fixes

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 15 Jan 2010 13:27:53 +0100

unattended-upgrades (0.52ubuntu1) karmic; urgency=low

  * Add new option "Unattended-Upgrade::Automatic-Reboot" that 
    will automatically reboot without confirmation if the upgrade
    requires a reboot (off by default) LP: #400018
  * fix typo in filename (LP: #397810)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 20 Jul 2009 13:36:14 +0200

unattended-upgrades (0.51ubuntu1) karmic; urgency=low

  * unattended-upgrade-shutdown:
    - deal with syslog not avaiable (LP: #396263)
  * pm/sleep.d/10_unatteded-upgrades-hibernate:
    - add script to ensure that installing is finished when
      hibernating (LP: #191514)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 10 Jul 2009 10:20:47 +0200

unattended-upgrades (0.50ubuntu2) karmic; urgency=low

  * Add sanity-check on clean to prevent uploads with Python syntax errors.
  * Fix syntax error in unattended-upgrades-shutdown (LP: #396134).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 06 Jul 2009 17:34:25 +0100

unattended-upgrades (0.50ubuntu1) karmic; urgency=low

  * fix crash in ouput, thanks to Joerg Schuetter, closes: #535347
  * when running in --debug mode, also print debug output to stderr
  * add --dry-run option to simulate a run, but not actually install
    something 
  * when running with --debug, install packages instead of just
    simulating the install, --dry-run is avaialble for simulation
  * check for packages on hold and do not upgrade them (closes: #511677)
  * deal better with failures in pkgname_from_deb() (LP: #305046)
  * improved the README some more (LP: #311052)
  * fix locking problem (LP: #359010)
  * Contain unattended-upgrades log in the status mail as well 
    (LP: #245422)
  * ensure that unattended-upgrade is finished on shutdown 
    (LP: #191514)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 06 Jul 2009 09:26:48 +0200

unattended-upgrades (0.42ubuntu1) karmic; urgency=low

  * debian/po/sk.po:
    - new translation, thanks to helix84, closes: #532959
  * debian/po/ru.po:
    - updated, thanks to Yuri Kozlov, closes: #527111
  * debian/po/eu.po:
    - updated, thanks to Piarres Beobide, closes: #513436
  * debian/links
    - add symlink to make binary name and package name match, 
      closes: #428965

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 16 Jun 2009 11:52:32 +0200

unattended-upgrades (0.42debian2) UNRELEASED; urgency=low

  * apply patch by Julian Andres Klode to move to the new
    python-apt 0.8 API (closes: #572088)

 -- Michael Vogt <mvo@debian.org>  Wed, 21 Apr 2010 10:19:05 +0200

unattended-upgrades (0.42debian1) unstable; urgency=low

  * debian/po/sk.po:
    - new translation, thanks to helix84, closes: #532959
  * debian/po/ru.po:
    - updated, thanks to Yuri Kozlov, closes: #527111
  * debian/po/eu.po:
    - updated, thanks to Piarres Beobide, closes: #513436
  * debian/links
    - add symlink to make binary name and package name match, 
      closes: #428965

 -- Michael Vogt <mvo@debian.org>  Thu, 25 Jun 2009 16:07:29 +0200

unattended-upgrades (0.41ubuntu1) karmic; urgency=low

  * fix lintian warnings
  * add man-page (closes: #394277)
  * debian/po/cs.po:
    - updated Czech translation (thanks to Vítězslav Kotrla)
      closes: #532136
  * add kept back packages to the status email (thanks to
    Maximilian Gaukler, closes: #526505)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 15 Jun 2009 10:27:51 +0200

unattended-upgrades (0.41debian1) unstable; urgency=low

  * fix lintian warnings
  * add man-page (closes: #394277)
  * debian/po/cs.po:
    - updated Czech translation (thanks to Vítězslav Kotrla)
      closes: #532136
  * add kept back packages to the status email (thanks to
    Maximilian Gaukler, closes: #526505)

 -- Michael Vogt <mvo@debian.org>  Wed, 10 Jun 2009 20:36:39 +0200

unattended-upgrades (0.40ubuntu1) karmic; urgency=low

  * data/50unattended-upgrades:
    - updated for karmic
  * unattended-upgrade:
    - use the new python-apt API to avoid deprecation 
      warnings
  * debian/control:
    - update depends on python-apt to (>= 0.7.9)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 06 May 2009 21:54:16 +0200

unattended-upgrades (0.40debian1) unstable; urgency=low

  * unattended-upgrade:
    - use the new python-apt apt.Package.Version class when
      checking for the candidate origin (closes: #526791)
  * data/50unattended-upgrades:
    - updated for squeeze

 -- Michael Vogt <mvo@debian.org>  Wed, 06 May 2009 08:18:50 +0200

unattended-upgrades (0.39debian1) unstable; urgency=low

  * Merging new Ubuntu release

 -- Michael Vogt <mvo@debian.org>  Tue, 03 Mar 2009 08:38:08 +0100

unattended-upgrades (0.39) jaunty; urgency=low

  * debian/po/fr.po:
    - updated french translation (closes: #511373)
  * debian/po/es.po:
    - added spanish translation (closes: #512213)
  * fix crash in rewind_packages (closes: #517510)
  * debian/rules:
    - add --install-layout=deb to avoid that the binaries and
      the locales get installed into /usr/local

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 02 Mar 2009 10:51:23 +0100

unattended-upgrades (0.38) jaunty; urgency=low

  * debian/po:
    - add ru.po debian template (closes: #509032)
    - add eu.po debian template (closes: #508983)
    - add fr.po debian template (closes: #508389)
    - add ja.po debian template (closes: #509343)
    - add fi.po debian template (closes: #509370)
  * po/eu.po:
    - added eu.po translation (closes: #508984)
    - added ja.po translation (closes: #509748)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Sat, 05 Jan 2009 10:38:34 +0100

unattended-upgrades (0.37debian1) unstable; urgency=low

  * debian/po:
    - add ru.po debian template (closes: #509032)
    - add eu.po debian template (closes: #508983)
    - add fr.po debian template (closes: #508389)
    - add ja.po debian template (closes: #509343)
    - add fi.po debian template (closes: #509370)
  * po/eu.po:
    - added eu.po translation (closes: #508984)
    - added ja.po translation (closes: #509748)

 -- Michael Vogt <mvo@debian.org>  Mon, 05 Jan 2009 10:34:14 +0100

unattended-upgrades (0.37) jaunty; urgency=low

  * better debconf template and description (thanks to the 
    debian-l10 team (closes: #508136)
  * debian/po/sv.po:
    - add sv.po debian template (closes: #508225)
  * debian/po/it.po:
    - add it.po debian template (closes: #508193)
  * debian/po/ja.po:
    - add ja.po debian template (closes: #508564)
  * debian/po/de.po:
    - add de.po debian template (closes: #508481)
  * po/fr.po:
    - add fr.po translation (closes: #508390)
  * po/cs.po:
    - add cs.po translation (closes: #508702)
  * po/pt.po:
    - add pt.po translation (closes: #508705)
  * unattended-upgrade:
    - better default permissions of the install log
      (closes: #507638)
    - only disable apt-listchanges if it is not set to
      'mail' (closes: #507639)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 15 Dec 2008 09:46:42 +0100

unattended-upgrades (0.36debian1) unstable; urgency=low

  * merge from ubuntu:
    * make cache calculations quicker (thanks to Ben Hutchings,
      closes #475610)
    * add hostname in mail header, thanks to  Arthur de Jong
      (closes: #502171, LP: #245417)
    * better email summary of the performed actions
      (closes: #502351)
    * be more robust against failures to read the deb (LP: #227448)
  * better debconf template and description (thanks to the 
    debian-l10 team (closes: #508136)
  * debian/po/sv.po:
    - add sv.po debian template (closes: #508225)
  * debian/po/it.po:
    - add it.po debian template (closes: #508193)
  * debian/po/ja.po:
    - add ja.po debian template (closes: #508564)
  * debian/po/de.po:
    - add de.po debian template (closes: #508481)
  * po/fr.po:
    - add fr.po translation (closes: #508390)
  * po/cs.po:
    - add cs.po translation (closes: #508702)
  * po/pt.po:
    - add pt.po translation (closes: #508705)
  * unattended-upgrade:
    - better default permissions of the install log
      (closes: #507638)
    - only disable apt-listchanges if it is not set to
      'mail' (closes: #507639)

 -- Michael Vogt <mvo@debian.org>  Tue, 09 Dec 2008 01:45:31 +0100

unattended-upgrades (0.36) jaunty; urgency=low

  * make cache calculations quicker (thanks to Ben Hutchings,
    closes #475610)
  * add hostname in mail header, thanks to  Arthur de Jong
    (closes: #502171, LP: #245417)
  * better email summary of the performed actions
    (closes: #502351)
  * be more robust against failures to read the deb (LP: #227448)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 26 Nov 2008 21:31:42 +0100

unattended-upgrades (0.35debian1) unstable; urgency=low

  * merge from ubuntu (new upstream release)
  * add debconf prompt (priority medium) that asks if auto 
    updates should be enabled

 -- Michael Vogt <mvo@debian.org>  Wed, 26 Nov 2008 10:46:08 +0100

unattended-upgrades (0.35) jaunty; urgency=low

  * updated for jaunty
  * improved README to make it clerer where the values of
    (origin, archive) come from (thanks to 

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 26 Nov 2008 10:44:31 +0100

unattended-upgrades (0.32ubuntu2) intrepid; urgency=low

  * Updated for intrepid (and updated gutsy references too!)

 -- Sarah Hobbs <hobbsee@ubuntu.com>  Mon, 13 Oct 2008 22:40:21 +1100

unattended-upgrades (0.32ubuntu1) intrepid; urgency=low

  * Add debconf question to ask whether automatic updates should be configured
    by default: add debconf template, postinst and postrm scripts that uses
    ucf to manage /etc/apt/apt.conf.d/20auto-upgrades since we don't want to
    enable automatic updates by default. (LP: #84918)

 -- Mathias Gug <mathiaz@ubuntu.com>  Wed, 08 Oct 2008 21:01:52 -0400

unattended-upgrades (0.31ubuntu1) intrepid; urgency=low

  [ Michael Vogt ]
  * fix i18n and add build-dependency to python-distutils-extra

  [ Brian Murray ]
  * string fix for "Automatically" in 50unattended-upgrades (LP: #209049)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 23 Jul 2008 19:39:05 +0200

unattended-upgrades (0.30ubuntu1) hardy; urgency=low

  [ John Edwards ]
  * fix missing spaces in the log file (LP: #136452)
  * add better comments and examples to data/50unattended-upgrades

  [ Michael Vogt ]
  * README improved based on Johns suggestions (thanks!)
  * fix grammer and dated reference to dapper (LP: #140038),
    thanks to Christer Edwards for the suggestions
  * add "mailx" to suggests (LP: #137994)
  * show propper log output if mail is not available (LP: #137994)
  * show packages that are held back from the upgrade because of
    conffile prompt in the log as a warning (LP: #133551)
  * create logdir if it does not exist (LP: #87338)
  * fix error when installing from file:// uris (LP: #56832)
  
 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 10 Mar 2008 11:57:17 +0100

unattended-upgrades (0.26ubuntu1) hardy; urgency=low

  * updated for hardy

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 05 Feb 2008 13:36:18 +0100

unattended-upgrades (0.25.3ubuntu1) gutsy; urgency=low

  * merged patch from Tuomas Jormola to detect if 
    dpkg --force-conf(new|old) is set (LP: #135247)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 11 Sep 2007 21:37:13 +0200

unattended-upgrades (0.25.2ubuntu1) gutsy; urgency=low

  * do not run with broken cache
  * use ubuntu version number to keep auto-sync from coming for us

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 11 Jul 2007 11:19:49 +0100

unattended-upgrades (0.25.1debian1-0.1) unstable; urgency=low

  * Non-Maintainter Update (BSP)
  * Add dependency on apt (>=0.7) 
    (closes: #475611)

 -- Bas Zoetekouw <bas@debian.org>  Sat, 14 Jun 2008 14:55:51 +0200

unattended-upgrades (0.25.1debian1) unstable; urgency=low

  * documentation updated

 -- Michael Vogt <mvo@debian.org>  Thu, 07 Jun 2007 13:36:47 +0200
  
unattended-upgrades (0.25.1) gutsy; urgency=low

  * documentation updated

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 08 Jun 2007 14:50:10 +0200

unattended-upgrades (0.25ubuntu1) gutsy; urgency=low

  * updated for gutsy

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 16 May 2007 15:21:11 +0200

unattended-upgrades (0.24debian1) unstable; urgency=low

  * new upstream version

 -- Michael Vogt <mvo@debian.org>  Tue, 24 Apr 2007 23:34:15 +0200
  
unattended-upgrades (0.23ubuntu3) feisty-proposed; urgency=low

  * added missing README (thanks to siretart, LP#109564)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 24 Apr 2007 11:26:48 +0200

unattended-upgrades (0.22ubuntu2) feisty; urgency=low

  * fail if not runing as root (LP#72514)
  * do not crash if a archive can not be found (LP#72249)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 22 Mar 2007 17:14:47 +0100

unattended-upgrades (0.22ubuntu1) feisty; urgency=low

  * be more careful about checking if we actually have a 
    candidateOrigin (lp: #81055)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 23 Jan 2007 11:38:44 +0100

unattended-upgrades (0.22ubuntu0) feisty; urgency=low

  * improved the description
  * added "Unattended-Upgrade::Mail" mail notification

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri,  8 Dec 2006 22:40:42 +0100

unattended-upgrades (0.21ubuntu0) feisty; urgency=low

  * data/50unattended-upgrades:
    - updated for feisty

 -- Michael Vogt <michael.vogt@ubuntu.com>  Fri,  3 Nov 2006 22:31:02 +0100

unattended-upgrades (0.2) unstable; urgency=low

  * initial debian upload

 -- Michael Vogt <mvo@debian.org>  Mon,  2 Oct 2006 11:06:50 +0200

unattended-upgrades (0.1ubuntu6) edgy; urgency=low

  * debian/control:
    - only depend on python-apt

 -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 27 Jul 2006 15:03:46 +0200

unattended-upgrades (0.1ubuntu5) edgy; urgency=low

  * data/apt-check.py:
    - fix in the clear() method
  * data/50unattended-upgrades:
    - updated to include edgy as default 

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue,  4 Jul 2006 11:23:09 +0200

unattended-upgrades (0.1ubuntu4) edgy; urgency=low

  * added misssing apt-utils dependency

 -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 27 Jun 2006 09:36:43 +0200

unattended-upgrades (0.1ubuntu3) dapper; urgency=low

  * debian/dirs: /etc/apt.conf.d -> /etc/apt/apt.conf.d (Ubuntu: #44172)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 29 May 2006 08:34:08 +0200

unattended-upgrades (0.1ubuntu2) dapper; urgency=low

  * unattended-upgrade:
    - fix log output (ubuntu: #43773)
    - fix configuration by providing a example config (ubuntu: #43778)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 10 May 2006 20:20:54 +0200

unattended-upgrades (0.1ubuntu1) dapper; urgency=low

  * work with the latest python-apt api (ubuntu: #38958)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon,  8 May 2006 17:28:38 +0200

unattended-upgrades (0.0+bzr20051201) dapper; urgency=low

  * initial version

 -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 28 Nov 2005 17:04:41 +0100