forked from nextcloud/nextcloud.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-changelog.php
7006 lines (6608 loc) Β· 863 KB
/
page-changelog.php
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
<head>
<link href="<?php echo get_template_directory_uri(); ?>/assets/css/pages/generic.css" rel="stylesheet">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/assets/css/vendor/dsgvo-video-embed.min.css">
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/dsgvo-video-embed.min.js"></script>
<div class="background generic-background">
<div class="container">
<div class="row">
<div class="col-md-6 topheader">
<h1>Nextcloud Server Changelog</h1>
</div>
</div>
</div>
</div>
<section class="content">
<div class="container">
<p>We recommend you follow our <a href="<?php echo home_url('release-channels') ?>">Release Channels</a> to always have the latest and most secure Nextcloud Server version which fits your needs.</p>
Go directly to the latest maintenance release of:
<ul>
<li><a href="#latest22">Nextcloud 22</a></li>
<li><a href="#latest21">Nextcloud 21</a></li>
<li><a href="#latest20">Nextcloud 20</a></li>
<li><a href="#latest19">Nextcloud 19 (unsupported!)</a></li>
<li><a href="#latest18">Nextcloud 18 (unsupported!)</a></li>
<li><a href="#latest17">Nextcloud 17 (unsupported!)</a></li>
<li><a href="#latest16">Nextcloud 16 (unsupported!)</a></li>
<li><a href="#latest15">Nextcloud 15 (unsupported!)</a></li>
<li><a href="#latest14">Nextcloud 14 (unsupported!)</a></li>
<li><a href="#latest13">Nextcloud 13 (unsupported!)</a></li>
<li><a href="#latest12">Nextcloud 12 (unsupported!)</a></li>
<li><a href="#latest11">Nextcloud 11 (unsupported!)</a></li>
<li><a href="#latest10">Nextcloud 10 (unsupported!)</a></li>
<li><a href="#latest9">Nextcloud 9 (unsupported!)</a></li>
</ul>
<p>Note here that with 'supported' in this context we mean that software updates will be available to the public, not that there is any actual support beyond community members answering questions in our home user forums. If you need to run Nextcloud in an enterprise setting, we recommend <a class="hyperlink" href="https://nextcloud.com/enterprise">Nextcloud Enterprise.</a></p>
<a id="latest22"></a>
<h3 id="22-2-0">Version 22.2.0 <small>October 1 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.tar.bz2">nextcloud-22.2.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.zip">nextcloud-22.2.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.tar.bz2.md5">nextcloud-22.2.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.zip.md5">nextcloud-22.2.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.tar.bz2.sha256">nextcloud-22.2.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.zip.sha256">nextcloud-22.2.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.tar.bz2.sha512">nextcloud-22.2.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.zip.sha512">nextcloud-22.2.0.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.tar.bz2.asc">nextcloud-22.2.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.2.0.zip.asc">nextcloud-22.2.0.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/28531">Fix SQL type error (server#28531)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28594">Allow to open any app in a standalone window (server#28594)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28603">Fix encrypted version to 0 when finding unencrypted file (server#28603)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28658">Only recommand for php-sodium on >= PHP 7.4 (server#28658)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28670">Fix position of search bar (server#28670)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28683">Fix S3 ObjectStore proxy option (server#28683)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28685">NMC-464 Highlight the search term on no results (server#28685)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28697">NMC-552 Move filename/size out of the download button (server#28697)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28701">Fix user list infinite loading state in user settings (server#28701)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28705">Pin Psalm version for security analysis (server#28705)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28712">Bump css-vars-ponyfill from 2.4.6 to 2.4.7 (server#28712)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28734">Check if SVG path is valid (server#28734)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28740">Remove 2FA exemption from PublicPage annotation (server#28740)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28744">Bump 3rdparty ref (server#28744)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28748">Send attendence links to required and optinal attendees of an event without an RSVP (server#28748)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28752">Bump 3rdparty ref (server#28752)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28769">Fix trashbin files view sticky action bar (server#28769)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28777">Make it possible to override the default collation on mysql (server#28777)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28780">Allow users to choose a different email for notifications (server#28780)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28781">Dashboard - fix touch layout (server#28781)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28785">Scan the shared external storage source on access (server#28785)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28801">Bump vue-clipboard2 from 0.3.1 to 0.3.2 (server#28801)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28814">Add database ratelimiting backend (server#28814)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28824">Fixes missing prefix to validate password reset token (server#28824)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28827">Update .htaccess (php8+ and mod_lsapi) (server#28827)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28830">Do not cache file ids in FileSystemTags inside group folders (server#28830)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28841">Allow using of disabled password reset mechanism for special cases (server#28841)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28843">The user always may modify their additional emails (server#28843)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28844">Added support for transferring incoming file shares. (server#28844)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28850">L10n: ignore packed js files from TX sync (server#28850)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28851">Add config.php option for transfer ownership (server#28851)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28852">L10n: Remove a text string from translation (server#28852)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28855">Let user choose notification email in user settings (server#28855)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28860">Add email addresses to contacts menu (server#28860)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28865">Add new ExternalShareActions API (server#28865)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28878">Fix files view change and undefined currentFileList (server#28878)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28881">Fix file creation from template without ext (server#28881)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28888">Bump vue-clipboard2 from 0.3.2 to 0.3.3 (server#28888)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28895">Fall back to full file for video previews (server#28895)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28900">Update CRL due to revoked twofactor_email.crt (server#28900)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28910">Support seeking also from the end of file on S3 storage (server#28910)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28919">Use IRoomMetadata as source of truth for supported room types (server#28919)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28928">Bump 3rdparty ref (server#28928)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28945">Allow upgrade from 22.2.0.0 to 22.2.0.1 (server#28945)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28949">Fix caching of objectsid searches (server#28949)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28953">Allow casting query functions (server#28953)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28954">Fix check for redis minimal version (server#28954)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28962">Don't allow to change activity settings that don't work (server#28962)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28984">Bump app versions (server#28984)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28998">Fix redirect during initial setup (server#28998)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/758">Fix CI (3rdparty#758)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/780">Bump Webauthn Lib to 3.3.9 (3rdparty#780)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/781">Bump Archive_Tar to latest release (3rdparty#781)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/812">Composer install (3rdparty#812)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/637">Read the email from IUser (API) not guess from the DB (activity#637)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/641">Increase activity email speed in instances with more than 500 users (activity#641)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/478">Bump pdfjs-dist from 2.8.335 to 2.9.359 (files_pdfviewer#478)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/479">Bump @nextcloud/babel-config from 1.0.0-beta.1 to 1.0.0 (files_pdfviewer#479)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/487">Fix phpunit (files_pdfviewer#487)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/492">Update workflows (files_pdfviewer#492)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/495">Use setup-php v2 (files_pdfviewer#495)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/504">Bump cli-progress from 3.9.0 to 3.9.1 (files_pdfviewer#504)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/876">Fix illustrations (photos#876)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/889">Bump @nextcloud/vue from 3.10.0 to 3.10.2 (photos#889)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1835">Dependency updates (text#1835)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1851">Bump prosemirror-markdown from 1.5.1 to 1.5.2 (text#1851)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1013">Update dependabot (viewer#1013)</a></li>
</ul>
<h3 id="22-1-1">Version 22.1.1 <small>August 29 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.tar.bz2">nextcloud-22.1.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.zip">nextcloud-22.1.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.tar.bz2.md5">nextcloud-22.1.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.zip.md5">nextcloud-22.1.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.tar.bz2.sha256">nextcloud-22.1.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.zip.sha256">nextcloud-22.1.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.tar.bz2.sha512">nextcloud-22.1.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.zip.sha512">nextcloud-22.1.1.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.tar.bz2.asc">nextcloud-22.1.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.1.zip.asc">nextcloud-22.1.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/27993">Manual backport of "No limit in the number of group shares" #27875 (server#27993)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28209">Extend pending shares list in frontend to include remote shares (server#28209)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28231">Allow to disable group membership change notification (server#28231)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28252">Add h2 to personal info page, fixing accessibility issue (server#28252)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28256">Add quota restrictions options (server#28256)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28271">Bump marked from 2.0.6 to 2.0.7 (server#28271)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28274">Fix CI failures when building settings app (server#28274)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28288">Check that php was compiled with argon2 support or that the php-sodium extensions is installed (server#28288)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28304">Allow upgrade from 22.1 (server#28304)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28340">Bump dompurify from 2.2.8 to 2.2.9 (server#28340)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28341">Bump @babel/preset-env from 7.14.8 to 7.14.9 (server#28341)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28342">Bump vue-loader from 15.9.7 to 15.9.8 (server#28342)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28353">Change the concurrent upload limit to less than 10 (server#28353)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28359">Fix Folder->getById() when a single storage is mounted multiple times (server#28359)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28384">Make "name" column nullable for workflows (server#28384)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28416">Gracefully handle smb acls for users without a domain (server#28416)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28441">Add missing files for Composer v2 (server#28441)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28446">Improve auto expiration hint for trashbin and file versions (server#28446)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28454">UnifiedSearchController: strip webroot from URL before finding a route (server#28454)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28470">Only trap E_ERROR in session handling (server#28470)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28479">Disable autofocus of primary Email (server#28479)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28489">Emit an error log when the app token login name does not match (server#28489)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28494">Hash cache key (server#28494)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28499">Fix #20913: Check image resource before attempting to preserve alpha (server#28499)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28518">Output exception in cron (server#28518)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28522">Properly log errors in Movie previews generation (server#28522)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28534">Fix folder size contained in S3 buckets (server#28534)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28536">Set alias for result of cast column function (server#28536)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28545">Do not load versions tab view if the files app is not available (server#28545)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28553">Bump webdav from 4.6.0 to 4.6.1 (server#28553)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28568">Fix UserController tests (server#28568)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28573">Use case insensitive like when limiting search to jail (server#28573)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28576">Log exception message during failed ownership transfer share restore (server#28576)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28583">Use getGetUnjailedRoot to determine if jailed search needs the path filter (server#28583)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28590">22.1.1-rc2 (server#28590)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28596">Fix setting up 2FA providers when 2FA is enforced and bc are generated (server#28596)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/633">Fix activity design (activity#633)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/776">Check if `$knownPath` is set before invoking `rtrim()` (circles#776)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/779">Generate quick members' memberships during migration (circles#779)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/782">Verify shareType in params (circles#782)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/787">Details on non-visible (but open) circles (circles#787)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/788">Fix definition on single circles (circles#788)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/791">Emulate initiator on CircleJoin (circles#791)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/799">Owner of NO_OWNER should not have memberships cached (circles#799)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/800">Fix notification when invited to a circle (circles#800)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/805">Exception on non visible circle (circles#805)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/806">Force join_request on old secret circles (circles#806)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/460">Fix hide download and printing (files_pdfviewer#460)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/463">Fix body footer hiding (files_pdfviewer#463)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/469">Disable download for pdf files (files_pdfviewer#469)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/473">Fix download & print view (files_pdfviewer#473)</a></li>
<li><a href="https://github.com/nextcloud/files_rightclick/pull/119">Fix share option being displayed erroneously (files_rightclick#119)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1062">Give twofactor nextcloud notifications a high priority (notifications#1062)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1065">Always show the dismiss all button (notifications#1065)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1067">Fix maria db tests (notifications#1067)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1070">High priority for the PhoneTrack app (notifications#1070)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1732">Bump @babel/plugin-transform-modules-commonjs from 7.14.0 to 7.14.5 (text#1732)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1813">Bump @babel/plugin-transform-classes from 7.14.5 to 7.14.9 (text#1813)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1814">Bump vue-loader from 15.9.7 to 15.9.8 (text#1814)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1815">Bump @babel/preset-env from 7.14.5 to 7.14.9 (text#1815)</a></li>
</ul>
<h3 id="22-1-0">Version 22.1.0 <small>August 6 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.tar.bz2">nextcloud-22.1.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.zip">nextcloud-22.1.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.tar.bz2.md5">nextcloud-22.1.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.zip.md5">nextcloud-22.1.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.tar.bz2.sha256">nextcloud-22.1.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.zip.sha256">nextcloud-22.1.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.tar.bz2.sha512">nextcloud-22.1.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.zip.sha512">nextcloud-22.1.0.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.tar.bz2.asc">nextcloud-22.1.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.1.0.zip.asc">nextcloud-22.1.0.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/27654">Update guzzlehttp/guzzle requirement from 6.5.2 to 7.3.0 in /build/integration (server#27654)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27658">Bump vue and vue-template-compiler (server#27658)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27659">Bump vue-router from 3.5.1 to 3.5.2 (server#27659)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27825">Ignore subdomain for soa queries (server#27825)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27826">Fix in locking cache check (server#27826)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27848">Fixes recursion count incrementation (server#27848)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27856">Make search popup usable on mobile, too (server#27856)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27861">Cache images on browser (server#27861)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27878">Fix add group button (server#27878)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27889">Fix dark theme on public link shares (server#27889)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27898">Make user status usable on mobile (server#27898)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27925">Check if dns_get_record returns non-false (server#27925)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27938">Correctly skip suppressed errors in PHP 8.0 (server#27938)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27942">Fix newfileMenu on public page (server#27942)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27944">Do not escape display name in dashboard welcome text (server#27944)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27957">Fix svg icons disapearing in app navigation when text overflows (server#27957)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27959">Revert "Update guzzlehttp/guzzle requirement from 6.5.2 to 7.3.0 in /build/integration" (server#27959)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27964">Also hide group from direct matches (server#27964)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27966">Show registered breadcrumb detail views in breadcrumb menu (server#27966)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27974">Fix regression in file sidebar (server#27974)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27979">Allow to get a local cloud id without going through the contacts manager (server#27979)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28001">Multiple Emails UI and Integration (server#28001)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28008">Improve notcreatable permissions hint (server#28008)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28011">Some multiselect design fixes (server#28011)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28014">Only display supported email scopes (server#28014)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28016">Update CRL due to revoked twofactor_nextcloud_notification.crt (server#28016)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28043">Increase footer height for longer menus (server#28043)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28047">Add titleTooltip to sidebar (server#28047)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28053">Mask password for Redis and RedisCluster on connection failure (server#28053)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28061">Fix missing theming for login button (server#28061)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28071">Improve Emails UX (server#28071)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28073">Fix overlapping of elements in certain views (server#28073)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28079">Disable HEIC image preview provider for performance concerns (server#28079)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28085">Improve provider check (server#28085)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28089">Sanitize more functions from the encryption app (server#28089)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28093">Hide download button for public preview of audio files (server#28093)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28109">Fix dark theme in file exists dialog (server#28109)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28112">Support redis user password auth and tls encryption (server#28112)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28121">Bump @babel/core from 7.14.3 to 7.14.8 (server#28121)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28123">Let memory limit set in tests fit the used amount (server#28123)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28126">Bump @nextcloud/babel-config from 1.0.0-beta.1 to 1.0.0 (server#28126)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28131">Allow empty Redis config (server#28131)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28135">Add an option to the multiple files selected actions to add and remov⦠(server#28135)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28149">Bump css-vars-ponyfill from 2.4.3 to 2.4.5 (server#28149)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28152">Make sure that the dav propfind plugins always use the proper user id (server#28152)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28167">Admin Audit - Sharing: createShare - report the full path (server#28167)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28168">Fix sort function of files multiple selection actions (server#28168)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28170">User management - Add icon to user groups (server#28170)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28177">Bump @babel/preset-env from 7.14.7 to 7.14.8 (server#28177)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28179">Bump sass from 1.35.1 to 1.35.2 (server#28179)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28181">Bump autosize from 4.0.2 to 4.0.4 (server#28181)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28193">Fix variable override in file view (server#28193)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28197">Fix comments file action sidebar opening (server#28197)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28215">Set openfile params when following internal links (server#28215)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28222">Fix Files breadcrumbs being hidden even if there is enough space (server#28222)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28228">Dont apply jail search filter is on the root (server#28228)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28244">Fix missing label of Search function (server#28244)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28247">Add missing order attribute to tag multiselect action (server#28247)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28269">Update guzzlehttp/guzzle requirement from 6.5.2 to 6.5.5 in /build/integration (server#28269)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28270">Bump css-loader from 5.2.6 to 5.2.7 (server#28270)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28272">Bump css-vars-ponyfill from 2.4.5 to 2.4.6 (server#28272)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28273">Bump regenerator-runtime from 0.13.7 to 0.13.9 (server#28273)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/611">Fix "Enable notification emails" (activity#611)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/614">Show add, del and restored files within by and self filter (activity#614)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/618">Only call getCloudId if needed (activity#618)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/623">Link from app-navigation-settings to personal settings (activity#623)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/688">Remove echo (circles#688)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/698">Returns files shared to Personal (circles#698)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/699">Make cs-fix/cs-check (circles#699)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/700">Cs fix (circles#700)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/708">Backport of 704 (circles#708)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/709">Avoid timeout on check (circles#709)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/714">Better probe (circles#714)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/717">Removing hidden flag by default (circles#717)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/719">Generate probe if needed (circles#719)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/721">Adding unified search (circles#721)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/724">Detect source of search (circles#724)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/727">Remove root circles from search for new members (circles#727)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/729">Sending mail on new shares (circles#729)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/732">GetDefinition (circles#732)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/737">Cloud_force_base (circles#737)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/738">Fixing notification and mails (circles#738)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/740">Remote inherited and memberships (circles#740)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/741">Sendmail on new fileshare (circles#741)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/742">Fix phpdoc+lint (circles#742)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/744">Better display of mail addresses (circles#744)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/747">Limit non-local circles as members of local circles (circles#747)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/749">Local stays local (circles#749)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/751">Local circles starts local (circles#751)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/754">Throw instead of doing nothing (circles#754)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/755">Send mails to inherited members on GS (circles#755)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/757">Optional details on Link (circles#757)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/759">Include and config path in loopback (circles#759)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/761">Cleaning old code (circles#761)</a></li>
<li><a href="https://github.com/nextcloud/circles/pull/762">Migration to 22.1.0 - child shares (circles#762)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/445">Fix pdfviewer design (files_pdfviewer#445)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/568">Include version number in firstrunwizard (firstrunwizard#568)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1049">Remove timeout of browser notifications (notifications#1049)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1711">Some Design fixes (text#1711)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1717">Unify error responses and add logging where appropriate (text#1717)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1734">Bump eslint-plugin-import from 2.23.3 to 2.23.4 (text#1734)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1739">Bump @babel/core from 7.14.3 to 7.14.6 (text#1739)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1769">Fix: rich workspaces overlap with new file dropdown (text#1769)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1775">Azul/fix links 1676 (text#1775)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1781">Extend mimetypes for direct editing (text#1781)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1792">Bump @vue/test-utils from 1.2.1 to 1.2.2 (text#1792)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1797">Make occ command return an integer as return code (text#1797)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1806">Custom input rule to add first character after bullet (Backport #1798) (text#1806)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1808">Fix: cypress icon close selector (text#1808)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/977">Disable header timeout on mobile (viewer#977)</a></li>
</ul>
<h3 id="22-0-0">Version 22.0.0 <small>July 6 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.tar.bz2">nextcloud-22.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.zip">nextcloud-22.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.tar.bz2.md5">nextcloud-22.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.zip.md5">nextcloud-22.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.tar.bz2.sha256">nextcloud-22.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.zip.sha256">nextcloud-22.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.tar.bz2.sha512">nextcloud-22.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.zip.sha512">nextcloud-22.0.0.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.tar.bz2.asc">nextcloud-22.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-22.0.0.zip.asc">nextcloud-22.0.0.zip.asc</a></p>
<h4>Nextcloud 22 is here!</h4>
<p>The biggest improvements Nextcloud Hub 22 introduces are:</p>
<ul>
<li>β User-defined groups with Circles that makes it easier to manage teams where you can share files or assign tasks to circles, or create chat rooms for a circle</li>
<li>ποΈ Integrated chat and task management where you can simply share a deck card into a chat room or turn a chat message into a task</li>
<li>π Easy approval workflow, where an administrator can define a new approval flow in the settings and users can, on a document, request approval</li>
<li>π Getting your document signatures easy with integrated PDF signing with DocuSign, EIDEasy, and LibreSign</li>
<li>π Integrated knowledge management Nextcloud puts knowledge available to everyone at a moments' notice, providing easy search, sharing, and portable access</li>
<li>π Groupware improvements bringing a trash bin feature in Calendar, resource booking to facilitate the handling of resources in organizations. Nextcloud Mail features improved threading, email tagging, and support for Sieve filtering</li>
</ul>
<p>There are many more new features and changes like notifications in the app navigation, integrated compression in the Files interface, and significant performance improvements to universal search.</p>
<p><a href="https://nextcloud.com/blog/nextcloud-hub-22-introduces-approval-workflows-integrated-knowledge-management-and-decentralized-group-administration/">Read our announcement blog for the details.</a></p>
<h4>Changelog</h4>
<p>A full changelog would be to long to reproduce here, given the core server alone had over 600 PR's merged.</p>
<p>You can find a list of PR's for the core server, without dependency bumps, <a href="https://github.com/nextcloud/server/pulls?q=is%3Apr+milestone%3A%22Nextcloud+22%22+is%3Aclosed+sort%3Acreated-asc+is%3Amerged+NOT+bump+">here.</a> If you replace 'server' in the URL above with, for example, <a href="https://github.com/nextcloud/viewer/pulls?q=is%3Apr+milestone%3A%22Nextcloud+22%22+is%3Aclosed+sort%3Acreated-asc+is%3Amerged+NOT+bump+">viewer</a>, <a href="https://github.com/nextcloud/activity/pulls?q=is%3Apr+milestone%3A%22Nextcloud+22%22+is%3Aclosed+sort%3Acreated-asc+is%3Amerged+NOT+bump+">activity</a>, <a href="https://github.com/nextcloud/photos/pulls?q=is%3Apr+milestone%3A%22Nextcloud+22%22+is%3Aclosed+sort%3Acreated-asc+is%3Amerged+NOT+bump+">photos</a>, <a href="https://github.com/nextcloud/notifications/pulls?q=is%3Apr+milestone%3A%22Nextcloud+22%22+is%3Aclosed+sort%3Acreated-asc+is%3Amerged+NOT+bump+">notifications</a> or <a href="https://github.com/nextcloud/text/pulls?q=is%3Apr+milestone%3A%22Nextcloud+22%22+is%3Aclosed+sort%3Acreated-asc+is%3Amerged+NOT+bump+">text</a>, the changes in the respective apps will show up.</p>
<a id="latest21"></a>
<h3 id="21-0-5">Version 21.0.5 <small>October 1 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.tar.bz2">nextcloud-21.0.5.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.zip">nextcloud-21.0.5.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.tar.bz2.md5">nextcloud-21.0.5.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.zip.md5">nextcloud-21.0.5.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.tar.bz2.sha256">nextcloud-21.0.5.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.zip.sha256">nextcloud-21.0.5.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.tar.bz2.sha512">nextcloud-21.0.5.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.zip.sha512">nextcloud-21.0.5.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.tar.bz2.asc">nextcloud-21.0.5.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.5.zip.asc">nextcloud-21.0.5.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/27203">Fix Oracle query limit compliance in Comments (server#27203)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27234">Bump @babel/core from 7.12.10 to 7.12.17 (server#27234)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27406">Avoid fread on directories and unencrypted files (server#27406)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27640">Bump clipboard from 2.0.6 to 2.0.8 (server#27640)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27681">Harden bootstrap context registrations when apps are missing (server#27681)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27917">Bump css-loader from 5.0.1 to 5.0.2 (server#27917)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27983">Bump vue and vue-template-compiler (server#27983)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28203">Bump url-search-params-polyfill from 8.1.0 to 8.1.1 (server#28203)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28253">Add h2 to personal info page, fixing accessibility issue (server#28253)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28275">Fix CI failures when building settings app (server#28275)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28287">Check that php was compiled with argon2 support or that the php-sodium extensions is installed (server#28287)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28354">Change the concurrent upload limit to less than 10 (server#28354)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28358">Bump debounce from 1.2.0 to 1.2.1 (server#28358)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28361">Fix Folder->getById() when a single storage is mounted multiple times (server#28361)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28383">Make "name" column nullable for workflows (server#28383)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28386">Dont show trusted proxy warning when the proxy and remote are both localhost (server#28386)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28400">Better cleanup of user files on user deletion (server#28400)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28415">Gracefully handle smb acls for users without a domain (server#28415)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28440">Bump vue-loader from 15.9.7 to 15.9.8 (server#28440)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28442">Add missing files for Composer v2 (server#28442)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28447">Improve auto expiration hint for trashbin and file versions (server#28447)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28455">UnifiedSearchController: strip webroot from URL before finding a route (server#28455)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28469">Only trap E_ERROR in session handling (server#28469)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28490">Emit an error log when the app token login name does not match (server#28490)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28495">Hash cache key (server#28495)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28498">Fix #20913: Check image resource before attempting to preserve alpha (server#28498)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28517">Output exception in cron (server#28517)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28523">Properly log errors in Movie previews generation (server#28523)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28535">Fix folder size contained in S3 buckets (server#28535)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28537">Set alias for result of cast column function (server#28537)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28546">Do not load versions tab view if the files app is not available (server#28546)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28577">Log exception message during failed ownership transfer share restore (server#28577)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28597">Fix setting up 2FA providers when 2FA is enforced and bc are generated (server#28597)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28604">Fix encrypted version to 0 when finding unencrypted file (server#28604)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28623">Bump css-vars-ponyfill from 2.4.5 to 2.4.6 (server#28623)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28656">Only recommand for php-sodium on >= PHP 7.4 (server#28656)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28673">Fix position of search bar (server#28673)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28702">Fix user list infinite loading state in user settings (server#28702)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28706">Pin Psalm version for security analysis (server#28706)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28709">Bump css-vars-ponyfill from 2.4.6 to 2.4.7 (server#28709)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28735">Check if SVG path is valid (server#28735)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28741">Remove 2FA exemption from PublicPage annotation (server#28741)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28749">Send attendence links to required and optinal attendees of an event without an RSVP (server#28749)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28753">Bump 3rdparty ref (server#28753)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28770">Fix trashbin files view sticky action bar (server#28770)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28782">Dashboard - fix touch layout (server#28782)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28786">Scan the shared external storage source on access (server#28786)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28790">Fix null displayname crash as described in #21885 (server#28790)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28800">Bump vue-clipboard2 from 0.3.1 to 0.3.2 (server#28800)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28811">Bump 3rdparty reference (server#28811)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28815">Add database ratelimiting backend (server#28815)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28829">Update .htaccess (php8+ and mod_lsapi) (server#28829)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28831">Do not cache file ids in FileSystemTags inside group folders (server#28831)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28849">L10n: ignore packed js files from TX sync (server#28849)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28859">Add email addresses to contacts menu (server#28859)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28879">Fix files view change and undefined currentFileList (server#28879)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28882">Fix file creation from template without ext (server#28882)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28887">Bump vue-clipboard2 from 0.3.2 to 0.3.3 (server#28887)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28896">Fall back to full file for video previews (server#28896)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28901">Update CRL due to revoked twofactor_email.crt (server#28901)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28905">Explicitly close source stream on object store upload even if count⦠(server#28905)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28909">Support seeking also from the end of file on S3 storage (server#28909)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28920">Use IRoomMetadata as source of truth for supported room types (server#28920)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28929">Bump 3rdparty ref (server#28929)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28950">Fix caching of objectsid searches (server#28950)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28963">Don't allow to change activity settings that don't work (server#28963)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28999">Fix redirect during initial setup (server#28999)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/782">Bump Archive_Tar to latest release (3rdparty#782)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/784">Bump Webauthn Lib to 3.3.9 (3rdparty#784)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/811">Composer install (3rdparty#811)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/634">Fix activity design (activity#634)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/642">Increase activity email speed in instances with more than 500 users (activity#642)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/462">Fix hide download and printing (files_pdfviewer#462)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/464">Fix body footer hiding (files_pdfviewer#464)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/470">Disable download for pdf files (files_pdfviewer#470)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/474">Fix download & print view (files_pdfviewer#474)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/481">Bump @babel/preset-env from 7.12.11 to 7.12.17 (files_pdfviewer#481)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/482">Bump @babel/core from 7.12.10 to 7.12.17 (files_pdfviewer#482)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/484">Bump eslint-import-resolver-webpack from 0.13.0 to 0.13.1 (files_pdfviewer#484)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/486">Bump vue-loader from 15.9.6 to 15.9.8 (files_pdfviewer#486)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/488">Bump vue-template-compiler from 2.6.12 to 2.6.14 (files_pdfviewer#488)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/496">Use setup-php v2 (files_pdfviewer#496)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/497">Update workflows (files_pdfviewer#497)</a></li>
<li><a href="https://github.com/nextcloud/files_rightclick/pull/120">Fix share option being displayed erroneously (files_rightclick#120)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1063">Give twofactor nextcloud notifications a high priority (notifications#1063)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1066">Always show the dismiss all button (notifications#1066)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1071">High priority for the PhoneTrack app (notifications#1071)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/874">Update dependabot (photos#874)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1752">Bump vue from 2.6.12 to 2.6.14 (text#1752)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1816">Bump vue-loader from 15.9.7 to 15.9.8 (text#1816)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1840">Bump core-js from 3.16.2 to 3.16.3 (text#1840)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1846">Bump core-js from 3.16.3 to 3.16.4 (text#1846)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1850">Bump prosemirror-markdown from 1.5.1 to 1.5.2 (text#1850)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1858">Bump @babel/preset-env from 7.15.0 to 7.15.6 (text#1858)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1859">Bump @babel/core from 7.15.0 to 7.15.5 (text#1859)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1009">Build(deps-dev): bump @babel/core from 7.13.14 to 7.13.16 (viewer#1009)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1011">Build(deps-dev): bump vue-loader from 15.9.6 to 15.9.8 (viewer#1011)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1012">Build(deps-dev): bump @babel/preset-env from 7.13.12 to 7.13.15 (viewer#1012)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1014">Build(deps-dev): bump eslint-import-resolver-webpack from 0.13.0 to 0.13.1 (viewer#1014)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1021">Build(deps-dev): bump eslint-config-standard from 16.0.2 to 16.0.3 (viewer#1021)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1023">Build(deps): bump @nextcloud/dialogs from 3.1.1 to 3.1.2 (viewer#1023)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1039">Build(deps): bump regenerator-runtime from 0.13.7 to 0.13.9 (viewer#1039)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1040">Build(deps-dev): bump eslint-webpack-plugin from 2.5.3 to 2.5.4 (viewer#1040)</a></li>
</ul>
<h3 id="21-0-4">Version 21.0.4 <small>August 6 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.tar.bz2">nextcloud-21.0.4.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.zip">nextcloud-21.0.4.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.tar.bz2.md5">nextcloud-21.0.4.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.zip.md5">nextcloud-21.0.4.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.tar.bz2.sha256">nextcloud-21.0.4.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.zip.sha256">nextcloud-21.0.4.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.tar.bz2.sha512">nextcloud-21.0.4.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.zip.sha512">nextcloud-21.0.4.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.tar.bz2.asc">nextcloud-21.0.4.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.4.zip.asc">nextcloud-21.0.4.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/26650">Files & Core accessibility fixes (server#26650)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26724">Fix account data visibility after disabling public addressbook upload (server#26724)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27205">Better cleanup of filecache when deleting an external storage (server#27205)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27225">Bump @babel/preset-env from 7.12.11 to 7.12.17 (server#27225)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27228">Bump marked from 1.2.8 to 1.2.9 (server#27228)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27624">Bump vuex from 3.6.0 to 3.6.2 (server#27624)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27729">Revert "Fix constraint violation detection in QB Mapper" (server#27729)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27744">Design fixes to app-settings button (server#27744)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27753">Reset checksum when writing files to object store (server#27753)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27803">Run s3 tests again (server#27803)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27828">Fix in locking cache check (server#27828)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27857">Make search popup usable on mobile, too (server#27857)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27862">Cache images on browser (server#27862)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27896">Fix dark theme on public link shares (server#27896)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27899">Make user status usable on mobile (server#27899)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27939">Correctly skip suppressed errors in PHP 8.0 (server#27939)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27940">Fix newfileMenu on public page (server#27940)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27943">Do not escape display name in dashboard welcome text (server#27943)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27956">Fix svg icons disapearing in app navigation when text overflows (server#27956)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27967">Show registered breadcrumb detail views in breadcrumb menu (server#27967)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27975">Fix regression in file sidebar (server#27975)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27992">Manual backport of "No limit in the number of group shares" #27875 (server#27992)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28007">Improve notcreatable permissions hint (server#28007)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28017">Update CRL due to revoked twofactor_nextcloud_notification.crt (server#28017)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28044">Increase footer height for longer menus (server#28044)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28048">Add titleTooltip to sidebar (server#28048)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28055">Mask password for Redis and RedisCluster on connection failure (server#28055)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28064">Fix missing theming for login button (server#28064)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28074">Fix overlapping of elements in certain views (server#28074)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28080">Disable HEIC image preview provider for performance concerns (server#28080)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28086">Improve provider check (server#28086)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28090">Sanitize more functions from the encryption app (server#28090)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28097">Hide download button for public preview of audio files (server#28097)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28110">Fix dark theme in file exists dialog (server#28110)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28124">Let memory limit set in tests fit the used amount (server#28124)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28145">Bump regenerator-runtime from 0.13.7 to 0.13.9 (server#28145)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28171">User management - Add icon to user groups (server#28171)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28192">Fix variable override in file view (server#28192)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28196">Revert "better cleanup of filecache when deleting an external storage" (server#28196)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28198">Fix comments file action sidebar opening (server#28198)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28214">Fix missing exception class import (server#28214)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28218">Revert accidentally dropped lines from Psalm baselines (server#28218)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28223">Fix Files breadcrumbs being hidden even if there is enough space (server#28223)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28230">Allow to disable group membership change notification (server#28230)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28235">Dont apply jail search filter is on the root (server#28235)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28245">Fix missing label of Search function (server#28245)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28302">Update comments bundles (server#28302)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/602">Fix preference name when generating notifications (activity#602)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/606">Fix monochrome icon detection for correct dark mode invert (activity#606)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/612">Fix "Enable notification emails" (activity#612)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/615">Show add, del and restored files within by and self filter (activity#615)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/624">Link from app-navigation-settings to personal settings (activity#624)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/447">Fix pdfviewer design (files_pdfviewer#447)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/569">Include version number in firstrunwizard (firstrunwizard#569)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1039">Use notification main link if no parameter has a link (notifications#1039)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1646">ViewerComponent: pass on autofocus to EditorWrapper (text#1646)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1718">Unify error responses and add logging where appropriate (text#1718)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1736">Bump cypress-image-snapshot from 4.0.0 to 4.0.1 (text#1736)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1743">Bump vue-loader from 15.9.6 to 15.9.7 (text#1743)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1744">Bump @vue/test-utils from 1.1.2 to 1.1.4 (text#1744)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1749">Bump @babel/plugin-proposal-class-properties from 7.12.1 to 7.12.13 (text#1749)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1751">Bump @babel/core from 7.12.10 to 7.12.17 (text#1751)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1753">Bump @babel/plugin-transform-runtime from 7.12.10 to 7.12.17 (text#1753)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1756">Bump @babel/plugin-transform-modules-commonjs from 7.12.1 to 7.12.13 (text#1756)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1782">Some Design fixes (text#1782)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1807">Custom input rule to add first character after bullet (Backport #1798) (text#1807)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1809">Fix: cypress icon close selector (text#1809)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/976">Disable header timeout on mobile (viewer#976)</a></li>
</ul>
<h3 id="21-0-3">Version 21.0.3 <small>July 2 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.tar.bz2">nextcloud-21.0.3.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.zip">nextcloud-21.0.3.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.tar.bz2.md5">nextcloud-21.0.3.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.zip.md5">nextcloud-21.0.3.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.tar.bz2.sha256">nextcloud-21.0.3.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.zip.sha256">nextcloud-21.0.3.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.tar.bz2.sha512">nextcloud-21.0.3.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.zip.sha512">nextcloud-21.0.3.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.tar.bz2.asc">nextcloud-21.0.3.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.3.zip.asc">nextcloud-21.0.3.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/26879">Don't break OCC if an app is breaking in it's Application class (server#26879)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26905">Bump handlebars from 4.7.6 to 4.7.7 (server#26905)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26911">Bump url-parse from 1.4.7 to 1.5.1 (server#26911)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26912">Bump lodash from 4.17.20 to 4.17.21 (server#26912)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26918">Bump hosted-git-info from 2.8.8 to 2.8.9 (server#26918)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26952">Fix occ command user:add-app-password (server#26952)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26955">Add bruteforce protection to the shareinfo endpoint (server#26955)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26964">Ignore readonly flag for directories (server#26964)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26972">Throttle MountPublicLinkController when share is not found (server#26972)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26999">Respect default share permissions for federated reshares (server#26999)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27012">Harden apptoken check (server#27012)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27015">Use parent wrapper to properly handle moves on the same source/target storage (server#27015)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27021">Fix log error when creating files from an empty template (server#27021)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27028">Fix error when using CORS with no auth credentials (server#27028)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27058">Fix filesize error on log rotation, if file does not exist (server#27058)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27097">Avoid reading ~/.aws/config when using S3 provider (server#27097)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27107">Fix return value of getStorageInfo when 'quota_include_external_storage' is enabled (server#27107)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27109">Move remnants of ocs api requests to v2 endpoint (server#27109)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27121">Add DB exception '@throws' tag to QBMapper PHPDoc (server#27121)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27124">Improve type handling of Avatar::generateAvatarFromSvg (server#27124)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27184">Bump patch dependencies (server#27184)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27195">Fix the get editable fields endpoint without a user id (server#27195)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27208">Use noreply@ as email address for share emails (server#27208)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27231">Bump vue-loader from 15.9.6 to 15.9.7 (server#27231)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27237">Bump moment-timezone from 0.5.32 to 0.5.33 (server#27237)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27248">Bump browserslist from 4.16.0 to 4.16.6 (server#27248)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27250">Bump ws from 7.3.1 to 7.4.6 (server#27250)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27303">Properly use limit and offset for search in Jail wrapper (server#27303)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27318">Make user:report command scale (server#27318)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27324">Properly log expiration date removal in audit log (server#27324)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27333">Emit UserLoggedInEvent on apache auth (server#27333)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27334">Don't allow executing cli if cache backend is unavailable (server#27334)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27336">Propagate throttling on OCS response (server#27336)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27346">Replace OCSController with OCP\API (server#27346)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27347">Don't throw when comments is disabled (server#27347)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27350">Set umask before operations that create local files (server#27350)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27359">Escape filename in Content-Disposition (server#27359)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27411">Don't update statuses to offline again and again (server#27411)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27415">Fix some php 8 warnings (server#27415)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27446">Don't pass a column object to addOrderBy (server#27446)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27455">Header must contain a colon (server#27455)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27551">Only allow removing existing shares that would not be allowed due to reshare restrictions (server#27551)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27569">Bump postcss from 7.0.35 to 7.0.36 (server#27569)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27599">Properly cleanup entries of WebAuthn on user deletion (server#27599)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27616">Throttle on public DAV endpoint (server#27616)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27622">Bump dompurify from 2.2.8 to 2.2.9 (server#27622)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27670">Unshift crash reports when they are loaded, to break the recusion (server#27670)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27679">Validate the theming color also on CLI (server#27679)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27703">LDAP: determine shares of offline users only when needed (server#27703)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27727">Downstream encryption:fix-encrypted-version for repairing "bad signature" errors (server#27727)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/397">Remove encodeURI code (files_pdfviewer#397)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/417">Disable content copy for PDF files that specify it (files_pdfviewer#417)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/78">Update openssl for PHP 8.0 (nextcloud_announcements#78)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/997">Only ask for permissions on HTTPS (notifications#997)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/784">Fix sorting if one of the file name is only composed with number (photos#784)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/812">Update File.vue (photos#812)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/295">Hide free space if it can't be calculated (serverinfo#295)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/308">Update chart.js (serverinfo#308)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1610">Only return workspace property for top node in a propfind request (text#1610)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1691">Use text/plain as content type for fetching the document (text#1691)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1697">Log exceptions that happen on unknown exception and return generic messages (text#1697)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1700">Try enabling apcu on cli for cypress (text#1700)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/923">Add fixup (viewer#923)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/928">Fix: fullscreen for Firefox (viewer#928)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/937">Use physical pixel size for preview resolution (viewer#937)</a></li>
</ul>
<h3 id="21-0-2">Version 21.0.2 <small>May 20 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.tar.bz2">nextcloud-21.0.2.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.zip">nextcloud-21.0.2.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.tar.bz2.md5">nextcloud-21.0.2.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.zip.md5">nextcloud-21.0.2.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.tar.bz2.sha256">nextcloud-21.0.2.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.zip.sha256">nextcloud-21.0.2.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.tar.bz2.sha512">nextcloud-21.0.2.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.zip.sha512">nextcloud-21.0.2.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.tar.bz2.asc">nextcloud-21.0.2.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.2.zip.asc">nextcloud-21.0.2.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/26508">L10n: Add word user in FederatedShareProvider.php (server#26508)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26514">Increase subnet matcher (server#26514)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26525">Limit size of properties to 2048 characters (server#26525)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26535">Fix accessibility issues on log in screen (server#26535)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26587">Fix constraint violation detection in QB Mapper (server#26587)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26604">Bump ssri from 6.0.1 to 6.0.2 (server#26604)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26607">Add force option to app install command (server#26607)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26616">Update root.crl due to revoked news.crt (server#26616)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26621">Do not allow adding file drop shares to your own cloud (server#26621)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26625">Fix empty password check for mail shares (server#26625)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26636">Require read permissions for federated shares (server#26636)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26639">Ensure redis returns bool for hasKey (server#26639)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26641">Make lookup search explicit (server#26641)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26653">Update psalm baseline (server#26653)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26667">Fix broken Expiration test (server#26667)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26677">Do not stop directory listing when ACL is blocking access (server#26677)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26685">Mention MariaDB in MySQL support warning (server#26685)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26690">Make Testcase class compatible with phpunit-9.5 (server#26690)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26694">Explicitly check hex2bin input (server#26694)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26702">Remove undefined parameter, add description (server#26702)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26703">FIx Oracle by testing on Ubuntu 20.04 until oci8.so is available for β¦ (server#26703)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26704">Update icewind/smb to 3.4.1 (server#26704)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26733">Bump @nextcloud/dialogs from 3.1.1 to 3.1.2 (server#26733)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26752">Private cannot be final (server#26752)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26759">Fix installer deprecation warnings for PHP 8 (server#26759)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26760">Validate the website field input to be a valid URL (server#26760)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26766">Respect the error level when logging (server#26766)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26770">Improve federated permission handling (server#26770)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26778">No longer add trusted servers on federated share creation (server#26778)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26789">Fix ratelimit template (server#26789)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26797">LDAP: do not bother to search after the last page (server#26797)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26808">Fail when creating new files with an empty path (server#26808)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26815">Only return display name as editable when the user backend allows it (server#26815)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26823">Do not try to contact lookup server if not needed (server#26823)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26863">Only perform login check during ownership transfer for encryption (server#26863)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26865">Fix creating vcards with multiple string values (server#26865)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26881">L10n: Spelling unification (server#26881)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/574">Remove self setting checking which can not be set anymore (activity#574)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/578">Ensure link names are unique for accessibility, thanks @nickvergessen, fix #575 (activity#578)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/584">Use PNG images in daily activity summary emails (activity#584)</a></li>
<li><a href="https://github.com/nextcloud/example-files/pull/18">Fix accessibility issues in PDF pt. II (example-files#18)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/929">Fix admin notification api (notifications#929)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/938">Only push delete-push to devices that also got the notification (notifications#938)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/298">Move counting storage statistics to the background (serverinfo#298)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/304">Hide squashfs and overlay-FS from the overview (serverinfo#304)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/849">Add download button in actions menu (viewer#849)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/858">Limit scope of the icon white overwrite (viewer#858)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/869">Fixes for naughty filenames (viewer#869)</a></li>
</ul>
<h3 id="21-0-1">Version 21.0.1 <small>April 9 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.tar.bz2">nextcloud-21.0.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.zip">nextcloud-21.0.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.tar.bz2.md5">nextcloud-21.0.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.zip.md5">nextcloud-21.0.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.tar.bz2.sha256">nextcloud-21.0.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.zip.sha256">nextcloud-21.0.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.tar.bz2.sha512">nextcloud-21.0.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.zip.sha512">nextcloud-21.0.1.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.tar.bz2.asc">nextcloud-21.0.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.1.zip.asc">nextcloud-21.0.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/25571">Always renew apppasswords on login (server#25571)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25573">Improve mention matches (server#25573)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25877">Disable trasbin during the moveFromStorage fallback (server#25877)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25918">Clear multiselect after selection in share panel (server#25918)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25935">Activity: show if files are hidden or not (server#25935)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25937">Sharebymail: set expiration on creation (server#25937)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25943">Catch notfound and forbidden exception in smb::getmetadata (server#25943)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25955">Skip empty obsolete owner when adding to own NC (server#25955)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25962">Fix admin password strengthify tooltip (server#25962)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/25993">Add missing waits and asserts in acceptance tests (server#25993)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26026">Hide expiration date field for remote shares (server#26026)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26039">Remove trash items from other trash backends when deleting all (server#26039)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26042">Fix SCSS compiler deprecated function usages (server#26042)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26044">Provisioning API to IBootstrap (server#26044)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26051">Cache baseurl in url generator (server#26051)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26056">Allow autocomplete based on phone sync (server#26056)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26058">Only clear share password model when actually saved (server#26058)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26062">Add appconfig to always show the unique label of a sharee (server#26062)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26081">Only clear known users when we had at least one phonebook entry (server#26081)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26084">Chunk the array of phone numbers (server#26084)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26087">Limit constructing of result objects in file search (server#26087)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26090">Apply object store copy optimization when 'cross storage' copy is wit⦠(server#26090)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26119">Add getID function to the simplefile implementation (server#26119)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26122">Allow overwriting isAuthenticated (server#26122)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26124">Send share notification instead of erroring on duplicate share (server#26124)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26128">Log exceptions when creating share (server#26128)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26133">Do cachejail search filtering in sql (server#26133)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26146">Return the fileid from `copyFromCache` and use it instead of doing an extra query (server#26146)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26151">Dont allow creating users with __groupfolders as uid (server#26151)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26162">Use correct exception type hint in catch statement (server#26162)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26166">Fix default missing initial state for templates (server#26166)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26167">Remove explicit fclose from S3->writeStream (server#26167)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26175">Adds ldap user:reset command (server#26175)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26177">Improve search results when only phonebook-matches can we autocompleted (server#26177)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26192">Fix valid storages removed when cleaning remote storages (server#26192)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26204">Update user share must use correct expiration validation (server#26204)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26211">Expand 'path is already shared' error message (server#26211)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26215">Add (hidden) option to always show smb root as writable (server#26215)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26227">Removed unnecessary padding (server#26227)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26238">L10n: Add words user and because in ShareByMailProvider.php (server#26238)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26249">Fix non LGC glyphs in avatars and txt file previews (server#26249)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26257">Handle limit offset and sorting in files search (server#26257)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26263">Update icewind/smb to 3.4.0 (server#26263)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26271">Catch invalid cache source storage path (server#26271)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26276">Fix casing of core test folder, bring back missing tests (server#26276)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26279">L10n: Separate ellipsis (server#26279)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26291">Show better error messages when a file with a forbidden path is encountered (server#26291)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26298">Fix l10n (server#26298)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26301">Log when a storage is marked as unavailable (server#26301)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26307">Delete old birthday calendar object when moving contact to another ad⦠(server#26307)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26326">Add a prefix index to filecache.path (server#26326)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26352">Avatar privacy and new scope (server#26352)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26357">Fix broken Calendar Event Invite email icons in Gmail by using PNGs instead of SVGs (server#26357)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26363">Update cipher defaults (server#26363)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26366">Fix wording for phone number integration (server#26366)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26371">Remove notifications when retesting profile field input (server#26371)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26376">Do not attempt to read 0 bytes when manually iterating over a non-seekable file (server#26376)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26377">Fix(translation): replace static error message (server#26377)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26379">Only mark migrations as installed after execution (server#26379)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26382">Gracefully handle deleteFromSelf when share is already gone (server#26382)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26391">Also check the default phone region when the number has no country code (server#26391)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26398">Allow apps to write/update account data (server#26398)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26400">Log and continue when failing to update encryption keys during for individual files (server#26400)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26402">Make ILDAPProviderFactory usable when there is no ldap setup (server#26402)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26404">Remove leftover debug @NoCSRFRequired introduced with #26198 (server#26404)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26406">Get the parent directory before creating a file from a template (server#26406)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26413">Bump y18n from 4.0.0 to 4.0.1 (server#26413)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26447">[3rdparty]phpseclib-2.0.31 (server#26447)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26451">Revert "add a prefix index to filecache.path" (server#26451)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26453">21.0.1 final (server#26453)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26459">Show icon-phone when setting is set to private instead of local (server#26459)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/643">Bump phpseclib/phpseclib from 2.0.30 to 2.0.31 (3rdparty#643)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/562">Fix 'Daily activity summary' email subject translation (activity#562)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/566">Fix notifying own activities (activity#566)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/570">Send the footer with the defined language (activity#570)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/340">Make sure we only load the public script on public pages (files_pdfviewer#340)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/503">Extend reasons for email address (firstrunwizard#503)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/911">Only send desktop notifications in one tab (notifications#911)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/689">Fix Photos not shown in large browser windows #630 (photos#689)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/710">Add vue-virtual-grid to babel (photos#710)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/280">Match any non-whitespace character in filesystem type pattern (serverinfo#280)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/287">Fix Internal Server Error @ /settings/admin/serverinfo in 21.0.0 (serverinfo#287)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1504">Disable cypress recording for now (text#1504)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1512">Use write permission when possible (text#1512)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1516">Fix clicking links with color annotations (text#1516)</a></li>
<li><a href="https://github.com/nextcloud/updater/pull/346">Update CLI tests to PHP 7.4 to 8.0 (updater#346)</a></li>
<li><a href="https://github.com/nextcloud/updater/pull/351">Disable UI when web updater is disabled in config.php (updater#351)</a></li>
<li><a href="https://github.com/nextcloud/updater/pull/355">Remove obsolete pipeline php72-master (updater#355)</a></li>
<li><a href="https://github.com/nextcloud/updater/pull/359">Update used version of box (updater#359)</a></li>
<li><a href="https://github.com/nextcloud/updater/pull/363">Do not allow to keep maintenance mode active in web updater (updater#363)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/842">Fix fullscreen (viewer#842)</a></li>
</ul>
<h3 id="21-0-0">Version 21.0.0<small> February 22 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.tar.bz2">nextcloud-21.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.zip">nextcloud-21.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.tar.bz2.md5">nextcloud-21.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.zip.md5">nextcloud-21.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.tar.bz2.sha256">nextcloud-21.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.zip.sha256">nextcloud-21.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.tar.bz2.sha512">nextcloud-21.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.zip.sha512">nextcloud-21.0.0.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.tar.bz2.asc">nextcloud-21.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-21.0.0.zip.asc">nextcloud-21.0.0.zip.asc</a></p>
<h4>Changes</h4>
<p>The biggest improvements we introduce with Nextcloud 21 are:</p>
<ul>
<li>π High Performance Back-end for Nextcloud Files: reduces server load from desktop clients and web interface polling by 90% while delivering instant notifications to users.</li>
<li>βπ And a wide range of performance improvements all over on top, decreasing loading times of pages and reducing load on the server</li>
<li>π€ Collaborative features: new Whiteboard, author colours in Text and Document Templates to increase team productivity</li>
<li>π¨ Nextcloud Talk: debuts message status indicators, a raise hand feature, a group conversation description and more!</li>
<li>π« A range of Groupware improvements like drag'n'drop and nicer threading in Mail and syncing social media avatars in Contacts.</li>
</ul>
<p><a href="https://nextcloud.com/blog/nextcloud-hub-21-out-with-up-to-10x-better-performance-whiteboard-and-more-collaboration-features/">Read the full announcement on our blog.</a></p>
<p>An exhaustive changelog would be unreasonably long, but one can always see our entire development history in github. For the core Server repository, see for example <a href="https://github.com/nextcloud/server/milestone/120?closed=1">here the 762 pull requests merged for Milestone 21.</a></p>
<a id="latest20"></a>
<h3 id="20-0-13">Version 20.0.13 <small>October 1 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.tar.bz2">nextcloud-20.0.13.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.zip">nextcloud-20.0.13.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.tar.bz2.md5">nextcloud-20.0.13.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.zip.md5">nextcloud-20.0.13.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.tar.bz2.sha256">nextcloud-20.0.13.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.zip.sha256">nextcloud-20.0.13.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.tar.bz2.sha512">nextcloud-20.0.13.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.zip.sha512">nextcloud-20.0.13.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.tar.bz2.asc">nextcloud-20.0.13.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.13.zip.asc">nextcloud-20.0.13.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/27407">Avoid fread on directories and unencrypted files (server#27407)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27991">Manual backport of "No limit in the number of group shares" #27875 (server#27991)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28186">Bump file-loader from 6.1.0 to 6.1.1 (server#28186)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28248">Fix autocompletion for usernames in comments (server#28248)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28305">Fix CI failures when building settings app (server#28305)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28339">Bump vue-loader from 15.9.7 to 15.9.8 (server#28339)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28355">Change the concurrent upload limit to less than 10 (server#28355)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28362">Fix Folder->getById() when a single storage is mounted multiple times (server#28362)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28382">Make "name" column nullable for workflows (server#28382)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28387">Dont show trusted proxy warning when the proxy and remote are both localhost (server#28387)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28414">Gracefully handle smb acls for users without a domain (server#28414)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28448">Improve auto expiration hint for trashbin and file versions (server#28448)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28453">UnifiedSearchController: strip webroot from URL before finding a route (server#28453)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28471">Only trap E_ERROR in session handling (server#28471)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28491">Emit an error log when the app token login name does not match (server#28491)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28516">Output exception in cron (server#28516)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28524">Properly log errors in Movie previews generation (server#28524)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28538">Set alias for result of cast column function (server#28538)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28547">Do not load versions tab view if the files app is not available (server#28547)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28578">Log exception message during failed ownership transfer share restore (server#28578)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28598">Fix setting up 2FA providers when 2FA is enforced and bc are generated (server#28598)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28605">Fix encrypted version to 0 when finding unencrypted file (server#28605)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28655">Only recommand for php-sodium on >= PHP 7.4 (server#28655)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28672">Fix position of search bar (server#28672)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28736">Check if SVG path is valid (server#28736)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28742">Remove 2FA exemption from PublicPage annotation (server#28742)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28750">Send attendence links to required and optinal attendees of an event without an RSVP (server#28750)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28771">Fix trashbin files view sticky action bar (server#28771)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28783">Dashboard - fix touch layout (server#28783)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28787">Scan the shared external storage source on access (server#28787)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28789">Fix null displayname crash as described in #21885 (server#28789)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28799">Bump vue-clipboard2 from 0.3.1 to 0.3.2 (server#28799)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28808">Bump 3rdparty reference (server#28808)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28812">Bump 3rdparty ref (server#28812)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28818">Add database ratelimiting backend (server#28818)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28820">Extend cache events (server#28820)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28833">Do not cache file ids in FileSystemTags inside group folders (server#28833)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28848">L10n: ignore packed js files from TX sync (server#28848)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28880">Fix files view change and undefined currentFileList (server#28880)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28886">Bump vue-clipboard2 from 0.3.2 to 0.3.3 (server#28886)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28897">Fall back to full file for video previews (server#28897)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28902">Update CRL due to revoked twofactor_email.crt (server#28902)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28908">Support seeking also from the end of file on S3 storage (server#28908)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28921">Use IRoomMetadata as source of truth for supported room types (server#28921)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28930">Bump 3rdparty ref (server#28930)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28946">Explicitly close source stream on object store upload even if count⦠(server#28946)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28951">Fix caching of objectsid searches (server#28951)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28964">Don't allow to change activity settings that don't work (server#28964)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/29000">Fix redirect during initial setup (server#29000)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/785">Remove unneeded dependencies (3rdparty#785)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/788">Bump Webauthn Lib to 3.3.9 (3rdparty#788)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/789">Manually add removed dependencies (3rdparty#789)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/796">Bump Archive_Tar to last release (3rdparty#796)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/810">Composer install (3rdparty#810)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/824">Add Spomsky (3rdparty#824)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/635">Fix activity design (activity#635)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/643">Increase activity email speed in instances with more than 500 users (activity#643)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/461">Fix hide download and printing (files_pdfviewer#461)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/465">Fix body footer hiding (files_pdfviewer#465)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/471">Disable download for pdf files (files_pdfviewer#471)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/475">Fix download & print view (files_pdfviewer#475)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/480">Bump vue-template-compiler from 2.6.12 to 2.6.14 (files_pdfviewer#480)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/483">Bump stylelint-webpack-plugin from 2.1.0 to 2.1.1 (files_pdfviewer#483)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/485">Bump stylelint from 13.7.1 to 13.7.2 (files_pdfviewer#485)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/489">Bump eslint-plugin-import from 2.22.0 to 2.22.1 (files_pdfviewer#489)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/490">Bump file-loader from 6.1.0 to 6.1.1 (files_pdfviewer#490)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/498">Update node.yml (files_pdfviewer#498)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/499">Bump eslint-plugin-standard from 4.0.1 to 4.0.2 (files_pdfviewer#499)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/501">Bump url-loader from 4.1.0 to 4.1.1 (files_pdfviewer#501)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/502">Bump webpack from 4.44.1 to 4.44.2 (files_pdfviewer#502)</a></li>
<li><a href="https://github.com/nextcloud/files_rightclick/pull/121">Fix share option being displayed erroneously (files_rightclick#121)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1064">Give twofactor nextcloud notifications a high priority (notifications#1064)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1072">High priority for the PhoneTrack app (notifications#1072)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/875">Update dependabot (photos#875)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1648">Bump vue from 2.6.12 to 2.6.14 (text#1648)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1812">Bump vue-loader from 15.9.7 to 15.9.8 (text#1812)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1845">Bump prosemirror-markdown from 1.5.1 to 1.5.2 (text#1845)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1005">Build(deps): bump regenerator-runtime from 0.13.7 to 0.13.9 (viewer#1005)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1006">Build(deps-dev): bump stylelint-webpack-plugin from 2.1.0 to 2.1.1 (viewer#1006)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1007">Build(deps-dev): bump url-loader from 4.1.0 to 4.1.1 (viewer#1007)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1008">Build(deps-dev): bump vue-loader from 15.9.3 to 15.9.8 (viewer#1008)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1010">Build(deps-dev): bump eslint-plugin-import from 2.22.0 to 2.22.1 (viewer#1010)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1016">Build(deps-dev): bump wait-on from 5.2.0 to 5.2.2 (viewer#1016)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1017">Build(deps): bump path-parse from 1.0.6 to 1.0.7 (viewer#1017)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1018">Build(deps-dev): bump webpack from 4.44.1 to 4.44.2 (viewer#1018)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1020">Build(deps-dev): bump file-loader from 6.1.0 to 6.1.1 (viewer#1020)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1028">Build(deps-dev): bump eslint-plugin-standard from 4.0.1 to 4.0.2 (viewer#1028)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1029">Build(deps): bump @nextcloud/vue from 2.6.5 to 2.6.9 (viewer#1029)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/1036">Build(deps): bump debounce from 1.2.0 to 1.2.1 (viewer#1036)</a></li>
</ul>
<h3 id="20-0-12">Version 20.0.12 <small>August 6 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.tar.bz2">nextcloud-20.0.12.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.zip">nextcloud-20.0.12.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.tar.bz2.md5">nextcloud-20.0.12.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.zip.md5">nextcloud-20.0.12.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.tar.bz2.sha256">nextcloud-20.0.12.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.zip.sha256">nextcloud-20.0.12.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.tar.bz2.sha512">nextcloud-20.0.12.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.zip.sha512">nextcloud-20.0.12.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.tar.bz2.asc">nextcloud-20.0.12.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.12.zip.asc">nextcloud-20.0.12.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/27224">Bump vue-router from 3.4.3 to 3.4.9 (server#27224)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27232">Bump v-click-outside from 3.1.1 to 3.1.2 (server#27232)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27236">Bump url-search-params-polyfill from 8.1.0 to 8.1.1 (server#27236)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27646">Bump debounce from 1.2.0 to 1.2.1 (server#27646)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27701">Bump vue and vue-template-compiler (server#27701)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27745">Design fixes to app-settings button (server#27745)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27754">Reset checksum when writing files to object store (server#27754)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27804">Run s3 tests again (server#27804)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27829">Fix in locking cache check (server#27829)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27836">Bump dompurify from 2.2.8 to 2.2.9 (server#27836)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27858">Make search popup usable on mobile, too (server#27858)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27863">Cache images on browser (server#27863)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27895">Fix dark theme on public link shares (server#27895)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27897">Make user status usable on mobile (server#27897)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27913">Do not escape display name in dashboard welcome text (server#27913)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27924">Bump moment-timezone from 0.5.31 to 0.5.33 (server#27924)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27941">Fix newfileMenu on public page (server#27941)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27955">Fix svg icons disapearing in app navigation when text overflows (server#27955)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27965">Bump bootstrap from 4.5.2 to 4.5.3 (server#27965)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27970">Show registered breadcrumb detail views in breadcrumb menu (server#27970)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27976">Fix regression in file sidebar (server#27976)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27984">Bump exports-loader from 1.1.0 to 1.1.1 (server#27984)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27985">Bump @nextcloud/capabilities from 1.0.2 to 1.0.4 (server#27985)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27988">Bump @nextcloud/vue-dashboard from 1.0.0 to 1.0.1 (server#27988)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28006">Improve notcreatable permissions hint (server#28006)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28018">Update CRL due to revoked twofactor_nextcloud_notification.crt (server#28018)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28032">Bump sass-loader from 10.0.2 to 10.0.5 (server#28032)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28045">Increase footer height for longer menus (server#28045)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28054">Mask password for Redis and RedisCluster on connection failure (server#28054)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28065">Fix missing theming for login button (server#28065)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28072">Fix overlapping of elements in certain views (server#28072)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28081">Disable HEIC image preview provider for performance concerns (server#28081)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28087">Improve provider check (server#28087)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28091">Sanitize more functions from the encryption app (server#28091)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28096">Hide download button for public preview of audio files (server#28096)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28107">L10n: HTTP in capital letters (server#28107)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28111">Fix dark theme in file exists dialog (server#28111)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28125">Let memory limit set in tests fit the used amount (server#28125)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28172">User management - Add icon to user groups (server#28172)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28187">Bump marked from 1.1.1 to 1.1.2 (server#28187)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28191">Fix variable override in file view (server#28191)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28207">Bump regenerator-runtime from 0.13.7 to 0.13.9 (server#28207)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28208">Bump url-loader from 4.1.0 to 4.1.1 (server#28208)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28224">Fix Files breadcrumbs being hidden even if there is enough space (server#28224)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28241">Dont apply jail search filter is on the root (server#28241)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/28289">Check that php was compiled with argon2 support or that the php-sodium extensions is installed (server#28289)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/603">Fix preference name when generating notifications (activity#603)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/607">Fix monochrome icon detection for correct dark mode invert (activity#607)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/613">Fix "Enable notification emails" (activity#613)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/616">Show add, del and restored files within by and self filter (activity#616)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/625">Link from app-navigation-settings to personal settings (activity#625)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/446">Fix pdfviewer design (files_pdfviewer#446)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/570">Include version number in firstrunwizard (firstrunwizard#570)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/1040">Use notification main link if no parameter has a link (notifications#1040)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1360">Bump sass-loader from 10.1.0 to 10.1.1 (text#1360)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1548">Bump @babel/plugin-transform-runtime from 7.13.9 to 7.13.15 (text#1548)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1550">Bump @babel/preset-env from 7.13.9 to 7.13.15 (text#1550)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1592">Bump vue-loader from 15.9.6 to 15.9.7 (text#1592)</a></li>
<li><a href="https://github.com/nextcloud/text/pull/1719">Unify error responses and add logging where appropriate (text#1719)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/978">Disable header timeout on mobile (viewer#978)</a></li>
</ul>
<h3 id="20-0-11">Version 20.0.11 <small>July 2 2021</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.tar.bz2">nextcloud-20.0.11.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.zip">nextcloud-20.0.11.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.tar.bz2.md5">nextcloud-20.0.11.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.zip.md5">nextcloud-20.0.11.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.tar.bz2.sha256">nextcloud-20.0.11.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.zip.sha256">nextcloud-20.0.11.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.tar.bz2.sha512">nextcloud-20.0.11.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.zip.sha512">nextcloud-20.0.11.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.tar.bz2.asc">nextcloud-20.0.11.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-20.0.11.zip.asc">nextcloud-20.0.11.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/26900">Bump handlebars from 4.7.6 to 4.7.7 (server#26900)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26909">Bump lodash from 4.17.20 to 4.17.21 (server#26909)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26920">Bump hosted-git-info from 2.8.8 to 2.8.9 (server#26920)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26954">Don't break OCC if an app is breaking in it's Application class (server#26954)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26956">Add bruteforce protection to the shareinfo endpoint (server#26956)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26965">Ignore readonly flag for directories (server#26965)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/26971">Throttle MountPublicLinkController when share is not found (server#26971)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27001">Respect default share permissions for federated reshares (server#27001)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27014">Harden apptoken check (server#27014)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27016">Use parent wrapper to properly handle moves on the same source/target storage (server#27016)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27027">Fix error when using CORS with no auth credentials (server#27027)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27108">Fix return value of getStorageInfo when 'quota_include_external_storage' is enabled (server#27108)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27183">Bump patch dependencies (server#27183)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27209">Use noreply@ as email address for share emails (server#27209)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27226">Bump p-queue from 6.6.1 to 6.6.2 (server#27226)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27247">Bump browserslist from 4.14.0 to 4.16.6 (server#27247)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27297">Bump webpack from 4.44.1 to 4.44.2 (server#27297)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/27308">Properly use limit and offset for search in Jail wrapper (server#27308)</a></li>