forked from iterate-ch/cyberduck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
2279 lines (2013 loc) · 128 KB
/
Changelog.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
Cyberduck
https://cyberduck.io/
8.6.2
- [Bugfix] Segmented downloads with multiple connections per file causes transfers to fail (#13374)
- [Bugfix] Use recommended part size from authorization response for large file uploads (Backblaze B2) (#14856)
- [Bugfix] Skip determining if directory only contains hidden files (Backblaze B2) (#14775)
- [Bugfix] Does not show folders by default that do not contain a .bzEmpty placeolder file (Backblaze B2) (#14768)
- [Bugfix] Make settings in Preferences → Connection → Timeouts apply for transfers (#14737)
- [Bugfix] Copy or move files between containers (Azure) (#14826)
- [Bugfix] Upload with glob pattern including folders for local source has wrong target on server (CLI) (#14800)
- [Bugfix] Should not attempt to read metadata of existing files with no --preserve flag passed (CLI) (#14802)
8.6.1
- [Bugfix] Parse seconds or milliseconds from Mtime in metadata (S3)
8.6.0
- [Feature] Add preference "Use Keychain" when unlocking vaults (Cryptomator) (#14662)
- [Bugfix] Slow listing of directory contents (Backblaze B2) (#14527)
- [Bugfix] Set newly calculated nonces and checksum when retrying upload (Cryptomator) (#14547)
- [Bugfix] Allow tilde character in keys (S3, Google Storage) (#14590)
- [Bugfix] Support sso_session configuration directive (S3) (#14568)
- [Bugfix] Allow synchronizing of folders with different folder names as parameters (CLI) (#13911)
- [Bugfix] Only prompt for password when creating share when account is subscribed to professional plan (Dropbox) (#14581)
- [Bugfix] File permission changes not applying recursively (SFTP, FTP) (#14004)
- [Bugfix] No result set when searching for shared files (Google Drive) (#14612)
- [Bugfix] Make Bonjour installation optional (Windows) (#13416)
- [Bugfix] Allow uninstall of Bonjour components (Windows) (#13416)
- [Bugfix] Error parsing MLST response from Serv-U FTP Server (FTP) (#14652)
- [Bugfix] Set timestamps in metadata interoperable with rclone (S3) (#14639)
- [Bugfix] Failure configuring CloudFront distributions for bucket (S3) (#14669)
8.5.9
- [Bugfix] Requires force quit after opening file multiple times in external editor (macOS) (#14412)
8.5.8
- [Bugfix] Presigned URL does not consider the server port number (S3) (#13981)
- [Bugfix] File changes in editors are no longer uploaded when file has previously deleted by a save process (#14455)
- [Bugfix] Unable to duplicate files (macOS) (#14413)
- [Bugfix] Failure reverting previous version in vault (Cryptomator, OneDrive, Google Drive, Dropbox) (#14410)
- [Bugfix] Hide directory placeholders only containing hidden files (Backblaze B2) (#14431)
8.5.7
- [Bugfix] Cannot create or duplicate files with any suffix (#14263)
- [Bugfix] Do not use MLST when running with interoperability connection profile (FTP) (#14333)
- [Bugfix] Error using "Open With" to open file in external editor (Windows) (#14332)
- [Bugfix] Overwriting large file deletes segments after transfer is complete (OpenStack Swift) (#14326)
- [Bugfix] Edit file instantly uploads and overwrites file on server with no change (#14251)
- [Bugfix] The bucket does not allow ACLs error when copying file to bucket with BucketOwnerEnforced ownership controls (S3) (#14300)
- [Bugfix] Allow to copy expiring public links using shared access signature with different expiry dates (Azure) (#14270)
- [Bugfix] Allow to create public links with different expiry dates (OpenStack Swift) (#14256)
- [Bugfix] Review layout of input prompts (Windows)
- [Bugfix] Overwrite prompt does not allow to expand folder (Windows) (#14287)
- [Bugfix] Transfer with Resume or Compare option marked as incomplete when all files can be skipped (#12998)
8.5.6
- [Bugfix] Support for vaults using GCM encryption (Cryptomator) (#14207)
- [Bugfix] Recursive search displaying folders not containing files matching the pattern (#13925)
- [Bugfix] Copying or moving files with two browser windows may not use server side operation (#14084)
- [Bugfix] Lazily calculate pre-signed URLs (S3, Openstack Swift, Azure)
8.5.5
- [Bugfix] Save OAuth tokens with username to allow connecting to different accounts (Google Drive, Google Storage, OneDrive, Dropbox, Box)
8.5.4
- [Bugfix] Failure authorizing using OAuth with no desktop browser installed (Linux) (#14028)
- [Bugfix] Allow to create new buckets in regions ap-south-2, ap-southeast-3, eu-south-2, eu-central-2, me-central-1 (S3) (#14045)
- [Bugfix] Allow custom path for IdentityAgent configuration (SFTP, Windows) (#13933)
8.5.3
- [Bugfix] Failure uploading file with diacritic in filename (Windows) (#13723)
- [Bugfix] Folders containing backup file dirid.c9r cannot be deleted (Cryptomator) (#13957)
- [Bugfix] Files not decrypted after unlocking vault (Cryptomator, Box) (#13961)
- [Bugfix] Only read specific key from SSH agent with IdentitiesOnly and public key in IdentitiyFile directive in OpenSSH configuration to limit number of authentication attempts (SFTP) (#13935)
- [Bugfix] Interoperability with IdentityAgent from 1Password (SFTP)
8.5.2
- [Bugfix] Invalid syntax in Open in Terminal command (SFTP, macOS)
- [Bugfix] Passwords for ProxyJump hosts in .ssh/config are not saved (SFTP) (#13936)
- [Bugfix] Files in vault not decrypted (Cryptomator, Google Storage) (#13949)
8.5.1
- [Feature] Skip button to allow creating share with no passphrase (Dropbox, Box, ownCloud, Nextcloud) (#13846)
- [Feature] Redirect to application without requiring to copy authentication code when opening new connection (Dropbox)
- [Feature] Allow configuration of client certificate (ownCloud, Nextcloud)
- [Feature] Use Authorization Code Flow with Proof Key for Code Exchange (PKCE) (Google Storage, Google Drive, Dropbox)
- [Bugfix] Mutual authentication does not work with client certificates with a friendly name set (Windows)
8.5.0
- [Feature] Allow to view and revert previous versions of files (ownCloud, Nextcloud) (#10560)
- [Feature] Allow to request files with upload share link (Dropbox) (#13832)
- [Bugfix] Try keyboard-interactive authentication always before password for interoperability with 2FA configurations (SFTP)
- [Bugfix] Connect to custom hostname from pairing response (Files.com)
- [Bugfix] Failure creating upload link to request files (Nextcloud) (#13791)
8.4.5
- [Bugfix] Failure enabling connection profile from Preferences (#13739)
- [Bugfix] Only set userProject parameter in requests for buckets with requester pays option enabled (Google Storage) (#13745)
- [Bugfix] Allow glob pattern when searching for files in browser (#13781)
8.4.4
- [Bugfix] Prioritise password authentication if password is available (SFTP) (#13442)
- [Bugfix] Filter identities in SSH agent based on private key selection in bookmark (SFTP) (#13680)
- [Bugfix] Switch OAuth registration with redirect URIs shorter than the allowed maximum of 32 characters in Windows Store (Google Storage, Google Drive) (#13695)
- [Bugfix] Save OAuth expiry in keychain instead of preferences (#13710)
8.4.3
- [Bugfix] Repeated prompt to verify server fingerprint (SFTP, Windows) (#13638)
- [Bugfix] OAuth token not saved in credentials manager (Dropbox, Windows) (#13613)
- [Bugfix] Malformed authorization header with wrong region when browsing buckets in multiple regions (S3)
- [Bugfix] Lower memory footprint regardless of available memory on system (macOS)
8.4.2
- [Bugfix] Setting to always open default editor application set in Preferences (Windows) (#13546)
- [Bugfix] Unable to complete OAuth flow with missing scheme handler registered when running in sandbox (Google Storage, Google Drive) (Mac App Store)
8.4.1
- [Bugfix] Crash running on versions prior macOS 11 (#13521)
8.4.0
- [Feature] Revert previous file versions in Info panel (S3, Backblaze B2, Dropbox, Google Storage, OneDrive, Microsoft Sharepoint)
- [Feature] Delete previous file versions in Info panel (S3, Backblaze B2, Google Drive, Google Storage)
- [Feature] View previous file versions in Info panel (S3, Backblaze B2, Dropbox, Google Drive, Google Storage, OneDrive, Microsoft Sharepoint)
- [Feature] View previous versions in browser by choosing View → Show Hidden (Google Drive)
- [Feature] Support applications installed from Windows Store for editing files (#12802) (Windows)
- [Feature] No length limitation when storing passwords in Windows Credential manager (#12803) (Windows)
- [Feature] Migrate OAuth out-of-band flow to an alternative method (#13360) (Google Drive, Google Storage)
- [Feature] Add menu item to request files for protocols that support upload share links (#13426) (Box, Nextcloud, ownCloud)
- [Feature] Include region identifier in region selection when creating new bucket (S3) (#13501)
- [Bugfix] Do not attempt to set ACL on files uploaded to bucket with owner controls set that disallows ACLs (S3) (#13386)
- [Bugfix] Register custom DNS resolver to handle IPv6 preference (#13399)
- [Bugfix] Failure opening vault (Cryptomator, FTP) (#13375)
- [Bugfix] Mismatch between SHA256 hash error when downloading files (Dropbox) (#13361)
- [Bugfix] No such file error when uploading with temporary filename option (SFTP) (#13367)
- [Bugfix] Transfer acceleration endpoints not used (S3) (#13359)
- [Bugfix] Delete multiple files with batch request (DRACOON)
- [Bugfix] RequestTimeTooSkewed error with computer date settings not using Gregorian calendar (S3) (#13454)
- [Bugfix] Fix error reporting to display exact parser failure for unexpected response contents (S3) (#13383)
- [Bugfix] Invalid hostname used when completing multipart upload when connecting to single bucket (S3)
- [Bugfix] Unable to delete object version created prior enabling file versioning for bucket (S3) (#13507)
- [Bugfix] Bucket versioning checkbox should reflect lifecycle configuration (Backblaze B2) (#13505)
8.3.3
- [Bugfix] Failing transfers with multiple files (FTP) (#13322)
8.3.2
- [Bugfix] Connection not released causing freeze in browser or transfer (FTP) (#13273)
8.3.1
- [Bugfix] Failure reconnecting when control connection is closed on server (FTP) (#13037)
- [Bugfix] Set role session name from configuration when connecting using credentials from AWS Command Line Interface (S3)
- [Bugfix] Hide file when deleting latest version to allow later restore (Backblaze B2)
8.3.0
- [Bugfix] Enable authentication using OpenSSH agent on Windows (SFTP, Windows) (#12880)
- [Bugfix] File edited moved to trash and no longer updated on server (#11729)
- [Bugfix] Failure copying or renaming file when bucket name is set in hostname using virtual host style (S3)
- [Bugfix] Failure deleting file (Google Drive, Cryptomator)
- [Bugfix] Failures when deleting folder with no placeholder (Azure) (#12900)
- [Bugfix] Batch requests when deleting multiple files (Dropbox) (#12904)
- [Bugfix] Deleting many files may fail with 413 Request Entity Too Large (Google Drive) (#12902)
- [Bugfix] IPv6 not working for hosts with both A and AAAA entries (#12917)
- [Bugfix] Resolve tilde in IdentityAgent configuration (SFTP) (#12954)
- [Bugfix] Missing download overwrite prompt (#12860)
- [Bugfix] Compose segments of download very slow after downloading is slow (#12996)
- [Bugfix] Trim whitespace from input in username and password fields (#12986)
- [Bugfix] Missing Glacier Instant Retrieval storage class option (S3) (#12915)
8.2.3
- [Bugfix] When creating new vault save vault.cryptomator to make vaults readable by Cryptomator apps (Cryptomator)
- [Bugfix] Unable to download files using glob pattern (CLI) (#12797)
- [Bugfix] Failure unlocking vault (CLI, Cryptomator, Windows) (#12812)
8.2.2
- [Bugfix] Add support reading IdentityAgent from OpenSSH configuration (SFTP)
- [Bugfix] Unable to enable debug log configuration (Windows)
8.2.1
- [Bugfix] Try all public key algorithms available for a specific key type (SFTP) (#12733)
- [Bugfix] Add fallback when location query for endpoint URI fails (S3) (#12723)
- [Bugfix] Failure connecting to bucket with missing virtual host style request support (S3) (#12746)
- [Bugfix] Fix display scaling issues (Windows) (#12742)
8.2.0
- [Feature] Support for Box API (Box) (#10235)
- [Bugfix] Failure opening connection (FTP-SSL, Windows)
- [Bugfix] Interoperability with Sharepoint Site (Microsoft Sharepoint)
- [Bugfix] Compare option for existing files in transfer fails to verify checksums (#12688)
- [Bugfix] Failure uploading to folders in vault (Cryptomator, CLI) (#11881)
8.1.2
- [Bugfix] Crash with unsatisfied link error using random functions (Windows) (#12628)
8.1.1
- [Feature] Interoperability with vault format 8 (Cryptomator) (#11888)
- [Feature] Support for AWS SSO using Session Token Authentication (S3) (#11568)
- [Feature] Support for TLSv1.3 (Windows) (#11790)
- [Bugfix] Allow session reuse for data connections (FTP-SSL) (#12589)
8.1.0
- [Feature] Native support for Apple silicon (#11101)
8.0.2
- [Bugfix] Replacing file may cause empty permission set in ACL (S3)
- [Bugfix] Failure authentication with PuTTY private key (SFTP) (#11887)
- [Bugfix] Set storage class for transition to "ARCHIVE" when editing lifecycle configuration (Google Cloud Storage) (#11906)
- [Bugfix] Deleted folders still displayed with versioning enabled on bucket (Google Cloud Storage) (#11904)
8.0.1
- [Bugfix] Interoperability with servers not supporting Range header in requests (WebDAV)
8.0.0
- [Feature] Allow to manage additional connection profiles in Preferences (#10823)
- [Feature] New default connection profile for ownCloud
- [Feature] Retain modification date in metadata for uploads (Google Cloud Storage) (#11784)
- [Feature] Retain modification date in metadata for uploads (S3) (#11784)
- [Feature] Build package in AppImage format (CLI) (#11762)
- [Feature] Support for PuTTY v3 key files (SFTP)
- [Feature] Support public key authentication using certificates (SFTP)
- [Feature] Support for PEM ASN.1 encoded private keys (SFTP)
- [Feature] Support for host certificate keys handling @cert-authority in known_hosts (SFTP)
- [Feature] Column in browser window to display checksum (#11824)
- [Bugfix] Change default path for NextCloud connections to include username (#11787)
- [Bugfix] Failed to overwrite upload of object with custom metadata (Google Cloud Storage) (#11781)
- [Bugfix] Skip duplicate file versions in output (Cyberduck CLI) (#11786)
- [Bugfix] Fails to use selected private key file outside of ~/.ssh folder (SFTP, Mac App Store) (#11782)
- [Bugfix] Unable to delete folders (Google Cloud Storage) (#11808)
- [Bugfix] Allow to set Glacier storage class (Google Cloud Storage) (#11521)
- [Bugfix] Unable to remove delete marker (S3) (#11803)
- [Bugfix] Unable to download previous version of file (S3, Backblaze B2) (#11797, #11835)
- [Bugfix] Copying files requires permission to read bucket ACL (S3) (#11701)
- [Bugfix] Unable to set storage class to STANDARD (S3) (#11849)
- [Bugfix] Taskbar shows incorrect number of transfers (Windows) (#11813)
- [Bugfix] Allow to delete trashed files (Google Drive) (#11816)
- [Bugfix] Create directory placeholders using default storage class (S3) (#11751)
- [Bugfix] Create master key using default storage class (S3, Cryptomator) (#11751)
- [Bugfix] Use specific region endpoint only with --region option (S3, CLI) (#11827)
- [Bugfix] Empty list output when listing root directory (CLI) (#11814)
7.10.2
- [Feature] Add --purge option to invalidate files in Amazon CloudFront distributions and OpenStack Swift (X-CDN-Enabled header) (#11767)
- [Bugfix] Links for CloudFront distributions and S3 website endpoints are missing in the Copy URL and Open URL menu (S3) (#11764)
- [Bugfix] Failure downloading files (Files.com)
- [Bugfix] Return existing share URL when found (Dropbox) (#11209)
- [Bugfix] Select origin bucket for logging target with missing permission to list all buckets (S3) (#17755)
- [Bugfix] Unable to upload to buckets with uniform bucket-level access enabled (Google Cloud Storage) (#11766)
- [Bugfix] Missing progress information when copying file (#11019)
7.10.1
- [Feature] Support S3 interface endpoints (AWS PrivateLink for Amazon S3) (#11735)
- [Feature] Updated support for Files.com using proprietary REST API (Files.com)
- [Feature] Allow override of protocol specific settings in connection profiles
- [Bugfix] Unable to access team drive set as default path in bookmark (Google Drive)
- [Bugfix] Login failure with file transfers using multiple connections (FTP)
- [Bugfix] Downloads from HTTP server with no WebDAV extension support (CLI) (#11727)
7.10.0
- [Feature] Preference to set default storage class (Google Cloud Storage) (#11521)
- [Feature] Preference to set default bucket region (Google Cloud Storage)
- [Feature] Preference to set predefined set of grantees and permissions for new files (S3, Google Cloud Storage)
- [Feature] Support to set predefined ACL bucket-owner-full-control (S3, Google Cloud Storage) (#11697)
- [Feature] Context menu in browser table header to select columns (macOS) (#11718)
- [Feature] Allow selection of region when creating new bucket for third party S3 providers
- [Bugfix] Recursive search yields no results (#11424)
- [Bugfix] Canceled upload to a vault can result in an undeletable folder (Cryptomator) (#11696)
- [Bugfix] Updated .NET Framework Installer (Windows)
7.9.2
- [Bugfix] Failure opening application with previous application support directory symbolic link (macOS)
7.9.1
- [Bugfix] Slow synchronisation of a large folder (#11676)
- [Bugfix] Slow transfer when using "compare" option for existing files (#11679)
- [Bugfix] Downloads fail with error "The specified key does not exist" (S3) (#11670)
7.9.0
- [Feature] New Big Sur style application icon (macOS)
- [Feature] New "Auto" default option for number of connections for transfers
- [Feature] Increased default to 5 concurrent connections for transfers for protocols other than FTP
- [Feature] Allow toggling versioning configuration for bucket (Google Cloud Storage)
- [Feature] Display and restore of previous file versions in bucket (Google Cloud Storage)
- [Feature] Support chacha20-poly1305@openssh.com cipher (SFTP) (#8554)
- [Feature] Share file option to set public-read ACL on file and copy URL (S3, Google Cloud Storage)
- [Feature] Tremendously faster uploading folders with many files to vault (Cryptomator, OneDrive, Google Drive, Backblaze B2) (#10849)
- [Feature] Substantially faster uploading folders with many files (OneDrive, Google Drive, Backblaze B2)
- [Bugfix] Maximum number of simultaneous transfers not handled properly (#11001)
- [Bugfix] Interoperability with China region operated by 21Vianet (OneDrive, Sharepoint) (#11415)
- [Bugfix] Support Elliptic Curve (EC) based client certificates for authentication (WebDAV, Windows)
- [Bugfix] Interoperability with OpenSSH for Windows (SFTP)
- [Bugfix] Segmented download fail with longer filenames (Windows)
- [Bugfix] Bezel style for popup buttons in window toolbars (macOS)
7.8.5
- [Feature] Support ED25519 and ECDSA keys in the PuTTY format (SFTP)
- [Bugfix] Large increasing memory usage when downloading files with segmented downloads option (#11151)
- [Bugfix] Faster transfer rate with segmented downloads option enabled (SFTP)
- [Bugfix] Allow revert and restore of multiple files (S3)
7.8.4
- [Bugfix] Missing log file configuration (Windows)
7.8.3
- [Bugfix] Failure renaming files (OneDrive, Sharepoint)
- [Bugfix] Optimize segmented downloads
- [Bugfix] Allow resume of segmented downloads
- [Bugfix] Ignore unavailable regions when listing containers (OpenStack Swift)
- [Bugfix] Missing default connection profile (Nextcloud & ownCloud)
- [Bugfix] Missing default connection profile (Microsoft SharePoint Site)
- [Bugfix] Missing default connection profile (Files.com)
7.8.2
- [Feature] Updated application icon when running on macOS Big Sur
- [Bugfix] Failure uploading large files with S3 compatible API (Backblaze B2) (#11233)
- [Bugfix] Failure uploading large using legacy S3 compatible API (Google Cloud Storage) (#11547)
- [Bugfix] MD5 mismatch error for uploads to Oracle Object Storage replacing object (#11548)
- [Bugfix] Missing empty prefix parameter leads to permission error with IAM policy containing restriction on prefix (#11549)
- [Bugfix] Interoperability with Oracle Object Storage using path style requests (#10956, #11548)
- [Bugfix] Failure listing files with shortcut pointing to deleted file (Google Drive)
- [Bugfix] Allow configuration of path for Nextcloud & ownCloud connections (#11540)
- [Bugfix] Failure unlocking vaults on Google Cloud Storage (Cryptomator) (#11528)
- [Bugfix] Fix SSL session reuse on data channel (FTP, Windows)
- [Bugfix] Failure running application (CLI, Linux)
- [Bugfix] Recursive search yields no results (Google Drive) (#11424)
7.8.1
- [Feature] Provide armhf/aarch64 RPM and DEB packages (CLI, Rasperry Pi, Linux) (#10447)
- [Bugfix] Missing folers in directory listing (OneDrive, Sharepoint)
- [Bugfix] Interoperability with Tencent Cloud Object Storage (S3)
- [Bugfix] No file size displayed for files (Google Drive)
7.8.0
- [Feature] Connecting to different libraries (SharePoint) (#11043)
- [Feature] Default connection profile (Microsoft SharePoint Site) to connect so specific site (Sharepoint) (#10115, #11375)
- [Feature] Create shared link for file (OneDrive, SharePoint) (#11373)
- [Feature] Updated toolbar icons in Preferences window (macOS)
- [Bugfix] No attempt to authenticate using SSH agent (SFTP)
- [Bugfix] Allow browsing filenames containing forward slash (Google Drive)
- [Bugfix] Allow accessing shortcuts for files and folders (Google Drive)
7.7.2
- [Feature] Allow custom session duration for STS (S3) (#11265)
- [Feature] Support for PreferredAuthentications in OpenSSH configuration (SFTP) (#9964)
- [Bugfix] Exception reordering of bookmarks with drag and drop (macOS) (#11242)
- [Bugfix] Crash opening QuickLook panel (macOS) (#11212)
- [Bugfix] Temporary local file deleted after editing in external editor (#11086)
- [Bugfix] Include port number when saving host key fingerprint (SFTP, Windows) (#11255)
7.7.1
- [Bugfix] Workaround for crash on macOS 11 for some users (#11231)
- [Bugfix] Failure connecting through jump server with alias in configuration for target host (#11227)
- [Bugfix] Missing search field on macOS prior version 10.15 (#11234)
7.7.0
- [Feature] Connect via SSH tunnel through bastion host with JumpHost configuration directive (SFTP) (#2865)
- [Feature] Bookmark toggle control and search field moved to toolbar (macOS)
- [Bugfix] Accessing CloudFront and KMS configuration ignores ~/.aws/credentials (#11175)
- [Bugfix] Failure deleting folder placeholder in versioned bucket (S3) (#11157)
- [Bugfix] Server connection timeout when moving or duplicating large files (Backblaze B2) (#11185)
- [Bugfix] Certificate trust prompt regardless of override in keychain (macOS) (#11118)
- [Bugfix] Failure saving credentials (CLI, Windows) (#11098)
- [Bugfix] Unable to connect to cn-north-1 (S3) (#11197)
- [Bugfix] Access shared files (OneDrive Business) (#11102)
- [Bugfix] Read external_id from AssumeRole configuration in ~/.aws/credentials (S3) (#11229)
7.6.2
- [Feature] Allow to set password for shared link of file (Dropbox, Nextcloud, DRACOON)
- [Bugfix] Missing folders with delete marker on placeholder for buckets with versioning enabled (S3)
7.6.1
- [Bugfix] Unable to authenticate using PuTTY Pageant (SFTP, Windows)
- [Bugfix] Set modification date on uploaded files (DRACOON)
- [Bugfix] Failure authenticating with proxy using Integrated Windows Authentication (IWA) authentication (WebDAV, Windows)
7.6.0
- [Feature] Lock and unlock vaults using option in menu or toolbar (Cryptomator) (#10798)
- [Feature] Support for Files.com using native REST API (Files.com)
- [Feature] Restore files in Glacier storage class (S3)
- [Feature] Support for AES/GCM (aes128-gcm@openssh.com, aes256-gcm@openssh.com) ciphers (SFTP) (#9809)
7.5.1
- [Bugfix] Changes not saved when editing bookmark (Windows)
- [Bugfix] Failure running application (CLI, macOS) (#11139)
- [Bugfix] Navigation buttons in browser window do not work (macOS) (#11140)
- [Bugfix] Upload files using S3 direct upload to encrypted rooms (DRACOON)
- [Bugfix] Upload files to encrypted rooms (CLI, DRACOON)
7.5.0
- [Feature] Interoperability with macOS 11
- [Feature] Column for storage class in browser (S3)
- [Bugfix] Use STANDARD for default storage class (Google Cloud Storage) (#11062)
- [Bugfix] Switch to UTF-8 for encoding HTTP authentication header (WebDAV)
- [Bugfix] SNI support for TLS connections (FTP) (#9257)
- [Bugfix] Handle formatting errors in ~/.aws/credentials (S3)
- [Bugfix] Crash accessing files with colon in name (Windows) (#11075)
- [Bugfix] Support Team Drives for sharing files (Google Drive)
7.4.1
- [Localize] Croatian Localization
- [Bugfix] Unable to use S3 HTTP connection profile (S3) (#11061)
- [Bugfix] Failure uploading files with exactly 100MB file length (S3) (#11038)
- [Bugfix] Failure opening Terminal.app when default application for .command files is not properly set (SFTP)
7.4.0
- [Feature] Support to access team folders (Dropbox Business)
- [Feature] Support for eu-south-1 (Milan) region (S3)
- [Feature] Support for af-south-1 (Cape Town) region (S3)
- [Feature] Support for ap-east-1 (Hong Kong) region (S3)
- [Feature] Support for me-south-1 (Bahrain) region (S3)
- [Feature] Making requests to dual-stack endpoints (IPv6) (S3)
- [Feature] Create new vaults in format 7 by default (Cryptomator) (#11040)
- [Bugfix] Slow updating files after saving changes in external editor (#11004)
7.3.1
- [Feature] Edit ACLs for files (Google Cloud Storage) (#11008)
- [Feature] Support to set storage class (Google Cloud Storage)
- [Feature] Support for Intelligent-Tiering storage class (S3) (#11031)
- [Feature] Support for Glacier Deep Archive storage class (S3) (#10681)
- [Feature] Allow selection of Glacier storage class as default for uploads (S3) (#10681)
- [Feature] Support for shared files (OneDrive)
- [Feature] Support to access shared files (OneDrive)
- [Bugfix] Missing URLs to copy of CDN distributions (S3, Rackspace)
- [Bugfix] Reduced memory usage (macOS)
- [Bugfix] Failure uploading files to vault in version 7 format (Cryptomator) (#11020)
- [Bugfix] Interoperability with Minio (S3) (#11018)
7.3.0
- [Feature] Support for vault format version 7 (Cryptomator) (#10825)
- [Feature] Labels for bookmarks (macOS) (#9719)
- [Feature] Group bookmarks by labels in menu (macOS)
- [Feature] Support TLS 1.3 (#10962)
- [Bugfix] Download fails for files with whitespace in name (Google Cloud Storage) (#10931)
- [Bugfix] Unable to access documents in Shared with me (Google Drive)
- [Bugfix] Read timeout after copying large file (OpenStack Swift)
- [Bugfix] Repeated prompt for authorization code (hubiC)
- [Bugfix] Immediate retry for failure with cached upload channel (Backblaze B2)
- [Bugfix] Set timestamp with X-OC-Mtime header (Nextcloud, ownCloud)
- [Bugfix] Copy files to different bucket (Backblaze B2) (#10924)
- [Bugfix] Allow downloading files marked as abusive (Google Drive) (#10377)
- [Bugfix] Apply public read permissions to files selected to share (Google Drive)
7.2.6
- [Feature] Importer for bookmarks from Transmit 5 (macOS)
- [Feature] Importer for bookmarks from Cloudmounter (macOS)
- [Bugfix] Copy files to different bucket (Backblaze B2) (#10924)
7.2.5
- [Bugfix] Error downloading files from Microsoft SharePoint (SharePoint Server 2016)
7.2.4
- [Bugfix] Certificate trust validation error (Google Drive, macOS)
7.2.3
- [Bugfix] Cannot open link to documents in Google Docs (Google Drive)
7.2.2
- [Bugfix] Crash opening connection (macOS 10.[9-11]) (#10892)
- [Bugfix] Interoperability with providers only supporting path-style requests (S3) (#10888)
- [Bugfix] Display certificates as sheet in browser window (macOS) (#10897)
- [Bugfix] Recursive search shows no result (#10799)
- [Bugfix] Error moving file to encrypted vault (#10803)
7.2.1
- [Bugfix] Failure to open application on Windows 7+ (Windows)
7.2.0
- [Bugfix] Failure validating hostname when connecting through HTTP proxy
- [Bugfix] MD5 mismatch error for uploads (Alibaba Cloud Object Storage Service) (#10879)
- [Bugfix] Deprecated path-style request usage for (AWS GovCloud) (#10824)
- [Bugfix] Default to use virtual hosted style to access bucket contents for third party S3 providers
- [Bugfix] Optimize MD5 checksum calculation (S3) (#10278)
- [Bugfix] Reload directory contents after editing file
- [Bugfix] Failure replacing objects with blob type set to block (Azure)
7.1.2
- [Bugfix] Folder showing no more than 1000 files (S3) (#10811)
- [Bugfix] Failure deleting folder recursively (FTP)
7.1.1
- [Bugfix] Failure authenticating using SSH agent (SFTP) (#10800)
- [Bugfix] Failure overwriting existing file (Google Cloud Storage)
- [Bugfix] Missing hostname verification in TLS handshake when connecting through HTTP proxy
7.1.0
- [Feature] Application running as 64-bit (Windows)
- [Feature] Application package is notarized (macOS)
- [Feature] Support for storage classes (Google Cloud Storage)
- [Feature] Support to select region (eu, us, asia) for new buckets (Google Cloud Storage)
- [Feature] Support to set lifecycle configuration on bucket (Google Cloud Storage)
- [Bugfix] Number of buckets displayed in browser limited to 1000 (Google Cloud Storage)
- [Bugfix] Fails to authenticate where keyboard-interactive mechanism is not supported (SFTP) (#10714)
- [Bugfix] Errors accessing Cryptomator vault (Google Drive, OneDrive)
- [Bugfix] No route to host error with IPv6 only server (macOS)
- [Bugfix] Allow to access files with non printable characters in key name (S3)
- [Bugfix] Use AWS4 signature for pre-signed URLs for AWS in region us-east-1 (S3)
- [Bugfix] Rate limit number of requests (Google Drive) (#10103)
- [Bugfix] Repeated prompt to validate host key when connecting to non standard port (SFTP) (#10772)
- [Bugfix] Segmented downloads fail with longer filenames (#10726)
7.0.2
- [Bugfix] Failure configuring CloudFront distributions (S3) (#10755)
- [Bugfix] Failure authenticating with STS (S3, Credentials from AWS Security Token Service) (#10746)
- [Bugfix] Explicit argument to unlock vault prior an upload (CLI) (#10352)
7.0.1
- [Feature] Default protocol selection for NextCloud & ownCloud
- [Feature] Create share links in NextCloud & ownCloud
- [Bugfix] Connect with application key restricted to single bucket (Backblaze B2) (#10725)
- [Bugfix] Missing files when previously trashed and restored (Google Drive)
7.0.0
- [Feature] Segmented downloads with multiple connections per file (#10115)
- [Feature] Allow password input in bookmark window
- [Feature] Create download authorization for files to share (Backblaze B2)
- [Feature] Make a file public and copy URL to share (Google Drive)
- [Feature] Create temporary link (4 hours) for file to share (Dropbox)
- [Feature] Create shared link for file (Microsoft OneDrive)
- [Feature] Create download share for file or folder (DRACOON)
- [Feature] Support to rename and copy files (Backblaze B2)
- [Feature] Support to open SSH terminal in bash.exe from Windows Linux Subsystem (SFTP, Windows) (#10065)
- [Bugfix] Existing metadata not displayed (S3) (#10647)
- [Bugfix] Browser always shows modification time in UTC timezone (Windows) (#10629)
- [Bugfix] Interoperability with Apache Sling (WebDAV) (#10598)
- [Bugfix] Interoperability with SAP NetWeaver Application Server (WebDAV)
- [Bugfix] Upload fails with 400 error reply (Google Drive)
- [Bugfix] Wrong MIME type set for uploaded files (S3)
- [Bugfix] Invalid signature for files with + or * character in key (S3) (#9914, #10679)
- [Bugfix] Failure uploading files larger than 4GB (OpenStack Swift) (#10657)
- [Bugfix] Fails to launch in the newly created virtual desktop (Windows) (#10467)
- [Bugfix] Adding bookmarks for multiple accounts using OAuth (Dropbox, Google Drive, OneDrive) (#10562)
6.9.4
- [Bugfix] Connect button not working to initiate a connection (#10621)
- [Bugfix] Multipart uploads fail if key begins or ends with whitespace character (S3) (#10628)
- [Bugfix] Open OneNote notebooks in web browser (OneDrive)
- [Bugfix] Failure uploading files larger than 100GB (S3) (#10612)
6.9.3
- [Bugfix] RFC compliant parsing of URI parameters (CLI)
- [Bugfix] Failure displaying alert window for multiple consecutive transfer failures
- [Bugfix] Checksum verification disabled by default for file transfers
- [Bugfix] Add --login option to executed shell for "Open in Terminal" feature
- [Bugfix] Disable transfer acceleration for AWS GovCloud (S3)
- [Bugfix] Login using temporary tokens from STS to AWS GovCloud (S3) (#10594)
- [Bugfix] Support auto-configuration from ~/.aws/credentials for AWS GovCloud and Amazon S3 China (S3)
- [Bugfix] Modification date not applied when copying file between browser windows (#10592)
- [Bugfix] Unable to delete incomplete multipart upload (S3) (#10568)
- [Bugfix] Updated localizations
6.9.2
- [Bugfix] Failure using RSA/ECDSA private in new OpenSSH format (#10552)
- [Bugfix] Prompt to select parent folder for file dragged to upload (Mac App Store) (#10580)
6.9.1
- [Bugfix] Fix code signature designated requirement issue (Mac App Store)
6.9.0
- [Localize] Estonian Localization
- [Feature] Default connection profile for Microsoft Sharepoint Online (#10115)
- [Feature] Support for eu-west-3 (Stockholm) region (S3)
- [Feature] Improve listing performance for versioned buckets (S3) (#10426)
- [Feature] Add --profile option to select connection profile (CLI)
- [Feature] Add --nochecksum option to skip verifying checksums (CLI)
- [Feature] Add option to disable checksum verification for file transfers (#10215)
- [Bugfix] Stop button to interrupt transfer (#10363)
- [Bugfix] Save passphrase for private key in keychain only after successful connect (#10526)
- [Bugfix] Failure authenticating with proxy using Integrated Windows Authentication (IWA) authentication (WebDAV, Windows)
- [Bugfix] Failure authenticating with NTLM authentication (WebDAV, Windows) (#10556)
- [Bugfix] Failure to read attributes of common prefix (S3) (#8724)
- [Bugfix] Asks for OAuth authentication code on every connect attempt (Google Drive) (#10555)
- [Bugfix] Transfers with many files to vault take a long time to finish (Cryptomator) (#10564)
- [Bugfix] Cannot list KMS keys when using IAM Cross Account Roles (S3) (#10565)
- [Bugfix] Updated localizations
6.8.3
- [Bugfix] Refinements to dark mode (macOS) (#10508, #10510)
- [Bugfix] Failure running script in Terminal. Not authorized to send Apple events to Terminal (macOS) (#10475)
- [Bugfix] Upload action not enabled when server is not returning permission mask (FTP) (#10506)
- [Bugfix] Large uploads requiring checksum of parts fail with network timeout (#10516)
6.8.2
- [Bugfix] Failure transferring more than one file (FTP) (#10494)
6.8.1
- [Bugfix] Interoperability with OpenStack Swift (S3 middleware) (#10471)
- [Bugfix] Failure opening Terminal.app (#10475)
- [Bugfix] Crash when dragging multiple files (macOS) (#10479)
- [Bugfix] Add One Zone-Infrequent Access storage class (S3) (#10481)
- [Bugfix] Improvements to dark mode (macOS) (#10486)
- [Bugfix] Smart card insert prompt displayed when opening connection (Windows) (#8595)
6.8.0
- [Feature] Support dark mode (macOS Mojave) (#10348)
- [Bugfix] Display scaling is broken for some input components (Windows) (#10443)
- [Bugfix] Missing session token when making the AssumeRoleRequest to obtain the cross account credentials from STS (S3) (#10432)
- [Bugfix] Interoperability with AWS Snowball (S3) (#10458)
- [Bugfix] No modification date displayed (Rackspace Cloudfiles) (#10446)
6.7.1
- [Bugfix] Failure uploading to OneDrive Deutschland (OneDrive)
- [Bugfix] Updated localizations
6.7.0
- [Feature] Support display scaling (Windows) (#8961)
- [Feature] Improve user experience for versioned buckets, e.g. properly hide folders with a delete marker (S3) (#10357)
- [Feature] Transparently support rolebased access, including crossaccount using AWS Security Token Service (STS), configured in the standard AWS SDK credentials file (S3) (#8880)
- [Feature] Prompt for an MFA token during authentication when specified in the profile from the standard AWS SDK credentials file (S3)
- [Feature] Interoperability with Microsoft Office 365 Deutschland (OneDrive) (#10291)
- [Bugfix] Allow configuration of charset in bookmark (SFTP)
- [Bugfix] Incomplete transfers (#10347)
- [Bugfix] Skip checksum validation for files encrypted with SSE-KMS (S3) (#10371)
- [Bugfix] Retain metadata on server side copy of file (S3) (#10341)
- [Bugfix] Failure creating new vault (Cryptomator, OneDrive)
- [Bugfix] Missing links in copy URL menu (CloudFront) (#10402)
6.6.2
- [Bugfix] Cannot write to shared folders (Google Drive)
- [Bugfix] Repeated prompt for private key (SFTP, Mac App Store)
- [Bugfix] Authenticating with password protected ed25519 private key (SFTP) (#10130)
6.6.1
- [Bugfix] Crash attempting to add empty password to keychain (SFTP, macOS) (#10342)
6.6.0
- [Feature] Use toast notifications (Windows) (#10268)
- [Feature] Include shared items (OneDrive) (#10107)
- [Feature] Add support to login with Shared Access Signature (SAS) Token (Azure) (#10321)
- [Feature] Support to queue transfers (#9984)
- [Feature] Create and delete team drives (Google Drive)
- [Bugfix] Cannot create new vault in team drive (Google Drive, Cryptomator) (#10324)
- [Bugfix] Missing files in folders of vault (Google Drive, Cryptomator) (#10315)
- [Bugfix] Application error when opening connection (DRACOON) (Windows Store)
- [Bugfix] Disabled menu item to create new container (Azure)
- [Bugfix] Disabled menu item to create new bucket (Backblaze B2)
6.5.0
- [Bugfix] Improved performance accessing vaults (Cryptomator)
- [Bugfix] Improved performance accessing files (Backblaze B2, Google Drive)
- [Bugfix] Allow reuse of OAuth tokens (Cyberduck CLI, Windows)
6.4.6
- [Bugfix] Fix use proxy configuration using PAC file (macOS)
- [Bugfix] Disable extended master secret extension to allow session reuse for data connections (FTP-SSL) (#10276)
6.4.4
- [Bugfix] Skip failures saving or finding passwords in credential manager (Windows)
- [Bugfix] Ignore 550 error replies for STAT (FTP) (#10240)
6.4.3
- [Bugfix] Workaround error parsing codesigning entitlement by signing process in Mac App Store causing connect error due to missing entitlement key (Mac App Store) (#10237)
6.4.1
- [Bugfix] Cannot edit ACLs and metadata in Info panel (macOS) (#10226)
6.4.0
- [Feature] Support for eu-west-3 (Paris) region (S3) (#10207)
- [Feature] Support for Integrated Windows Authentication (IWA) authentication (WebDAV, Windows)
- [Feature] Save passwords in credential manager (Windows) (#9988)
- [Feature] Support authenticating with HTTP proxy (Windows)
- [Bugfix] Support for Oracle Cloud Infrastructure (OCI) Object Storage (S3) (#10194)
- [Bugfix] Do not save passphrase for vaults by defaults (Cryptomator, Windows)
- [Bugfix] Application freezes for long time when selecting many files for upload (Windows)
- [Bugfix] Set modification date on uploaded files (OneDrive) (#10171)
- [Bugfix] Application hangs when selecting a large number of files for upload (Windows)
- [Bugfix] Do not save vault passphrase by default (Cryptomator)
- [Bugfix] Fix failures when attempting to read attributes of incomplete multipart upload (S3)
- [Bugfix] Reloading directory after enabling "Auto detect" in preferences does not ask to unlock vault (Cryptomator) (#10214)
- [Bugfix] Transfer labled incomplete when segment required multiple attempts to finish (S3, OpenStack Swift, Backblaze B2) (#9552)
6.3.5
- [Bugfix] Crash on launch in update checker (Windows)
6.3.4
- [Bugfix] Application error when opening connection to BigCommerce (WebDAV)
- [Bugfix] Preload CloudFront configurations for buckets to allow display of CDN URLs (S3) (#10184)
6.3.3
- [Bugfix] Display of created date instead of modification date (WebDAV)
- [Bugfix] Custom disk icon from connection profile not displayed in bookmarks (Windows)
- [Bugfix] Application error when opening connection (DRACOON) (Windows)
6.3.2
- [Feature] Option to save passwords (Cyberduck CLI, Linux)
- [Bugfix] Failure parsing permissions from MLSD reply (FTP)
- [Bugfix] Signed links incorrectly URL-encoded (Triton) (#10151)
- [Bugfix] Passwords not saved in keychain (SFTP) (#10159)
- [Bugfix] Set modification date on uploaded files (Local Disk)
- [Bugfix] Allow to switch to authentication with private key in login prompt (SFTP)
6.3.1
- [Feature] Read credentials from AWS configuration file in ~/.aws/credentials (S3)
- [Bugfix] Slow user interface performance (Mac) (#9970)
- [Bugfix] Prompt for credentials when using public key authentication with agent (SFTP) (#10148)
- [Bugfix] Failure opening files in vault on disk with long filename (Cryptomator, Local Disk)
6.3
- [Feature] Support for DRACOON cloud service (DRACOON)
- [Feature] Support for Google Team Drives (Google Drive) (#9928)
- [Feature] Support for Joyent Triton Object Storage (Triton)
- [Feature] Support for China (Beijing) region (S3)
- [Bugfix] Allow custom endpoint with default connection profile (S3)
- [Bugfix] Unnecessary password prompt for connection (Local Disk)
- [Bugfix] Login where authentication is required with both password and one-time passcode (SFTP)
- [Bugfix] File not found failure when downloading folder form vault (Cryptomator)
- [Bugfix] Not possible to copy files between browser windows (FTP)
6.2.11
- [Bugfix] Application crash restoring workspace (Windows)
6.2.10
- [Feature] Option to disable auto-detect of vaults (Cryptomator)
- [Bugfix] Login where authentication is required with both password and public key method (SFTP)
6.2.9
- [Bugfix] Disable selection of client certificate in bookmark window when not applicable
- [Bugfix] Rename and override exiting file (One Drive, Dropbox)
- [Bugfix] Disable use of hashed hostname when writing to ~/.ssh/known_hosts (SFTP)
6.2.8
- [Bugfix] Delete session when canceling upload (One Drive)
6.2.7
- [Bugfix] Rename and override exiting file (Google Drive)
- [Bugfix] Reduce number of requests for uploads (Google Drive)
6.2.6
- [Bugfix] Quick Look only works one time (#9889) (Mac)
- [Bugfix] Disable notification for opened connection
6.2.5
- [Bugfix] Authentication using OAuth (Windows)
- [Bugfix] Failure to read attributes (S3) (#10068)
6.2.4
- [Feature] Provide URL references to Office 365 documents in browser (OneDrive)
- [Feature] Disable Bonjour notifications
- [Bugfix] Transfer progress stops updating (Windows) (#10042)
6.2.3
- [Feature] Allow to resume downloads (Cryptomator)
- [Feature] Allow to resume downloads (Dropbox)
- [Bugfix] Failure duplicating files (FTP) (#10049)
- [Bugfix] Failure with input prompt for username and password (CLI, Windows) (#10043)
- [Bugfix] Failure to detect vault when moving files into locked vault (Cryptomator)
- [Bugfix] Failure to detect vault when copying files into locked vault (Cryptomator)
- [Bugfix] Checksum mismatch when downloading versioned file (S3) (#10055)
6.2.2
- [Bugfix] Failure copying files in vault (Cryptomator)
- [Bugfix] Failure detecting vault when uploading, copying or moving files to locked vault (Cryptomator)
6.2.1
- [Bugfix] Default to WebDAV for http:// scheme in quick connect and CLI
- [Bugfix] Selecting multiple files to copy URL will only copy first item in list (#10024)
6.2
- [Feature] Server side copy of files (OneDrive)
- [Feature] Support for wildcard host entries in known_hosts (SFTP)
- [Bugfix] Missing x-amz-server-side-encryption header when creating folders (S3) (#9378)
- [Bugfix] Preserve content type when overwriting files (Google Drive)
- [Bugfix] Missing registered protocols (CLI)
- [Bugfix] Long time preparing upload into vault (Cryptomator)
- [Bugfix] Set charset for basic authentication scheme used for preemtive authentication (WebDAV)
- [Bugfix] Timeout uploading larger files (Google Drive) (#10010)
- [Bugfix] Set checksum for large file uploads in fileInfo metadata (Backblaze B2)
- [Bugfix] Default ACL for new buckets has changed to private (S3)
- [Bugfix] Failure duplicating files in vault (Cryptomator) (#10017)
6.1
- [Feature] Search files fast without recursively listing directories (OneDrive)
- [Feature] Search files fast without recursively listing directories (S3)
- [Feature] Search files fast without recursively listing directories (Dropbox)
- [Feature] Search files fast without recursively listing directories (Google Drive)
- [Feature] Group protocols by type in bookmark window
- [Bugfix] Missing x-amz-server-side-encryption header when creating folders (S3) (#9378)
- [Bugfix] Interoperability with vault version 6 (Cryptomator)
- [Bugfix] Missing content length header in uploads to SharePoint Online (OneDrive)
- [Bugfix] Always trust invalid certificate setting not remembered (Windows)
- [Bugfix] Unable to rename files larger than 5 GB (S3) (#9983)
- [Bugfix] Handle expired authentication token (Backblaze B2)
- [Bugfix] "Open in Putty" toolbar button always disabled (Windows) (#9965)
- [Bugfix] Updater ignores custom installation location (Windows) (#9782)
6.0.4 [https://trac.cyberduck.io/milestone/6.0.4]
- [Bugfix] Failure to upload to root of vault (Cryptomator)
- [Bugfix] Disable x-amz-request-payer header for non AWS endpoints (S3)
6.0.2 [https://trac.cyberduck.io/milestone/6.0.2]
- [Bugfix] Invalid version number format for Mac App Store (Mac)
6.0.1 [https://trac.cyberduck.io/milestone/6.0.1]
- [Bugfix] New connections do not authenticate (Dropbox) (#9932)
- [Bugfix] Large file uploads do not resume (Backblaze B2) (#9935)
- [Bugfix] Failure listing folders with whitespace (OneDrive) (#9937)
- [Bugfix] Failure duplicating files (FTP) (#9933)
- [Bugfix] Failure uploading files with temporary filename option enabled (Backblaze B2)
- [Bugfix] Failure connecting to local disk (Windows)
- [Bugfix] Multipart uploads fail if the user lacks permission to list multipart uploads (S3) (#9948)
- [Bugfix] Synchronize files in vault (Cryptomator)
- [Bugfix] Repeated login prompt (2-Factor Authentication SFTP)
- [Bugfix] Enable copy of text from log drawer (Windows) (#9952)
6.0 [https://trac.cyberduck.io/milestone/6.0]
- [Feature] Create encrypted vault interopable with Cryptomator (#7937)
- [Feature] Encrypt uploads into vault (Cyptomator)
- [Feature] Decrypt downloads from vault (Cyptomator)
- [Feature] Support for Microsoft OneDrive (OneDrive) (#9799)
- [Feature] Browse local filesystem in browser
- [Feature] Support ssh-rsa-cert-v01@openssh.com format for private key files (SFTP)
- [Feature] Support ssh-dsa-cert-v01@openssh.com format for private key files (SFTP)
- [Feature] Configure lifecycle options for buckets (Backblaze B2)
- [Feature] Copy pre-authenticated URLs (Backblaze B2)
5.4.4 [https://trac.cyberduck.io/milestone/5.4.4]
- [Bugfix] Multipart uploads do not resume (S3)
- [Bugfix] Field in login prompt disabled to enter authentication code (OAuth 2.0)
5.4.3 [https://trac.cyberduck.io/milestone/5.4.3]
- [Bugfix] Interoperability with PROPFIND for listing folders (WebDAV)
- [Bugfix] Failed to generate HMAC (Spectra S3)
- [Bugfix] Quick Look only works one time (#9889)
- [Bugfix] Set MD5 checksum in ETag request header (OpenStack Swift)
5.4.2 [https://trac.cyberduck.io/milestone/5.4.2]
- [Bugfix] Updated localizations
5.4.1 [https://trac.cyberduck.io/milestone/5.4.1]
- [Feature] Faster recursive delete with single operation for directories (WebDAV)
- [Bugfix] Reload OpenSSH configuration (SFTP)
- [Bugfix] Revert lenient server reply parsing (FTP)
5.4 [https://trac.cyberduck.io/milestone/5.4]
- [Feature] Add "Open single connection" option for file transfers
- [Bugfix] Failure enabling download distribution (CloudFront) (#9870)
- [Bugfix] Authentication failure when using PAM (iRODS) (#9872)
- [Bugfix] Increasing memory usage when browsing folders
- [Bugfix] Drastically reduced initial memory usage (#9878)
5.3.9 [https://trac.cyberduck.io/milestone/5.3.9]
- [Bugfix] Failure dragging files to browser for upload (Mac) (#9860)
5.3.8 [https://trac.cyberduck.io/milestone/5.3.8]
- [Bugfix] NTLM authentication failure for uploads (Sharepoint) (#9855)
- [Bugfix] Selected client certificate cleared from bookmark after opening connection (#9842)
5.3.7 [https://trac.cyberduck.io/milestone/5.3.7]
- [Bugfix] Include "Shared with me" files (Google Drive)
- [Bugfix] Unable to add new item to metadata (S3) (#9844)
- [Bugfix] Crash in periodic background update check (#9845)
5.3.6 [https://trac.cyberduck.io/milestone/5.3.6]
- [Bugfix] Crash for connections requiring TLS connection handshake (Windows CLI)
5.3.5 [https://trac.cyberduck.io/milestone/5.3.5]
- [Bugfix] Freeze of browser after idle timeout (#9829)
- [Bugfix] Crash for connections requiring TLS connection handshake (Windows Store)
5.3.4 [https://trac.cyberduck.io/milestone/5.3.4]
- [Bugfix] Error duplicating folders (FTP) (#9818)
- [Bugfix] Cannot read distribution details (CloudFront) (#9823)
- [Bugfix] Failure setting attributes for uploaded files with temporary filename option enabled (#9819)
5.3.3 [https://trac.cyberduck.io/milestone/5.3.3]
- [Bugfix] Downloads fail with exception after completion (OpenStack Swift) (#9814)
5.3.2 [https://trac.cyberduck.io/milestone/5.3.2]
- [Bugfix] Synchronize transfers fail with exception
- [Bugfix] Repeat transfer failures due to HTTP request timeout (Backblaze B2)
5.3.1 [https://trac.cyberduck.io/milestone/5.3.1]
- [Feature] Availability in Windows App Store
5.3 [https://trac.cyberduck.io/milestone/5.3]
- [Feature] Use multiple connections in browser for parallel background task executions
- [Feature] Choose certificate in bookmark panel for mutual authentication with TLS (WebDAV)
- [Feature] Choose SSH private key from list in bookmark panel and login prompt (SFTP)
- [Feature] Use marker and delimiter for listing files (Backblaze B2)
- [Feature] Option to resume uploads (Azure) (#9770)
- [Feature] Support for ca-central-1 (Montreal) region (S3)
- [Feature] Support for eu-west-2 (London) region (S3)
- [Bugfix] Repeated prompt for client certificate (WebDAV) (#9746)
- [Bugfix] Modification of distinct metadata for multiple selected files (WebDAV, Azure, S3, OpenStack Swift)
- [Bugfix] Modification of distinct permissions for multiple selected files (FTP, SFTP)
- [Bugfix] Wrong default editor selected (Windows) (#9256)
- [Bugfix] Failure sorting by modification date in browser (#9801)
- [Bugfix] Invalidations for files with special characters (Cloudfront) (#9748)
5.2.2 [https://trac.cyberduck.io/milestone/5.2.2]
- [Feature] Toggle transfer acceleration for bucket in Info panel (S3)
- [Feature] Support OpenSSH unencrypted private key format for ed25519 keys (SFTP) (#8548)
5.2.1 [https://trac.cyberduck.io/milestone/5.2.1]
- [Feature] All embedded assemblies are cryptographically signed (Windows)
- [Bugfix] Paginate directory listings (Dropbox)
- [Bugfix] Ignore permission failure for reading transfer acceleration configuration (S3) (#9741)
5.2 [https://trac.cyberduck.io/milestone/5.2]
- [Feature] Support connecting to Dropbox (Dropbox) (#6427)
- [Feature] Tabbed windows (macOS 10.12) (#5998)
- [Feature] Support transfer acceleration (S3) (#9570)
- [Feature] Provide URL references to Google Docs documents in browser (Google Drive)
- [Feature] Support for US East (Ohio) region (S3)
- [Feature] Support for Asia Pacific (Seoul) region (S3)
- [Feature] Support for Asia Pacific (Mumbai) region (S3)
5.1.4 [https://trac.cyberduck.io/milestone/5.1.4]
- [Bugfix] Duplicate folders displayed in file browser (Backblaze B2) (#9717)
- [Bugfix] Updates to ACLs not showing up in Info window without refreshing (S3) (#9731)
5.1.3 [https://trac.cyberduck.io/milestone/5.1.3]
- [Bugfix] Normalize (NFC) filenames (SFTP)
- [Bugfix] Overwriting file creates duplicate (Google Drive)
5.1.2 [https://trac.cyberduck.io/milestone/5.1.2]
- [Bugfix] Crash importing bookmarks from ExpanDrive (Windows) (#9672)
5.1.1 [https://trac.cyberduck.io/milestone/5.1.1]
- [Feature] Allow connections with AWS2 signature version using connection profile (S3) (#9667)
- [Bugfix] Cleanup temporary files on application exit
- [Bugfix] Certificate trust error connecting to os.unil.cloud.switch.ch (S3) (#9668)
5.1 [https://trac.cyberduck.io/milestone/5.1]
- [Feature] Prompt when recursively applying permissions (#9657)
- [Feature] Default to signature version AWS4 when connecting to third party S3 providers
- [Feature] Use batch operation to delete multiple files (Google Drive)
- [Bugfix] Prompt to insert Smart Card when connecting to TLS secured site (Windows) (#8595)
- [Bugfix] Copy transfer from other connection fails (Spectra S3)
- [Bugfix] Interoperability with Minio (S3)
- [Bugfix] Repeated prompt to select private key for authentication (App Store) (SFTP)
- [Bugfix] Repeated prompt for changed host key fingerprint (SFTP)
5.0.11 [https://trac.cyberduck.io/milestone/5.0.11]
- [Bugfix] Resuming file transfer starts over and errors out (Backblaze B2) (#9598)
- [Bugfix] Notification icon persists after application closed (Windows) (#9613)
- [Bugfix] Missing CDN URLs in copy menu item (Rackspace Cloudfiles) (#9638)
5.0.10 [https://trac.cyberduck.io/milestone/5.0.10]
- [Feature] Handle URL events and open browser or start file transfer (Windows)
- [Bugfix] Retain container permission when updating ACL after upload complete for file (Backblaze B2)
- [Bugfix] Display incomplete multipart uploads as hidden files in browser (S3)
5.0.9 [https://trac.cyberduck.io/milestone/5.0.9]
- [Feature] Allow silent application update in background (Mac)
- [Feature] Display in-progress multipart uploads in browser (S3)
- [Feature] Importer for bookmarks from Transmit 4 (Mac)
- [Bugfix] Allow to select encryption keys from KMS different from default us-east-1 region (S3) (#9617)
- [Bugfix] Unconfirmed reads are unbounded (SFTP) (#9603)
- [Bugfix] Mismatch for MD5 checksum when downloading large object (OpenStack Swift) (#8861)
5.0.8 [https://trac.cyberduck.io/milestone/5.0.8]
- [Feature] Register protocol handler for irods:// (#9614)
- [Bugfix] Listing directory failure on folder with ~ in path (S3) (#9611)
5.0.7 [https://trac.cyberduck.io/milestone/5.0.7]
- [Bugfix] Missing upload notification after editing file (Mac) (#9596)
- [Bugfix] Stale entries in directory cache when deleting folder (#9608)
5.0.6 [https://trac.cyberduck.io/milestone/5.0.6]
- [Feature] Signed application executable (Windows)
5.0.5 [https://trac.cyberduck.io/milestone/5.0.5]
- [Feature] Set modification date in metadata for uploads (Backblaze B2)
5.0.4 [https://trac.cyberduck.io/milestone/5.0.4]
- [Bugfix] Allow authentication with client certificate for empty issuer list from server (TLS)
5.0.3 [https://trac.cyberduck.io/milestone/5.0.3]
- [Feature] Deleting multiple files concurrently (#9585)
5.0.2 [https://trac.cyberduck.io/milestone/5.0.2]
- [Bugfix] Fail to list directory with equals symbol in path (S3) (#9574)
- [Bugfix] Failure to launch program (CLI Linux) (#9586)
5.0.1 [https://trac.cyberduck.io/milestone/5.0.1]
- [Feature] Support for hubiC (OVH) (OpenStack Swift) (#7764)
- [Bugfix] Support authenticating with multiple accounts (Google Drive) (#9567)
- [Bugfix] Copying files using multipart API (S3) (#9578)
5.0 [https://trac.cyberduck.io/milestone/5.0]
- [Feature] Updated user interface; new monochrome toolbar icons (Mac)
- [Feature] Support for Google Drive (#6976)
- [Feature] Support for Spectra BlackPearl Deep Storage Gateway (Spectra S3)
- [Feature] Option to use AWS KMS–Managed Keys (SSE-KMS) for server side encryption (S3)
- [Feature] Default to use AWS4 signature version for authentication (S3)
- [Feature] Repeat failed transfers for single segments of multipart large file transfer (S3, OpenStack Swift, Backblaze B2)
- [Bugfix] Retry transfer for 421 error reply from server with a delay (FTP) (#9368)
- [Bugfix] No prompt for importing WinSCP bookmarks (Windows) (#9208)
- [Bugfix] Signature mismatch for presigned URLs with AWS4 signing (S3) (#9317, #9479)
- [Bugfix] Unable to negotiate acceptable set of security parameters (WebDAV) (#9452)
- [Bugfix] Interoperability with Atlassian Confluence (WebDAV)
- [Bugfix] Interoperability with Oracle Cloud (OpenStack Swift) (#9223)
4.9.3
- [Bugfix] Revert reading NTLM domain and workstation from environment (WebDAV, Windows)
- [Bugfix] Fix crash in software updater (Windows)
4.9.2
- [Bugfix] Fix application launch failure when running with disabled updater (Mac)
4.9.1
- [Feature] Support password change requests (SFTP) (#8821)