File: changelog

package info (click to toggle)
partman-crypto 88
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,740 kB
  • ctags: 58
  • sloc: sh: 1,689; ansic: 132; makefile: 20
file content (1522 lines) | stat: -rw-r--r-- 53,381 bytes parent folder | download
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
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
partman-crypto (88) unstable; urgency=medium

  [ Updated translations ]
  * Serbian (sr.po)

 -- Christian Perrier <bubulle@debian.org>  Tue, 07 Jun 2016 15:50:25 +0200

partman-crypto (87) unstable; urgency=medium

  [ Colin Watson ]
  * Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.

 -- Christian Perrier <bubulle@debian.org>  Sun, 14 Feb 2016 19:37:41 +0100

partman-crypto (86) unstable; urgency=high

  * Fix non-preseeded Encrypted LVM installs which were failing due to
    faulty logic in preseeding handling. Many thanks to Adrian Kretz for
    the report and the patch! (Closes: #793643)

 -- Cyril Brulebois <kibi@debian.org>  Wed, 26 Aug 2015 01:22:43 +0200

partman-crypto (85) unstable; urgency=medium

  [ Updated translations ]
  * Hebrew (he.po) by Lior Kaplan

 -- Christian Perrier <bubulle@debian.org>  Fri, 21 Aug 2015 11:57:20 +0200

partman-crypto (84) unstable; urgency=medium

  * Make default crypto parameters preseedable (Closes: #785732). Thanks
    to Jérôme Vizcaino for the report and the patch!
  * Honor specified keyhash algorithm for LUKS (Closes: #785733). Thanks
    to Jérôme Vizcaino for the report and the patch! (bis)

 -- Cyril Brulebois <kibi@debian.org>  Fri, 10 Jul 2015 02:31:45 +0200

partman-crypto (83) unstable; urgency=medium

  [ Updated translations ]
  * Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Fri, 03 Jul 2015 06:13:32 +0200

partman-crypto (82) unstable; urgency=medium

  [ Updated translations ]
  * Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes

 -- Christian Perrier <bubulle@debian.org>  Tue, 19 May 2015 19:23:03 +0200

partman-crypto (81) unstable; urgency=low

  [ Updated translations ]
  * Kazakh (kk.po) by Baurzhan Muftakhidinov

 -- Christian Perrier <bubulle@debian.org>  Wed, 15 Apr 2015 08:58:17 +0200

partman-crypto (80) unstable; urgency=low

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach

 -- Christian Perrier <bubulle@debian.org>  Sun, 05 Apr 2015 14:16:24 +0200

partman-crypto (79) unstable; urgency=low

  [ Updated translations ]
  * Romanian (ro.po) by Bradut Boghita

 -- Christian Perrier <bubulle@debian.org>  Thu, 26 Mar 2015 07:51:46 +0100

partman-crypto (78) unstable; urgency=low

  [ Updated translations ]
  * Esperanto (eo.po) by Felipe Castro
  * Spanish (es.po) by Javier Fernández-Sanguino Peña

 -- Christian Perrier <bubulle@debian.org>  Mon, 08 Dec 2014 06:15:18 +0100

partman-crypto (77) unstable; urgency=medium

  * Cherry-pick bzr r693 from Ubuntu (partman-crypto/40ubuntu2), thanks
    to Colin Watson:
    - Allow preseeding the first passphrase prompt (LP: #546405).
      (Preseeding passphrases for multiple different physical volumes is
      a whole different kettle of fish ...)
  * Cherry-pick bzr r695 from Ubuntu (partman-crypto/40ubuntu3), thanks
    to Colin Watson:
    - Allow preseeding partman-crypto/weak_passphrase too (LP: #546405).
  * Add a security note in debian/partman-crypto.templates, documenting
    the preseedability of the three extra items listed below, warning
    against possible eavesdropping, and suggesting a proper key escrow
    system (Closes: #656710):
    - partman-crypto/passphrase
    - partman-crypto/passphrase-again
    - partman-crypto/weak_passphrase

 -- Cyril Brulebois <kibi@debian.org>  Fri, 24 Oct 2014 12:00:46 +0200

partman-crypto (76) unstable; urgency=low

  [ Updated translations ]
  * Slovenian (sl.po) by Vanja Cvelbar

 -- Christian Perrier <bubulle@debian.org>  Wed, 22 Oct 2014 09:26:30 +0200

partman-crypto (75) unstable; urgency=low

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen
  * Estonian (et.po) by Mattias Põldaru
  * Marathi (mr.po) by sampada
  * Panjabi (pa.po) by A S Alam

 -- Christian Perrier <bubulle@debian.org>  Sat, 20 Sep 2014 14:11:50 +0200

partman-crypto (74) unstable; urgency=high

  * Cope with parted 3.2 automatically creating a partition when creating a
    fresh loop label (closes: #757663).

 -- Colin Watson <cjwatson@debian.org>  Sun, 10 Aug 2014 16:10:58 +0100

partman-crypto (73) unstable; urgency=low

  [ Updated translations ]
  * Greek (el.po) by galaxico
  * Ukrainian (uk.po) by Anton Gladky

 -- Christian Perrier <bubulle@debian.org>  Tue, 13 May 2014 07:26:30 +0200

partman-crypto (72) unstable; urgency=low

  * Add a lintian override for untranslatable-debconf-templates

  [ Updated translations ]
  * Portuguese (pt.po) by Miguel Figueiredo

 -- Christian Perrier <bubulle@debian.org>  Thu, 08 May 2014 18:32:26 +0200

partman-crypto (71) unstable; urgency=low

  [ Updated translations ]
  * German (de.po) by Holger Wansing
  * Korean (ko.po) by Changwoo Ryu

 -- Christian Perrier <bubulle@debian.org>  Wed, 19 Mar 2014 14:32:07 +0100

partman-crypto (70) unstable; urgency=medium

  [ Updated translations ]
  * Italian (it.po) by Milo Casagrande

 -- Cyril Brulebois <kibi@debian.org>  Fri, 14 Mar 2014 18:10:10 +0100

partman-crypto (69) unstable; urgency=low

  [ Updated translations ]
  * Belarusian (be.po) by Viktar Siarheichyk
  * Tajik (tg.po) by Victor Ibragimov
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Mon, 06 Jan 2014 07:36:25 +0100

partman-crypto (68) unstable; urgency=low

  [ Updated translations ]
  * Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Christian Perrier <bubulle@debian.org>  Sat, 21 Dec 2013 13:49:25 +0100

partman-crypto (67) unstable; urgency=low

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Croatian (hr.po) by Tomislav Krznar
  * Polish (pl.po) by Michał Kułach
  * Slovak (sk.po) by Ivan Masár
  * Uyghur (ug.po) by Abduqadir Abliz

 -- Christian Perrier <bubulle@debian.org>  Fri, 13 Dec 2013 19:40:33 +0100

partman-crypto (66) unstable; urgency=low

  [ Thiemo Nagel ]
  * Use the same security setting for wiping existing volumes
    than previous settings, when the volume was already encrypted.
    Closes: #726448

 -- Christian Perrier <bubulle@debian.org>  Sat, 09 Nov 2013 09:14:39 +0100

partman-crypto (65) unstable; urgency=low

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * French (fr.po) by Christian Perrier
  * Japanese (ja.po) by Kenshi Muto
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Christian Perrier <bubulle@debian.org>  Wed, 06 Nov 2013 06:49:03 +0100

partman-crypto (64) unstable; urgency=low

  [ Thiemo Nagel ]
  * Make "Erasing data" step optional. blockdev-wipe is too slow
    Closes: #722898
  * blockdev-wipe: Set blocksize to 512k
  * blockdev-wipe: Sync at most once per second
  * blockdev-wipe: Allocate buffer from heap instead of stack
  * blockdev-wipe: Reduce progress indicator granularity to 1/1000

  [ Updated translations ]
  * Polish (pl.po) by Michał Kułach

 -- Christian Perrier <bubulle@debian.org>  Wed, 30 Oct 2013 20:24:43 +0100

partman-crypto (63) unstable; urgency=low

  [ Thiemo Nagel ]
  * remove broken BLKGETSIZE fallback from blockdev-wipe. Closes: #722696

 -- Christian Perrier <bubulle@debian.org>  Wed, 02 Oct 2013 07:26:54 +0200

partman-crypto (61) unstable; urgency=low

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Sun, 08 Sep 2013 19:33:44 +0200

partman-crypto (60) unstable; urgency=low

  [ Dmitrijs Ledkovs ]
  * Guard with apt-install '|| true' in case apt-install exists with error
    code 1, indicating delayed installation.
  * Set debian source format to '3.0 (native)'.

 -- Christian Perrier <bubulle@debian.org>  Sat, 13 Jul 2013 14:26:27 +0200

partman-crypto (59) unstable; urgency=low

  * Add myself to uploads.
  * Bump debhelper compat to 9.
  * Use standard VCS URLs.
  * Move unsafe swap checks from commit.d to check.d to be executed
    earlier and thus returning quicker back to partitioning menu
  * Install cryptsetup user space utilities, earlier, in finish.d instead
    of post-base-installer.d. This way cryptsetup utilities are installed
    if post-base-installer is not executed at all (like in ubiquity) or
    didn't manage to run for any other reason. This is also more inline
    with other fs-specific utilities and other partman-* packages.

 -- Dmitrijs Ledkovs <dmitrijs.ledkovs@canonical.com>  Thu, 23 May 2013 12:05:59 +0100

partman-crypto (58) unstable; urgency=low

  [ Dmitrijs Ledkovs ]
  * Remove remaining loop-aes code.

  [ Colin Watson ]
  * Remove redundant and unused debian/install file.
  * Use correct compiler and strip when cross-building.

  [ Updated translations ]
  * Croatian (hr.po) by Tomislav Krznar

 -- Christian Perrier <bubulle@debian.org>  Thu, 16 May 2013 18:42:44 +0200

partman-crypto (57) unstable; urgency=low

  [ Updated translations ]
  * Croatian (hr.po) by Tomislav Krznar

 -- Christian Perrier <bubulle@debian.org>  Sat, 30 Mar 2013 17:39:01 +0100

partman-crypto (56) unstable; urgency=low

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach

 -- Christian Perrier <bubulle@debian.org>  Wed, 12 Dec 2012 07:15:01 +0100

partman-crypto (55) unstable; urgency=low

  * Add myself to Uploaders.

  [ Updated translations ]
  * Asturian (ast.po) by ivarela
  * Spanish (es.po) by Javier Fernández-Sanguino
  * Ukrainian (uk.po) by Yuri Chornoivan

 -- Christian Perrier <bubulle@debian.org>  Tue, 16 Oct 2012 12:37:34 +0200

partman-crypto (54) unstable; urgency=low

  [ Bastian Blank ]
  * Disable loop-aes support. (closes: #680943)
  * Support and use xts-plain64 by default. (closes: #482092)
    - Double key size if xts mode is selected.

 -- Julien Cristau <jcristau@debian.org>  Fri, 03 Aug 2012 10:36:03 +0200

partman-crypto (53) unstable; urgency=low

  * Team upload

  [ Updated translations ]
  * Croatian (hr.po) by Tomislav Krznar
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)

 -- Christian Perrier <bubulle@debian.org>  Sun, 24 Jun 2012 08:27:54 +0200

partman-crypto (52) unstable; urgency=low

  * Team upload

  [ Updated translations ]
  * Galician (gl.po) by Jorge Barreiro

 -- Christian Perrier <bubulle@debian.org>  Sun, 17 Jun 2012 12:51:26 +0200

partman-crypto (51) unstable; urgency=low

  * Team upload
  * Replace XC-Package-Type with Package-Type

  [ Updated translations ]
  * Tibetan (bo.po) by Tennom
  * Welsh (cy.po) by Dafydd Tomos
  * Galician (gl.po) by Jorge Barreiro
  * Lithuanian (lt.po) by Rimas Kudelis
  * Latvian (lv.po) by Rūdolfs Mazurs
  * Macedonian (mk.po) by Arangel Angov
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)

 -- Christian Perrier <bubulle@debian.org>  Sat, 16 Jun 2012 07:30:33 +0200

partman-crypto (50) unstable; urgency=low

  [ Updated translations ]
  * Asturian (ast.po) by Mikel González
  * Bulgarian (bg.po) by Damyan Ivanov
  * Danish (da.po) by Joe Hansen
  * Estonian (et.po) by Mattias Põldaru
  * Indonesian (id.po) by Mahyuddin Susanto
  * Icelandic (is.po) by Sveinn í Felli
  * Kannada (kn.po) by Prabodh C P
  * Dutch (nl.po) by Jeroen Schot

 -- Otavio Salvador <otavio@debian.org>  Thu, 15 Mar 2012 14:59:17 -0300

partman-crypto (49) unstable; urgency=low

  * Merge from Ubuntu:
    - Allow crypto kernel modules to be built-in.
  * The fix for #642115 was actually working around a 'dmsetup table' output
    format regression in libdevmapper 1.02.65 / lvm2 2.02.86, fixed in
    libdevmapper 1.02.66 / lvm2 2.02.87.  For robustness, handle both old
    and new output formats (closes: #647540, LP: #892903).

  [ Updated translations ]
  * Hebrew (he.po) by Lior Kaplan
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Kannada (kn.po) by vignesh prabhu
  * Polish (pl.po) by Marcin Owsiany

 -- Colin Watson <cjwatson@debian.org>  Mon, 21 Nov 2011 23:49:12 +0000

partman-crypto (48) unstable; urgency=low

  * Fix parsing of dmsetup table output, so it will actually detect when
    swap is on crypto. Closes: #642115 (Thanks Jon Dowland for debugging it.)

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * German (de.po) by Holger Wansing
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Kumar Appaiah
  * Italian (it.po) by Milo Casagrande
  * Korean (ko.po) by Changwoo Ryu
  * Macedonian (mk.po) by Arangel Angov
  * Polish (pl.po) by Marcin Owsiany
  * Romanian (ro.po) by Ioan Eugen Stan
  * Sinhala (si.po) by Danishka Navin
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Joey Hess <joeyh@debian.org>  Tue, 20 Sep 2011 12:01:12 -0400

partman-crypto (47) unstable; urgency=low

  * Team upload

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * Esperanto (eo.po) by Felipe Castro
  * Spanish (es.po) by Javier Fernández-Sanguino
  * Estonian (et.po) by Mattias Põldaru
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Korean (ko.po) by Changwoo Ryu
  * Nepali (ne.po)
  * Romanian (ro.po) by Eddy Petrișor
  * Northern Sami (se.po) by Børre Gaup
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Telugu (te.po) by Arjuna Rao Chavala
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Uyghur (ug.po) by Sahran

 -- Christian Perrier <bubulle@debian.org>  Sun, 24 Apr 2011 12:43:47 +0200

partman-crypto (46) unstable; urgency=low

  [ Colin Watson ]
  * Include <sys/mount.h> for BLKGETSIZE rather than <linux/fs.h>.

  [ Updated translations ]
  * Lao (lo.po) by Anousak Souphavanh
  * Malayalam (ml.po) by Praveen Arimbrathodiyil
  * Sinhala (si.po) by Danishka Navin
  * Slovenian (sl.po) by Vanja Cvelbar
  * Telugu (te.po) by Arjuna Rao Chavala

 -- Otavio Salvador <otavio@debian.org>  Fri, 24 Dec 2010 19:15:49 -0200

partman-crypto (45) unstable; urgency=low

  [ Colin Watson ]
  * Use 'dh $@ --options' rather than 'dh --options $@', for
    forward-compatibility with debhelper v8.

  [ Updated translations ]
  * Asturian (ast.po) by maacub
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bengali (bn.po) by Israt Jahan
  * Bosnian (bs.po) by Armin Beirovi
  * Catalan (ca.po) by Jordi Mallach
  * Danish (da.po) by Jacob Sparre Andersen
  * Persian (fa.po) by Behrad Eslamifar
  * Finnish (fi.po) by Esko Arajrvi
  * Icelandic (is.po) by Sveinn  Felli
  * Korean (ko.po) by Changwoo Ryu
  * Kurdish (ku.po) by Erdal Ronahi
  * Serbian (sr.po) by Karolina Kalic
  * Telugu (te.po) by Arjuna Rao Chavala

 -- Otavio Salvador <otavio@debian.org>  Fri, 12 Nov 2010 10:20:57 -0200

partman-crypto (44) unstable; urgency=low

  [ Updated translations ]
  * Belarusian (be.po) by Viktar Siarheichyk
  * Bengali (bn.po) by Israt Jahan
  * Bosnian (bs.po) by Armin Beširović
  * Catalan (ca.po) by Jordi Mallach
  * Dzongkha (dz.po) by Jurmey Rabgay
  * Persian (fa.po) by acathur
  * Croatian (hr.po) by Josip Rodin
  * Hungarian (hu.po) by SZERVÁC Attila
  * Indonesian (id.po) by Arief S Fitrianto
  * Georgian (ka.po) by Aiet Kolkhi
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Central Khmer (km.po) by Khoem Sokhem
  * Kurdish (ku.po) by Erdal Ronahi
  * Latvian (lv.po) by Aigars Mahinovs
  * Macedonian (mk.po) by Arangel Angov
  * Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Romanian (ro.po) by ioan-eugen stan
  * Ukrainian (uk.po) by Borys Yanovych

 -- Christian Perrier <bubulle@debian.org>  Sun, 11 Jul 2010 19:07:00 +0200

partman-crypto (43) unstable; urgency=low

  * Register partman-crypto/confirm_nooverwrite, associated with the
    partman-crypto/confirm template.

  [ Updated translations ]
  * German (de.po) by Holger Wansing
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * French (fr.po) by Christian Perrier
  * Hindi (hi.po) by Kumar Appaiah
  * Marathi (mr.po) by Sampada
  * Panjabi (pa.po) by A S Alam
  * Tamil (ta.po) by Dr,T,Vasudevan

 -- Colin Watson <cjwatson@debian.org>  Tue, 27 Apr 2010 10:56:22 +0100

partman-crypto (42) unstable; urgency=low

  * Actually install the post-base-installer hook script.

  [ Updated translations ]
  * Slovenian (sl.po) by Vanja Cvelbar

 -- Frans Pop <fjp@debian.org>  Tue, 09 Mar 2010 21:32:36 +0100

partman-crypto (41) unstable; urgency=low

  * Move installation of dmsetup to post-base-installer hook script.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Belarusian (be.po) by Pavel Piatruk
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bengali (bn.po) by Israt Jahan
  * German (de.po) by Holger Wansing
  * Greek, Modern (1453-) (el.po)
  * Galician (gl.po) by Marce Villarino
  * Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
  * Panjabi (pa.po) by A S Alam
  * Polish (pl.po) by Bartosz Fenski
  * Slovenian (sl.po) by Vanja Cvelbar
  * Simplified Chinese (zh_CN.po) by 苏运强

 -- Frans Pop <fjp@debian.org>  Mon, 22 Feb 2010 04:08:26 +0100

partman-crypto (40) unstable; urgency=low

  [ Colin Watson ]
  * Upgrade to debhelper v7.
  * Fix typo that broke detection of crypto devices in crypto_allowed.

  [ Frans Pop ]
  * Remove no longer needed Lintian override for missing Standards-
    Version field.

  [ Updated translations ]
  * Amharic (am.po) by Tegegne Tefera
  * Arabic (ar.po) by Ossama M. Khayat
  * Asturian (ast.po) by Marcos Antonio Alvarez Costales
  * Danish (da.po) by Ask Hjorth Larsen
  * German (de.po) by Holger Wansing
  * Greek, Modern (1453-) (el.po) by Emmanuel Galatoulas
  * Estonian (et.po) by Mattias Põldaru
  * Finnish (fi.po) by Esko Arajärvi
  * Hindi (hi.po)
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Turkish (tr.po) by Mert Dirik
  * Vietnamese (vi.po) by Clytie Siddall

 -- Colin Watson <cjwatson@debian.org>  Tue, 10 Nov 2009 14:19:34 +0000

partman-crypto (39) unstable; urgency=low

  * Use ask_active_partition from partman-base >= 133 and
    add corresponding versioned depends.
  * Use partman_list_allowed from partman-base.
  * Correct call to disable_swap. Requires partman-base >= 134.
  * Use UUID= to specify source device in /etc/crypttab.

  [ Updated translations ]
  * Esperanto (eo.po) by Felipe Castro
  * Estonian (et.po) by Mattias Põldaru
  * Basque (eu.po) by Piarres Beobide
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Simplified Chinese (zh_CN.po) by Deng Xiyue

 -- Max Vozeler <xam@debian.org>  Fri, 07 Aug 2009 15:49:09 +0200

partman-crypto (38) unstable; urgency=low

  * Merge from Ubuntu:
    - Handle dm_mod and dm_crypt specially in crypto_load_module, to cope
      with them being built-in.
    - Add a menu under "Configure encrypted volumes", making this more in
      line with partman-lvm and partman-md.
    - Rearrange crypto configuration. Instead of requiring partitions to be
      set for use as physical volumes for encryption first, we now offer all
      partitions that could be used as physical volumes, and automatically
      set them up that way on request. (Unlike LVM and RAID, we still offer
      the configuration menu for each partition being newly set up this way,
      since it's the only opportunity the user will have to change
      encryption settings.) This allows us to offer our main menu option
      more or less all the time, and should require many fewer keystrokes to
      operate. Thanks to Max Vozeler for review.
  * Don't require depmod on successive runs of crypto_load_udebs.

  [ Updated translations ]
  * Asturian (ast.po) by Marcos Alvarez Costales
  * Belarusian (be.po) by Pavel Piatruk
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Holger Wansing
  * Esperanto (eo.po) by Felipe Castro
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Hindi (hi.po)
  * Italian (it.po) by Milo Casagrande
  * Japanese (ja.po) by Kenshi Muto
  * Marathi (mr.po) by Sampada
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Turkish (tr.po) by Mert Dirik
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke
  * Simplified Chinese (zh_CN.po) by Deng Xiyue

 -- Colin Watson <cjwatson@debian.org>  Tue, 28 Jul 2009 19:11:05 +0100

partman-crypto (37) unstable; urgency=low

  [ Colin Watson ]
  * Merge from Ubuntu:
    - Honour partman/default_filesystem. Requires partman-base 129.
  * Use 'printf %s' rather than 'echo -n' for portability, to ease testing
    under different shells.

  [ Updated translations ]
  * Asturian (ast.po) by Marcos Alvarez Costales
  * Bengali (bn.po) by Md. Rezwan Shahid
  * Estonian (et.po) by Mattias Põldaru
  * Basque (eu.po) by Piarres Beobide
  * Galician (gl.po) by marce villarino
  * Hindi (hi.po) by Kumar Appaiah
  * Italian (it.po) by Milo Casagrande
  * Kazakh (kk.po) by Dauren Sarsenov
  * Malayalam (ml.po) by Praveen Arimbrathodiyil
  * Marathi (mr.po) by Sampada
  * Russian (ru.po) by Yuri Kozlov
  * Tagalog (tl.po) by Eric Pareja
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke

 -- Christian Perrier <bubulle@debian.org>  Sat, 13 Jun 2009 08:01:52 +0200

partman-crypto (36) unstable; urgency=low

  [ Updated translations ]
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
  * Bosnian (bs.po) by Armin Besirovic
  * Catalan (ca.po) by Jordi Mallach
  * Danish (da.po)
  * Esperanto (eo.po) by Felipe Castro
  * Hebrew (he.po) by Omer Zak
  * Hindi (hi.po) by Kumar Appaiah
  * Croatian (hr.po) by Josip Rodin
  * Hungarian (hu.po) by SZERVÁC Attila
  * Georgian (ka.po) by Aiet Kolkhi
  * Central Khmer (km.po) by KHOEM Sokhem
  * Kurdish (ku.po) by Amed Çeko Jiyan
  * Latvian (lv.po) by Aigars Mahinovs
  * Macedonian (mk.po) by Arangel Angov
  * Nepali (ne.po) by Shiva Prasad Pokharel
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Russian (ru.po) by Yuri Kozlov
  * Albanian (sq.po) by Elian Myftiu
  * Serbian (sr.po) by Veselin Mijušković
  * Tamil (ta.po) by Dr.T.Vasudevan
  * Ukrainian (uk.po) by Євгеній Мещеряков
  * Simplified Chinese (zh_CN.po) by Deng Xiyue

 -- Otavio Salvador <otavio@debian.org>  Sun, 21 Sep 2008 21:09:33 -0300

partman-crypto (35) unstable; urgency=low

  [ Jérémy Bobbio ]
  * Preserve "align" capability in call_entropy_plugin().

  [ Updated translations ]
  * Greek, Modern (el.po) by Emmanuel Galatoulas
  * Kurdish (ku.po) by Erdal Ronahi
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Jérémy Bobbio <lunar@debian.org>  Mon, 25 Aug 2008 21:10:59 +0200

partman-crypto (34) unstable; urgency=low

  [ Jérémy Bobbio ]
  * Divide the progress bar in 65536 parts when erasing disk data.
    The previous setting (100) was a bit low to allow reactive cancellation.
    (Closes: #492899)
  * Update to the new debconf_select interface.
    Requires partman-base (>= 124).
  * Preserve "align" capability in crypto_do_wipe() and after running
    anna-install in crypto_load_udebs().
    Requires cdebconf (>= 0.133).
  * Use cdebconf's new column alignment feature for active_partition.
    Requires partman-base (>= 124).

  [ Frans Pop ]
  * finish-install.d: loop-aes-* packages are obsolete, only try to install
    loop-aes-modules-* packages.

  [ Updated translations ]
  * French (fr.po) by Christian Perrier
  * Croatian (hr.po) by Josip Rodin
  * Turkish (tr.po) by Mert Dirik

 -- Otavio Salvador <otavio@debian.org>  Tue, 05 Aug 2008 13:51:40 -0300

partman-crypto (33) unstable; urgency=low

  [ Max Vozeler ]
  * The dm_crypt module is moving into a separate package
    crypto-dm-modules starting with kernel udebs for 2.6.25-2.
    Make partman-crypto-dm depend on it.
  * Only reset crypto options when changing the crypto type.

  [ Frans Pop ]
  * Move Encryption method above new divider in partition options dialog.
    This is an indicator to users that other options depend on the selected
    encryption method (see #478598).
  * Add note in dialog that changing the encryption method will reset other
    fields to their defaults. Closes: #478598.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Belarusian (be.po) by Pavel Piatruk
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Jens Seidel
  * Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Iñaki Larrañaga Murgoitio
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Indonesian (id.po) by Arief S Fitrianto
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Kurdish (ku.po) by Erdal Ronahi
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Marathi (mr.po) by Sampada
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
  * Dutch (nl.po) by Bart Cornelis
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrișor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Slovenian (sl.po) by Matej Kovacic
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Turkish (tr.po) by Mert Dirik
  * Vietnamese (vi.po) by Clytie Siddall

 -- Frans Pop <fjp@debian.org>  Wed, 16 Jul 2008 13:55:30 +0200

partman-crypto (32) unstable; urgency=low

  [ Updated translations ]
  * German (de.po) by Jens Seidel
  * Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
  * Hebrew (he.po) by Lior Kaplan
  * Indonesian (id.po) by Arief S Fitrianto
  * Marathi (mr.po) by Sampada
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug

 -- Otavio Salvador <otavio@debian.org>  Thu, 08 May 2008 01:01:48 -0300

partman-crypto (31) unstable; urgency=low

  [ Max Vozeler ]
  * blockdev-keygen: Set backup capability to allow the entropy
    dialog to be cancelled.
  * Consistently use /dev/urandom for volatile one-time keys (key
    type "random") with dm-crypt.

  [ Updated translations ]
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Hungarian (hu.po) by SZERVÁC Attila
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Kurdish (ku.po) by Erdal Ronahi
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Dutch (nl.po) by Frans Pop
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Vietnamese (vi.po) by Clytie Siddall
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Max Vozeler <xam@debian.org>  Sun, 04 May 2008 22:08:33 +0200

partman-crypto (30) unstable; urgency=low

  [ Jérémy Bobbio ]
  * Fix loading of additional packages:
    - make crypto_load_udebs() take more than one argument,
    - properly pluralize "packages" in crypto_prepare_method().
  * Remove partman-crypto-{dm,loop} dependency on cdebconf-entropy:
    anna does not handle depencies on virtual package correctly yet.

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * French (fr.po) by Christian Perrier
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Jérémy Bobbio <lunar@debian.org>  Fri, 18 Apr 2008 18:10:50 +0200

partman-crypto (29) unstable; urgency=low

  [ Jérémy Bobbio ]
  * Make partman-crypto-dm and parman-crypto-loop depends on the virtual
    cdebconf-entropy instead of cdebconf-newt-entropy to be independant of the
    frontend used.  Requires cdebconf-entropy (>= 0.7).
  * Add partman-crypto/entropy-success template which will be be displayed
    when enough entropy has been gathered.
  * Use the "entropy" question type instead of "entropy-text".
  * Substitute FIFO and SUCCESS variables before displaying
    partman-crypto/entropy.

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Arabic (ar.po) by Ossama M. Khayat
  * Bulgarian (bg.po)
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Jens Seidel
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Gujarati (gu.po) by Kartik Mistry
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Marathi (mr.po)
  * Dutch (nl.po) by Frans Pop
  * Panjabi (pa.po) by Amanpreet Singh Brar
  * Portuguese (pt.po) by Miguel Figueiredo
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Romanian (ro.po) by Eddy Petrișor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Vietnamese (vi.po) by Clytie Siddall
  * Simplified Chinese (zh_CN.po) by Ming Hua

 -- Jérémy Bobbio <lunar@debian.org>  Mon, 14 Apr 2008 23:39:54 +0200

partman-crypto (28) unstable; urgency=low

  [ Max Vozeler ]
  * Allow install onto loop-AES encrypted root. Closes: #381895
  * check.d/crypto_check_mountpoints: quote $mnt as it
    may be empty. Closes: #468739
  * commit.d/unsafe_swap: replace open-coded check for
    swap on dm-crypt with call to dm_is_safe(). Closes: #468738
  * Regenerate the initramfs for root on loop-AES.
  * Make veto_filesystems/crypto executable so that it
    actually gets used.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Esperanto (eo.po) by Serge Leblanc
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Max Vozeler <xam@debian.org>  Sat, 08 Mar 2008 17:35:48 +0100

partman-crypto (27) unstable; urgency=low

  [ Updated translations ]
  * Finnish (fi.po) by Esko Arajärvi
  * Hindi (hi.po) by Kumar Appaiah
  * Indonesian (id.po) by Arief S Fitrianto
  * Kurdish (ku.po) by Amed Çeko Jiyan
  * Latvian (lv.po) by Viesturs Zarins
  * Dutch (nl.po) by Frans Pop
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Slovak (sk.po) by Ivan Masár
  * Turkish (tr.po) by Recai Oktaş
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Otavio Salvador <otavio@debian.org>  Fri, 15 Feb 2008 08:57:42 -0200

partman-crypto (26) unstable; urgency=low

  * crypto-base.sh: source new function library ./lib/commit.sh.
    Requires partman-base (>= 115).

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Korean (ko.po) by Changwoo Ryu
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ

 -- Frans Pop <fjp@debian.org>  Sat, 29 Dec 2007 22:12:48 +0100

partman-crypto (25) unstable; urgency=low

  * Moved definitions.sh to ./lib/base.sh.
  * Move crypto-tools.sh to ./lib/crypto-base.
  * finish.d/crypto_config: fix script error when $tmp is empty.
  * crypto-base.sh: use new memfree function from base.sh.
  * Change priority to optional to allow dynamic loading by partman-base.
  * Requires partman-base (>= 114).

  [ Updated translations ]
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ

 -- Frans Pop <fjp@debian.org>  Tue, 11 Dec 2007 14:01:41 +0100

partman-crypto (24) unstable; urgency=low

  [ Max Vozeler ]
  * Use veto_filesystems to allow only ext2 on crypto devices with random
    keys. This is only effective with partman-basicmethods 36 or later.
    Closes: #414638.
  * Replace code to commit partman changes to disk with call to
    commit_changes from partman-base (>= 113) and version the dependency
    accordingly.

  [ Frans Pop ]
  * Rename functions dev_wipe and wipe to be in crypto namespace.
  * Remove progresscancel capability again after erase progress bar to avoid
    all following progress bars to become cancelable as well. Ensure backup
    capability is retained.

  [ Updated translations ]
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ

 -- Frans Pop <fjp@debian.org>  Wed, 05 Dec 2007 13:18:55 +0100

partman-crypto (23) unstable; urgency=low

  [ Colin Watson ]
  * Reduce noise from repeated 'debian/rules clean' runs.

  [ Max Vozeler ]
  * Correct dependencies in base64/Makefile; Thanks to
    Robert Millan for report + patch. Closes: #452830
  * Drop use of the obsolete /dev/loop/ directory
  * Make erase cancellable. Closes: #381898, #400034

  [ Updated translations ]
  * Belarusian (be.po) by Hleb Rubanau
  * Italian (it.po) by Stefano Canepa
  * Korean (ko.po) by Sunjae Park
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Slovak (sk.po) by Ivan Masár

 -- Max Vozeler <xam@debian.org>  Sun, 25 Nov 2007 17:01:43 +0100

partman-crypto (22) unstable; urgency=low

  [ Frans Pop ]
  * For hd-media installs the module loop will already be loaded, which
    prevents loop-aes from being loaded. Attempt to replace loop with loop-aes
    by unmounting the CD image, replacing the module and remounting the image.
    As losetup is not available, we cannot check what exactly is loop-mounted,
    so we just assume that loop is only used for a CD image.
    Many thanks to Nemui Ailin for identifying the issue. Closes: #434027.

  [ Colin Watson ]
  * Use 'mkdir -p' rather than more awkward test-then-create constructions.

 -- Max Vozeler <xam@debian.org>  Sun, 12 Aug 2007 20:31:48 +0200

partman-crypto (21) unstable; urgency=low

  [ Frans Pop ]
  * Move "Use as" option together with raid and lvm. Closes: #414411.
  * Move deletion of SVN directories to install-rc script.
  * Improve the way install-rc is called.

  [ Colin Watson ]
  * Move sanity-checking scripts from finish.d to check.d. Requires
    partman-base 106.

  [ Max Vozeler ]
  * Remove leftover .svn directories from partman-crypto

 -- Max Vozeler <xam@debian.org>  Tue, 22 May 2007 21:14:50 +0200

partman-crypto (20) unstable; urgency=low

  [ Updated translations ]
  * German (de.po) by Jens Seidel
  * Malayalam (ml.po) by Praveen A
  * Dutch (nl.po) by Bart Cornelis
  * Swedish (sv.po) by Daniel Nylander
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Frans Pop <fjp@debian.org>  Tue, 27 Feb 2007 18:19:53 +0100

partman-crypto (19) unstable; urgency=low

  [ Christian Perrier ]
  * Replace "bootloader" by "boot loader" in templates for overall writing style
    consistency.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Danish (da.po) by Claus Hindsgaul
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Kurdish (ku.po) by Amed Çeko Jiyan
  * Latvian (lv.po) by Aigars Mahinovs
  * Malayalam (ml.po) by Praveen A
  * Dutch (nl.po) by Bart Cornelis
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrișor
  * Slovenian (sl.po) by Matej Kovačič
  * Swedish (sv.po) by Daniel Nylander
  * Tamil (ta.po) by drtvasudevan

 -- Frans Pop <fjp@debian.org>  Wed, 31 Jan 2007 12:23:23 +0100

partman-crypto (18) unstable; urgency=low

  [ David Härdeman ]
  * Remove scary warnings in preparation for RC2

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bosnian (bs.po) by Safir Secerovic
  * Catalan (ca.po) by Jordi Mallach
  * Esperanto (eo.po) by Serge Leblanc
  * Georgian (ka.po) by Aiet Kolkhi
  * Kurdish (ku.po) by rizoye-xerzi
  * Latvian (lv.po) by Aigars Mahinovs
  * Malayalam (ml.po) by Praveen A
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Portuguese (pt.po) by Miguel Figueiredo
  * Swedish (sv.po) by Daniel Nylander
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Frans Pop <fjp@debian.org>  Thu, 21 Dec 2006 16:32:02 +0100

partman-crypto (17) unstable; urgency=low

  [ Updated translations ]
  * Dutch (nl.po) by Bart Cornelis

 -- Frans Pop <fjp@debian.org>  Tue, 24 Oct 2006 16:58:50 +0200

partman-crypto (16) unstable; urgency=low

  [ Frans Pop ]
  * crypto_tools.sh: quote variable to avoid syntax error.
  * Ask for passphrase and passphrase confirmation in one db_go.
  * Change template type for empty passphrase to error.

  [ Max Vozeler ]
  * blockdev-keygen: Kill writer pipes on failure and move the
    check for the entropy plugin to the start.
  * Show short name of the crypto device in the mountpoint column
    of the corresponding partition. Closes: #381968, #393919

  [ David Härdeman ]
  * Remove some hardcoded paths
  * Allow safe-swap checks to walk the entire device-mapper tree,
    meaning that swap-on-whatever-on-crypto is now ok. Loosely based
    on a patch from James Westby <jw+debian@jameswestby.net>.
    Closes: #392080

  [ Updated translations ]
  * Belarusian (be.po) by Andrei Darashenka
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Hindi (hi.po) by Nishant Sharma
  * Hungarian (hu.po) by SZERVÁC Attila
  * Icelandic (is.po) by David Steinn Geirsson
  * Kurdish (ku.po) by Erdal Ronahi
  * Macedonian (mk.po) by Georgi Stanojevski
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Nepali (ne.po) by Shiva Prasad Pokharel
  * Dutch (nl.po) by Bart Cornelis
  * Romanian (ro.po) by Eddy Petrișor
  * Russian (ru.po) by Yuri Kozlov
  * Albanian (sq.po) by Elian Myftiu
  * Swedish (sv.po) by Daniel Nylander
  * Tamil (ta.po) by Damodharan Rajalingam
  * Vietnamese (vi.po) by Clytie Siddall
  * Simplified Chinese (zh_CN.po) by Ming Hua

 -- Max Vozeler <xam@debian.org>  Sun, 22 Oct 2006 23:49:42 +0200

partman-crypto (15) unstable; urgency=low

  [ David Härdeman ]
  * Remove some hardcoded paths
  * Change order of tests in crypto_prepare_method. Closes: 390568

  [ Max Vozeler ]
  * finish-install.d/05crypto: Install either loop-aes-$KVERS or
    loop-aes-modules-$KVERS

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Estonian (et.po) by Siim Põder
  * Finnish (fi.po) by Tapio Lehtonen
  * French (fr.po) by Christian Perrier
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Nishant Sharma
  * Hungarian (hu.po) by SZERVÁC Attila
  * Khmer (km.po) by Khoem Sokhem
  * Romanian (ro.po) by Eddy Petrişor
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Max Vozeler <xam@debian.org>  Sat,  7 Oct 2006 19:37:49 +0200

partman-crypto (14) unstable; urgency=low

  [ David Härdeman ]
  * Add fixes for udeb-on-demand loading. Closes: #389456

  [ Max Vozeler ]
  * No need to check for plugin-entropy-text.so as we already
    check db_capb

  [ Updated translations ]
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
  * Catalan (ca.po) by Jordi Mallach
  * Greek, Modern (1453-) (el.po) by quad-nrg.net
  * Esperanto (eo.po) by Serge Leblanc
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Nishant Sharma
  * Croatian (hr.po) by Josip Rodin
  * Italian (it.po) by Giuseppe Sacco
  * Korean (ko.po) by Sunjae park
  * Kurdish (ku.po) by Erdal Ronahi
  * Macedonian (mk.po) by Georgi Stanojevski
  * Dutch (nl.po) by Bart Cornelis
  * Polish (pl.po) by Bartosz Fenski
  * Albanian (sq.po) by Elian Myftiu
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Max Vozeler <xam@debian.org>  Thu, 28 Sep 2006 08:26:35 +0200

partman-crypto (13) unstable; urgency=low

  [ David Härdeman ]
  * Split low memory check into a separate function

 -- Max Vozeler <xam@debian.org>  Mon, 11 Sep 2006 21:43:28 +0200

partman-crypto (12) unstable; urgency=low

  [ David Härdeman ]
  * Allow swap-on-lvm-on-crypto. Closes: 385927

  [ Updated translations ]
  * Danish (da.po) by Claus Hindsgaul
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Latvian (lv.po) by Aigars Mahinovs
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Slovenian (sl.po) by Jure Čuhalev
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Turkish (tr.po) by Recai Oktaş
  * Vietnamese (vi.po) by Clytie Siddall
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke

 -- Max Vozeler <xam@debian.org>  Mon, 11 Sep 2006 07:47:49 +0200

partman-crypto (11) unstable; urgency=low

  [ David Härdeman ]
  * Make partman-crypto-dm and partman-crypto-loop not installed by
    default and instead do on-demand loading in d-i (closes: #384532)

  [ Max Vozeler ]
  * Some minor code cleanups

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Indonesian (id.po) by Arief S Fitrianto
  * Italian (it.po) by Giuseppe Sacco
  * Japanese (ja.po) by Kenshi Muto
  * Dutch (nl.po) by Bart Cornelis
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Northern Sami (se.po) by Børre Gaup
  * Slovak (sk.po) by Peter Mann
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Tagalog (tl.po) by Eric Pareja
  * Turkish (tr.po) by Recai Oktaş

 -- Max Vozeler <xam@debian.org>  Mon, 28 Aug 2006 20:35:57 +0200

partman-crypto (10) unstable; urgency=low

  [ Max Vozeler ]
  * Drop leading "_dev_" from the name of loop-AES keyfiles
  * Yes/no choices for erase data can be translated. Thanks to
    Miroslav Kure. Closes: #382605
  * Limit key sizes for dm-crypt/blowfish. Closes: #381981
  * Add lintian override for no-standards-version-field
  * Check for unencrypted swap in commit.d/unsafe_swap to catch
    setup after encrypted devices. Closes: #381870
  * Set name of dm-crypt devices according to the underlying
    block devices (e.g. hda5_crypt). Closes: #382398

  [ David Härdeman ]
  * Only set the tmp option in crypttab if /tmp is on a random keyed
    mapping (closes: #382374)

  [ Colin Watson ]
  * Use /dev/loop$n if the /dev/loop directory doesn't exist.

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Finnish (fi.po) by Tapio Lehtonen
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hungarian (hu.po) by SZERVÁC Attila
  * Italian (it.po) by Giuseppe Sacco
  * Khmer (km.po) by Khoem Sokhem
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Swedish (sv.po) by Daniel Nylander
  * Tagalog (tl.po) by Eric Pareja
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov
  * Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Max Vozeler <xam@debian.org>  Mon, 21 Aug 2006 14:42:53 +0200

partman-crypto (9) unstable; urgency=low

  [ Max Vozeler ]
  * blockdev-wipe: Open the device with O_SYNC to avoid
    out-of-memory situations during partition erase, which appear
    to be caused by overcommit and a large number of queued
    requests. As a side-effect this helps to provide accurate
    information in the progressbar. Closes: #381135

  * blockdev-wipe: To compensate for the performance impact
    of O_SYNC increase blocksize from 4k to 64k.

  * crypto_tools.sh: Use 128 bit (instead of 256 bit)
    random key when setting up dm-crypt for partition erase.
    This should speed up erase a bit. Also take the key from
    /dev/urandom so we don't risk a blocking read.

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * German (de.po) by Jens Seidel
  * Greek, Modern (1453-) (el.po) by quad-nrg.net
  * Finnish (fi.po) by Tapio Lehtonen
  * Polish (pl.po) by Bartosz Fenski
  * Tagalog (tl.po) by Eric Pareja
  * Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Max Vozeler <xam@debian.org>  Thu,  3 Aug 2006 09:27:11 +0200

partman-crypto (8) unstable; urgency=low

  [ David Härdeman ]
  * Rename some files to make their purpose clearer.
  * Depend on base-installer to install cryptsetup when necessary before
    the initramfs is generated (requires base-installer 1.61).

  [ Max Vozeler ]
  * Add loop-AES ciphers to /etc/modules. Closes: #378687

  [ Updated translations ]
  * Estonian (et.po) by Siim Põder
  * Gujarati (gu.po) by Kartik Mistry
  * Japanese (ja.po) by Kenshi Muto
  * Panjabi; Punjabi (pa.po) by A S Alam
  * Swedish (sv.po) by Daniel Nylander
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Max Vozeler <xam@debian.org>  Tue, 18 Jul 2006 17:52:02 +0200

partman-crypto (7) unstable; urgency=low

  [ Max Vozeler ]
  * Switch default crypto system to dm-crypt

  [ David Härdeman ]
  * Re-add accidentally removed partman-crypto-loop dependency.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Czech (cs.po) by Miroslav Kure
  * Macedonian (mk.po) by Georgi Stanojevski
  * Polish (pl.po) by Bartosz Fenski

 -- Frans Pop <fjp@debian.org>  Wed, 28 Jun 2006 23:00:11 +0200

partman-crypto (6) unstable; urgency=low

  [ David Härdeman ]
  * Switch from prebaseconfig.d to finish-install.d
  * Lock partition when crypto mapping is setup
  * Improve defaults setting code to only consider available crypto-
    types
  * Move some functionality from choose_partition/crypto/do_option to
    crypto_tools.sh for use by partman-auto-crypto.
  * Change default fs from ext2 to ext3.
  * Use the generic confirm_changes from partman-base
    (needs partman-base 87).

  [ Max Vozeler ]
  * Build arch-all packages in binary-indep
  * debian/control: Standards-Version is not used for udebs

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Estonian (et.po) by Siim Põder
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hungarian (hu.po) by SZERVÑC Attila
  * Italian (it.po) by Stefano Canepa
  * Khmer (km.po) by Khoem Sokhem
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Macedonian (mk.po) by Georgi Stanojevski
  * Bokmål, Norwegian (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Peter Mann
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Turkish (tr.po) by Recai Oktaş
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Max Vozeler <xam@debian.org>  Fri, 23 Jun 2006 22:15:44 +0200

partman-crypto (5) unstable; urgency=low

  [ David Härdeman ]
  * Allow dm-crypt partitions to be used for LVM.
  * Make sure old settings are remembered when partman is re-inited.
  * Only show crypto config menu option if at least one crypto volume is
    setup.
  * Depend on partman-crypto-dm again as all the depends are available.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Hungarian (hu.po) by SZERVÑC Attila
  * Italian (it.po) by Stefano Canepa
  * Georgian (ka.po) by Aiet Kolkhi
  * Korean (ko.po) by Sunjae park
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Northern Sami (se.po) by Børre Gaup
  * Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Joey Hess <joeyh@debian.org>  Mon,  5 Jun 2006 12:22:56 -0400

partman-crypto (4) unstable; urgency=low

  [ David Härdeman ]
  * Add dm-crypt partition wiping
  * Do a plain wipe without crypto if the partition is not going to
    be an encrypted one.
  * Fix some bugs in crypttab generation.

  [ Max Vozeler ]
  * Build partman-crypto-dm and partman-crypto-loop packages that
    depend on respective tools and kernel modules.
  * Not all depends of cryptsetup-udeb are ready. For the time being
    change the priority of -dm to optional and depend only on -loop.
  * Include ciphers/ entries in -loop and -dm
  * Don't show erasepart option for virtual partitions

  [ Christian Perrier ]
  * Replace "filesystem" by "file system" in templates (overall
    consistency in D-I)
  * Typo correction: "occured" replaced by "occurred" in templates

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * Dzongkha (dz.po) by Jurmey Rabgay
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Hungarian (hu.po) by SZERVÑC Attila
  * Italian (it.po) by Stefano Canepa
  * Japanese (ja.po) by Kenshi Muto
  * Khmer (km.po) by Khoem Sokhem
  * Bokmål, Norwegian (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Peter Mann
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Tagalog (tl.po) by Eric Pareja
  * Turkish (tr.po) by Recai Oktaş
  * Vietnamese (vi.po) by Clytie Siddall

 -- Max Vozeler <xam@debian.org>  Tue, 23 May 2006 17:33:51 +0200

partman-crypto (3) unstable; urgency=low

  [ David Härdeman and Riku Voipio ]
  * Add support for random keys with dm-crypt

  [ Max Vozeler]
  * Create /etc/default/checkfs-loop in /target to enable file
    system checks for loop-AES
  * blockdev-keygen: Pass keysize to the entropy frontend module
    using the KEYSIZE template variable. Bump the dependency on
    cdebconf-newt-entropy to >= 0.3 accordingly.
  * Switch to improved templates. Many thanks to Christian Perrier,
    Frans Pop, Geert Stappers and Steve Langasek.
  * Depend on gnupg-udeb

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hungarian (hu.po) by SZERVÑC Attila
  * Italian (it.po) by Giuseppe Sacco
  * Japanese (ja.po) by Kenshi Muto
  * Khmer (km.po) by Khoem Sokhem
  * Korean (ko.po) by Sunjae park
  * Malagasy (mg.po) by Jaonary Rabarisoa
  * Bokmål, Norwegian (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Peter Mann
  * Swedish (sv.po) by Daniel Nylander
  * Tamil (ta.po) by Damodharan Rajalingam
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Vietnamese (vi.po) by Clytie Siddall

 -- Max Vozeler <xam@debian.org>  Fri, 12 May 2006 16:37:51 +0200

partman-crypto (2) unstable; urgency=low

  [ Max Vozeler ]
  * Depend on loop-aes-modules (provided by loop-aes-$KVERS-di)
  * Check that a separate /boot partition exists if the root
    partition is encrypted. Thanks to Riku Voipio.
  * Use debconf_select in crypto_dooption; Option values can now be
    translated if corresponding templates exist.
  * Actually build the package in binary-arch, not binary-indep
    (leftover from switch to arch: any)

  [ Frans Pop ]
  * Old-style options for head/tail are no longer supported by new busybox.

  [ Updated translations ]
  * German (de.po) by Jens Seidel
  * Korean (ko.po) by Sunjae park
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Slovak (sk.po) by Peter Mann

 -- Max Vozeler <xam@debian.org>  Tue,  2 May 2006 20:26:36 +0200

partman-crypto (1) unstable; urgency=low

  * First release from SVN. Thanks (in no particular order) to
    David Härdeman, Jens Seidel, Colin Watson, Christian Perrier
    and all translators for contributing to partman-crypto.

 -- Max Vozeler <xam@debian.org>  Fri, 28 Apr 2006 14:47:28 +0200