-
Notifications
You must be signed in to change notification settings - Fork 55
/
CHANGES.txt
2478 lines (2034 loc) · 104 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.8
==============
Recommended Rust toolchain version: 1.79.0
Recommended development platform for Python development: Fedora 40
* New commits:
* Increase libc dependency lower bound to 0.2.155
* Cherry-picked commits:
* Regression test for key set in stratis-min
* Add PROFILE_FLAGS to profileable targets
* github actions: ignore only pushes to tests/client-dbus dir
* github actions: update recommended Rust to 1.77.2
* Use once_cell instead of lazy_static for lazy statics
* Fix unnecessary-get-then-check with contains_key()
* Put timestamp management in a separate implementation
* Re-load the BDA after writing pool-level metadata
* Add stratis-min tests for missing subcommands
* test_fs_size_limit: Run fs_check after increasing limit
* github actions: update recommended Rust to 1.78.0
* Change deprecated use of default_features
* Advance current development environment to Fedora 40
* Revert "test_fs_size_limit: Run fs_check after increasing limit"
* test_fs_size_limit: Increase sizes by a factor of 2
* ci: Adjust Cockpit test plans
* Increase itertools dependency lower bound to 0.13.0
* Clarify conversion for set up pool to stopped pool
* Remove legacy std::u64::MAX constant
* Add test_stratis_min_pool_clevis_pin()
* Add stratis_min_key_set_empty()
* Add .gitignore entries for LLVM profiler traces
* Do software emulation of a TPM2 module
* github actions: update recommended Rust to 1.79.0
* Move to TMT with TPM2
* Increase nix dependency lower bound to 0.29.0
* Fix a typo in an error string
* Remove early exit
* Add a clarifying comment
* Change handle_extension to handle_fs_changes
* Merge invocation of should_extend and extend_size
stratisd 3.6.7
==============
Recommended Rust toolchain version: 1.77.0
Recommended development platform for Python development: Fedora 39
* New commits:
* Increase libc dependency lower bound to 0.2.153
* Cherry-picked commits:
* github actions: update recommended Rust to 1.77.0
* Add a debug entry for writing metadata to pool
* Allow two frequenty used abbreviations
* Create pipe so file descriptor is not dropped early
* Fix for /etc/fstab setup script
stratisd 3.6.6
==============
Recommended Rust toolchain version: 1.76.0
Recommended development platform for Python development: Fedora 39
* New commits:
* Increase lower bounds of Stratis-project dependencies
* Increase mio transitive dependency to 0.8.11
* Hack .packit.yaml to remove stratis-decode-dm from spec file
* Cherry-picked commits:
* Increase retry dependency lower bound to 2.0.0
* Increase bindgen dependency lower bound to 0.69.0
* Update a comment justifying the minimum thin dev size
* Use a constant for the maximum name size
* Do not construct a String from metadata when saving
* Cargo.toml: Set up workspace table
* github actions: update FEDORA_RELEASE to F40, F39
* Add serializer for Strings
* validate_name: Change error strings
* validate_name: Clarify some error messages
* Reject UserInfo values that do not satisfy validate_name
* Fix clippy::useless-vec lint
* Fix let-underscore-lock lint
* Use explicit OpenOptions::truncate()
* get_dm_init: Allow static_mut_refs
* DeviceInfo: allow clippy lint large_enum_variant
* stratisd: Allow clippy lint suspicious_open_options
* stratisd-min: Allow clippy lint suspicious_open_options
* generators: Use explicit OpenOptions::truncate()
* Allow unknown lint for static_mut_refs
* validate_filesystem_size: divisble -> divisible
* validate_filesystem_size: return more specific error
* Increase env_logger dependency lower bound to 0.11.0
* Fix PID file bug in stratisd and stratisd-min
* Initialize devicemapper context without mutability
* Increase nix dependency lower bound to 0.28.0
stratisd 3.6.5
==============
Recommended Rust toolchain version: 1.76.0
Recommended development platform for Python development: Fedora 39
* Cherry-picked commits:
* Improve readability of locking code
* Change comment
* Relax fairness restriction on AllOrSomeLock
* Fix log message in SetCreateAction
* Remove redundant remove_stratis_dm_devices()
* Remove remove_stratis_dm_devices entirely
* Set timeout of 30 sec after interrupt signal sent
* Kill stratisd process if a terminate has not worked
* Add some Python logging in test infrastructure
* Make dump_metadata module private
* create_pool(): reformat for black 24.1.1
* github actions: update recommended Rust to 1.76.0
* Refactor stratis-utils for better modularity and more convenient dispatch
* Build min targets without systemd enabled
* Build the -utils binary separately
stratisd 3.6.4
==============
Recommended Rust toolchain version: 1.75.0
Recommended development platform for Python development: Fedora 39
- Cherry-picked commits:
* Update to nix 0.27.1
* github actions: update FEDORA_RELEASE to F39, F38
* Parameterize /usr/libexec everywhere
* github actions: update recommended Rust to 1.74.1
* Increase itertools dependency lower bound to 0.12.0
* Replace get(0) with first()
* Remove unused imports
* Move initialize_devices import to cfg(test)
* should_wake: replace get(0) with front()
* github actions: update recommended Rust to 1.75.0
* Fix up prediction tests to match new filesystem interface
* Start running clippy on stratis-dumpmetadata
* Remove unwrap() in stratis-dumpmetadata
* Run thin_check in loud mode
* Do not pass -q option to xfs.mkfs
* Try both Clevis and passphrase in /etc/fstab setup
* Put dump-metadata code in separate file
* Improve dispatch for tools in tools package
* Use loopdev-3 instead of loopdev crate
* Use checkout@v4
* Fix bug where unencrypted pools can't be started in stratisd-min
* Increase shlex version in Cargo.lock to 1.3.0
* Fix for githooks
* Increase pretty-hex dependency lower bound to 0.4.1
* Makefile_dependencies: fix verify-dependency-bounds target
stratisd 3.6.3
==============
Recommended Rust toolchain version: 1.74.0
Recommended development platform for Python development: Fedora 39
- Cherry-picked commits:
* Fix clippy 1.74 errors
* packit.yaml: fix indentation
* support.yml: trigger on packit and tmt changes
* Fix up excludes for tests-fmf
* Re-indent .packit.yaml
* github actions: update recommended Rust to 1.74.0
* Tidy up targets key
* Use fedora-all for our tests
* Advance current development environment to Fedora 39
* Leave tang container as F38
* Apply formatting changes from black 23.7.0
* Remove obsolete parameter
* Unconditionally add nrext64=0 to inode options
* Check the mkfs.xfs version
* Use semver crate to compare versions
stratisd 3.6.2
==============
Recommended Rust toolchain version: 1.73.0
Recommended development platform for Python development: Fedora 38
- Cherry-picked commits:
* Run cockpit storage tests in PRs
* Remove manual_trigger key from packit test config
* Fix alignment of metadata device to data block size
stratisd 3.6.1
==============
Recommended Rust toolchain version: 1.73.0
Recommended development platform for Python development: Fedora 38
- Cherry-picked commits:
* Regression test for CryptHandle unlocking with both keyring and Clevis
* Fix bug where Clevis and keyring implementations are enabled together
* Run "cargo update --package=rustix --precise=0.37.25"
- Set up patch branch:
https://github.com/stratis-storage/stratisd/pull/3487
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: