-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1043 lines (842 loc) · 35.8 KB
/
NEWS
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
------------
udisks 2.1.8
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.7:
Hielke Christian Braun (1):
Allow NTFS mount option "big_writes"
João Paulo Rechi Vita (1):
Don't coldplug uninitilized udev devices
Mantas Mikulėnas (1):
Detect old (non-Pro) MemoryStick cards
Marius Vollmer (1):
Lock the partition table while creating a new partition
Martin Pitt (6):
tests: Accept fancy quotes in GLib error messages
Update translations from transifex
autogen.sh: Drop obsolete PKG_NAME
exfat: Drop umask=0077 default
udisks2.service: Add KillSignal=SIGINT
Mike Frysinger (1):
Include sys/sysmacros.h for major/minor/makedev
Ritesh Khadgaray (1):
btrfs: Add support for changing label
Ting-Wei Lan (1):
build: Fix gtk-doc build when builddir != srcdir
Thanks to all our contributors.
Martin Pitt,
2016-11-25
------------
udisks 2.1.7
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.6:
David Heidelberger (1):
allow disabling ACL
Kylie McClain (1):
udisksctl: Properly redirect stdout
Marius Vollmer (1):
Catch bogus UUID changes of MDRAIDs
Martin Pitt (12):
Fix udiskctl help for glib 2.45
udisks2.service.in: Add [Install] section
Fix translator comments in udisksobjectinfo.c
integration-test: Explicitly require UDisks 2.0 gir
integration-test: Fix wait_timeout/busy error messages
integration-test: PEP-8 fixes
integration-test: Fix Polkit.test_removable_fs
test_polkitd.py: Fix race condition in waiting for test polkitd
integration-test: Fix race condition in fake CD drive creation
integration-test: Add timeout to readd_device()
Tom Yan (1):
Bug 92488 - Add support for read look-ahead ATA settings
Thanks to all our contributors.
Martin Pitt,
2016-03-01
------------
udisks 2.1.6
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.5:
Martin Pitt (4):
udev rules: Stop hardcoding sed path
Fix crash on inaccessible RAID member "state" attribute
UDF: Drop umask=0077 default
Update translations from transifex
Michael Catanzaro (1):
Install udisksd into a libexecdir
Ondrej Holy (1):
Fail before formatting if partition contains a partition table
Peter Hatina (2):
Fix udisks_daemon_util_file_set_contents() return value handling
Remove deprecated g_io_scheduler_* calls
Ross Lagerwall (5):
integration-tests: Settle while waiting for property change
integration-tests: Don't fail if a SMART test was aborted
integration-tests: Add a wrapper to write and flush stderr
Don't ignore isohybrid udf filesystems
Add support for creating f2fs filesystems
Simon McVittie (1):
Decide whether devices are on the same seat by uid, not pid
Tomas Bzatek (1):
UDisksSpawnedJob: Retrieve uid/gid info before forking
Thanks to all our contributors.
Martin Pitt,
2015-06-30
------------
udisks 2.1.5
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.4:
David King (1):
Fix format string signedness warnings
Martin Pitt (15):
Post-release version bump to 2.1.5
integration-test: Skip double mount check for NTFS
Support mounting in /media for FHS compatibility
Make UdisksClient.get_size_for_display() units translatable
Provide fallback for systems without ACL support
Fix crash in udisks_client_finalize()
Drop unused goto label
integration-test: Stop requiring the build dependencies
integration-test: Test fstab parsing
Recognize PARTUUID and PARTLABEL in fstab
Drop default [df]mask for VFAT and NTFS
integration-tests: Don't assume ordering in mount-points property
Update translations from transifex
Stefan Sauer (2):
configure: stop using tmpl files for docs
docs: include the annotation glossary
Thanks to all our contributors.
Martin Pitt,
2015-03-06
------------
udisks 2.1.4
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.3:
David Zeuthen (4):
Add GPT partition types from the Discoverable Partitions Specification
Remove newly-added "Auto-enabled swap" GTP partition type
Fine-tune GTP partitions some more
Send SCSI SYNCHRONIZE CACHE before powering down a drive
Denis Kasak (1):
Fix buffer overflow in pick_word_at()
Dmitrijs Ledkovs (1):
Add Intel Fast Flash Standby partition GPT type
Lubomir Rintel (1):
Skip password strength checks when changing LUKS passphrase
Martin Pitt (26):
Fix build with clang
integration-test: Update for logind
Revert "Fix standby timers"
integration-test: Fix code formatting
integration-tests: sync file systems in sync()
integration-test: Drop sync_workaround, fix property testing
integration-test: Better failure messages
integration-test: Fix btrfs test
Fix display ID for generic FAT
Update obsolete gnome-common and automake macros
build: Use config-aux/ directory
Update .gitignore files
build: Enable gcc colors
Drop obsolete g_type_init()
Update .gitignore files
Drop obsolete polkit_unix_process_new()
Fix docs for SmartUpdate()
Hide Microsoft reserved partition
Identify JetFlash Transcend drives as thumb drives
Fix sorting of mount points
Fix fallback media icons for nonremovable media
Fix polkit auth string
Hide DIAGS and IntelRST partitions
Update translations from transifex
Matthias Clasen (1):
Add a man page for umount.udisks2
Michael Biebl (1):
Support building against libsystemd library
Pawel Baldysiak (1):
udisks: Change name for Intel SW RAID
Phillip Susi (3):
Use internal pm check for smart poll
Fix standby timers
Fix standby timers
Ross Lagerwall (1):
Fix TOCTOU race when making directories
Samuli Suominen (1):
Add missing #include
Tomas Bzatek (5):
Properly initialize all used variables
udiskslinuxmanager.c: Don't use uninitialized wait_data struct
Remove useless assignments
udisks_linux_drive_object_uevent(): Handle null device
Hide Windows Recovery Environment partitions
Thanks to all our contributors.
Martin Pitt,
December 18, 2014
------------
udisks 2.1.3
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
This version fixes a security vulnerability (CVE-2014-0004), so please update
as soon as possible!
Changes since udisks 2.1.2:
David Zeuthen (4):
Identify SD Card Reader in ChromeBook Pixel
Send SCSI START STOP UNIT when powering down a drive
udisksctl: add power-off verb to power off drives
udisksctl: fix grammar
Marius Vollmer (1):
Prefer /dev/VG/LV for LVM2 volumes.
Martin Pitt (2):
Fix buffer overflow in mount path parsing. If users have the possibility
to create very long mount points, such as with FUSE, they could cause
udisksd to crash, or even to run arbitrary code as root with specially
crafted mount paths. [CVE-2014-0004]
Peter Paluch (1):
Use SECTOR_COUNT=1 when issuing ATA IDENTIFY COMMAND
Tomas Bzatek (3):
Use reentrant version of getpwuid() for thread safety
udisks_daemon_util_get_caller_uid_sync(): Add missing goto
Fix crash when loop-deleting non-loop device
Thanks to all our contributors.
Martin Pitt
March 10, 2014
------------
udisks 2.1.2
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.1:
Andrey Jr. Melnikov (1):
Add exfat mount options
Bastien Nocera (1):
Hide more rescue partitions
David Zeuthen (2):
Bug 67679 - build fails due to missing IT_PROG_INTLTOOL macro
Martin Pitt (1):
Add exfat FS integration test
Drop "david" user name from publish make rules
Michael Biebl (1):
Use dosfstools instead of mtools
Pawel Wieczorkiewicz (1):
Add polkit authorization variables for removable media
Tomas Bzatek (1):
Fix crash when waiting for loop device
Thanks to all our contributors.
Martin Pitt,
January 14, 2014
------------
udisks 2.1.1
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.1.0:
David Zeuthen (10):
Post-release version bump to 2.1.1
Properly identify firewire devices as non-system devices
Identify Lexar Dual Slot USB 3.0 Reader Professional as a card reader
Identify Transcend USB 3.0 Multi-Card reader as such
Promote ZFS partition type to generic
UDisksClient: Make it possible to get part desc based on the part table subtype
Add ChromeOS partition types
Use new SSD icon from g-i-t-e
Identify Patriot Memory USB sticks as thumb drives
Update NEWS for release
Martin Pitt (4):
Fix test for logind availability
Fix hiding of "WD SmartWare" partitions
integration-test: Fix for nonexisting /run/udev/rules.d/
integration-test: For VFAT, ignore case for label comparison
Thanks to all our contributors.
David Zeuthen,
August 20, 2013
------------
udisks 2.1.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 2.0.92:
Alban Browaeys (1):
mdraid: Remove spurious argument for the format (which takes none).
David Zeuthen (6):
Post-release version bump to 2.0.93
Support broken setups where ID_SERIAL is available but ID_SERIAL_SHORT is not
Call the right D-Bus completion routines
Update translations from Transifex
Bump version to 2.1.0 and update date in man pages
Update NEWS for release
Martin Pitt (1):
integration-test: Update for mkntfs
Matthias Clasen (1):
Initialize a local variable
Thanks to all our contributors.
David Zeuthen,
March 17, 2013
------------
udisks 2.0.92
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
This is an unstable pre-release leading up to udisks 2.1.0 and newly
introduced API and ABI may change in incompatible ways before release
2.1.0. The udisks 2.1.0 release will be backwards compatible will
earlier releases. See the udisks(8) man page for more information
about API stability guarantees.
Changes since udisks 2.0.91:
Alban Browaeys (1):
build: fix out of source build - set xsltproc path
David Zeuthen (8):
Post-release version bump to 2.0.92
Fold UDisksPersistentStore class into UDisksCleanup
Rename UDisksCleanup to UDisksState
Don't leak UDisksLinuxDevice when handling uevent
Check for NULL pointer when creating MD-RAID array
Use own udev namespace for MD-RAID properties
Introduce UDISKS_FILESYSTEM_SHARED=1 to use /media for mounting
Update NEWS for release
Marius Vollmer (2):
Don't wipe extended partitions.
Make sure logical partitions stay within the extended partition.
Thanks to all our contributors.
David Zeuthen,
February 17, 2013
------------
udisks 2.0.91
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
This is an unstable pre-release leading up to udisks 2.1.0 and newly
introduced API and ABI may change in incompatible ways before release
2.1.0. The udisks 2.1.0 release will be backwards compatible will
earlier releases. See the udisks(8) man page for more information
about API stability guarantees.
Changes since udisks 2.0.90:
David Zeuthen (9):
Post-release version bump to 2.0.91
Don't bail in MD-RAID file monitor event handler
Add MDRaid:RequestSyncAction() method
Add MDRaid:SyncRate and MDRaid:SyncRemainingTime properties
Get the MD-RAID sync rate from the right file
Pull new translations from Transifex
Use correct polkit action
Fix up comments in polkit policy file
Update NEWS for release
Evan Nemerson (1):
build: fix passing arguments to configure from autogen.sh
Thanks to all our contributors.
David Zeuthen,
January 7, 2013
------------
udisks 2.0.90
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
This is an unstable pre-release leading up to udisks 2.1.0 and newly
introduced API and ABI may change in incompatible ways before release
2.1.0. The udisks 2.1.0 release will be backwards compatible will
earlier releases. See the udisks(8) man page for more information
about API stability guarantees.
Changes since udisks 2.0.0:
David Zeuthen (121):
Initial MD-RAID support
Add Block:MDRaid and Block:MDRaidMember properties pointing to MDRaid objects
Add MDRaid:Size property and utility to get member, raid block devices
Add MDRaid:SyncAction and MDRaid:Degraded properties
Properly initialize variables
Add Start()/Stop() methods to MDRaid D-Bus interface
Don't error out with "error stopping" if failing to start a RAID array
Set Block:PreferredDevice to /dev/md/$MD_NAME, if available
Nuke debug spew
Watch for changes on the md/sync_action and md/degraded sysfs files
Avoid leaking memory when parsing sysfs attributes with integers
Strip trailing white-space from md/sync_action sysfs attr
Fix corner-cases for detecting RAID arrays
Add MDRaid:SyncCompleted property
Skip partitions of MD-RAID devices
Make udisks_daemon_util_resolve_link() work when @name contains slashes
Add MDRaid:ActiveDevices property
UDisksClient: ignore partitions when finding block device for RAID Array
Make Block:PreferredDevice work for partitions of RAID arrays
Slightly change how the MDRaid:ActiveDevice property works
Tweak MDRaid:ActiveDevices some more
Add MDRaid.RemoveDevice() method
Add @start-degraded option to MDRaid.Start()
Express RAID member state as an array of strings, instead of just a string
Simplify codepath when removing a RAID disk
Add MDRaid:BitmapLocation property
Export MDRaid:ChunkSize property
Revert "Simplify codepath when removing a RAID disk"
Deprecate udisks_client_get_drive_info() with udisks_client_get_object_info()
Initialize reference count to 1
Skip homehost when calcuating @name member in UDisksObjectInfo for MD-RAID
Slightly rework UDisksObjectInfo docs
UDisksClient: include RAID level in description of RAID Array
Mention that MDRaid:SyncAction is the empty string for arrays w/o redundancy
Handle nested arrays
Nuke debug spew
Set MDRaid:ChunkSize for raid0 but not for raid1
Consistently refer to MD-RAID as "Linux RAID" in user-visible strings
Post-release version bump to 2.0.1
Update my email address
Document the release process
Explain post-release actions in HACKING
Bump version to 2.0.90
Start writing NEWS for 2.0.90
Merge branch 'master' into wip/mdraid
Use @since annotations to mark new D-Bus API available 2.1
Use Deprecated and Since annotations to mark deprecated and new API for 2.1
Re-include udisks_client_get_drive_info() in API docs
Add indexes of deprecated and new-in-2.1 symbols
Update gtk-doc sections
Include docs for MD-RAID implementation details
Update gtk-doc types file
Add publish-docs-master target
Remove fa_IR translation
Update POTFILES.in with new source files
Add translations for eu, fa, hr and sq from Transifix
Add missing known jobs for ATA Secure erase to Job:Description docs
Add missing known jobs for MD-RAID to Job:Description docs
UDisksClient: Add reference to Job:Operation to get_job_description() docs
Add Manager.MDRaidCreate() method for RAID Array creation
Always pass MD devices of the form /dev/mdNNN when assembling RAID arrays
Serialize authorization checks
Revert "Serialize authorization checks"
Add support for option 'no-block' in the Block.Format() method
Only use #pragma GCC diagnostic on GCC >= 4.6
UDisksObjectInfo: add one_liner field
Nuke debug spew
Don't count /dev/md* devices with bogus UUIDs as MD-RAID arrays
Use the right device file UDisksObjectInfo.one_liner for a partition of a drive
Factor out ATA routines
Introduce UDisksLinuxDevice as a replacement for GUdevDevice
Forgot to add files
UDisksLinuxDevice: Don't include the parent_instance member in the docs
Add logging statements so it's possible to pin-point probing time
Add udisks_ata_identify_get_word() utility function
Stop relying on ata_id to set ID_ATA_FEATURE_SET_SMART{,_ENABLED}
Stop relying on ata_id to set ID_ATA_FEATURE_SET_{PM,APM,AAM}*
Don't set AamVendorRecommendedValue unless AAM is actually supported
Stop relying on ata_id to set ID_ATA_FEATURE_SET_SECURITY*
Stop relying on ata_id to set ID_ATA_ROTATION_RATE_RPM
Use gathered IDENTIFY DATA as primary way of identifying ATA devices
Block.Format: add @update-partition-type option
Add support for creating UDF filesystems using mkudffs(8)
Add a Drive.PowerOff() method
Add Drive.Ata.SmartSetEnabled() method
Fix up docs
UDisksLinuxDevice: add a reprobe_sync() method
Update SMART data after enabling SMART
Add missing since tag to newly added Drive.Ata.SmartSetEnabled() method
Fix grammar
UDisksObjectInfo: Change format of one_liner
Make UDisksObjectInfo a GObject and hide its struct
Update what symbolic icons to use
Ensure HintAuto is FALSE for PC floppy drives
Add Block:Id property
Always use .modify-device for devices set up by the calling user
Keep track of MD RAID arrays started/created via udisks
Fix thinko in routine to find a free MD RAID device
Allow MDRaid.RemoveDevice() without authz if the caller started the array
Use 'drive-multidisk' instead of 'gdu-enclosure' for RAID arrays
Mention RAID split-brain syndrome
Add new MDRaid.AddDevice() method
Add MDRaid.SetBitmapLocation() method
Use --scan and --uuid when starting a MD-RAID device
Use setup_by_user() in more places
UDisksObjectInfo: Add get_sort_key() method
UDisksObjectInfo: fix memory leak
Add support for setting the symbolic icon for a device
Add support for querying and configuring the Write Cache for ATA devices
docs: Fix up description of WriteCacheEnabled and document valid values
Mention the right ATA subcommand for the ata-write-cache-enabled key
Make sure drive properties are updated after applying configuration
Add UDisksClient.queue_changed()
Fix docs for UDisksClient.queue_changed()
Add support for UDISKS_CAN_POWER_OFF udev property
Introduce new Job:Bytes and Job:Rate properties
Use both WWN and serials for VPD, if available
Remove MDRaid:CanStart{,Degraded} properties
Pull latest translations from Transifex
Add new translations from Transifix
Update NEWS for release
Thanks to all our contributors.
David Zeuthen,
December 18, 2012
------------
udisks 2.0.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 1.99.0:
Claudio Saavedra (1):
configure.ac: raise gudev dependency
Colin Walters (1):
Add --disable-man configure option
David Zeuthen (36):
Post-release version bump to 1.100.0
Update list of recovery/system partitions
Add support for creating exFAT filesystems and changing exFAT labels
Add textual descriptions for IMSM Raid members
Use all-caps for RAID
Only do the isohybrid hack for the first partition
Don't complain about missing /etc/crypttab file
Don't complain about missing /etc/fstab file
Make it work without requiring the kernel to be CONFIG_SWAP=y
Mention the right file when complaing about /proc/swaps
Fix glaringly wrong documentation for Filesystem.Mount()
Move bash completion script into /usr/share/bash-completion/completions
Don't require that users define UDISKS_API_IS_SUBJECT_TO_CHANGE
Bump version number to 2.0.0
docs: only reference hdparm(8) at the end of the paragraph
docs: Remove "(available online here)" comment in udisks(8) man page
docs: Link to http://www.freedesktop.org/wiki/Software/dbus in udisks(8)
docs: update man page dates to "October 2012"
docs: Document udisksctl(1)'s info command
docs: Document udisksctl(1)'s status command
docs: add some more meta information to the man pages (version, source, manual)
docs: use CDATA for email addresses to avoid them being mangled
Fix docs for udisks_daemon_util_on_same_seat()
Fix up docs for udisks_daemon_util_file_set_contents()
Add docs for udisks_base_job_get_auto_estimate()
Add docs for udisks_base_job_set_auto_estimate()
Fix docs for udisks_daemon_launch_simple_job()
Fix docs for udisks_daemon_launch_spawned_job()
Fix docs for udisks_daemon_launch_spawned_job_sync()
Fix docs for udisks_daemon_launch_threaded_job()
Fix docs for udisks_daemon_util_file_set_contents()
Remove udisks_daemon_util_on_other_seat() from sections.txt
Add docs for udisks_linux_drive_ata_apply_configuration()
Add docs for udisks_linux_drive_ata_secure_erase_sync()
Update translations from Transifex
Update NEWS for release
Martin Pitt (14):
integration-test: Consistent mount path validation
test_polkitd.py: Add --replace option
integration-test: Create a read-only fake CD-ROM device
integration-test: Add test case for mounting removable device
integration-test: Robustify test_luks_forced_removal()
Add workaround annotation for udisks_client_get_block_for_dev()
integration-test: Fix occasional failure of test_luks_forced_removal
Bug 51063 — Mount vfat with "flush" option
integration-test: Check mounting of read-only devices
integration-test: Split out and fix daemon startup
integration-tests: Check handling of existing mount points
integration-test: Fix start_daemon() for restarts
Enable large file support
integration-test: Skip r/o mount checks for XFS and reiserfs
Vincent Untz (1):
Fix same seat detection if built with systemd, but not booted with it
Thanks to all our contributors.
David Zeuthen,
October 2, 2012
------------
udisks 1.99.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 1.98.0:
Ayan George (1):
Mark Realtek rts5229 based card readers as flash drives.
David Zeuthen (39):
Post-release version bump to 1.99.0
Catch up with latest polkit guidance
Add Documentation key to systemd unit file
Add Block.OpenForBenchmark() method
Add drive configuration interfaces and configuration files
Don't require auth for Standby'ing non-system drives on own seat
Add DriveAta.PmWakeup() method
Default to mode 0600 for drive config files
Drop the 'drive-' prefix for drive configuration files
Move Drive:Configuration property up a bit
Add erase parameter to Block.Format() to zero out device before formatting
Bug 51439 – udisks should hide lvm PVs
Set Job:ExpectedEndTime when erasing a device
Issue BLKRRPART if wiping a device with an existing partition table
Init interface proxies on hotplug too
Add ATA Secure Erase functionality
Add support for VMWare filesystem types and GPT partition types
Don't use g_propagate_error() with a NULL GError
Don't report progress for ATA Secure Erase when expected time is >508 minu
When setting up LUKS, erase the cleartext device rather than the cryptotex
Inhibit system shutdown, sleep and idle when formatting and erasing device
Don't return uninitialized variable on inhibitor error path
Fix some uninitialized variable warnings
Add more compiler warnings
Disable -Wformat-nonliteral for a tiny block of code
Fix typo
Update compiler warning flags
Black-list seemingly invalid WWN for SAMSUNG SP1604N hard disks
client: Add Apple Core Storage GPT partition type
Ignore "Apple Boot" GPT partitions
Add a Block.Rescan() method
Add "Linux Filesystem" GPT partition type
Use ATA PASS-THROUGH (16) command instead ATA PASS-THROUGH (12) command
Create cleanup object before coldplugging
Ignore non-Linux software on SanDisk Cruzer
Update /run/udisks2/loop file before setting up the loop device
Update translations from Transifex
Update docs
Update NEWS for release
Martin Pitt (9):
integration-test: Fix existance test of local state dirs
integration-test: Explicit polkit tests
integration-test: Check polkit denial
integration-test: Fix Polkit.test_internal_fs_nobody test case
Ship integration-test in the tarball
integration-test: Fix parsing of daemon path in system mode
integration-test: Use mock polkitd
integration-test: Use Gio.TestDBus() again
integration-test: More robust syncing
Thanks to all our contributors.
David Zeuthen,
July 27, 2012
------------
udisks 1.98.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 1.97.0:
David Zeuthen (15):
Post-release version bump to 1.98.0
udisksctl: add 'smart-simulate' verb
udisksctl: describe 'loop-setup' and 'loop-delete' verbs
Call it "Disk Manager" and reword some sections of udisks(8) man page
Bug 49842 – Unhandled rootfs on bind mount
Drive: Refuse to eject drives that appear to be in use
Add some documentation about polkit variables
Rename current polkit variables and also add some new ones
Move table with polkit variables to the "Authorization Checks" chapter
If a block device has ID_PATH set, consider it to be a drive
Use "device" instead of "block_device" in the polkit variables
Add id.* and partition.* polkit variables
Rework part of the polkit variable documentation
udisksd: work if polkitd is not available
Update NEWS for release
Martin Pitt (8):
integration tests: Update expected mount points
integration tests: Suspend gvfs-udisks2-volume-monitor
integration-test: Update expected exception names
integration-test: Mitigate race after mounting
Wait for the correct device after formatting
integration-test: Update expected Luks mount points
integration-test: Quiesce wipefs output
integration-test: Run on temporary local DBus
Thanks to all our contributors.
David Zeuthen,
June 7, 2012
------------
udisks 1.97.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 1.96.0:
David Zeuthen (22):
Post-release version bump to 1.97.0
Add loop.autoclear option to Filesystem.Mount() method
Also check for "target is busy" when checking umount(8) output
Loop: add :Autoclear property and SetAutoclear() method
Don't assign the Loop D-Bus interface to partitions of a loop device
Fix up how we check if use is authorized for Loop.SetAutoclear()
Manager: Add new 'no-part-scan' option in LoopSetup() method
Manager: Add locking around LoopSetup()
Warn if /run/udisks2/loop has an existing entry when setting up a new loop device
UDisksClient: add get_loop_for_block() convenience method
Loop: add SetupByUID property
Add work-around to show FS on CDs/USB sticks created using isohybrid
Daemon: Add new find_block_*() convenience methods
Manager: wait for partitions to appear before returning in LoopSetup()
UDisksDaemon: add get_objects() method
UDisksDaemon: rework wait_for_object_sync() method
Revert "Add loop.autoclear option to Filesystem.Mount() method"
Update path to mounted-fs file in documentation
UDisksCleanup: Remove stale entries when adding new ones
Simplify loop device checking
Loop: try writing to loop/autoclear sysfs file before LO_{GET,SET}_STATUS
Update NEWS for release
Thanks to all our contributors.
David Zeuthen,
May 9, 2012
------------
udisks 1.96.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 1.95.0:
David Zeuthen (3):
Post-release version bump to 1.96.0
Actually link with libsystemd-login
Update NEWS for release
Thanks to all our contributors.
David Zeuthen,
April 30, 2012
------------
udisks 1.95.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices.
Changes since udisks 1.94.0:
David Zeuthen (32):
Post-release version bump to 1.95.0
Mention udisks audience (and non-audience) in README
Update link to GVolumeMonitor docs
Use libacl library instead of setfacl(1)
Work around missing serial/wwn on VMware hard disks
Add multi-seat support
Add versioning macros
Make on_same_seat() also work for drive objects
Fix reference count mistake in previous commit
Interpret ID_SEAT=all to mean that a device is available on all seats
Add section about polkit actions to the docs
Fix 'make distcheck'
Rearrange docs so man pages come first
Move audience blurb from README to the udisks(8) man page
Move API STABILITY remarks to udisks(8) man page
udisksctl: Make man page point to API STABILITY section of udisks(8) man page
Use upper-case for all man page sections
Remove section about ID_DRIVE* properties
Add missing "on" in udisks(8) man page
Fix typos in policy file
Add separate polkit actions for ejecting media
Fix typo
Reword parts of the udisks(8) man page
Add a bunch of translation comments
Add some more translation context and strings
Make $(udisks2.device) in authentication messages include the vendor/model
Remove danish translation
Add Transifex config and pull latest translations
Remove support for ID_SEAT=all
Remove unused .filesystem-unmount-others-shared polkit action
Minor doc fixes
Update NEWS for release
Thanks to all our contributors.
David Zeuthen,
April 30, 2012
------------
udisks 1.94.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices. This is the first release of
the new 2.x series. This release is parallel-installable with udisks
1.x.
Changes since udisks 1.93.0:
David Zeuthen (10):
Post-release version bump to 1.94.0
Pass --readonly to cryptsetup(8) if device to unlock is read-only
Fix how we sign the tarballs
Update docs
Clarify docs for Filesystem.Mount() and Filesystem.Unmount()
Change some D-Bus types from bytestring ('ay') to UTF8 ('s')
Convert some g_warning() uses to udisks_warning()
Add udev rules for identifying devices which should not be shown
Make escaping work properly with non-ASCII UTF-8 strings
Update NEWS for release
Edward Sheldrake (1):
Fix unmounting large disks when not asked to
Thanks to all our contributors.
David Zeuthen,
April 10, 2012
------------
udisks 1.93.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices. This is the first release of
the new 2.x series. This release is parallel-installable with udisks
1.x.
Changes since udisks 1.92.0:
David Zeuthen (13):
Post-release version bump to 1.93.0
Don't include sys/acl.h - it's not needed
Add a section about /org/freedesktop/UDisks2/block_devices/* objects
Reword the section about block device objects a little bit
Add a section about /org/freedesktop/UDisks2/drives/* objects
Add a section about /org/freedesktop/UDisks2/jobs/* objects
Run gtkdoc-rebase to fix up links for GLib types
Force MediaRemovable to TRUE for e.g. SD cards using the mmc layer
Ensure that whatever we pass as -t to mount(8) is in a whitelist
Ensure that the loop file name we pass to the kernel is always NUL-termina
Properly escape all device files
Tweak the docs some
Update NEWS for release
Thanks to all our contributors.
David Zeuthen,
Mar 5, 2012
------------
udisks 1.92.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices. This is the first release of
the new 2.x series. This release is parallel-installable with udisks
1.x.
Changes since udisks 1.91.0:
Colin Walters (1):
client: Fix bit shifts of flags on 32 bit
David Zeuthen (6):
Post-release version bump to version 1.92.0
Avoid using $XDG_RUNTIME_DIR/media for now
Don't free object twice when deleting a loop device
Use /run/media/$USER for mounting
Move to /usr-only setup and get rid of hardcoded paths to /lib and sbin
Update NEWS for release
Thanks to all our contributors.
David Zeuthen,
Feb 23, 2012
------------
udisks 1.91.0
------------
The udisks project provides a daemon, tools and libraries to access
and manipulate disks and storage devices. This is the first release of
the new 2.x series. This release is parallel-installable with udisks
1.x.
Changes since udisks 1.90.0:
Benedikt Morbach (1):
Install a systemd service file if systemd is used
David Zeuthen (27):
Post-release version bump to version 1.91.0
Ensure PATH is set
Fix use of memset(3)
Rename systemd service to udisks2 and fix a couple of typos
Add 2012 to copyright years
Remove copyright and license from docs and add link to online docs
Fix up doc page
Use org.freedesktop.UDisks2.* for errors, not org.freedesktop.UDisks.*