-
Notifications
You must be signed in to change notification settings - Fork 55
/
CHANGES.txt
1704 lines (1414 loc) · 72.6 KB
/
CHANGES.txt
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
stratisd 3.2.3
==============
Recommended Rust toolchain version: 1.63.0
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 36
- Release version 3.2.3:
https://github.com/stratis-storage/stratisd/pull/3099
stratisd 3.2.2
==============
Recommended Rust toolchain version: 1.63.0
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 36
- Release version 3.2.2:
https://github.com/stratis-storage/stratisd/pull/3090
stratisd 3.2.1
==============
Recommended Rust toolchain version: 1.62.0
Lowest supported Rust toolchain version: 1.58.1
Recommended development platform for Python development: Fedora 36
- Release version 3.2.1:
https://github.com/stratis-storage/stratisd/pull/3061
stratisd 3.2.0
==============
Recommended Rust toolchain version: 1.62.0
Lowest supported Rust toolchain version: 1.58.1
Recommended development platform for Python development: Fedora 36
- Increase minor version number:
https://github.com/stratis-storage/stratisd/pull/3020
https://github.com/stratis-storage/stratisd/pull/3006
- Add ability to start and stop pools:
https://github.com/stratis-storage/stratisd/pull/3034
https://github.com/stratis-storage/stratisd/pull/2949
- Ensure termination of algorithm for selecting size of thinpool sub-devices:
https://github.com/stratis-storage/stratisd/issues/3022
https://github.com/stratis-storage/stratisd/pull/3023
- Make stratisd-min require systemd-udevd in systemd configuration file:
https://github.com/stratis-storage/stratisd/issues/3019
https://github.com/stratis-storage/stratisd/pull/3024
- Never fail when dropping the MDV if it's already unmounted:
https://github.com/stratis-storage/stratisd/pull/3027
- Use retry instead of using "udevadm settle" in stratisd:
https://github.com/stratis-storage/stratisd/issues/2989
https://github.com/stratis-storage/stratisd/pull/3000
- Tidy up some parts of the JSON RPC implementation:
https://github.com/stratis-storage/stratisd/pull/2999
- Use hyphenated format for filesystem UUIDs in stratis-min uniformly:
https://github.com/stratis-storage/stratisd/pull/3028
- Increase clap dependency version to 3.1.0:
https://github.com/stratis-storage/stratisd/issues/3005
https://github.com/stratis-storage/stratisd/pull/3007
- Increase nix dependency version to 0.24.0:
https://github.com/stratis-storage/stratisd/issues/3010
https://github.com/stratis-storage/stratisd/pull/3012
- Increase uuid dependency version to 1.0.0:
https://github.com/stratis-storage/stratisd/pull/3013
- Add NO_TEST_CLEAN_UP environment variable to help debug test failures:
https://github.com/stratis-storage/stratisd/pull/3033
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3044
https://github.com/stratis-storage/stratisd/pull/3043
https://github.com/stratis-storage/stratisd/pull/3042
https://github.com/stratis-storage/stratisd/pull/3041
https://github.com/stratis-storage/stratisd/pull/3038
https://github.com/stratis-storage/stratisd/pull/3036
https://github.com/stratis-storage/stratisd/pull/3032
https://github.com/stratis-storage/stratisd/pull/3025
https://github.com/stratis-storage/stratisd/pull/3017
https://github.com/stratis-storage/stratisd/pull/3016
https://github.com/stratis-storage/stratisd/pull/3015
https://github.com/stratis-storage/stratisd/pull/3014
https://github.com/stratis-storage/stratisd/pull/3008
https://github.com/stratis-storage/stratisd/pull/3003
https://github.com/stratis-storage/stratisd/pull/3002
stratisd 3.1.0
==============
Recommended Rust toolchain version: 1.60.0
Lowest supported Rust toolchain version: 1.58.1
Recommended development platform for Python development: Fedora 36
- Increase minor version number:
https://github.com/stratis-storage/stratisd/pull/2932
- Redesign and implementation of thinpool block layer management:
https://github.com/stratis-storage/stratisd/issues/2814
https://github.com/stratis-storage/stratisd/issues/2993
https://github.com/stratis-storage/stratisd/pull/3001
https://github.com/stratis-storage/stratisd/pull/2995
https://github.com/stratis-storage/stratisd/pull/2994
https://github.com/stratis-storage/stratisd/pull/2991
https://github.com/stratis-storage/stratisd/pull/2982
https://github.com/stratis-storage/stratisd/pull/2971
https://github.com/stratis-storage/stratisd/pull/2967
https://github.com/stratis-storage/stratisd/pull/2962
https://github.com/stratis-storage/stratisd/pull/2919
https://github.com/stratis-storage/stratisd/pull/2854
- Raise the minimum Stratis filesystem size to 512 MiB:
https://github.com/stratis-storage/stratisd/pull/2966
- Mount the MDV in private mount namespace:
https://github.com/stratis-storage/stratisd/pull/2988
- Increase the size of the MDV to 512 MiB:
https://github.com/stratis-storage/stratisd/issues/2976
https://github.com/stratis-storage/stratisd/pull/2978
- Simplify pool creation implementation:
https://github.com/stratis-storage/stratisd/pull/2992
- Handle case where stratisd receives udev remove event via devnode lookup:
https://github.com/stratis-storage/stratisd/issues/2894
https://github.com/stratis-storage/stratisd/pull/2951
- Improve D-Bus signaling:
https://github.com/stratis-storage/stratisd/pull/2940
https://github.com/stratis-storage/stratisd/pull/2939
https://github.com/stratis-storage/stratisd/pull/2913
- Fix potential deadlock:
https://github.com/stratis-storage/stratisd/pull/2964
- Avoid writing unchanged pool-level JSON metadata:
https://github.com/stratis-storage/stratisd/pull/2957
- Allow writing pool metadata under a larger set of conditions:
https://github.com/stratis-storage/stratisd/pull/2973
- Retry unmounts:
https://github.com/stratis-storage/stratisd/pull/2958
https://github.com/stratis-storage/stratisd/pull/2942
- Improve error message on non-existing device path argument:
https://github.com/stratis-storage/stratisd/pull/2953
- Demote D-Bus handling log-messages to trace level:
https://github.com/stratis-storage/stratisd/pull/2961
- Improve log message on change when D-Bus object path is not available:
https://github.com/stratis-storage/stratisd/pull/2996
- Introduce data abstractions for recognizing devices for initialization:
https://github.com/stratis-storage/stratisd/pull/2965
https://github.com/stratis-storage/stratisd/pull/2945
- Bump sha2 dependency version:
https://github.com/stratis-storage/stratisd/pull/2938
- Increase libblkid dependency to 0.2.0:
https://github.com/stratis-storage/stratisd/pull/2975
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2997
https://github.com/stratis-storage/stratisd/pull/2998
https://github.com/stratis-storage/stratisd/pull/2986
https://github.com/stratis-storage/stratisd/pull/2985
https://github.com/stratis-storage/stratisd/pull/2983
https://github.com/stratis-storage/stratisd/pull/2979
https://github.com/stratis-storage/stratisd/pull/2977
https://github.com/stratis-storage/stratisd/pull/2974
https://github.com/stratis-storage/stratisd/pull/2972
https://github.com/stratis-storage/stratisd/pull/2968
https://github.com/stratis-storage/stratisd/pull/2963
https://github.com/stratis-storage/stratisd/pull/2960
https://github.com/stratis-storage/stratisd/pull/2959
https://github.com/stratis-storage/stratisd/pull/2956
https://github.com/stratis-storage/stratisd/pull/2955
https://github.com/stratis-storage/stratisd/pull/2954
https://github.com/stratis-storage/stratisd/pull/2947
https://github.com/stratis-storage/stratisd/pull/2944
https://github.com/stratis-storage/stratisd/pull/2943
https://github.com/stratis-storage/stratisd/pull/2941
https://github.com/stratis-storage/stratisd/pull/2937
https://github.com/stratis-storage/stratisd/pull/2936
https://github.com/stratis-storage/stratisd/pull/2935
https://github.com/stratis-storage/stratisd/pull/2934
https://github.com/stratis-storage/stratisd/pull/2933
stratisd 3.0.4
==============
Recommended Rust toolchain version: 1.58.1
Lowest supported Rust toolchain version: 1.54.0
Recommended development platform for Python development: Fedora 35
Lowest supported Python interpreter: 3.6.8
- New version 3.0.4:
https://github.com/stratis-storage/stratisd/pull/2929
- Send correct interface name for LockedPools property changed signal:
https://github.com/stratis-storage/stratisd/issues/2923
https://github.com/stratis-storage/stratisd/pull/2924
- Fix introspection data for GetManagedObjects method:
https://github.com/stratis-storage/stratisd/pull/2926
- Require libcryptsetup-rs 0.5.0:
https://github.com/stratis-storage/stratisd/pull/2925
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2928
https://github.com/stratis-storage/stratisd/pull/2921
stratisd 3.0.3
==============
Recommended Rust toolchain version: 1.58.1
Lowest supported Rust toolchain version: 1.54.0
Recommended development platform for Python development: Fedora 35
Lowest supported Python interpreter: 3.6.8
- New version 3.0.3:
https://github.com/stratis-storage/stratisd/pull/2886
- Per-pool locking:
https://github.com/stratis-storage/stratisd/issues/2724
https://github.com/stratis-storage/stratisd/pull/2853
- Include stratis dracut module by default if it is installed:
https://github.com/stratis-storage/stratisd/issues/2893
https://github.com/stratis-storage/stratisd/pull/2896
- Fix missing signal for pool allocated size changes:
https://github.com/stratis-storage/stratisd/issues/2863
https://github.com/stratis-storage/stratisd/pull/2865
- Require devicemapper 0.32.0:
https://github.com/stratis-storage/stratisd/issues/2922
https://github.com/stratis-storage/stratisd/issues/2920
- Update liminal data structures correctly on udev remove events:
https://github.com/stratis-storage/stratisd/issues/2456
https://github.com/stratis-storage/stratisd/pull/2881
- Demote some multi-threading related log messages to trace from debug:
https://github.com/stratis-storage/stratisd/pull/2910
- Remove dead redundancy field from engines:
https://github.com/stratis-storage/stratisd/pull/2895
https://github.com/stratis-storage/stratisd/pull/2883
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2918
https://github.com/stratis-storage/stratisd/pull/2917
https://github.com/stratis-storage/stratisd/pull/2915
https://github.com/stratis-storage/stratisd/pull/2914
https://github.com/stratis-storage/stratisd/pull/2909
https://github.com/stratis-storage/stratisd/pull/2906
https://github.com/stratis-storage/stratisd/pull/2905
https://github.com/stratis-storage/stratisd/pull/2903
https://github.com/stratis-storage/stratisd/pull/2902
https://github.com/stratis-storage/stratisd/pull/2900
https://github.com/stratis-storage/stratisd/pull/2899
https://github.com/stratis-storage/stratisd/pull/2898
https://github.com/stratis-storage/stratisd/pull/2892
https://github.com/stratis-storage/stratisd/pull/2891
https://github.com/stratis-storage/stratisd/pull/2890
https://github.com/stratis-storage/stratisd/pull/2887
https://github.com/stratis-storage/stratisd/pull/2885
https://github.com/stratis-storage/stratisd/pull/2882
stratisd 3.0.2
==============
Recommended Rust toolchain version: 1.57.0
Lowest supported Rust toolchain version: 1.54.0
Recommended development platform for Python development: Fedora 34
Lowest supported Python interpreter: 3.6.8
- New release: 3.0.2
https://github.com/stratis-storage/stratisd/pull/2877
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2875
https://github.com/stratis-storage/stratisd/pull/2874
https://github.com/stratis-storage/stratisd/pull/2871
stratisd 3.0.1
==============
Recommended Rust toolchain version: 1.56.1
Lowest supported Rust toolchain version: 1.54.0
Recommended development platform for Python development: Fedora 34
Lowest supported Python interpreter: 3.6.8
- Report pool property TotalPhysicalUsed correctly in PropertyChanged signal:
https://github.com/stratis-storage/stratisd/issues/2860
https://github.com/stratis-storage/stratisd/pull/2862
- Use cached value at start of check method:
https://github.com/stratis-storage/stratisd/pull/2868
- Avoid termination on error returned in timer task:
https://github.com/stratis-storage/stratisd/pull/2866
- Allow non-privileged users to list Stratis encryption keys:
https://github.com/stratis-storage/stratisd/pull/2861
- New release: 3.0.1
https://github.com/stratis-storage/stratisd/pull/2848
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2859
https://github.com/stratis-storage/stratisd/pull/2856
https://github.com/stratis-storage/stratisd/pull/2855
https://github.com/stratis-storage/stratisd/pull/2850
https://github.com/stratis-storage/stratisd/pull/2849
https://github.com/stratis-storage/stratisd/pull/2846
stratisd 3.0.0
==============
Recommended Rust toolchain version: 1.56.1
Lowest supported Rust toolchain version: 1.54.0
Recommended development platform for Python development: Fedora 34
Lowest supported Python interpreter: 3.6.8
- Bump major version to 3.0; remove version 2 D-Bus interfaces:
https://github.com/stratis-storage/stratisd/pull/2837
https://github.com/stratis-storage/stratisd/pull/2799
https://github.com/stratis-storage/stratisd/pull/2798
https://github.com/stratis-storage/stratisd/pull/2710
https://github.com/stratis-storage/stratisd/pull/2707
https://github.com/stratis-storage/stratisd/pull/2706
https://github.com/stratis-storage/stratisd/pull/2703
- Remove FetchProperties interfaces; use standard D-Bus properties and
methods instead:
https://github.com/stratis-storage/stratisd/issues/2816
https://github.com/stratis-storage/stratisd/pull/2817
- Verify udev information with libblkid before taking overwriting action:
https://github.com/stratis-storage/stratisd/issues/1506
https://github.com/stratis-storage/stratisd/pull/2826
https://github.com/stratis-storage/stratisd/pull/2808
- Refactor for devicemapper event handling:
https://github.com/stratis-storage/stratisd/issues/2712
https://github.com/stratis-storage/stratisd/pull/2787
https://github.com/stratis-storage/stratisd/pull/2786
- Extend metadata spare segments when extending metadata device:
https://github.com/stratis-storage/stratisd/pull/2834
- Fix a bug where Clevis info was incorrectly updated on a bind command;
refactor encryption related rollback code for greater generality:
https://github.com/stratis-storage/stratisd/issues/2776
https://github.com/stratis-storage/stratisd/pull/2777
- Fix a bug where device stack was not updated after cache initialization:
https://github.com/stratis-storage/stratisd/issues/2789
https://github.com/stratis-storage/stratisd/pull/2790
- Allow placing pools in restricted usage states:
https://github.com/stratis-storage/stratisd/pull/2805
https://github.com/stratis-storage/stratisd/pull/2797
https://github.com/stratis-storage/stratisd/pull/2795
https://github.com/stratis-storage/stratisd/pull/2746
https://github.com/stratis-storage/stratisd/pull/2740
- Add support for changing passphrases and regenerating Clevis bindings:
https://github.com/stratis-storage/stratisd/issues/2358
https://github.com/stratis-storage/stratisd/pull/2748
https://github.com/stratis-storage/stratisd/pull/2711
https://github.com/stratis-storage/stratisd/pull/2696
- Allow setting logical size of filesystems when creating:
https://github.com/stratis-storage/stratisd/pull/2735
- Send correct signals on D-Bus properties on pool name change:
https://github.com/stratis-storage/stratisd/issues/2731
https://github.com/stratis-storage/stratisd/pull/2734
- Change internal representation of stratisd errors; reduce possible codes
returned over the D-Bus to 0 and 1:
https://github.com/stratis-storage/stratisd/issues/2664
https://github.com/stratis-storage/stratisd/pull/2679
- Make devnode D-Bus properties consistent across restarts of stratisd:
https://github.com/stratis-storage/stratisd/pull/2661
- Prevent systemd from sending kill signals to fork-exec'ed processes.
https://github.com/stratis-storage/stratisd/issues/2749
https://github.com/stratis-storage/stratisd/pull/2754
- Remove config file requiring Stratis dracut module:
https://github.com/stratis-storage/stratisd/pull/2828
- Pass --prompt flag to stratisd-min when unlocking via a key:
https://github.com/stratis-storage/stratisd/pull/2742
- Bump interface revision numbers to 3:
https://github.com/stratis-storage/stratisd/pull/2640
- Make devicmapper event processing and D-Bus request handling errors non-fatal:
https://github.com/stratis-storage/stratisd/issues/2686
https://github.com/stratis-storage/stratisd/pull/2689
- Unify JoinHandle and stratisd errors in threads:
https://github.com/stratis-storage/stratisd/pull/2761
- Have build script use header_contents method:
https://github.com/stratis-storage/stratisd/pull/2639
- Change crate name from libstratis to stratisd:
https://github.com/stratis-storage/stratisd/pull/2752
https://github.com/stratis-storage/stratisd/pull/2683
- Correct error message in stratis-fstab-setup:
https://github.com/stratis-storage/stratisd/pull/2741
- Log the error if a thin-check call fails:
https://github.com/stratis-storage/stratisd/pull/2750
- Use DevicePath struct to cause paths to be canonicalized earlier:
https://github.com/stratis-storage/stratisd/pull/2739
- Use SHA-256 instead of SHA-1 for Clevis operations:
https://github.com/stratis-storage/stratisd/issues/2670
https://github.com/stratis-storage/stratisd/pull/2672
- Require dbus-tree 0.9.2:
https://github.com/stratis-storage/stratisd/pull/2820
- Refactor to unify rollback code:
https://github.com/stratis-storage/stratisd/issues/2610
https://github.com/stratis-storage/stratisd/pull/2637
- Use bounded type parameters instead of trait objects for sim and real types:
https://github.com/stratis-storage/stratisd/issues/2729
https://github.com/stratis-storage/stratisd/pull/2768
- Conform entirely to Rust 2018 syntax recommendations:
https://github.com/stratis-storage/stratisd/pull/2802
- Require devicemapper-rs 0.30.0:
https://github.com/stratis-storage/stratisd/pull/2822
- Drop transitive dependency on time crate:
https://github.com/stratis-storage/stratisd/pull/2832
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2844
https://github.com/stratis-storage/stratisd/pull/2842
https://github.com/stratis-storage/stratisd/pull/2841
https://github.com/stratis-storage/stratisd/pull/2840
https://github.com/stratis-storage/stratisd/pull/2839
https://github.com/stratis-storage/stratisd/pull/2836
https://github.com/stratis-storage/stratisd/pull/2829
https://github.com/stratis-storage/stratisd/pull/2823
https://github.com/stratis-storage/stratisd/pull/2819
https://github.com/stratis-storage/stratisd/pull/2818
https://github.com/stratis-storage/stratisd/pull/2812
https://github.com/stratis-storage/stratisd/pull/2807
https://github.com/stratis-storage/stratisd/pull/2805
https://github.com/stratis-storage/stratisd/pull/2804
https://github.com/stratis-storage/stratisd/pull/2803
https://github.com/stratis-storage/stratisd/pull/2796
https://github.com/stratis-storage/stratisd/pull/2794
https://github.com/stratis-storage/stratisd/pull/2793
https://github.com/stratis-storage/stratisd/pull/2792
https://github.com/stratis-storage/stratisd/pull/2791
https://github.com/stratis-storage/stratisd/pull/2785
https://github.com/stratis-storage/stratisd/pull/2784
https://github.com/stratis-storage/stratisd/pull/2783
https://github.com/stratis-storage/stratisd/pull/2780
https://github.com/stratis-storage/stratisd/pull/2779
https://github.com/stratis-storage/stratisd/pull/2774
https://github.com/stratis-storage/stratisd/pull/2773
https://github.com/stratis-storage/stratisd/pull/2771
https://github.com/stratis-storage/stratisd/pull/2770
https://github.com/stratis-storage/stratisd/pull/2769
https://github.com/stratis-storage/stratisd/pull/2767
https://github.com/stratis-storage/stratisd/pull/2766
https://github.com/stratis-storage/stratisd/pull/2765
https://github.com/stratis-storage/stratisd/pull/2764
https://github.com/stratis-storage/stratisd/pull/2763
https://github.com/stratis-storage/stratisd/pull/2762
https://github.com/stratis-storage/stratisd/pull/2760
https://github.com/stratis-storage/stratisd/pull/2759
https://github.com/stratis-storage/stratisd/pull/2758
https://github.com/stratis-storage/stratisd/pull/2757
https://github.com/stratis-storage/stratisd/pull/2755
https://github.com/stratis-storage/stratisd/pull/2743
https://github.com/stratis-storage/stratisd/pull/2738
https://github.com/stratis-storage/stratisd/pull/2737
https://github.com/stratis-storage/stratisd/pull/2733
https://github.com/stratis-storage/stratisd/pull/2732
https://github.com/stratis-storage/stratisd/pull/2728
https://github.com/stratis-storage/stratisd/pull/2726
https://github.com/stratis-storage/stratisd/pull/2722
https://github.com/stratis-storage/stratisd/pull/2720
https://github.com/stratis-storage/stratisd/pull/2717
https://github.com/stratis-storage/stratisd/pull/2715
https://github.com/stratis-storage/stratisd/pull/2714
https://github.com/stratis-storage/stratisd/pull/2713
https://github.com/stratis-storage/stratisd/pull/2704
https://github.com/stratis-storage/stratisd/pull/2702
https://github.com/stratis-storage/stratisd/pull/2699
https://github.com/stratis-storage/stratisd/pull/2698
https://github.com/stratis-storage/stratisd/pull/2697
https://github.com/stratis-storage/stratisd/pull/2695
https://github.com/stratis-storage/stratisd/pull/2694
https://github.com/stratis-storage/stratisd/pull/2693
https://github.com/stratis-storage/stratisd/pull/2690
https://github.com/stratis-storage/stratisd/pull/2681
https://github.com/stratis-storage/stratisd/pull/2678
https://github.com/stratis-storage/stratisd/pull/2677
https://github.com/stratis-storage/stratisd/pull/2676
https://github.com/stratis-storage/stratisd/pull/2675
https://github.com/stratis-storage/stratisd/pull/2674
https://github.com/stratis-storage/stratisd/pull/2673
https://github.com/stratis-storage/stratisd/pull/2671
https://github.com/stratis-storage/stratisd/pull/2669
https://github.com/stratis-storage/stratisd/pull/2668
https://github.com/stratis-storage/stratisd/pull/2666
https://github.com/stratis-storage/stratisd/pull/2665
https://github.com/stratis-storage/stratisd/pull/2663
https://github.com/stratis-storage/stratisd/pull/2660
https://github.com/stratis-storage/stratisd/pull/2657
https://github.com/stratis-storage/stratisd/pull/2655
https://github.com/stratis-storage/stratisd/pull/2653
https://github.com/stratis-storage/stratisd/pull/2651
https://github.com/stratis-storage/stratisd/pull/2650
https://github.com/stratis-storage/stratisd/pull/2649
https://github.com/stratis-storage/stratisd/pull/2648
https://github.com/stratis-storage/stratisd/pull/2643
https://github.com/stratis-storage/stratisd/pull/2642
https://github.com/stratis-storage/stratisd/pull/2641
https://github.com/stratis-storage/stratisd/pull/2636
https://github.com/stratis-storage/stratisd/pull/2631
stratisd 2.4.2
==============
Recommended Rust toolchain version: 1.52.1
Lowest supported Rust toolchain version: 1.49
Recommended development platform for Python development: Fedora 33
Lowest supported Python interpreter: 3.6.8
- Add additional command-line dependencies to dracut module:
https://github.com/stratis-storage/stratisd/pull/2627
- Improve unsupported tool stratis-dumpmetadata:
https://github.com/stratis-storage/stratisd/issues/2133
https://github.com/stratis-storage/stratisd/pull/2626
- Remove an assertion that is invalid:
https://github.com/stratis-storage/stratisd/pull/2612
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2630
https://github.com/stratis-storage/stratisd/pull/2628
https://github.com/stratis-storage/stratisd/pull/2624
https://github.com/stratis-storage/stratisd/pull/2621
https://github.com/stratis-storage/stratisd/pull/2620
https://github.com/stratis-storage/stratisd/pull/2618
https://github.com/stratis-storage/stratisd/pull/2617
https://github.com/stratis-storage/stratisd/pull/2616
https://github.com/stratis-storage/stratisd/pull/2615
https://github.com/stratis-storage/stratisd/pull/2609
https://github.com/stratis-storage/stratisd/pull/2608
https://github.com/stratis-storage/stratisd/pull/2607
https://github.com/stratis-storage/stratisd/pull/2603
https://github.com/stratis-storage/stratisd/pull/2602
https://github.com/stratis-storage/stratisd/pull/2601
https://github.com/stratis-storage/stratisd/pull/2600
https://github.com/stratis-storage/stratisd/pull/2598
stratisd 2.4.1
==============
Recommended Rust toolchain version: 1.51.0
Lowest supported Rust toolchain version: 1.49
Recommended development platform for Python development: Fedora 32
Lowest supported Python interpreter: 3.6.8
- Expose signals associated with r4 interfaces on the D-Bus:
https://github.com/stratis-storage/stratisd/pull/2580
- Add additional logging to systemd generators:
https://github.com/stratis-storage/stratisd/pull/2592
- Drop dependency on dbus-tokio in message handling thread:
https://github.com/stratis-storage/stratisd/pull/2591
- Split crypt.rs file into several smaller files:
https://github.com/stratis-storage/stratisd/issues/2505
https://github.com/stratis-storage/stratisd/pull/2565
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2597
https://github.com/stratis-storage/stratisd/pull/2594
https://github.com/stratis-storage/stratisd/pull/2593
https://github.com/stratis-storage/stratisd/pull/2588
https://github.com/stratis-storage/stratisd/pull/2587
https://github.com/stratis-storage/stratisd/pull/2584
https://github.com/stratis-storage/stratisd/pull/2583
https://github.com/stratis-storage/stratisd/pull/2582
https://github.com/stratis-storage/stratisd/pull/2581
https://github.com/stratis-storage/stratisd/pull/2577
https://github.com/stratis-storage/stratisd/pull/2576
https://github.com/stratis-storage/stratisd/pull/2575
https://github.com/stratis-storage/stratisd/pull/2572
https://github.com/stratis-storage/stratisd/pull/2563
https://github.com/stratis-storage/stratisd/pull/2562
https://github.com/stratis-storage/stratisd/pull/2561
https://github.com/stratis-storage/stratisd/pull/2560
stratisd 2.4.0
==============
Recommended Rust toolchain version: 1.51.0
Lowest supported Rust toolchain version: 1.49
Recommended Python interpreter: 3.8.6
Lowest supported Python interpreter: 3.6.8
Python linter: pylint (2.4.4)
Python auto-formatter: black (20.8b1)
Python import sorter: isort (4.3.21)
YAML linter: yamllint (1.26.0)
- Allow booting from a Stratis root filesystem:
https://github.com/stratis-storage/stratisd/issues/2134
https://github.com/stratis-storage/stratisd/issues/2530
https://github.com/stratis-storage/stratisd/pull/2557
https://github.com/stratis-storage/stratisd/pull/2556
https://github.com/stratis-storage/stratisd/pull/2547
https://github.com/stratis-storage/stratisd/pull/2546
https://github.com/stratis-storage/stratisd/pull/2541
https://github.com/stratis-storage/stratisd/pull/2539
https://github.com/stratis-storage/stratisd/pull/2538
https://github.com/stratis-storage/stratisd/pull/2536
https://github.com/stratis-storage/stratisd/pull/2535
https://github.com/stratis-storage/stratisd/pull/2533
https://github.com/stratis-storage/stratisd/pull/2529
- Add ability to bind with Clevis on pool creation and to unbind and bind
an encrypted pool separately with either Clevis or a kernel keyring:
https://github.com/stratis-storage/stratisd/pull/2502
- Add new FetchProperties interface to Manager object that supports key
LockedPoolsWithDevs:
https://github.com/stratis-storage/stratisd/issues/2423
https://github.com/stratis-storage/stratisd/pull/2441
https://github.com/stratis-storage/stratisd/pull/2431
- Improvements to management of filesystem symlinks:
https://github.com/stratis-storage/stratisd/issues/2307
https://github.com/stratis-storage/stratisd/issues/2477
https://github.com/stratis-storage/stratisd/pull/2488
https://github.com/stratis-storage/stratisd/pull/2475
- Add EngineStateReport method to new Manager.r4 interface:
https://github.com/stratis-storage/stratisd/issues/2369
https://github.com/stratis-storage/stratisd/pull/2378
- Miscellaneous outstanding issues fixed by initial multi-threading work:
https://github.com/stratis-storage/stratisd/issues/2416
https://github.com/stratis-storage/stratisd/issues/2227
https://github.com/stratis-storage/stratisd/issues/2219
- Predict size of free area on devices:
https://github.com/stratis-storage/stratisd/pull/2516
https://github.com/stratis-storage/stratisd/pull/2476
https://github.com/stratis-storage/stratisd/pull/2447
- Make Clevis dependency optional:
https://github.com/stratis-storage/stratisd/pull/2398
- Add preliminary multi-threading support:
https://github.com/stratis-storage/stratisd/pull/2544
https://github.com/stratis-storage/stratisd/pull/2510
https://github.com/stratis-storage/stratisd/pull/2468
https://github.com/stratis-storage/stratisd/pull/2465
https://github.com/stratis-storage/stratisd/pull/2439
- Create the filesystem on the mdv with the xfs -noalign option:
https://github.com/stratis-storage/stratisd/issues/2370
https://github.com/stratis-storage/stratisd/pull/2373
- Cap thinpool metadata device size at devicemapper-set limit:
https://github.com/stratis-storage/stratisd/issues/1495
https://github.com/stratis-storage/stratisd/pull/2392
- Emit log entries at info level for every succesful call of a D-Bus method
that might mutate some state:
https://github.com/stratis-storage/stratisd/issues/1648
https://github.com/stratis-storage/stratisd/pull/2401
https://github.com/stratis-storage/stratisd/pull/2399
- Increase precision of crypt device status check:
https://github.com/stratis-storage/stratisd/pull/2428
- Define Introspectable interface for prefixes of /org/storage/stratisd2:
https://github.com/stratis-storage/stratisd/issues/2412
https://github.com/stratis-storage/stratisd/pull/2414
- Require devicemapper 0.29; make use of 128-bit Bytes type:
https://github.com/stratis-storage/stratisd/pull/2374
- Enrich error when pool devices are not all wiped of metadata:
https://github.com/stratis-storage/stratisd/issues/2354
https://github.com/stratis-storage/stratisd/pull/2356
- Enrich error when udev script fails to obtain pool or filesystem UUID
from stratisd:
https://github.com/stratis-storage/stratisd/pull/2419
- Do not try to update filesystem devlinks on pool name changes if pool has
no filesystems:
https://github.com/stratis-storage/stratisd/pull/2409
- Reduce severity level of some encryption related log messages:
https://github.com/stratis-storage/stratisd/pull/2443
- Add warn log message on bad MDAHeader in metadata module:
https://github.com/stratis-storage/stratisd/issues/2517
https://github.com/stratis-storage/stratisd/pull/2522
- Make name displayed in stratisd help text "stratisd", not "stratis":
https://github.com/stratis-storage/stratisd/pull/2506
- Improve logging on failure to read BDA from device during setup:
https://github.com/stratis-storage/stratisd/pull/2523
- Drop support for migrating symlinks from /stratis to /dev/stratis:
https://github.com/stratis-storage/stratisd/pull/2503
- Add logging support to stratis_dumpmetadata:
https://github.com/stratis-storage/stratisd/issues/2518
https://github.com/stratis-storage/stratisd/pull/2526
- Add install target to Makefile:
https://github.com/stratis-storage/stratisd/pull/2379
- Include githooks in source distribution:
https://github.com/stratis-storage/stratisd/issues/2445
https://github.com/stratis-storage/stratisd/pull/2459
https://github.com/stratis-storage/stratisd/pull/2452
- Refactor to use graph structure for tracking device paths:
https://github.com/stratis-storage/stratisd/pull/2377
- Remove support in engine for incorporating random behavior in the sim engine:
https://github.com/stratis-storage/stratisd/issues/2336
https://github.com/stratis-storage/stratisd/pull/2343
https://github.com/stratis-storage/stratisd/pull/2338
- Add an is_sim method to the Engine trait:
https://github.com/stratis-storage/stratisd/pull/2344
- Refactor range allocation:
https://github.com/stratis-storage/stratisd/pull/2364
- Use a containerized environment for some GitHub Actions based CI:
https://github.com/stratis-storage/stratisd/pull/2440
https://github.com/stratis-storage/stratisd/pull/2436
https://github.com/stratis-storage/stratisd/pull/2434
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2559
https://github.com/stratis-storage/stratisd/pull/2552
https://github.com/stratis-storage/stratisd/pull/2550
https://github.com/stratis-storage/stratisd/pull/2549
https://github.com/stratis-storage/stratisd/pull/2548
https://github.com/stratis-storage/stratisd/pull/2545
https://github.com/stratis-storage/stratisd/pull/2543
https://github.com/stratis-storage/stratisd/pull/2531
https://github.com/stratis-storage/stratisd/pull/2527
https://github.com/stratis-storage/stratisd/pull/2524
https://github.com/stratis-storage/stratisd/pull/2521
https://github.com/stratis-storage/stratisd/pull/2520
https://github.com/stratis-storage/stratisd/pull/2515
https://github.com/stratis-storage/stratisd/pull/2508
https://github.com/stratis-storage/stratisd/pull/2504
https://github.com/stratis-storage/stratisd/pull/2501
https://github.com/stratis-storage/stratisd/pull/2499
https://github.com/stratis-storage/stratisd/pull/2498
https://github.com/stratis-storage/stratisd/pull/2496
https://github.com/stratis-storage/stratisd/pull/2495
https://github.com/stratis-storage/stratisd/pull/2492
https://github.com/stratis-storage/stratisd/pull/2491
https://github.com/stratis-storage/stratisd/pull/2489
https://github.com/stratis-storage/stratisd/pull/2487
https://github.com/stratis-storage/stratisd/pull/2485
https://github.com/stratis-storage/stratisd/pull/2483
https://github.com/stratis-storage/stratisd/pull/2481
https://github.com/stratis-storage/stratisd/pull/2480
https://github.com/stratis-storage/stratisd/pull/2474
https://github.com/stratis-storage/stratisd/pull/2470
https://github.com/stratis-storage/stratisd/pull/2469
https://github.com/stratis-storage/stratisd/pull/2462
https://github.com/stratis-storage/stratisd/pull/2455
https://github.com/stratis-storage/stratisd/pull/2451
https://github.com/stratis-storage/stratisd/pull/2449
https://github.com/stratis-storage/stratisd/pull/2438
https://github.com/stratis-storage/stratisd/pull/2435
https://github.com/stratis-storage/stratisd/pull/2429
https://github.com/stratis-storage/stratisd/pull/2426
https://github.com/stratis-storage/stratisd/pull/2424
https://github.com/stratis-storage/stratisd/pull/2417
https://github.com/stratis-storage/stratisd/pull/2410
https://github.com/stratis-storage/stratisd/pull/2406
https://github.com/stratis-storage/stratisd/pull/2403
https://github.com/stratis-storage/stratisd/pull/2396
https://github.com/stratis-storage/stratisd/pull/2394
https://github.com/stratis-storage/stratisd/pull/2393
https://github.com/stratis-storage/stratisd/pull/2389
https://github.com/stratis-storage/stratisd/pull/2385
https://github.com/stratis-storage/stratisd/pull/2383
https://github.com/stratis-storage/stratisd/pull/2375
https://github.com/stratis-storage/stratisd/pull/2367
https://github.com/stratis-storage/stratisd/pull/2366
https://github.com/stratis-storage/stratisd/pull/2365
https://github.com/stratis-storage/stratisd/pull/2363
https://github.com/stratis-storage/stratisd/pull/2352
https://github.com/stratis-storage/stratisd/pull/2351
https://github.com/stratis-storage/stratisd/pull/2350
https://github.com/stratis-storage/stratisd/pull/2345
https://github.com/stratis-storage/stratisd/pull/2342
https://github.com/stratis-storage/stratisd/pull/2335
stratisd 2.3.0
==============
Recommended Rust toolchain version: 1.48.0
Lowest supported Rust toolchain version: 1.45
Recommended Python interpreter: 3.7.9
Lowest supported Python interpreter: 3.6.8
Python linter: pylint (2.4.4)
Python auto-formatter: black (19.10b0)
Python import sorter: isort (4.3.21)
YAML linter: yamllint (1.23.0)
New Rust crate version requirements:
- error-chain: 0.12.2
New external dependencies:
- clevis: 15
- clevis-luks: 15
- Introduce support for Clevis encryption policies:
https://github.com/stratis-storage/stratisd/pull/2315
https://github.com/stratis-storage/stratisd/pull/2314
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2333
https://github.com/stratis-storage/stratisd/pull/2332
https://github.com/stratis-storage/stratisd/pull/2330
https://github.com/stratis-storage/stratisd/pull/2329
https://github.com/stratis-storage/stratisd/pull/2319
https://github.com/stratis-storage/stratisd/pull/2317
https://github.com/stratis-storage/stratisd/pull/2311
https://github.com/stratis-storage/stratisd/pull/2309
https://github.com/stratis-storage/stratisd/pull/2304
https://github.com/stratis-storage/stratisd/pull/2299
stratisd 2.2.1
==============
Recommended Rust toolchain version: 1.47.0
Lowest supported Rust toolchain version: 1.45
Recommended Python interpreter: 3.7.9
Lowest supported Python interpreter: 3.6.8
Python linter: pylint (2.4.4)
Python auto-formatter: black (19.10b0)
Python import sorter: isort (4.3.21)
YAML linter: yamllint (1.23.0)
New Rust crate version requirements:
- env_logger: 0.8
- itertools: 0.9
- nix: 0.18
- rand: 0.7
- semver: 0.11
- uuid: 0.8
- Rewrite mechanism to read encryption key from a file descriptor:
https://github.com/stratis-storage/stratisd/pull/2294
- Make sure paths of devices passed as arguments to D-Bus calls are absolute:
https://github.com/stratis-storage/stratisd/pull/2264
- Make sure that names of filesystems and pools do not include characters
that udev will substitute underscores for:
https://github.com/stratis-storage/stratisd/issues/2265
https://github.com/stratis-storage/stratisd/pull/2276
- Use portable types from the libc crate in method calls:
https://github.com/stratis-storage/stratisd/issues/2260
https://github.com/stratis-storage/stratisd/pull/2261
- Use KeyDescription type in trait methods:
https://github.com/stratis-storage/stratisd/issues/2156
https://github.com/stratis-storage/stratisd/pull/2271
https://github.com/stratis-storage/stratisd/pull/2268
- Make error message on failure to unlock device more specific:
https://github.com/stratis-storage/stratisd/pull/2251
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/2298
https://github.com/stratis-storage/stratisd/pull/2297
https://github.com/stratis-storage/stratisd/pull/2296
https://github.com/stratis-storage/stratisd/pull/2295
https://github.com/stratis-storage/stratisd/pull/2293
https://github.com/stratis-storage/stratisd/pull/2292
https://github.com/stratis-storage/stratisd/pull/2287
https://github.com/stratis-storage/stratisd/pull/2284
https://github.com/stratis-storage/stratisd/pull/2283
https://github.com/stratis-storage/stratisd/pull/2280
https://github.com/stratis-storage/stratisd/pull/2279
https://github.com/stratis-storage/stratisd/pull/2267
https://github.com/stratis-storage/stratisd/pull/2262
https://github.com/stratis-storage/stratisd/pull/2259
https://github.com/stratis-storage/stratisd/pull/2258
https://github.com/stratis-storage/stratisd/pull/2249
stratisd 2.2.0
==============
Recommended Rust toolchain version: 1.46.0
Lowest supported Rust toolchain version: 1.45
New D-Bus interfaces:
org.storage.stratis2.FetchProperties.r2
org.storage.stratis2.Manager.r2
org.storage.stratis2.blockdev.r2
New minimum Rust crate requirement:
- proptest: 0.10.0
Recommended Python interpreter: 3.7.7
Lowest supported Python interpreter: 3.6.8
Python linter: pylint (2.4.4)
Python auto-formatter: black (19.10b0)
Python import sorter: isort (4.3.21)
YAML linter: yamllint (1.23.0)
- Set filesystem symlinks in /dev/stratis instead of /stratis,
include script to migrate symlinks:
https://github.com/stratis-storage/stratisd/issues/704
https://github.com/stratis-storage/stratisd/issues/2162
https://github.com/stratis-storage/stratisd/issues/2175
https://github.com/stratis-storage/stratisd/issues/2198
https://github.com/stratis-storage/stratisd/issues/2220
https://github.com/stratis-storage/stratisd/pull/2238
https://github.com/stratis-storage/stratisd/pull/2235
https://github.com/stratis-storage/stratisd/pull/2199
https://github.com/stratis-storage/stratisd/pull/2197
https://github.com/stratis-storage/stratisd/pull/2192
https://github.com/stratis-storage/stratisd/pull/2190
https://github.com/stratis-storage/stratisd/pull/2186
https://github.com/stratis-storage/stratisd/pull/2177
https://github.com/stratis-storage/stratisd/pull/2166