-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog
17558 lines (14960 loc) · 757 KB
/
changelog
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
tails (5.15.1) unstable; urgency=medium
* Emergency fix: fix whisperback reporting
-- Tails developers <[email protected]> Tue, 11 Jul 2023 13:20:32 +0200
tails (5.15) unstable; urgency=medium
* Resolve "Upgrade Tor Browser to 12.5.1" (tails/tails!1195)
Closes issues:
- Upgrade Tor Browser to 12.5.1 (tails/tails#19724)
Commits:
- Fetch Tor Browser from our own archive
- Upgrade Tor Browser to 12.5.1-build1
* onion-grater: fix the stream ownership check (tails/tails!1184)
Closes issues:
- onion-grater stream ownership check is very buggy resulting in restrict-stream-
events being broken (tails/tails#19741)
Commits:
- spare typing
- turn on debug automatically based on cmdline
- no stream belongs to pid-based matching
- onion-grater: log events dropped by restrict-stream-events
- onion-grater: only use address comparison for event ownership
- Test suite: test that Tor Browser's circuit view is working
- Upgrade Tor Browser to 12.5-build2
- Test suite: wait longer for Unsafe Browser's zenity dialogs
- Browsers: deal with another extension directory from TBB 12.5 (refs:
tails/tails#19724)
- Browsers: update to new fontconfig path for Tor Browser 12.5 (refs
tails/tails#19742)
- Test suite: remove useless torified_browsing.rb
- Test suite: adapt test to Tor Browser's new file download UX (refs:
tails/tails#19724)
- Test suite: embed old image next to match in automatic image bumping mode
- Defer lyrebird → obfs4proxy renaming
- Upgrade Tor Browser to 12.5.0-build1 (refs: tails/tails#19724)
- Browsers: add new locales supported by Tor Browser 12.5 (refs:
tails/tails#19724)
- Upgrade Tor Browser to 12.5a7 (refs: tails/tails#19724)
- onion-grater: fix the stream ownership check (refs: tails/tails#19741)
* Upgrade Tor Browser to 12.5 (tails/tails!1182)
Commits:
- Upgrade Tor Browser to 12.5-build2
- Test suite: wait longer for Unsafe Browser's zenity dialogs
- Browsers: deal with another extension directory from TBB 12.5 (refs:
tails/tails#19724)
- Browsers: update to new fontconfig path for Tor Browser 12.5 (refs
tails/tails#19742)
- Test suite: remove useless torified_browsing.rb
- Test suite: adapt test to Tor Browser's new file download UX (refs:
tails/tails#19724)
- Test suite: embed old image next to match in automatic image bumping mode
- Defer lyrebird → obfs4proxy renaming
- Upgrade Tor Browser to 12.5.0-build1 (refs: tails/tails#19724)
- Browsers: add new locales supported by Tor Browser 12.5 (refs:
tails/tails#19724)
- Upgrade Tor Browser to 12.5a7 (refs: tails/tails#19724)
* Test suite: avoid writing to script while it may be executing
(tails/tails!1189)
Closes issues:
- "Scenario: I can use a network with captive portal" frequently fails: OSError:
[Errno 26] Text file busy: '/etc/NetworkManager/dispatcher.d/00-firewall.sh'
(RemoteShell::ServerFailure) (tails/tails#19736)
Commits:
- Test suite: avoid writing to script while it may be executing
* Release calendar available from website (tails/tails!1188)
Commits:
- Apply 2 suggestion(s) to 2 file(s)
- update instructions for updating calendar
- contribute/calendar points to actual calendar
- Revert "Remove our public calendar"
* tps: Fix LUKS upgraded each boot on some systems (tails/tails!1181)
Closes issues:
- Persistent Storage upgraded on every login (tails/tails#19734)
Commits:
- tps: add more debug logging for #19728 and #19734
- tps: calculate available RAM just as cryptsetup does in is_upgraded()
- reports memory and cpu, too
- include information about disks
- Whisperback: more usb information
- decrease the argon2id minimum memory requirement
- debug memory cost
- make debug-for-5.15 expire automatically
- Enable debug logging in the tps backend by default
- tps: clarify the whole situation around create() using a lower PBDKF memory
cost that we fix with an upgrade at next boot
- tps: use constant instead of magic number
- tps: also set --pbkdf-force-iterations when createing a new volume
- tps: Fix LUKS upgraded each boot on some systems
* Test suite: Fix flaky step "the displayed clock is less than (\d+) minutes
incorrect" (tails/tails!1180)
Closes issues:
- Flaky test "the displayed clock is less than (\d+) minutes incorrect"
(tails/tails#19727)
Commits:
- Run rubocop
- Test suite: Fix flaky step "the displayed clock is less than (\d+) minutes
incorrect"
- Test suite: Fix usage of backslashes in arguments to Dogtail
* Support authenticated v3 Onion Services in Tor Browser (tails/tails!1160)
Closes issues:
- Support authenticated v3 Onion Services in Tor Browser (tails/tails#17816)
Commits:
- Revert bits about persistent onion auth keys
- Tor Browser: hide UI related to persisting onion auth keys
- Tor Browser: also allow viewing and removing onion auth keys.
- ONION_CLIENT_AUTH_ADD must take arguments.
- Use upper case as we normally do.
- Tor: enable ClientOnionAuthDir to be able to remember onion auth keys (refs:
tails/tails#17816)
- Onion Grater: update Tor Browser to allow onion authentication (refs:
tails/tails#17816)
- Tor: enable ExtendedErrors for Tor Browser's SocksPort
* Welcome Screen: Bump UpgradeLUKS timeout to 240s (tails/tails!1190)
Commits:
- workaround for tails#19871
- Welcome Screen: Bump UpgradeLUKS timeout to 240s
* Upgrade to Linux 6.1.37-1 (tails/tails!1196)
Closes issues:
- Install the Linux kernel from Bookworm (tails/tails#19669)
- Upgrade to Linux 6.1.37-1 (tails/tails#19670)
Commits:
- Document workaround
- Fix heading level
- Update the snapshot of the Debian archive to 2023070701
- Upgrade to Linux 6.1.37-1 from bookworm-security
- Stop tracking sid when we can get the package we want from Bookworm
- APT: add fallback pinning for Debian-Security
- APT: add Bookworm sources
* automailer parsing fixed (tails/tails!1193)
Commits:
- simpler and more effective body parsing
* tails-installer open wrong URI (tails/tails!1191)
Closes issues:
- Honor the "debug" kernel cmdline option in Tails Installer (tails/tails#12396)
- Tails Installer open wrong documentation URI (tails/tails#19870)
Commits:
- rename function to reflect what it does
- verbose is explicitly disabled
- doctest clarifies
- tails-documentation de-localize input links
- tails-documentation supports URLs as arguments
- tails-documentation --dry-run
- tails-installer honors debug cmdline
- refactor debug activation in tails installer
* Fix gitlab-triage-post-release (tails/tails!1186)
Closes issues:
- Multiple failures in gitlab-triage-post-release (tails/tails#19723)
Commits:
- prevent running with unset variables
- let's ignore milestone.due_date
- expand yaml alias
* onion-grater: fix getinfo circuit-status leak (tails/tails!1185)
Closes issues:
- onion-grater leaks info about unassociated circuits to Tor Browser
(tails/tails#19740)
Commits:
- onion-grater: refactor
- onion-grater: add comments per reviewer request
- onion-grater: log events dropped by restrict-stream-events
- onion-grater: only use address comparison for event ownership
- Test suite: test that Tor Browser's circuit view is working
- WIP fix for refs: tails/tails#19740
- onion-grater: fix the stream ownership check (refs: tails/tails#19741)
* TCA: Fix error not displayed after QR code scanning failure (tails/tails!1183)
Closes issues:
- Error not displayed after QR code scanning failure: "TypeError: 'dict' object
is not callable" for "_" (tails/tails#19737)
Commits:
- TCA: Fix error not displayed after QR code scanning failure
* Replace connect-drop executable (tails/tails!1177)
Commits:
- simplify --debug handling
- fix: forward INHERIT_FD to tails-installer
- get env var: raise if not present
- fix: forward INHERIT_FD to tps-frontend
- Fix python3-gi missing in test-tailslib job
- connect-socket: Use parser default value for --debug option
- Inline connect-drop-tails-installer in tails-installer
- Inline connect-drop-tps in tails-persistent-storage
- Replace connect-drop with connect-socket
- run-tca-in-netns: Support setting logging level to debug
- tps-frontend: Fix comment
* Welcome Screen: Fix search (tails/tails!1176)
Closes issues:
- Improve search in language and keyboard selection widgets (tails/tails#19200)
Commits:
- Welcome Screen: Also search the language code
- Welcome Screen: Support multiple search strings
- Welcome Screen: Fix search
* post-RM doc updates (tails/tails!1174)
Commits:
- use automailer at least once in the doc
- notmuch supported
- make sending emails easier multi-MUA
- blog.torproject.org: link to old MR
- let's validate using check-po-msgfmt, too
- I just want to copy-paste
- discard non-diff lines
- more readable output
* Rename tps executables (tails/tails!1172)
Closes issues:
- Rename tps to tpsd (tails/tails#19430)
Commits:
- Rename tps -> tpsd
- Rename tps-frontend-wrapper -> tails-persistent-storage
* tps: Rename mount -> binding (tails/tails!1171)
Closes issues:
- Use the term "binding" instead of "mount" in tps backend code
(tails/tails#19721)
Commits:
- Update PO files.
- tps: Rename mount -> binding
* tps: Make sure that the header correctly unlocks the partition
(tails/tails!1167)
Closes issues:
- Investigate LUKS header restore failure (tails/tails#19718)
Commits:
- tps: Fix error case in which LUKS header backup is not restored
- tps: Fix comments
- tps: Fix typo
- tps: Remove unused imports
- tps: Remove unused D-Bus method TestPassphrase
- tps: Don't include UUID in LUKS header backup path
- tps: Make sure that the header correctly unlocks the partition
* Dogtail: re-enable showingOnly by default (tails/tails!1166)
Closes issues:
- Re-enable showingOnly by default in the test suite (tails/tails#19717)
Commits:
- Test suite: fix another Dogtail configuration issue
- Test suite: simplify
- Test suite: deal with test relying on showingOnly not being enabled
- Test suite: drop useless require
- Test suite: deal with test relying on showingOnly not being enabled
- Test suite: actually "simulate" a failing connection during time sync
- Test suite: drop all explicit `showingOnly: true` arguments
- Dogtail: disable debugging output
- Dogtail: enable showingOnly by default (refs: tails/tails#19771)
* test: user can install w/o cloning (tails/tails!1165)
Closes issues:
- Tails Installer: test that the user can install without cloning
(tails/tails#19716)
Commits:
- rename scenarios consistently
- remove useless step
- Apply 1 suggestion(s) to 1 file(s)
- test: user can install w/o cloning
* Upgrade Linux on devel branch to 6.1.27-1 (tails/tails!1151)
Commits:
- Upgrade to Linux 6.1.27-1 (devel branch)
* Display the Tails version in the boot loader entry (tails/tails!1137)
Closes issues:
- Display the Tails version number during boot (Boot Loader Menu or Welcome
Screen) (tails/tails#16796)
Commits:
- Display the Tails version number in all GRUB menu entries
- Add comment
- Display the Tails version in the boot loader entry
-- Tails developers <[email protected]> Mon, 10 Jul 2023 12:04:32 +0200
tails (5.14) unstable; urgency=medium
* tailslib: Fix spawn_tps_frontend (tails/tails!1168)
Commits:
- tailslib: Fix spawn_tps_frontend
- run-with-user-env: Support the --systemd-run option
- userenv.py: Allow passing the DEBUG environment variable
* Upgrade Tor Browser to 12.0.7 (tails/tails!1159)
Closes issues:
- Upgrade Tor Browser to 12.0.7 (tails/tails#19662)
Commits:
- Fetch Tor Browser from our own archive
- Upgrade Tor Browser to 12.0.7
* Upgrade to Bullseye 11.7 and Linux 6.1.25-1 (stable branch) (tails/tails!1121)
Closes issues:
- Switch to open-ath9k-htc-firmware (tails/tails#19625)
- Consider allowing initramfs size > 32 MiB (tails/tails#19663)
- Upgrade to Bullseye 11.7 (tails/tails#19555)
- Upgrade to Linux 6.1.25-1 (tails/tails#19608)
Commits:
- Upgrade to Bullseye 11.7 and Linux 6.1.25-1 (stable branch)
- Allow initramfs size larger than 32 MiB
- Revert "initramfs: remove amdgpu and nvidia drivers"
- initramfs: remove amdgpu and nvidia drivers
- Install the free firmware firmware-ath9k-htc
* Test suite: Fix flaky low-memory test (tails/tails!1161)
Closes issues:
- Cannot create Persistent Storage when the system is low on memory on Bookworm
(tails/tails#19706)
Commits:
- Run rubocop
- Test suite: Fix flaky low-memory test
* Test suite: Paste bridge via Dogtail (tails/tails!1156)
Commits:
- Test suite: Paste bridge via Dogtail
* Test suite: make --image-bumping-mode work with find_any() (tails/tails!1154)
Closes issues:
- `run_test_suite --image-bumping-mode` fails sometimes: 'NoneType' object has no
attribute 'shape' (tails/tails#19055)
Commits:
- Test suite: simplify the return value for the *_any() methods
- Test suite: make --image-bumping-mode work with find_any()
* Test suite: fix corruption in the OpenCV helper script output
(tails/tails!1153)
Closes issues:
- run_test_suite --image-bumping-mode fails: wrong number of arguments (given 13,
expected 6) (ArgumentError) (tails/tails#19243)
Commits:
- Test suite: add assertion
- Test suite: deal with OpenCV errors more reliably
- Test suite: properly separate stdout and stderr in OpenCV helper script
* Welcome Screen: Replace "Create Persistent Storage" button with switch
(tails/tails!1152)
Closes issues:
- Confusing UX of Persistent Storage onboarding in Welcome Screen
(tails/tails#19673)
Commits:
- Welcome Screen: Replace "Create Persistent Storage" button with switch
* Test suite: Use Dogtail to shut down / reboot the system (tails/tails!1150)
Commits:
- Test suite: Use Dogtail to shut down / reboot the system
* Mention Kleopatra in the name of the Persistent Storage features
(tails/tails!1149)
Closes issues:
- Mention Kleopatra in Persistent Storage settings (tails/tails#19675)
Commits:
- Mention Kleotra in Persistent Storage settings
* Improve labels while creating Persistent Storage (tails/tails!1148)
Closes issues:
- Improve labels during creation of Persistent Storage (tails/tails#19674)
Commits:
- Update PO files
- Integrate tps Python files into our l10n framework
- Improve labels while creating Persistent Storage
* Test suite: Use Dogtail to open additional settings dialog (tails/tails!1146)
Commits:
- Test suite: remove images that are not used anymore
- Test suite: Use Dogtail to open additional settings dialog
* Replace 'tails.boum.org' by 'tails.net' (except for wiki/src)
(tails/tails!1145)
Commits:
- Use the new domain when checking for invalid hosts
- Keep checking for translatable URLs using the old domain
- Fix expected length for GPU-related error message
- Replace 'tails.boum.org' by 'tails.net' (except for wiki/src)
* tps: Avoid triggering OOM killer (tails/tails!1144)
Closes issues:
- Creating Persistent Storage can cause OOM killer to kill gnome-shell
(tails/tails#19667)
Commits:
- Test suite: Test creating Persistent Storage with low memory
- tps: Avoid triggering OOM killer
* Test suite: Use dogtail in step 'I (dis)?connect the network through GNOME'
(tails/tails!1141)
Commits:
- Test suite: Use dogtail in step 'I (dis)?connect the network through GNOME'
* Whisperback warning (tails/tails!1133)
Commits:
- reformat with black
- Fix SyntaxWarning in whisperback
* Persistent Storage feature descriptions (tails/tails!1131)
Closes issues:
- Implement missing descriptions of Persistent Storage features
(tails/tails#19642)
Commits:
- tps-frontend: Fix label style context "error" not reset
- tps-frontend: Improve subtitle of Persistent Folder
- tps-frontend: Add subtitle for Persistent Folder
- tps-frontend: Fix subtitles not shown
* tps: Hide mounts from the desktop environment (tails/tails!1130)
Closes issues:
- The Persistent Folder should not appear as an external device in the Files
browser (tails/tails#19646)
Commits:
- tps: Hide mounts from the desktop environment
* Test suite: Replace more usages of fragile @screen.paste (tails/tails!1127)
Commits:
- Test suite: Replace more usages of fragile @screen.paste
* Electrum: Ask for donations in 1/20 of cases (tails/tails!1117)
Closes issues:
- Have an incentive to donate to Tails from Electrum in Tails (tails/tails#18023)
Commits:
- Remove unused import
- electrum: Fix dialog not closed when process exits
- electrum: Use different donation addresses
- Store Bitcoin addresses for Electrum incentive
- Implement changes proposed by segfault and bokonon
- Electrum: Change effect of the ELECTRUM_DONATION_MESSAGE variable
- Add link to our donation page
- Customize icon
- Improve notification message
- Add vertical space
- Add default description for transfer
- Electrum: Ask for donations in 1/20 of cases
- Electrum: Don't show message dialog if called with arguments
* Use argon2id and support upgrading to LUKS2 and argon2id (tails/tails!1116)
Commits:
- tps: Explain why we use the UUID in the backup file name
- Test suite: Add comment
- Run rubocop
- Welcome Screen: Upgrade Persistent Storage explicitly
- tps: Also restore backup LUKS header if the UUID can't be read
- tps: Test the backup header before upgrading the original header
- tps: Always use shred to delete backup LUKS header
- Test suite: Fix flaky scenario "Feature activation fails"
- Test suite: Test automatically upgrading LUKS header
- Welcome Screen: Set label back to "Unlock Encryption"
- Test suite: Fix step 'I enable persistence' returning early
- Test suite: Fix usage of Gherkin keyword
- tps: Add note about wear leveling to UpgradeLUKS docstring
- tps: Use shred to delete backup LUKS header
- tps: Also update memory cost of Argon2id
- tps: Add type hint
- tps: Rename the Partition class to TPSPartition
- tps: Fix stacklevel of log functions
- tps: Automatically upgrade LUKS header when unlocking
- tps: Support upgrading to LUKS2 and argon2id
* Detect captive portals (tails/tails!1107)
Closes issues:
- use iptables --wait in test suite (tails/tails#19698)
- tails-get-network-time sets different User-Agent than NetworkManager
(tails/tails#19650)
- Bring the Tor Connection user story to a state where it should not be our top
priority anymore (tails/tails#19473)
- Detect captive portals (tails/tails#5785)
Commits:
- iptables waits for lock
- Run rubocop
- Test suite: Replace some usages of "Tor is ready"
- Test suite: Check time sync headers
- Test suite: Change how we imitate a captive portal
- Test suite: Replace httpbin.org with our own web server
- Test suite: Catch errors when copying Chutney data
- Revert "while at it, remove all usages of "Tor is ready""
- Test suite: Replace usage of httpbin.org
- Test suite: Check that TCA knows when a portal was detected
- tails-get-network-time: Restructure
- tails-get-network-time: Fix case that not enough data was received
- tails-get-network-time: Print curl debug output in debug mode
- tails-get-network-time: Support config file
- tails-get-network-time: Don't fail if response code is other than 200 and 204
- tails-get-network-time: Fix handling of extra bytes after expected response
- tails-get-network-time: Fix handling of empty body
- tails-get-network-time: Fix typo
- tails-get-network-time: Remove unused variable
- tails-get-network-time: Remove unreachable code
- tails-get-network-time: Ignore case of X-NetworkManager-Status value
- keep the comment near to relevant code block
- Apply 1 suggestion(s) to 1 file(s)
- debug leftover
- while at it, remove all usages of "Tor is ready"
- use the non-deprecated step
- captive portal automated test
- More generic error, because we're not sure
- User-visible captive portal detection
- actually detect captive portal
- type hint for callbacks
- pass additional data in case of errors
- fix error response code
- override for GetNetworkTimeCommand
- Refactor code to allow per-command override
- define shared constant in module
- tails-get-network-time: Don't set any User-Agent
-- Tails developers <[email protected]> Mon, 12 Jun 2023 14:53:26 +0200
tails (5.13) unstable; urgency=medium
* Resolve "Upgrade Tor Browser to 12.0.6, based on Firefox 102.11"
(tails/tails!1134)
Closes issues:
- Upgrade Tor Browser to 12.0.6, based on Firefox 102.11 (tails/tails#19621)
Commits:
- Fetch Tor Browser from our own archive
- Upgrade Tor Browser to 12.0.6-build1
* unsafe-browser: Explain why our use of flock is not vulnerable
(tails/tails!1113)
Closes issues:
- Unsafe Browser - Local Privilege Escalation (LPE) via symlink - Arbitrary File
Content Delete (tails/tails#19616)
Commits:
- Use /run/lock instead of /var/lock
- unsafe-browser: Explain why our use of flock is not vulnerable
* Make curl use Tor (tails/tails!1123)
Closes issues:
- Make curl work out of the box (tails/tails#19488)
Commits:
- test that curl works out of the box
- Make curl use Tor
* udisks2: Use LUKS2 by default (tails/tails!1115)
Closes issues:
- Persistent Storage: Use LUKS2 (tails/tails#15450)
Commits:
- Test suite: Increase timeout for changing the LUKS passphrase
- Test suite: Check that Persistent Storage uses LUKS2
- Test suite: record old version when installing one to disk
- Test suite: move step definition to a more suitable place
- udisks2: Use LUKS2 by default
* tails-documentation: Check that joined path is below website path
(tails/tails!1132)
Closes issues:
- tails-documentation - Limited Path Traversal (tails/tails#19576)
Commits:
- tails-documentation: Check that joined path is below website path
* Test suite: Don't check for "Display output is not active" screen
(tails/tails!1126)
Closes issues:
- Tests sometimes fail with "Display output is not active" after clicking login
button in Welcome Screen (tails/tails#19639)
Commits:
- Test suite: Don't check for "Display output is not active" screen
- Test suite: Print step status
- Welcome Screen: Make error message more useful
* Remove our public calendar (tails/tails!1125)
Commits:
- Add missing word
- Fix broken links
- Remove our public calendar
* tps: Use argon2id (tails/tails!1120)
Closes issues:
- Persistent Storage: Use argon2id (tails/tails#19633)
Commits:
- Test suite: Check that Persistent Storage uses argon2id
- tps: Reduce the number of triggered udev events
- tps: Fix creation sometimes failing because udisks object is not ready
- tps: Fix `udevadm trigger --settle` sometimes blocking forever
- tps-frontend: Fix first job update sometimes ignored
- tps: Send only one PropertiesChanged signal per job update
- tps: Don't restrict CPU usage during Persistent Storage creation
- tps: Keep the system responsive while creating Persistent Storage
- tps: Use argon2id
* tps: Fix stderr of failed commands not printed (tails/tails!1118)
Commits:
- tps: Fix stderr of failed commands not printed
* Test suite: Avoid TCA scenario failing if the error panel is briefly shown
(tails/tails!1114)
Closes issues:
- Fix "Scenario: The same Tor configuration is applied when the network is
reconnected" failing (tails/tails#19591)
Commits:
- Test suite: Avoid TCA scenario failing if the error panel is briefly shown
* tps: Fix InvalidBootDeviceError raised in finally block (tails/tails!1103)
Closes issues:
- "Persistent Greeter options" test suite scenario always fails
(tails/tails#19558)
- tps reports the need for "USB stick installed with a USB image or Tails
Installer" in unrelated failure modes (tails/tails#19588)
Commits:
- tps: Fix InvalidBootDeviceError raised in finally block
- tps: Remove unused exception
-- Tails developers <[email protected]> Mon, 15 May 2023 12:22:05 +0200
tails (5.12) unstable; urgency=medium
* Test suite: Try to catch another case of "Display output is not active"
(tails/tails!1106)
Closes issues:
- Test suite breakage when restoring an old Bullseye snapshot: "Guest disabled
display", "Display output is not active" (tails/tails#18953)
Commits:
- Test suite: Try to catch another case of "Display output is not active"
* Test suite: Press escape to wake up the display (tails/tails!1089)
Closes issues:
- Test suite breakage when restoring an old Bullseye snapshot: "Guest disabled
display", "Display output is not active" (tails/tails#18953)
Commits:
- Test suite: Retry restoring snapshot 3 times
- Test suite: Press escape up wake up the display
* Upgrade to Linux 6.1.20-1 (stable branch) (tails/tails!1080)
Closes issues:
- Upgrade to Linux 6.1.15 (tails/tails#19484)
- Upgrade to Linux 6.1.20+ (tails/tails#19556)
Commits:
- Upgrade to Linux 6.1.20-1 from sid
* Upgrade to Linux 6.1.20-1 from sid (devel branch) (tails/tails!1079)
Commits:
- Upgrade to Linux 6.1.20-1 from sid
* Add icon for tails-backup (tails/tails!1111)
Closes issues:
- Have an icon for the backup utility (tails/tails#19363)
Commits:
- Update icon for Persistent Storage settings
- Add icon for tails-backup
* Additional Software: Fix launched apps not accessible via Dogtail
(tails/tails!1092)
Closes issues:
- tca-portal, tails-additional-software: don't run apps as amnesia under the
scope of the (root) systemd service (tails/tails#19131)
- Additional Software is in English when launched from a notification
(tails/tails#17365)
- tails-additional-software-config and gedit started from a notification are not
accessible ⇒ breaks test suite (tails/tails#19233)
Commits:
- Additional Software: Make tails-additional-software-config D-Bus activatable
- Additional Software: Launch apps with gtk-launch
* Resolve "myspace.com has become incompatible with our htpdate setup"
(tails/tails!1085)
Closes issues:
- myspace.com has become incompatible with our htpdate setup (tails/tails#19561)
Commits:
- test-iuk: list 1 package per line, for nicer future diffs
- test-iuk: make it breathe
- test-iuk: refuse running unless in a throw-away container
- convert shell script to set -eu
- move test-iuk to its own file
- refactor: put in its own file
- retry on failures
- replace myspace.com with facebook.com
* Test suite: Fix step "persistent Greeter options were restored"
(tails/tails!1084)
Closes issues:
- "Persistent Greeter options" test suite scenario always fails
(tails/tails#19558)
Commits:
- Test suite: Avoid an unnecessary reboot
- Test suite: Make clicking "Connect to Tor" button more robust
- Test suite: Add alternative persian comma image
- Test suite: Fix step "persistent Greeter options were restored"
- Test suite: Translate Dogtail args to $lang_code
- Remote shell: Support setting environment variables in remote commands
- Test suite: Support configuring chutney start time
* tps: Fix hook execution with --profiling option (tails/tails!1112)
Commits:
- tps: Fix hook execution with --profiling option
* Shell library: Validate LANG before using it (tails/tails!1110)
Closes issues:
- Validate LANG in localization.sh (tails/tails#19576)
Commits:
- Shell library: Validate LANG before using it
* Remove obsolete disabling of nf_conntrack_helper (tails/tails!1109)
Closes issues:
- Update disabling of netfilter's automatic conntrack helper assignment
(tails/tails#19557)
Commits:
- Remove obsolete disabling of nf_conntrack_helper
* Test suite: Fix Electrum test (tails/tails!1105)
Closes issues:
- Electrum test suite broken by !1010 (tails/tails#19589)
Commits:
- Test suite: Fix Electrum test
* Test suite: Fix additional software scenario (tails/tails!1102)
Closes issues:
- Test suite: Scenario "Recovering in offline mode after Additional Software
previously failed to upgrade and then succeed to upgrade when online" fails
(tails/tails#19574)
Commits:
- Remove @fragile tags that were only justified by #19233, which was solved via
!1092
- Test suite: Fix additional software scenario
* Additional Software: Use valid D-Bus name as app name (tails/tails!1099)
Closes issues:
- `gtk-launch org.boum.tails.additional-software-config.desktop` is broken
(tails/tails#19584)
Commits:
- Design doc: update path
- Additional Software: Use valid D-Bus name as app name
* Test suite: allow the pattern to cover slightly less of the write cache
(tails/tails!1098)
Closes issues:
- Test Suite: Feature "System memory erasure on shutdown" is fragile
(tails/tails#19583)
Commits:
- Test suite: allow the pattern to cover even less of the write cache
- Test suite: allow the pattern to cover slightly less of the write cache
* Upgrade Tor Browser to 12.0.5 (tails/tails!1097)
Closes issues:
- Upgrade to Tor Browser 12.0.5, based on Firefox 102.10 (tails/tails#19559)
Commits:
- Fetch Tor Browser from our own archive
- Upgrade Tor Browser to 12.0.5-build2
- Upgrade Tor Browser to 12.0.5-build1
* tps: Fix "python.UnknownError" returned for builtin errors (tails/tails!1095)
Closes issues:
- Buggy error handling in tps: OSError is not a valid D-Bus name
(tails/tails#19578)
Commits:
- tps: Fix "python.UnknownError" returned for builtin errors
* Welcome Screen: Support login kernel command-line option (tails/tails!1093)
Commits:
- Welcome Screen: Support login kernel command-line option
* Welcome Screen: Don't allow unlocking with empty passphrase by pressing Enter
(tails/tails!1091)
Closes issues:
- Welcome Screen: Don't allow unlocking with empty passphrase by pressing Enter
(tails/tails#19570)
Commits:
- Welcome Screen: Don't allow unlocking with empty passphrase by pressing Enter
* systemd: Use name in unit status messages (tails/tails!1088)
Closes issues:
- systemd: Use name instead of description in unit status messages
(tails/tails#19568)
Commits:
- systemd: Use both name and description in unit status messages
* Display a diceware suggestion when creating the Persistent Storage
(tails/tails!1087)
Closes issues:
- Display a diceware suggestion when creating the Persistent Storage
(tails/tails#18148)
Commits:
- tps-frontend: Move passphrase suggestion code to passphrase_view.py
- tps-frontend: Fix local variable 'passphrase' might be referenced before
assignment
- tps-frontend: Increase spacing between suggested passphrase and refresh button
- tps-frontend: Add missing space to error message
- tps-frontend: Fix indentation
- tps-frontend: hide relevant UI elements when diceware fails
- tps-frontend: give attribute an expressive name
- Wait Bookworm to use the non-English wordlists
- Determine passphrase suggestion width automatically
- tps-frontend: Remove default passphrase suggestion
- tps-frontend: refactoring
- tps-frontend: hide 'for example' label when diceware suggestion fails
- tps-frontend: don't break when wordlist directory doesn't exist
- tps-frontend: Use a method to set a new passphrase hint
- tps-frontend: Log the exceptions caused by diceware suggestion
- tps-frontend: print stderr when diceware fails
- tps-frontend: use a wordlist in the currently configured language when
available
- tps-frontend: adjust passphrase view UI
- Display a diceware suggestion when creating the Persistent Storage
* Fix race when starting tails-ibus-proxy.service (tails/tails!1086)
Commits:
- tails-dbus-proxy: Add missing PIDFile= property to systemd services
- tails-ibus-proxy: Busy wait on ibus-daemon
- tails-ibus-proxy: Fix missing whitespace (PEP-8)
- Fix race when starting tails-ibus-proxy.service
* Don't translate "known security vulnerabilities" (tails/tails!1081)
Commits:
- Don't translate "known security vulnerabilities"
* Fix progress information inconsistencies when resuming an automatic upgrade
download (tails/tails!1071)
Closes issues:
- Upgrader sometimes fails: Negative number not allowed in format_bytes at
/usr/local/share/perl/5.32.1/Tails/IUK/Role/FormatByte.pm line 45 (Fix progress
information inconsistencies when resuming an automatic upgrade download)
(tails/tails#18435)
Commits:
- Revert "Upgrader: Avoid display the progress dialog initial text"
- Untabify
- Make code style more consistent
- Add comment
- Upgrader: Avoid display the progress dialog initial text
- Tails::IUK::LWP::UserAgent::WithProgress: check if the temp file exists
- Tails::IUK::LWP::UserAgent::WithProgress: always display the total amount of
data downloaded
* Persistent Storage design docs (tails/tails!1035)
Closes issues:
- Persistent Storage: Update design doc (tails/tails#19223)
Commits:
- Remove XXX comments
- Remove glossary entry for tails-persistence-setup
- Link to contribute/Persistent_Storage in contribute.mdwn
- Persistent Storage design doc: Don't link to line numbers
- Revert "Rename persistence.mdwn -> Persistent_Storage.mdwn"
- Follow style guide
- Fix sentence
- Fix typo
- Improve Persistent Storage contribute doc
- Rename persistence.mdwn -> Persistent_Storage.mdwn
- Move persistent-storage/HACKING.md to website
- Update Additional Software design doc
- Persistent Storage design doc: Add section on symlink attacks
- Improve Persistent Storage design doc
- better draft of Persistent Storage design docs
* tps: Fix activation of feature in inconsistent state (tails/tails!1010)
Closes issues:
- Consider sync'ing data to disk after copying it to Persistent Storage when
activating a feature (tails/tails#19368)
- Seemingly spurious tps.configuration.mount.IsActiveException when deactivating
a Persistent Storage feature (tails/tails#19331)
- Delete corresponding data when a feature of the Persistent Storage is turned
off in the settings (tails/tails#8447)
- Switches of the new Persistent Storage are too slow to respond on some USB