forked from stratis-storage/stratisd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
2277 lines (1861 loc) · 96.4 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.6.0
==============
Recommended Rust toolchain version: 1.73.0
Recommended development platform for Python development: Fedora 38
- Increase D-Bus revision number to 6:
https://github.com/stratis-storage/stratisd/pull/3295
- Add functionality for setting size limit on filesystems:
https://github.com/stratis-storage/stratisd/issues/3431
https://github.com/stratis-storage/stratisd/pull/3432
- Add bind, unbind, and rebind verbs to stratis-min:
https://github.com/stratis-storage/stratisd/issues/2747
https://github.com/stratis-storage/stratisd/pull/3336
- Miscellaneous improvements to avoid some blocking-like behaviors:
https://github.com/stratis-storage/stratisd/pull/3346
- Avoid a panic in cases where Stratis LUKS metadata is present but ill-formed:
https://github.com/stratis-storage/stratisd/pull/3355
- Ensure persistent keyring for Clevis bind:
https://github.com/stratis-storage/stratisd/pull/3343
- Change StopPool for partially constructed pools:
https://github.com/stratis-storage/stratisd/pull/3297
- Send out D-Bus change signals when a device grows and pool is extended:
https://github.com/stratis-storage/stratisd/pull/3372
- Send out correct D-Bus change signal when UserInfo property is updated:
https://github.com/stratis-storage/stratisd/pull/3380
https://github.com/stratis-storage/stratisd/pull/3375
https://github.com/stratis-storage/stratisd/pull/3373
- Remove object paths properly when a pool is partially torn down:
https://github.com/stratis-storage/stratisd/issues/3388
https://github.com/stratis-storage/stratisd/pull/3389
- Fix bug in partially unlocked pool setup:
https://github.com/stratis-storage/stratisd/pull/3385
- Add dummy ipc mechanism, to manage udev event dispatch:
https://github.com/stratis-storage/stratisd/issues/3105
https://github.com/stratis-storage/stratisd/pull/3379
- Remove rpassword dependency:
https://github.com/stratis-storage/stratisd/pull/3347
- Remove dependency on plymouth:
https://github.com/stratis-storage/stratisd/issues/3394
https://github.com/stratis-storage/stratisd/pull/3433
https://github.com/stratis-storage/stratisd/pull/3337
- Patch Cargo.toml to avoid loopdev FTBFS:
https://github.com/stratis-storage/stratisd/pull/3332
- Increase log dependency lower bound to 0.4.19;
increase libc dependency lower bound to 0.2.147;
increase hermit-abi dependency value in Cargo.lock:
https://github.com/stratis-storage/stratisd/pull/3481
- Increase libcryptsetup-rs-sys dependency lower bound to 0.3.0;
increase libcryptsetup-rs dependency lower bound to 0.9.1;
increase devicemapper dependency lower bound to 0.34.0:
https://github.com/stratis-storage/stratisd/pull/3474
- Increase libblkid-rs dependency lower bound to 0.3.1:
https://github.com/stratis-storage/stratisd/pull/3475
- Increase bindgen dependency lower bound to 0.68.1:
https://github.com/stratis-storage/stratisd/pull/3442
- Increase nix dependency lower bound to 0.26.3:
https://github.com/stratis-storage/stratisd/pull/3425
- Increase serde_derive dependency lower bound to 1.0.185:
https://github.com/stratis-storage/stratisd/pull/3480
https://github.com/stratis-storage/stratisd/pull/3427
- Increase libcryptsetup-rs dependency lower bound to 0.9.0;
add dependency on libcryptsetup-rs-sys 0.2.4 to support callback:
https://github.com/stratis-storage/stratisd/pull/3424
https://github.com/stratis-storage/stratisd/pull/3359
https://github.com/stratis-storage/stratisd/pull/3354
https://github.com/stratis-storage/stratisd/pull/3339
- Increase devicemapper dependency lower bound to 0.33.5:
https://github.com/stratis-storage/stratisd/pull/3368
https://github.com/stratis-storage/stratisd/pull/3367
- Increase itertools dependency lower bound to 0.11.0:
https://github.com/stratis-storage/stratisd/pull/3377
- Increase rpassword dependency lower bound to 7.2.0:
https://github.com/stratis-storage/stratisd/pull/3335
- Internal changes to allow multiple pool implementations:
https://github.com/stratis-storage/stratisd/pull/3340
- Improve an error message:
https://github.com/stratis-storage/stratisd/pull/3365
- Sort feature_args values alphabetically when writing pool-level metadata:
https://github.com/stratis-storage/stratisd/pull/3440
- Release stratisd_proc_macros 0.2.1:
https://github.com/stratis-storage/stratisd/pull/3413
- Add --only option to stratis-dumpmetadata:
https://github.com/stratis-storage/stratisd/pull/3434
- Rework fstab service ordering:
https://github.com/stratis-storage/stratisd/pull/3436
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3482
https://github.com/stratis-storage/stratisd/pull/3479
https://github.com/stratis-storage/stratisd/pull/3471
https://github.com/stratis-storage/stratisd/pull/3470
https://github.com/stratis-storage/stratisd/pull/3469
https://github.com/stratis-storage/stratisd/pull/3466
https://github.com/stratis-storage/stratisd/pull/3465
https://github.com/stratis-storage/stratisd/pull/3463
https://github.com/stratis-storage/stratisd/pull/3462
https://github.com/stratis-storage/stratisd/pull/3461
https://github.com/stratis-storage/stratisd/pull/3460
https://github.com/stratis-storage/stratisd/pull/3459
https://github.com/stratis-storage/stratisd/pull/3457
https://github.com/stratis-storage/stratisd/pull/3455
https://github.com/stratis-storage/stratisd/pull/3453
https://github.com/stratis-storage/stratisd/pull/3451
https://github.com/stratis-storage/stratisd/pull/3450
https://github.com/stratis-storage/stratisd/pull/3449
https://github.com/stratis-storage/stratisd/pull/3448
https://github.com/stratis-storage/stratisd/pull/3447
https://github.com/stratis-storage/stratisd/pull/3443
https://github.com/stratis-storage/stratisd/pull/3435
https://github.com/stratis-storage/stratisd/pull/3430
https://github.com/stratis-storage/stratisd/pull/3429
https://github.com/stratis-storage/stratisd/pull/3422
https://github.com/stratis-storage/stratisd/pull/3421
https://github.com/stratis-storage/stratisd/pull/3418
https://github.com/stratis-storage/stratisd/pull/3416
https://github.com/stratis-storage/stratisd/pull/3415
https://github.com/stratis-storage/stratisd/pull/3414
https://github.com/stratis-storage/stratisd/pull/3412
https://github.com/stratis-storage/stratisd/pull/3411
https://github.com/stratis-storage/stratisd/pull/3409
https://github.com/stratis-storage/stratisd/pull/3408
https://github.com/stratis-storage/stratisd/pull/3407
https://github.com/stratis-storage/stratisd/pull/3406
https://github.com/stratis-storage/stratisd/pull/3405
https://github.com/stratis-storage/stratisd/pull/3404
https://github.com/stratis-storage/stratisd/pull/3402
https://github.com/stratis-storage/stratisd/pull/3401
https://github.com/stratis-storage/stratisd/pull/3400
https://github.com/stratis-storage/stratisd/pull/3399
https://github.com/stratis-storage/stratisd/pull/3398
https://github.com/stratis-storage/stratisd/pull/3397
https://github.com/stratis-storage/stratisd/pull/3396
https://github.com/stratis-storage/stratisd/pull/3391
https://github.com/stratis-storage/stratisd/pull/3390
https://github.com/stratis-storage/stratisd/pull/3384
https://github.com/stratis-storage/stratisd/pull/3382
https://github.com/stratis-storage/stratisd/pull/3377
https://github.com/stratis-storage/stratisd/pull/3376
https://github.com/stratis-storage/stratisd/pull/3370
https://github.com/stratis-storage/stratisd/pull/3366
https://github.com/stratis-storage/stratisd/pull/3364
https://github.com/stratis-storage/stratisd/pull/3363
https://github.com/stratis-storage/stratisd/pull/3362
https://github.com/stratis-storage/stratisd/pull/3360
https://github.com/stratis-storage/stratisd/pull/3351
https://github.com/stratis-storage/stratisd/pull/3350
https://github.com/stratis-storage/stratisd/pull/3342
https://github.com/stratis-storage/stratisd/pull/3341
https://github.com/stratis-storage/stratisd/pull/3334
https://github.com/stratis-storage/stratisd/pull/3333
stratisd 3.5.4
==============
Recommended Rust toolchain version: 1.68.0
Lowest supported Rust toolchain version: 1.66.1
Recommended development platform for Python development: Fedora 37
- Remove memory-mapped keyfile workaround:
https://github.com/stratis-storage/stratisd/pull/3265
- On UnlockPool, start the pool directly:
https://github.com/stratis-storage/stratisd/issues/3324
https://github.com/stratis-storage/stratisd/pull/3329
- Increase predicates dependency lower bound to 3.0.0;
https://github.com/stratis-storage/stratisd/issues/3318
https://github.com/stratis-storage/stratisd/pull/3320
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3330
https://github.com/stratis-storage/stratisd/pull/3322
https://github.com/stratis-storage/stratisd/pull/3321
stratisd 3.5.3
==============
Recommended Rust toolchain version: 1.68.0
Lowest supported Rust toolchain version: 1.66.1
Recommended development platform for Python development: Fedora 37
- Send out D-Bus signals properly when blockdevs are added to pool:
https://github.com/stratis-storage/stratisd/issues/3267
https://github.com/stratis-storage/stratisd/pull/3288
- Roll back devicemapper creation when pool setup fails as well as on stop:
https://github.com/stratis-storage/stratisd/pull/3285
- Ensure that torndown filesystems are not ignored when relevant:
https://github.com/stratis-storage/stratisd/pull/3300
- Increase devicemapper dependency lower bound to 0.33.4:
https://github.com/stratis-storage/stratisd/issues/3301
https://github.com/stratis-storage/stratisd/pull/3316
https://github.com/stratis-storage/stratisd/pull/3305
- Make encryption status calculation include cache devices:
https://github.com/stratis-storage/stratisd/pull/3303
- Take into account the sector size of crypt devices:
https://github.com/stratis-storage/stratisd/issues/3290
https://github.com/stratis-storage/stratisd/pull/3312
- Increase clap dependency lower bound to 4.1.0;
add testing infrastructure for stratis-min, stratisd-min IPC:
https://github.com/stratis-storage/stratisd/pull/3298
https://github.com/stratis-storage/stratisd/pull/3294
https://github.com/stratis-storage/stratisd/pull/3273
- General crypt module improvements:
https://github.com/stratis-storage/stratisd/pull/3311
- Increase env_logger dependency lower bound to 0.10.0:
https://github.com/stratis-storage/stratisd/pull/3289
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3314
https://github.com/stratis-storage/stratisd/pull/3310
https://github.com/stratis-storage/stratisd/pull/3309
https://github.com/stratis-storage/stratisd/pull/3296
https://github.com/stratis-storage/stratisd/pull/3255
https://github.com/stratis-storage/stratisd/pull/3254
stratisd 3.5.2
==============
Recommended Rust toolchain version: 1.68.0
Lowest supported Rust toolchain version: 1.66.1
Recommended development platform for Python development: Fedora 37
- Increase devicemapper-rs dependency lower bound to 0.33.1:
https://github.com/stratis-storage/stratisd/pull/3283
https://github.com/stratis-storage/stratisd/pull/3069
- Reorder early boot stratisd services:
https://github.com/stratis-storage/stratisd/pull/3269
- Prepare for stratis-dumpmetadata release:
https://github.com/stratis-storage/stratisd/pull/3258
- Log if error when wiping just initialized devices:
https://github.com/stratis-storage/stratisd/pull/3242
- Increase crc dependency version lower bound to 3.0.0:
https://github.com/stratis-storage/stratisd/pull/3279
- Add typos CI check:
https://github.com/stratis-storage/stratisd/pull/3262
https://github.com/stratis-storage/stratisd/pull/3260
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3282
https://github.com/stratis-storage/stratisd/pull/3281
https://github.com/stratis-storage/stratisd/pull/3278
https://github.com/stratis-storage/stratisd/pull/3277
https://github.com/stratis-storage/stratisd/pull/3270
https://github.com/stratis-storage/stratisd/pull/3263
https://github.com/stratis-storage/stratisd/pull/3261
https://github.com/stratis-storage/stratisd/pull/3259
stratisd 3.5.1
==============
Recommended Rust toolchain version: 1.67.0
Lowest supported Rust toolchain version: 1.66.1
Recommended development platform for Python development: Fedora 37
- Do not link statically compiled udev-related binaries:
https://github.com/stratis-storage/stratisd/pull/3256
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3253
https://github.com/stratis-storage/stratisd/pull/3252
https://github.com/stratis-storage/stratisd/pull/3251
https://github.com/stratis-storage/stratisd/pull/3249
https://github.com/stratis-storage/stratisd/pull/3248
https://github.com/stratis-storage/stratisd/pull/3247
https://github.com/stratis-storage/stratisd/pull/3246
https://github.com/stratis-storage/stratisd/pull/3245
https://github.com/stratis-storage/stratisd/pull/3244
https://github.com/stratis-storage/stratisd/pull/3234
https://github.com/stratis-storage/stratisd/pull/3231
stratisd 3.5.0
==============
Recommended Rust toolchain version: 1.66.1
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 37
- Increase revision number to r5:
https://github.com/stratis-storage/stratisd/pull/3100
- Encrypt an encrypted pool's cache:
https://github.com/stratis-storage/stratisd/issues/3136
https://github.com/stratis-storage/stratisd/pull/3137
- Increase devicemapper-rs dependency version bound to 0.32.3:
https://github.com/stratis-storage/stratisd/pull/3209
- Do not require pool name field in LUKS2 metadata:
https://github.com/stratis-storage/stratisd/issues/3200
https://github.com/stratis-storage/stratisd/pull/3201
- Do not expect redundancy value in CreatePool parameters:
https://github.com/stratis-storage/stratisd/issues/2969
https://github.com/stratis-storage/stratisd/pull/3207
- Do not log the same message repeatedly when pool is in NoPoolChanges state:
https://github.com/stratis-storage/stratisd/issues/3171
https://github.com/stratis-storage/stratisd/pull/3229
https://github.com/stratis-storage/stratisd/pull/3220
- Do not log the same message repeatedly when pool is out of metadata space:
https://github.com/stratis-storage/stratisd/pull/3224
- Increase libblkid-rs dependency lower bound to 0.3.0:
https://github.com/stratis-storage/stratisd/pull/3239
- Increase nix dependency lower bound to 0.26.0:
https://github.com/stratis-storage/stratisd/pull/3240
- Do not do thinpool check as part of setup of data device add D-Bus calls:
https://github.com/stratis-storage/stratisd/pull/3223
- Reorder suspend and resume when extending thin devices:
https://github.com/stratis-storage/stratisd/issues/3097
https://github.com/stratis-storage/stratisd/pull/3225
- Compile binaries used by udev rules statically:
https://github.com/stratis-storage/stratisd/issues/3195
https://github.com/stratis-storage/stratisd/pull/3210
- Make all dependencies optional and included in at least one feature:
https://github.com/stratis-storage/stratisd/pull/3221
https://github.com/stratis-storage/stratisd/pull/3218
- Use license field with SPDX license for stratisd_proc_macros:
https://github.com/stratis-storage/stratisd/pull/3222
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3238
https://github.com/stratis-storage/stratisd/pull/3237
https://github.com/stratis-storage/stratisd/pull/3235
https://github.com/stratis-storage/stratisd/pull/3232
https://github.com/stratis-storage/stratisd/pull/3228
https://github.com/stratis-storage/stratisd/pull/3227
https://github.com/stratis-storage/stratisd/pull/3226
https://github.com/stratis-storage/stratisd/pull/3219
https://github.com/stratis-storage/stratisd/pull/3217
https://github.com/stratis-storage/stratisd/pull/3215
https://github.com/stratis-storage/stratisd/pull/3208
https://github.com/stratis-storage/stratisd/pull/3206
https://github.com/stratis-storage/stratisd/pull/3205
https://github.com/stratis-storage/stratisd/pull/3198
https://github.com/stratis-storage/stratisd/pull/3154
stratisd 3.4.2
==============
Recommended Rust toolchain version: 1.65.0
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 36
- Increase amount of space allocated for metadata:
https://github.com/stratis-storage/stratisd/issues/3192
https://github.com/stratis-storage/stratisd/pull/3191
- Do not unshare mount namespace if stratisd PID is 1:
https://github.com/stratis-storage/stratisd/pull/3186
- Increase bindgen dependency specification to 0.63.0:
https://github.com/stratis-storage/stratisd/pull/3188
stratisd 3.4.1
==============
Recommended Rust toolchain version: 1.65.0
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 36
- Add some D-Bus signal code missing in revision 4 of some interfaces:
https://github.com/stratis-storage/stratisd/pull/3187
stratisd 3.4.0
==============
Recommended Rust toolchain version: 1.65.0
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 36
- Increase revision number to r4:
https://github.com/stratis-storage/stratisd/pull/3100
- Restrict combinations of certain sector sizes in block devices:
https://github.com/stratis-storage/stratisd/issues/2880
https://github.com/stratis-storage/stratisd/pull/3181
- Allow starting pools by name:
https://github.com/stratis-storage/stratisd/issues/3078
https://github.com/stratis-storage/stratisd/pull/3079
- stratisd checks for presence of 'udevadm' on startup only in test:
https://github.com/stratis-storage/stratisd/issues/3175
https://github.com/stratis-storage/stratisd/pull/3176
- Fix underestimation of crypt metadata size:
https://github.com/stratis-storage/stratisd/pull/3139
- Improvements to internal locking structure:
https://github.com/stratis-storage/stratisd/pull/3166
- Process device paths before starting initialization of backstore:
https://github.com/stratis-storage/stratisd/pull/3119
- Use timestamp_opt instead of timestamp method:
https://github.com/stratis-storage/stratisd/pull/3167
- Miscellaneous improvements to stratis-dumpmetadata:
https://github.com/stratis-storage/stratisd/pull/3146
https://github.com/stratis-storage/stratisd/pull/3143
- Fix an error string:
https://github.com/stratis-storage/stratisd/pull/3163
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3182
https://github.com/stratis-storage/stratisd/pull/3179
https://github.com/stratis-storage/stratisd/pull/3172
https://github.com/stratis-storage/stratisd/pull/3170
https://github.com/stratis-storage/stratisd/pull/3169
https://github.com/stratis-storage/stratisd/pull/3165
https://github.com/stratis-storage/stratisd/pull/3162
https://github.com/stratis-storage/stratisd/pull/3161
https://github.com/stratis-storage/stratisd/pull/3160
https://github.com/stratis-storage/stratisd/pull/3159
https://github.com/stratis-storage/stratisd/pull/3158
https://github.com/stratis-storage/stratisd/pull/3157
https://github.com/stratis-storage/stratisd/pull/3152
https://github.com/stratis-storage/stratisd/pull/3150
https://github.com/stratis-storage/stratisd/pull/3149
https://github.com/stratis-storage/stratisd/pull/3144
https://github.com/stratis-storage/stratisd/pull/3142
https://github.com/stratis-storage/stratisd/pull/3083
stratisd 3.3.0
==============
Recommended Rust toolchain version: 1.64.0
Lowest supported Rust toolchain version: 1.62.1
Recommended development platform for Python development: Fedora 36
- Increase revision number to r3:
https://github.com/stratis-storage/stratisd/pull/3029
- Add support for growing a physical device:
https://github.com/stratis-storage/stratisd/pull/3035
- Parallelize per-pool filesystem extension:
https://github.com/stratis-storage/stratisd/issues/2851
https://github.com/stratis-storage/stratisd/pull/3057
- Make metadata allocation eager; leave data allocation lazy:
https://github.com/stratis-storage/stratisd/issues/3086
https://github.com/stratis-storage/stratisd/pull/3097
https://github.com/stratis-storage/stratisd/pull/3096
- Make remove udev events for devices in stopped pools properly handled:
https://github.com/stratis-storage/stratisd/pull/3087
- fsync directory after renaming, creating, and deleting files in MDV:
https://github.com/stratis-storage/stratisd/issues/1481
https://github.com/stratis-storage/stratisd/pull/3055
- Make checks for Clevis executables dynamic:
https://github.com/stratis-storage/stratisd/issues/3018
https://github.com/stratis-storage/stratisd/pull/3054
https://github.com/stratis-storage/stratisd/pull/3053
- Log when a D-Bus property is set; make UserInfo a settable property:
https://github.com/stratis-storage/stratisd/issues/3126
https://github.com/stratis-storage/stratisd/pull/3131
- Avoid doing some no-overprovisioning required checks unconditionally:
https://github.com/stratis-storage/stratisd/pull/3089
- Parameterize some values in systemd unit files:
https://github.com/stratis-storage/stratisd/pull/3064
- Allow using environment variable to specify paths for external dependencies:
https://github.com/stratis-storage/stratisd/pull/3067
- Add more detail to error reported when two sigblocks fail to agree:
https://github.com/stratis-storage/stratisd/pull/3101
- Track overprovisioning status in sim engine:
https://github.com/stratis-storage/stratisd/pull/3127
- Increase libcryptsetup dependency requirement lower bound to 0.5.1:
https://github.com/stratis-storage/stratisd/pull/3062
- Increase some dependency requirement lower bounds in Cargo.toml:
https://github.com/stratis-storage/stratisd/pull/3073
- Increase chrono dependency requirement lower bound:
https://github.com/stratis-storage/stratisd/pull/3082
- Increase pretty-hex dependency requirement lower bound:
https://github.com/stratis-storage/stratisd/pull/3092
- Increase loopdev dependency requirement lower bound to 0.4.0:
https://github.com/stratis-storage/stratisd/pull/3094
- Increase devicemapper dependency requirement lower bound to 0.32.1:
https://github.com/stratis-storage/stratisd/pull/3098
- Increase libcryptsetup dependency requirement lower bound to 0.6.0:
https://github.com/stratis-storage/stratisd/pull/3075
- Add man page for stratis-dumpmetadata:
https://github.com/stratis-storage/stratisd/pull/3104
- Use edition 2021:
https://github.com/stratis-storage/stratisd/pull/3040
- Add 'help' target to Makefile:
https://github.com/stratis-storage/stratisd/pull/3128
- Tidies and Maintenance:
https://github.com/stratis-storage/stratisd/pull/3138
https://github.com/stratis-storage/stratisd/pull/3135
https://github.com/stratis-storage/stratisd/pull/3133
https://github.com/stratis-storage/stratisd/pull/3132
https://github.com/stratis-storage/stratisd/pull/3130
https://github.com/stratis-storage/stratisd/pull/3129
https://github.com/stratis-storage/stratisd/pull/3124
https://github.com/stratis-storage/stratisd/pull/3121
https://github.com/stratis-storage/stratisd/pull/3120
https://github.com/stratis-storage/stratisd/pull/3118
https://github.com/stratis-storage/stratisd/pull/3117
https://github.com/stratis-storage/stratisd/pull/3116
https://github.com/stratis-storage/stratisd/pull/3115
https://github.com/stratis-storage/stratisd/pull/3114
https://github.com/stratis-storage/stratisd/pull/3109
https://github.com/stratis-storage/stratisd/pull/3108
https://github.com/stratis-storage/stratisd/pull/3107
https://github.com/stratis-storage/stratisd/pull/3106
https://github.com/stratis-storage/stratisd/pull/3103
https://github.com/stratis-storage/stratisd/pull/3093
https://github.com/stratis-storage/stratisd/pull/3085
https://github.com/stratis-storage/stratisd/pull/3084
https://github.com/stratis-storage/stratisd/pull/3080
https://github.com/stratis-storage/stratisd/pull/3072
https://github.com/stratis-storage/stratisd/pull/3071
https://github.com/stratis-storage/stratisd/pull/3070
https://github.com/stratis-storage/stratisd/pull/3066
https://github.com/stratis-storage/stratisd/pull/3063
https://github.com/stratis-storage/stratisd/pull/3059
https://github.com/stratis-storage/stratisd/pull/3056
https://github.com/stratis-storage/stratisd/pull/3052
https://github.com/stratis-storage/stratisd/pull/3051
https://github.com/stratis-storage/stratisd/pull/3050
https://github.com/stratis-storage/stratisd/pull/3048
https://github.com/stratis-storage/stratisd/pull/3047
https://github.com/stratis-storage/stratisd/pull/3046
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