File: changelog

package info (click to toggle)
fuse 2.9.9-5
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 9,652 kB
  • sloc: ansic: 16,565; sh: 4,865; makefile: 167; javascript: 103
file content (1163 lines) | stat: -rw-r--r-- 41,319 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
fuse (2.9.9-5) unstable; urgency=medium

  * Include HTML documentation in libfuse-dev (closes: #886449).

  [ Antonio Terceiro <terceiro@debian.org> ]
  * Mark libfuse-dev as Multi-Arch same (closes: #983477).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Fri, 26 Feb 2021 17:12:50 +0100

fuse (2.9.9-4) unstable; urgency=medium

  * Add upstream metadata.
  * Update watch file.

  [ Matthias Klose <doko@ubuntu.com> ]
  * Allow building without udeb on request (closes: #983321).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Tue, 23 Feb 2021 18:50:11 +0100

fuse (2.9.9-3) unstable; urgency=medium

  * Don't explicitly remove fuse.conf on purge (closes: #953222).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Sat, 07 Mar 2020 11:09:49 +0000

fuse (2.9.9-2) unstable; urgency=medium

  * Drop outdated udevadm commands from postinst (closes: #934457, #935496).
  * Remove dh_makeshlibs override.
  * Update Lintian overrides.
  * Update Standards-Version to 4.4.0 .

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Sat, 31 Aug 2019 14:44:22 +0000

fuse (2.9.9-1) unstable; urgency=medium

  * New upstream release.
  * Don't use custom compression settings for packaging.
  * Update Standards-Version to 4.3.0 .

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Mon, 07 Jan 2019 20:32:01 +0000

fuse (2.9.8-2) unstable; urgency=medium

  * Whitelist autofs as mountpoint file system.
  * Whitelist FAT as mountpoint file system (closes: #905366).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Sun, 05 Aug 2018 15:07:18 +0000

fuse (2.9.8-1) unstable; urgency=high

  * New upstream release:
    - fix CVE-2018-10906: restriction bypass of the "allow_other" option
      when SELinux is active (closes: #904439).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Tue, 24 Jul 2018 16:24:53 +0000

fuse (2.9.7-2) unstable; urgency=medium

  * Drop own udev rules (closes: #843165).
  * Update watch file.
  * Update debhelper level to 11:
    - remove dh-autoreconf build dependency,
    - don't specify parallel to debhelper.
  * Update Standards-Version to 4.1.5:
    - remove fuse-dbg package and use the auto-generated one.

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Mon, 23 Jul 2018 15:18:24 +0000

fuse (2.9.7-1) unstable; urgency=low

  * New upstream release.
  * Add GnuPG signature checking to watch file.

  [ David Lechner <david@lechnology.com> ]
  * Do not fail configuration in chroot (closes: #813621).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Thu, 23 Jun 2016 16:15:37 +0000

fuse (2.9.6-1) unstable; urgency=low

  * New upstream release (closes:  #811011).
  * Update homepage field.
  * Update watch file.
  * Sync with Ubuntu.
  * Update Standards-Version to 3.9.8 .

  [ Colin Watson <cjwatson@ubuntu.com> ]
  * Install ulockmgr_server in fuse-udeb.

  [ Dimitri John Ledkov <xnox@ubuntu.com> ]
  * Drop creating /dev/fuse, udev does it for us.
  * Drop udev|makedev dependency.

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Wed, 27 Apr 2016 17:44:13 +0000

fuse (2.9.5-1) unstable; urgency=high

  * New upstream release.
  * CVE-2016-1233: Fix permissions on cuse character device to be
    accessible by root only.
  * Keep rebuildable.

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Sun, 17 Jan 2016 16:47:21 +0100

fuse (2.9.4-1) unstable; urgency=low

  * New upstream release.
  * Don't use modules-load.d anymore (closes: #773894).
  * Guard lsmod call in postinst (closes: #767829).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Tue, 09 Jun 2015 19:33:06 +0000

fuse (2.9.3-16) unstable; urgency=high

  * Sync with Ubuntu.
  * Update Standards-Version to 3.9.6 .

  [ Marc Deslauriers <marc.deslauriers@ubuntu.com> ]
  * SECURITY UPDATE: privilege escalation via insecure environment
    - debian/patches/CVE-2015-3202.patch: use execle to run external
      helpers in lib/mount_util.c, util/mount_util.c.
    - CVE-2015-3202 (closes: #786439).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Thu, 21 May 2015 17:22:33 +0000

fuse (2.9.3-15) unstable; urgency=low

  * Use correct long option for udevadm in postinst (closes: #756582).

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Thu, 31 Jul 2014 20:07:21 +0000

fuse (2.9.3-14) unstable; urgency=low

  * New maintainer (closes: #756548).
  * Add watch file.

 -- Laszlo Boszormenyi (GCS) <gcs@debian.org>  Wed, 30 Jul 2014 20:33:25 +0000

fuse (2.9.3-13) unstable; urgency=low

  * I don't care anymore, not worth it.. orphaning.

 -- Daniel Baumann <daniel@laptop.127011.net>  Fri, 25 Jul 2014 16:33:54 +0200

fuse (2.9.3-12) unstable; urgency=low

  * Cherry-picking patch from upstream for arm64 (Closes: #752081).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Fri, 20 Jun 2014 08:27:34 +0200

fuse (2.9.3-11) unstable; urgency=low

  * Improving fuse.postinst to handle device creation a bit better
    (Closes: #743360).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 14 Jun 2014 21:25:15 +0200

fuse (2.9.3-10) unstable; urgency=low

  * Conditionally only trigger udevadm only when /dev/fuse has already
    been available (Closes: #745295).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 03 May 2014 12:16:17 +0200

fuse (2.9.3-9) unstable; urgency=low

  * Loading fuse module in postinst to cover some edge cases where udev
    reloading would fail (Closes: #743360).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 05 Apr 2014 11:32:44 +0200

fuse (2.9.3-8) unstable; urgency=low

  * Building with dh --parallel.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Mon, 31 Mar 2014 19:50:34 +0200

fuse (2.9.3-7) experimental; urgency=low

  * Adding patch from Fabrice Bauzac <fbauzac@amadeus.com> to use dlsym()
    instead of relying on ld.so constructor functions to load modules
    (Closes: #737143).
  * Updating year in copyright for 2014.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 01 Feb 2014 05:54:44 +0100

fuse (2.9.3-6) experimental; urgency=low

  * Adding explicit permissions to udev rule for device nodes.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 28 Dec 2013 20:49:22 +0100

fuse (2.9.3-5) experimental; urgency=low

  * Updating to standards version 3.9.5.
  * Building with dh-autoreconf (Closes: #732285).
  * Dropping fuse group (Closes: #733312).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 28 Dec 2013 15:16:28 +0100

fuse (2.9.3-4) experimental; urgency=low

  * Updating vcs fields.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 17 Oct 2013 10:05:12 +0200

fuse (2.9.3-3) experimental; urgency=low

  * Simplyfing libfuse2 symbols by marking linux-only symbols as linux-
    only rather than to ship two different sets for linux and kfreebsd,
    thanks to Pino Toscano <pino@debian.org> (Closes: #717197).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Wed, 17 Jul 2013 22:35:26 +0200

fuse (2.9.3-2) experimental; urgency=low

  * Adding vcs fields.
  * Wrapping control fields.
  * Adding lintian overrides.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Wed, 17 Jul 2013 13:10:22 +0200

fuse (2.9.3-1) experimental; urgency=low

  * Merging upstream version 2.9.3.
  * Updating year in copyright file.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Tue, 02 Jul 2013 17:53:03 +0200

fuse (2.9.2-9) experimental; urgency=low

  * Updating kfreebsd symbols files again.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Tue, 11 Jun 2013 17:44:22 +0200

fuse (2.9.2-8) experimental; urgency=low

  * Correcting fuse-dbg package description.
  * Harmonizing dpkg-statoverride calls in postinst.
  * Excluding package on hurd by explicitly listing linux-any and
    kfreebsd-any, it doesn't build on hurd anyway.
  * Adding kfreebsd specific symbols file for libfuse2.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 06 Jun 2013 08:02:49 +0200

fuse (2.9.2-7) experimental; urgency=low

  * Creating an udev event rather than reloading udev (Closes: #679930).
  * Only creating /dev/fuse with MAKEDEV if it doesn't already exist.
  * Clarify manpage that fusermount is used for unmounting only these days
    (Closes: #651556).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Tue, 04 Jun 2013 22:27:29 +0200

fuse (2.9.2-6) experimental; urgency=low

  * Adding initial symbols file for libfuse, thanks to Pino Toscano
    <pino@debian.org> (Closes: #559473).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Tue, 04 Jun 2013 18:56:30 +0200

fuse (2.9.2-5) experimental; urgency=low

  * Including header files in examples (Closes: #626522).
  * Prefixing patches with four digits in filenames.
  * Trimming diff headers in patches.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 23 May 2013 14:50:28 +0200

fuse (2.9.2-4) unstable; urgency=low

  * Removing all references to my old email address.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sun, 10 Mar 2013 20:29:13 +0100

fuse (2.9.2-3) unstable; urgency=low

  * Updating year in copyright.
  * Removing fuse.preinst with squeeze-to-wheezy upgrade cleanup.
  * Adding dpkg-source local-options.
  * Dropping dpkg-source compression level.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 24 Jan 2013 12:18:47 +0100

fuse (2.9.2-2) unstable; urgency=low

  * Removing fuse group in postrm, thanks to Tom Jampen
    <tom@cryptography.ch>.
  * Also rebuilding initramfs on fuse removal.
  * Removing pre-wheezy udev detection in postinst for device creation.
  * Updating to standards version 3.9.4.
  * Building without conditional multiarch support for pre-wheezy.
  * Dropping pre-wheezy transitional package.
  * Dropping pre-wheezy breaks against loop-aes-utils.
  * Removing configuration file on purge.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 13 Dec 2012 12:10:35 +0100

fuse (2.9.2-1) unstable; urgency=low

  * Merging upstream version 2.9.2.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Fri, 19 Oct 2012 12:47:21 +0200

fuse (2.9.1-1) unstable; urgency=low

  * Merging upstream version 2.9.1.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Fri, 21 Sep 2012 19:07:33 +0200

fuse (2.9.0-5) unstable; urgency=low

  * Adjusting permission on fusermount conditionally upon build
    architecture (Closes: #680232).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 05 Jul 2012 16:54:23 +0200

fuse (2.9.0-4) unstable; urgency=low

  * Some editorial changes to copyright file.
  * Removing sysvinit start and stop links before removing fuse
    initscript (Closes: #679608).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sat, 30 Jun 2012 15:51:06 +0200

fuse (2.9.0-3) unstable; urgency=low

  * Simplyfing backports compatible use of multiarch debhelper install
    files.
  * Correcting typo in conditional gencontrol call in rules.
  * Updating GPL boilerplate in copyright file.
  * Switching to xz compression.
  * Using make conditionals instead of shell conditional in rules for
    consistency.
  * Removing old dpkg trigger for initramfs-tools.
  * Automatically loading fuse kernel module with kmod.
  * Removing old initscript in preinst (Closes: #670635).
  * Rewrapping default fuse.conf.
  * Adding /dev/cuse to fuse rule (Closes: #668509).
  * Reloading udev in postinst (Closes: #568644, #617667, #628375).
  * Adjusting section and priority of the transitional package.
  * Using official package-type for udeb packages in control now.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Fri, 29 Jun 2012 17:42:25 +0200

fuse (2.9.0-2) unstable; urgency=low

  * Correcting debhelper docs file to not include unwanted files
    (Closes: ##674198).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 21 Jun 2012 13:52:01 +0200

fuse (2.9.0-1) unstable; urgency=low

  * Updating compression handling for udeb with newer debhelper.
  * Merging upstream version 2.9.0.
  * Rediffing initscript.patch.
  * Rediffing kfreebsd.patch.
  * Rediffing examples.patch.
  * Removing cve-2011-0542.patch, included upstream.
  * Removing ftbfs.patch, included upstream.
  * Removing local manpages, included upstream.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Fri, 18 May 2012 08:25:16 +0200

fuse (2.8.7-2) unstable; urgency=low

  * Removing initscript in favour of udev rule, thanks to Josh Triplett
    <josh@joshtriplett.org> (Closes: #667988, #601546).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Mon, 16 Apr 2012 09:32:12 +0000

fuse (2.8.7-1) unstable; urgency=low

  * Replacing conflicts against loop-aes-utils with a versioned breaks
    (Closes: #662237).
  * Merging upstream version 2.8.7.
  * Updating to debhelper version 9.
  * Updating to standards version 3.9.3.
  * Updating copyright file machine-readable format version 1.0.
  * Enabling hardening buildflags.
  * Making multi-arch support conditional.

 -- Daniel Baumann <daniel.baumann@progress-linux.org>  Tue, 13 Mar 2012 20:36:48 +0100

fuse (2.8.6-4) unstable; urgency=low

  * Prefixing readme to assign it to the fuse package only.
  * Correcting accidentally wrong debhelper install file for libfuse2
    which resulted in having the so links in /usr/lib instead of /lib.
  * Adjusting /lib for multiarch (Closes: #650354, #650681, #651189).
  * Correcting spelling typo in mount.fuse manpage, thanks to A. Costa
    <agcosta@gis.net> (Closes: #646676).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Wed, 07 Dec 2011 08:40:57 +0100

fuse (2.8.6-3) unstable; urgency=low

  * Adding patch from YunQiang Su <wzssyqa@gmail.com> to fix FTBFS when
    use -Wformat -Wformat-security -Werror=format-security (Closes:
    #647876).
  * Adding support for multiarch, thanks to YunQiang Su
    <wzssyqa@gmail.com> (Closes: #647876).
  * Finishing initramfs integration (Closes: #649941).
  * Consulting dpkg-stateoverride before resetting owner and permission
    for /etc/fuse.conf in fuse postinst (Closes: #649942).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Mon, 28 Nov 2011 15:34:53 +0100

fuse (2.8.6-2) unstable; urgency=low

  * Using compression level 9 also for binary packages.
  * Moving initramfs hook installatin in rules after dh_install call for
    cosmetic reasons.
  * Dropping obsolete configure handling, not needed anymore with
    current debhelper and dpkg.
  * Removing empty fuse.postrm.
  * Don't restart on upgrade (Closes: #471199).
  * Completing move from /usr to / (Closes: #452412).
  * Dropping old news file.
  * Also using linux-any as architecture in depends.
  * Rewriting copyright file in machine-interpretable format.
  * Rewriting fuse postinst.
  * Sorting targets in rules file.
  * Rewriting fusermount manpage.
  * Adding manpage for ulockmgr_server.
  * Renaming fuse manpage to mount.fuse.
  * Updating email address of Miklos in cve-2011-0542.patch.
  * Updating todo file.
  * Removing double entries in 2.8.5-4 section of debian changelog.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sun, 23 Oct 2011 11:07:53 +0200

fuse (2.8.6-1) unstable; urgency=low

  * Merging upstream version 2.8.6.
  * Removing cve-2010-3879.patch, included upstream.
  * Removing cve-2011-0541.patch, included upstream.
  * Removing cve-2011-0543.patch, included upstream.
  * Renumbering remaining patches.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Wed, 28 Sep 2011 08:13:03 +0200

fuse (2.8.5-5) unstable; urgency=low

  * Adding initramfs-tools integration (Closes: #505691).
  * Using linux-any in build-depends rather than negatively listing
    kfreebsd (Closes: #634321).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 08 Sep 2011 20:30:29 +0200

fuse (2.8.5-4) unstable; urgency=low

  * Adding depends to mount to ensure new enough util-linux is being
    used (Closes: #628735, #630237).
  * Adding reference for fuse in fusermount manpage (Closes: #629897).
  * Adding a conflict against loop-aes-utils (Closes: #631454).
  * Updating todo file.
  * Removing obsolete --disable-kernel-module from configure call.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Sun, 10 Jul 2011 17:07:36 +0200

fuse (2.8.5-3) unstable; urgency=low

  * Updating udev check in postinst to also look for /run (Closes:
    #628050).

 -- Daniel Baumann <mail@daniel-baumann.ch>  Fri, 03 Jun 2011 10:17:31 +0200

fuse (2.8.5-2) unstable; urgency=low

  * Correcting filename of the last patch for CVE 2011-0543.
  * Adding fuse(5) manpage from Bastien Roucaries
    <roucaries.bastien@gmail.com> (Closes: #510463).
  * Override dh_compress to not compress examples.
  * Adding patch to not exclude fioc.h from examples (Closes: #626522).
  * Removing old fuse-utils.preinst script.
  * Avoid running initscript to unload kernel modules on shutdown
    (Closes: #584710).
  * Renaming fuse-utils* packages to simply fuse*. Renaming at this
    point is not a problem since d-i doesn't already use the fuse udebs
    just yet.
  * Sorting depends.
  * Updating source section.
  * Adding debug package.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 26 May 2011 14:47:38 +0200

fuse (2.8.5-1) experimental; urgency=low

  * Merging upstream version 2.8.5 (Closes: #585875).
  * Removing useless whitespaces at EOL and EOF.
  * Switching to source format 3.0 (quilt).
  * Rediffing Build_system_do_not_install_init_script (dpatch) as
    initscript.patch (quilt).
  * Rediffing GNU_kFreeBSD (dpatch) as kfreebsd.patch (quilt).
  * Removing Missing_pthread_link_on_libulockmgr, included upstream.
  * Removing CVE-2009-3297.dpatch, included upstream.
  * Adding patch from upstream to fix arbitrary unprivileged unmount
    [CVE 2010-3879].
  * Adding patch from upstream to fix cleanup in case of failed mount
    [CVE 2011-0541].
  * Adding patch from upstream to chdir to / before performing
    mount/umount [CVE 2011-0542].
  * Adding patch from upstream to only allow mount and umount if util-
    linux suppports --no-canonicalize [CVE 2011-0542].
  * Rename examples directory for libfuse-dev to more common name
    (within debian directory).
  * Moving manpage to subdirectory (within debian directory).
  * Moving configfile to subdirectory (within debian directory).
  * Removing watch file.
  * Removing leftovers from fuse-source.
  * Updating to debhelper version 8.
  * Updating to standards version 3.9.2.
  * Decrufting, sorting and wrapping build-depends.
  * Sorting source fields.
  * Decrufting and sorting depends.
  * Sorting binary fields.
  * Updating udev rule, thanks to Marco d'Itri <md@linux.it> (Closes:
    #584709).
  * Sorting packages.
  * Updating package short and long descriptions.
  * Minimizing rules file.
  * Dropping la files (Closes: #621309).
  * Adding todo file.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Thu, 26 May 2011 11:01:16 +0200

fuse (2.8.4-2) unstable; urgency=low

  * Taking over package from Bartosz and Adam with thanks for their past
    contributions, both of them are MIA.

 -- Daniel Baumann <mail@daniel-baumann.ch>  Tue, 24 May 2011 20:04:54 +0200

fuse (2.8.4-1.5) unstable; urgency=low

  * Non-maintainer upload.
  * Only build fuse-utils-udeb on Linux architectures.

 -- Colin Watson <cjwatson@debian.org>  Fri, 20 May 2011 13:00:49 +0100

fuse (2.8.4-1.4) unstable; urgency=low

  * Non-maintainer upload.
  * Create libfuse2-udeb and fuse-utils-udeb (closes: #505697).

 -- Colin Watson <cjwatson@debian.org>  Sat, 23 Apr 2011 14:27:06 +0100

fuse (2.8.4-1.3) unstable; urgency=low

  * Non-maintainer upload to fix a regression introduced in the previous
    NMU.
  * Use "Architecture: linux-any" for fuse-utils instead of a long list
    of architectures. This fixes sparc64 support.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 12 Mar 2011 17:04:33 +0100

fuse (2.8.4-1.2) unstable; urgency=low

  * NMU, added armhf in arch list. (Closes: #596952)

 -- Konstantinos Margaritis <markos@debian.org>  Thu, 24 Feb 2011 12:42:25 +0000

fuse (2.8.4-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Update and re-enenable 001-GNU_kFreeBSD patch to fix FTBFS on
    GNU/kFreeBSD. (Closes: #590274)
    Updated patch by Petr Salinger, thanks.

 -- Michael Biebl <biebl@debian.org>  Sat, 18 Sep 2010 22:11:07 +0200

fuse (2.8.4-1) unstable; urgency=low

  * New upstream version.
    - ACK previous non-maintainer upload (559478)
    - fixes problems with gvfs (585648)
  * Added sparc64 to supported archs (560987)

 -- Bartosz Fenski <fenio@debian.org>  Mon, 19 Jul 2010 18:57:27 +0200

fuse (2.8.1-1.2) unstable; urgency=high

  * Non-maintainer upload by the Security Team.
  * Fixed CVE-2009-3297: race condition in fusermount (Closes: #567633)

 -- Giuseppe Iuculano <iuculano@debian.org>  Sun, 31 Jan 2010 22:23:35 +0100

fuse (2.8.1-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Apply patch from Petr Salinger to fix FTBFS on GNU/kFreeBSD (Closes:
    #552600)
  * Apply patch from Vagrant Cascadian to run MAKEDEV only if found
    (Closes: #550334, #553015)
  * Invoke dh_makeshlibs with an appropriately strict dependency
    (Closes: #557143)

 -- Simon McVittie <smcv@debian.org>  Fri, 04 Dec 2009 17:24:05 +0000

fuse (2.8.1-1) unstable; urgency=low

  * New upstream version (Closes: #543176)
    - fixes missing fuse_reply_bmap (Closes: #531329)
  * Fixes problem with udev (Closes: #543271, #473545)
  * Changed order of dependencies udev/makedev (Closes: #546867)
  * Correctly uses MAKEDEV and doesn't mess with udev anymore (Closes: #534572)
  * Doesn't use libulockmgr patch anymore, fixed upstream.
  * Shipped with README.Source file.

 -- Bartosz Fenski <fenio@debian.org>  Sun, 25 Oct 2009 17:05:03 +0100

fuse (2.7.4-2) unstable; urgency=low

  * Ack previous NMU, thanks.
  * Initscript LSB headers now depend on $remote_fs (Closes: #533028).
  * Install fusermount with restricted permissions to avoid a race condition
    during package installation (Closes: #502300).
  * Bump Standards-Version.
  * Merge Aurelien Jarno's patch to support GNU/kFreeBSD (Closes: #528537).
  * Add missing pthread link for libulockmgr.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Wed, 01 Jul 2009 21:00:52 +0200

fuse (2.7.4-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Only reload udev when /etc/init.d/udev exists.
    Closes: #499352

 -- Thomas Viehmann <tv@beamnet.de>  Thu, 02 Oct 2008 22:54:11 +0200

fuse (2.7.4-1) unstable; urgency=low

  * Ack NMU from Thomas Viehmann, thanks.
  * New upstream release.
  * Really fix /dev/fuse to use fuse group (Closes: #473545).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Tue, 16 Sep 2008 09:43:52 +0200

fuse (2.7.3-5.1) unstable; urgency=low

  * Non-maintainer upload coordinated with Bartosz..
  * Unmount filesystems of type fuse and fuseblk in
    fuse-utils.fuse.init on stop. Closes: #470512.
    Analysis by Yogesh Rananavare, thanks!

 -- Thomas Viehmann <tv@beamnet.de>  Fri, 12 Sep 2008 19:25:07 +0200

fuse (2.7.3-5) unstable; urgency=low

  * Drop fuse-source package for the stale release (Closes: #485909).
  * Fix lintian 'patch-modifying-debian-files' error.
  * Bump Standards-Version to 3.8.0.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Sun, 10 Aug 2008 17:55:28 +0200

fuse (2.7.3-4) unstable; urgency=low

  * Fix device node group after first-time-install (Closes: #473545).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Tue, 01 Apr 2008 23:00:49 +0200

fuse (2.7.3-3) unstable; urgency=low

  * Really fix the fuse-utils.postinst issue (Closes: #470485).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Mon, 17 Mar 2008 20:17:58 +0100

fuse (2.7.3-2) unstable; urgency=medium

  * Improve udev detection, sorry for the inconvenience (Closes: #470485).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Sun, 16 Mar 2008 15:29:03 +0100

fuse (2.7.3-1) unstable; urgency=low

  * New upstream release.
  * Fix postinst script udev detection (Closes: #470485).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Wed, 12 Mar 2008 21:18:46 +0100

fuse (2.7.2-1) unstable; urgency=low

  * New upstream release.
  * Bump Standards-Version to 3.7.3.
  * Drop 002-Fix_umounting_when_mtab_is_a_symlink patch, fixed upstream.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Sat, 05 Jan 2008 02:35:33 +0100

fuse (2.7.1-2) unstable; urgency=low

  * Add 002-Fix_umounting_when_mtab_is_a_symlink patch (Closes: #448855).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Fri, 23 Nov 2007 15:27:17 +0100

fuse (2.7.1-1) unstable; urgency=low

  * New upstream release.
  * Fix debian/copyright: library is LGPL v2 only.
  * Use new dpkg 'homepage' field.
  * Do not ignore make distclean error anymore.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Sun, 28 Oct 2007 12:25:18 +0100

fuse (2.7.0-3) unstable; urgency=low

  * Really fix issues when upgrading /usr/share/doc/fuse-utils to a symlink (Closes: #445414).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Sat, 13 Oct 2007 21:23:14 +0200

fuse (2.7.0-2) unstable; urgency=low

  * Do not include dpatch.make in fuse-source rules (Closes: #443702).
  * Drop ucf dependency, useless (Closes: #439079).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Mon, 01 Oct 2007 19:22:53 +0200

fuse (2.7.0-1) unstable; urgency=low

  * New upstream release:
    - Build against 2.6.22 linux kernel (Closes: #434327).
  * Build depends on libselinux1-dev | libselinux-dev, libfuse-dev depends on it too (Closes: #434225).
  * Umount all fuse mouted filesystems before unloading kernel module (Closes: #411143), thanks to Javier Merino for his patch.
  * Improve NEWS.Debian (Closes: #433927), thanks to Tomas Pospisek for fixing my crap english.
  * Capitalize 'Linux' in long description (Closes: #434109).
  * Drop 002-Allow_standalone_examples_build and 003-Typo_in_fuse.h_comments, fixed upstream.
  * Drop 001-Fix_bashism_in_mount.fuse, mount.fuse is not a bash script anymore.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Tue, 24 Jul 2007 10:26:13 +0200

fuse (2.6.5-3) unstable; urgency=low

  * Fix typo in fuse-source package.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Sat, 30 Jun 2007 12:16:19 +0200

fuse (2.6.5-2) unstable; urgency=low

  * The 'RE-INTRODUCE FUSE-SOURCE' release.
    - Build fuse-source package again (Closes: #414499).
  * Fix bashism in mount.fuse (Closes: #424435).
  * Improve example Makefile.
  * Fixe typo in fuse.h comments (Closes: #424871).
  * Remove 'doc' directory of < 2.6.5-1 fuse-utils package (replaced by symlink) (Closes: #429424).
  * Install sample fuse.conf in /etc (Closes: #429666).
  * Update debian/watch.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Thu, 17 May 2007 12:56:42 +0200

fuse (2.6.5-1) unstable; urgency=low

  * New upstream release :
    - Drop 001-Fix_bashism_in_mount.fuse patch, fixed upstream.
    - Drop 002-Handle_spaces_in_paths patch, fixed upstream.
    - Drop 003-Mount-fusectl_fs_with_fusectl_type, fixed upstream.
  * Make debian/rules more 'human redable'.
  * Rewrite docs handling.
  * Add all missing files to libfuse-dev's examples.
    Write a standalone Makefile (Closes: #382316, #423237).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Wed, 02 May 2007 09:21:21 +0200

fuse (2.6.3-4) unstable; urgency=low

  * Update fuse init script to REALLY mount fusectl filesystem with fusectl
    type (Closes: #417945).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Fri, 20 Apr 2007 08:53:02 +0200

fuse (2.6.3-3) unstable; urgency=low

  * Skip preinst if there's no previous installed version (Closes: #417640).
  * Handle spaces in paths (Closes: #417834).
  * Mount fusectl filesystem with fusectl type (Closes: #417945).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Tue, 10 Apr 2007 21:06:39 +0200

fuse (2.6.3-2) unstable; urgency=low

  * The 'BUGFIX' release.
  * Fix preinst script :
    - dpkg-statoverride --list is not fatal anymore.
    - Use dpkg --compare-version to define if override should be removed.
  * Fix postrm script to handle 'abort-upgrade' (Closes: #413799).
  * Make debian/rules look better (drop arch-indep stuff).
  * Handle patches with a patch system (dpatch).
  * Do not remove init_script from source tree (makes re-build fail).
  * Fix init script installation, wrong runlevels, wrong name.
  * Fix bashism in mount.fuse (Closes: #413403).
  * Change fuse node group with chgrp if udev is not present (Closes: #413437).
  * Write a new init script, lsb-compliant (Closes: #413394).
  * Bump compat to 5.
  * Improve control:
    - Two space before homepage,
    - Drop versionned suggests,
    - Switch to ${binary:Version},
    - Add ${misc:Depends}.
  * Remove fuse-utils.postrm (noop).

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Thu,  8 Mar 2007 22:10:31 +0100

fuse (2.6.3-1) unstable; urgency=HIGH

  * Urgency set to HIGH as it fixes a critical and a serious bug.
  * Added myself to uploaders in agreement with Bartosz.
  * New upstream release (Closes: #409554, #410032).
  * Create a versioned shlibs file (Closes: #409644).
  * Fix package version in fuse-utils.postinst and do not remove override in
    postrm (Closes: #388693).
  * Add watch file.

 -- Adam Cécile (Le_Vert) <gandalf@le-vert.net>  Wed,  7 Feb 2007 10:35:29 +0100

fuse (2.6.2-1) unstable; urgency=low

   * New upstream release. (Closes: #398709, #397364)
    - includes init script which hopefully fixes problems with creation
      of fuse device. (Closes: #393126)
    - works ok on read only root filesystem. (Closes: #393693)
  * Contains Sam Morris's patches. Thanks! (Closes: #388693)
  * Does not remove fuse group again. (Closes: #388266)
  * Makes fusermount world readable. (Closes: #386736)
  * ACK NMU thanks! (Closes: #404904)

 -- Bartosz Fenski <fenio@debian.org>  Tue, 30 Jan 2007 22:32:38 +0100

fuse (2.5.3-4.1) unstable; urgency=low

  * Non-maintainer upload.
  * Run MAKEDEV only if it exists, and do not depend on the symlink in /dev
    (closes: #385696).

 -- martin f. krafft <madduck@debian.org>  Sat,  9 Sep 2006 21:07:01 +0200

fuse (2.5.3-4) unstable; urgency=low

  * The 'Getting rid of fuse-source package' release.
  * Since Etch will include kernels that support fuse module ot of the box
    from this release there won't be fuse-source package, thus I'm closing
    bugs related to building/loading modules.
    (Closes: #341739, #369993, #306016, #345492)
  * libfuse2 conflicts with previous versions of fuse-utils. (Closes: #381880)
  * Handling of failed udevcontrol invocation. (Closes: #383076)
  * Bumped Standards-Version to 3.7.2 (no changes needed).

 -- Bartosz Fenski <fenio@debian.org>  Fri,  1 Sep 2006 10:19:58 +0200

fuse (2.5.3-3) unstable; urgency=low

  * ACK previous NMU. Thanks to Faidon Liambotis. (Closes: #372142)
  * Uses dh_installmodules instead of hand-made script. (Closes: #381766)
  * Reloads udev rules during installation. (Closes: #368674)
  * Includes notice that fuse is available in recent kernels. (Closes: #369993)

 -- Bartosz Fenski <fenio@debian.org>  Mon, 14 Aug 2006 13:29:31 +0200

fuse (2.5.3-2) unstable; urgency=low

  * Doesn't fail on install. (Closes: #365117, #364968, #364832, #365016)

 -- Bartosz Fenski <fenio@debian.org>  Sat, 29 Apr 2006 17:28:18 +0200

fuse (2.5.3-1) unstable; urgency=low

  * New upstream release.
  * Moved from groupdel to delgroup. (Closes: #360991, #364106)
  * Uses dpkg-statoverride to change fusermount owner. (Closes: #361519)

 -- Bartosz Fenski <fenio@debian.org>  Tue, 11 Apr 2006 15:11:11 +0200

fuse (2.5.2-4) unstable; urgency=low

  * Fix for wrong chown line in postinst. (Closes: #358564)

 -- Bartosz Fenski <fenio@debian.org>  Thu, 23 Mar 2006 12:03:16 +0100

fuse (2.5.2-3) unstable; urgency=low

  * Sets suid bit for fusermount binary. (Closes: #354748)
  * Creates /dev/fuse or /dev/.static/dev/fuse device. (Closes: #334526)
  * Creates fuse group and chowns /dev/fuse for it. (Closes: #353703)
  * Removes /etc/default/fuse-utils file. (Closes: #351387)
  * Removed po-debconf from build dependencies.
  * Removed ucf from fuse-utils dependencies.
  * Updated README files.

 -- Bartosz Fenski <fenio@debian.org>  Wed, 22 Mar 2006 14:27:10 +0100

fuse (2.5.2-2) unstable; urgency=low

  * Revert versioned symbol change incorporated in 2.5.x. (Closes: #352631)

 -- Bartosz Fenski <fenio@debian.org>  Wed, 22 Feb 2006 20:53:39 +0100

fuse (2.5.2-1) unstable; urgency=low

  * New upstream version. (Closes: #351172)
  * Fixes FTBFS because of mount.fuse installation problems. (Closes: #351214)
  * Minor update in fusermount manual.

 -- Bartosz Fenski <fenio@debian.org>  Fri,  3 Feb 2006 13:54:27 +0100

fuse (2.5.1-1) unstable; urgency=low

  * New upstream version. (Closes: #350659)
  * The 'Goodbye debconf' release.
    - reorganization of all packaging scripts to get rid of debconf stuff.
    - doesn't handle creation of group anymore, so
      (Closes: #307627, #342826, #310964, #306281, #307624)
  * ACK previous NMU. (Closes: #339688, #340398, #298829)
  * Handles creation/remove of fuse device. (Closes: #334639, #297505)
  * Since now fuse-source depends on either module-assistant
    or kernel-package. (Closes: #326742)
  * Includes mount.fuse script. (Closes: #343702, #334381)
  * Doesn't use debconf templates anymore. (Closes: #337568, #337572, #340796)

 -- Bartosz Fenski <fenio@debian.org>  Thu,  2 Feb 2006 01:08:40 +0100

fuse (2.4.1-0.1) unstable; urgency=high

  * Non-maintainer upload (waited long enough to see simple but ugly bugs to
    be fixed)
  * applied patch from Miklos Szeredi to fix interpretation of special chars
    in fusermount (see CVE-2005-3531 for details, closes: #340398)
  * New upstream version with minor bugfixes, resolves FTBFS problems with
    rlog and encfs (closes: #339688)
  * made fuse-utils just Recommend fuse-module and Suggest fuse-source
    (because kernel 2.6.14 packages provide FUSE and because this automatism
    has never worked as expected and has been PITA instead! closes: #298829)

 -- Eduard Bloch <blade@debian.org>  Thu, 29 Dec 2005 12:31:26 +0100

fuse (2.4.0-1) unstable; urgency=low

  * New upstream version.
  * ACK previous NMU. (Closes: #325993)
  * Test if ucf is installed before using it. (Closes: #330791)
  * Added debconf-2.0 dependency. (Closes: #331828)
  * Set fusermount binary permission to 4755 instead of 4754.

 -- Bartosz Fenski <fenio@debian.org>  Fri, 14 Oct 2005 18:35:12 +0200

fuse (2.3.0-4.1) unstable; urgency=low

  * Non-maintainer upload.
  * run 'dpkg-statoverride --remove ...' at remove time (closes:
    #325993)

 -- Jonas Meurer <mejo@debian.org>  Mon,  3 Oct 2005 00:40:58 +0200

fuse (2.3.0-4) unstable; urgency=low

  * Added info about fuse-source in fuse-utils. (Closes: #322549)
  * Fixed building issues with m-a tool. (Closes: #321935, #310764)
  * From now we depend on module-assistant.

 -- Bartosz Fenski <fenio@debian.org>  Mon, 15 Aug 2005 22:32:58 +0200

fuse (2.3.0-3) unstable; urgency=low

  * Added is_true function to postrm script (Closes: #316735)
  * Added adduser to dependencies (Closes: #320837)
  * Bumped Standards-Version (no changes needed).

 -- Bartosz Fenski <fenio@debian.org>  Sat,  6 Aug 2005 18:18:30 +0200

fuse (2.3.0-2) unstable; urgency=high

  * Fixes problems with building as non-root (Closes: #310764)

 -- Bartosz Fenski <fenio@debian.org>  Sun, 19 Jun 2005 18:43:11 +0200

fuse (2.3.0-1) unstable; urgency=high

  * New upstream version.
    - fixes security bug (Closes: #311634)
  * Added Vietnamese debconf translation by Clytie Siddall (Closes: #311750)

 -- Bartosz Fenski <fenio@debian.org>  Mon,  6 Jun 2005 13:01:12 +0200

fuse (2.2.1-5) unstable; urgency=low

  * Now allows to be built as non-root (Closes: #306016)
    Thanks for Guido Trotter for spotting this.
  * Applied patch provided by Euan MacGregor (Closes: #298825)
    Should fix problems with dpkg-statoverride.

 -- Bartosz Fenski <fenio@debian.org>  Tue, 26 Apr 2005 11:43:18 +0200

fuse (2.2.1-4) unstable; urgency=high

  * Urgency high, cause we still need previous fixes in sarge.
    Current ones are important too.
  * Added debhelper dependency to fuse-source (Closes: #303916)
    Thanks to tillo for reporting this.
  * Raised priority of debconf questions to avoid silent remove of groups.
    Thanks to Tom Verbreyt for reporting this (Closes: #303954)

 -- Bartosz Fenski <fenio@debian.org>  Sun, 10 Apr 2005 11:43:11 +0200

fuse (2.2.1-3) unstable; urgency=high

  * Urgency high, we need this fix in sarge.
  * Added 'ucf' dependency for fuse-utils (Closes: #303621)
    Thanks to Steve Garcia for spotting this.

 -- Bartosz Fenski <fenio@debian.org>  Sat,  9 Apr 2005 10:54:12 +0200

fuse (2.2.1-2) unstable; urgency=low

  * Added explicit version of sed to fuse-utils dependencies (Closes: #300375)
    Thanks to Iisak Kuusela for reporting this.
  * Fixed compilation issues without module-assistant (Closes: #300954)
    Thanks to Jeff Bonham for reporting this. Also README.Debian file has
    been added to fuse-source package to describe this kind of build.
  * New debconf translations:
    - French (Closes: #299761)
      Thanks to Jean-Luc Coulon.
    - Czech (Closes: #300364)
      Thanks to Miroslav Kure.
    - Brazilian Portuguese (Closes: #300826)
      Thanks to Felipe Augusto van de Wiel.

 -- Bartosz Fenski <fenio@debian.org>  Thu, 24 Mar 2005 21:59:11 +0100

fuse (2.2.1-1) unstable; urgency=high

  * New upstream bugfix release.
    Urgency high due to security fix (Closes: #299339)

 -- Bartosz Fenski <fenio@debian.org>  Sun, 13 Mar 2005 20:02:11 +0100

fuse (2.2-3) unstable; urgency=low

  * Added --with-kernel switch to configure call (Closes: #298844)
  * Added postinst depmod call (Closes: #298845)
    Thanks for Eduard Bloch for above reports.

 -- Bartosz Fenski <fenio@debian.org>  Thu, 10 Mar 2005 19:23:11 +0100

fuse (2.2-2) unstable; urgency=low

  * Added overlooked information about licensing of library.

 -- Bartosz Fenski <fenio@debian.org>  Mon,  7 Mar 2005 18:22:12 +0100

fuse (2.2-1) unstable; urgency=low

  * New upstream release.

 -- Bartosz Fenski <fenio@debian.org>  Sun,  6 Feb 2005 17:36:34 +0100

fuse (2.1-5) unstable; urgency=low

  * Now module works with 2.6.10 kernel (Closes: #291842)

 -- Bartosz Fenski <fenio@debian.org>  Tue, 25 Jan 2005 14:42:31 +0100

fuse (2.1-4) unstable; urgency=low

  * Now building with -v switch to make sure that bugs will be closed
    automatically.
  * This is still new upstream release so (Closes: #288387)

 -- Bartosz Fenski <fenio@debian.org>  Tue, 11 Jan 2005 13:28:32 +0100

fuse (2.1-3) unstable; urgency=low

  * s/fenio@o2.pl/fenio@debian.org/

 -- Bartosz Fenski <fenio@debian.org>  Sat,  1 Jan 2005 23:08:31 +0100

fuse (2.1-2) unstable; urgency=low

  * Corrected an upload error, which dumped the polish debconf translation.
    Please excuse.

 -- martin f. krafft <madduck@debian.org>  Sun, 26 Dec 2004 13:09:49 +0100

fuse (2.1-1) unstable; urgency=low

  * New upstream version.
    - supports shared library (Closes: #147792)
  * Added debconf question about setuid (Closes: #280501)
  * Totally rewritten debian/* stuff with module-assistant in mind.
    - fuse-source doesn't contain util/libs (Closes: #278109)
    - repeated building should work fine now (Closes: #273362)
    - m-a can detect kernel version properly (Closes: #270843)
    - kernel module now only recommends kernel-image (Closes: #281694)

 -- Bartosz Fenski <fenio@o2.pl>  Thu, 11 Nov 2004 18:45:32 +0100

fuse (1.3-1) unstable; urgency=low

  * New upstream version.
  * debian/*.control:
    - added terminal newlines at the end of file
    - added missing urls to homepage
    - added MJ Ray as an uploader
  * debian/rules:
    - some ordering changes to remove config.(sub|guess) files from diff.gz

 -- Bartosz Fenski <fenio@o2.pl>  Sat, 17 Jul 2004 21:45:12 +0200

fuse (1.2-1) unstable; urgency=low

  * New upstream version.
  * debian/control:
    - added Section for sources
    - changed Section: from devel to libdevel for libfuse0-dev
  * Added debian/watch file.
  * debian/copyright:
    - distinguished copyright from license
  * debian/rules:
    - some fixes were made to support 2.6 kernels (Closes: #235128)

 -- Bartosz Fenski <fenio@o2.pl>  Thu, 24 Jun 2004 15:29:13 +0200

fuse (1.1-2) unstable; urgency=low

  * added original README.Debian file
  * debian/copyright:
    - added information about previous maintainer

 -- Bartosz Fenski <fenio@o2.pl>  Mon, 29 Mar 2004 07:44:23 +0100

fuse (1.1-1) unstable; urgency=low

  * New maintainer. Thanks Roland for your contribution.
  * New upstream release (Closes: #235128, #206195)
  * Added manual page contributed by Bastian Kleineidam.
    Thanks for providing it. (Closes: #235176)
  * FUSE 1.1 doesn't include .cvsignore files (Closes: #235091)
  * We don't compress examples (Closes: #147791)
  * debian/control:
    - bumped standards version
    - added homepage
  * debian/rules: many fixes/additions partially fetched from Bastian's
    packages. Thanks goes to him once again.
  * debian/docs: added some new files
  * debian/*: replaced name of maintainer

 -- Bartosz Fenski <fenio@o2.pl>  Sun, 21 Mar 2004 23:10:33 +0200

fuse (1.0-1) unstable; urgency=low

  * New upstream release.
  * debian/genchanges.sh: Only run gpg/pgp if available. Closes: #209358.
  * debian/fuse-module.control: Fixed typo (fuse-module instead of
    fule-module). Closes: #212576.

 -- Roland Bauerschmidt <rb@debian.org>  Tue,  7 Oct 2003 18:00:23 +0200

fuse (0.95-1) unstable; urgency=low

  * Initial Release.
  * Adapted lots of stuff from the pcmcia-cs package to build module
    packages properly.

 -- Roland Bauerschmidt <rb@debian.org>  Sun,  7 Apr 2002 19:56:20 +0200