forked from nextcloud/nextcloud.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-changelog.php
3861 lines (3601 loc) · 457 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="#latest18">Nextcloud 18</a></li>
<li><a href="#latest17">Nextcloud 17</a></li>
<li><a href="#latest16">Nextcloud 16</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>
<a name="latest18"></a>
<h3 id="18-0-1">Version 18.0.1 <small>February 13 2020</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.tar.bz2">nextcloud-18.0.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.zip">nextcloud-18.0.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.tar.bz2.md5">nextcloud-18.0.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.zip.md5">nextcloud-18.0.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.tar.bz2.sha256">nextcloud-18.0.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.zip.sha256">nextcloud-18.0.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.tar.bz2.sha512">nextcloud-18.0.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.zip.sha512">nextcloud-18.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-18.0.1.tar.bz2.asc">nextcloud-18.0.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.1.zip.asc">nextcloud-18.0.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/18961">[stable18] Fix cursor on disabled contenteditable divs (server#18961)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18982">Bump style-loader from 1.1.2 to 1.1.3 (server#18982)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19025">[stable18] Increase the timeout for app downloads (server#19025)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19060">[stable18] Fix loaded controller check (server#19060)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19089">[stable18] Allow to await the sidebar (server#19089)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19094">[stable18] expose Argon2 options (as we did for bcrypt) (server#19094)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19108">[stable18] fix multiselect actions for files (server#19108)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19117">[stable18] Adjust filelist color handling to new dark theme value (server#19117)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19118">[stable18] Reduce legacy event log level to debug (server#19118)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19119">[stable18] New file menu needs to be above the filelist header (server#19119)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19121">[stable18] Do not invert avatar colors when dark theme is enabled (server#19121)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19149">[stable18] Use the target for file notifications (server#19149)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19150">[stable18] Use correct appid for talk (server#19150)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19153">[stable18] add hub bundle for easy installation on upgraded instances (server#19153)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19166">[stable18] apps can have polyamorous relationships with bundles (server#19166)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19189">[stable18] Use themed favicon-fb (server#19189)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19190">[stable18] Fix "Call to undefined method OCA\\WorkflowEngine\\Entity\\File::t()" (server#19190)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19206">[stable18] Fix query selector for inverted icons (server#19206)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19207">[stable18] Do not encode contacts menu mailto links (server#19207)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19212">[stable18] Give the sharing tab a unique id so it also opens properly on other languages (server#19212)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19228">[stable18] WebcalRefreshJob: Fix reading refresh rate (server#19228)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19269">[stable18] Make sure to catch php errors during job execution (server#19269)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19271">[stable18] Center Buttons (server#19271)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19277">[stable18] Use the l10n from settings (server#19277)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19278">[stable18] Use proper andwhere clause (server#19278)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19279">[stable18] Add move (and firstlogin) option to transferownership service (server#19279)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19283">[stable18] for the DB ot pick an index specify the object_type (server#19283)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19291">[stable18] owner transfer multiselect fixes (server#19291)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19292">[stable18] Allow respecting PASSWORD_DEFAULT (server#19292)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19297">[stable18] Keep the modification time during decryptFile (server#19297)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19302">[stable18] Fix data Apache2 .htaccess typo (server#19302)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19308">[stable18] Fix display of DTEND for multi-day all-day event (server#19308)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19315">[stable18] do not overwrite global user auth credentials with empty values (server#19315)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19326">[stable18] Fix occ maintenance:install database connect failure (server#19326)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19330">[stable18] Fix event type (server#19330)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19332">[stable18] Array access on int will fail on php7.4 (server#19332)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19334">[stable18] Make sure the default share provider does not execute for other things (server#19334)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19340">[stable18] Disable link shares of disabled users (server#19340)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19360">[stable18] Prevent archieved download on secure view (server#19360)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19396">[stable18] Log Flow activity (server#19396)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19420">[stable18] Allow to serve static webm directly (server#19420)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19422">18.0.1 final (server#19422)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19428">[stable18] Allow to serve static mp4 directly (server#19428)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/417">[stable18] Update master php testing versions (activity#417)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/418">Update stable18 target versions (activity#418)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/164">[stable18] Update master php testing versions (files_pdfviewer#164)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/165">Update stable18 target versions (files_pdfviewer#165)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/194">Update stable18 target versions (files_texteditor#194)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/274">Update stable18 target versions (firstrunwizard#274)</a></li>
<li><a href="https://github.com/nextcloud/logreader/pull/313">Update stable18 target versions (logreader#313)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/64">[stable18] Update master php testing versions (nextcloud_announcements#64)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/65">Update stable18 target versions (nextcloud_announcements#65)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/547">Update stable18 target versions (notifications#547)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/555">[stable18] Add linting via github actions (notifications#555)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/565">[stable18] Support Strict VoIP push notifications for iOS 13 SDK (notifications#565)</a></li>
<li><a href="https://github.com/nextcloud/password_policy/pull/93">[stable18] Update master php testing versions (password_policy#93)</a></li>
<li><a href="https://github.com/nextcloud/password_policy/pull/94">Update stable18 target versions (password_policy#94)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/153">[stable18] Lint with github actions (photos#153)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/158">[stable18] No more drone. Do it all on github actions (photos#158)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/160">[stable18] Respect .noimage and .nomedia files (photos#160)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/172">[stable18] added headers for your photos and favs (photos#172)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/174">[stable18] Fix/actions (photos#174)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/175">[stable18] Fix url escaping (photos#175)</a></li>
<li><a href="https://github.com/nextcloud/photos/pull/181">[stable18] Use actions from tutorial (photos#181)</a></li>
<li><a href="https://github.com/nextcloud/privacy/pull/323">Update stable18 target versions (privacy#323)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/182">Update stable18 target versions (recommendations#182)</a></li>
<li><a href="https://github.com/nextcloud/serverinfo/pull/170">Update stable18 target versions (serverinfo#170)</a></li>
<li><a href="https://github.com/nextcloud/survey_client/pull/104">[stable18] Update master php testing versions (survey_client#104)</a></li>
<li><a href="https://github.com/nextcloud/survey_client/pull/105">Update stable18 target versions (survey_client#105)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/368">[stable18] GitHub actions/lint (viewer#368)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/370">Fix url escaping (viewer#370)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/379">[stable18] Adjust tests syntax & formatting (viewer#379)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/385">[stable18] Use actions from tutorial (viewer#385)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/396">[stable18] Revert "Fix url escaping" (viewer#396)</a></li>
</ul>
<h3 id="18-0-0">Version 18.0.0 <small>January 17 2020</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.tar.bz2">nextcloud-18.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.zip">nextcloud-18.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.tar.bz2.md5">nextcloud-18.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.zip.md5">nextcloud-18.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.tar.bz2.sha256">nextcloud-18.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.zip.sha256">nextcloud-18.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.tar.bz2.sha512">nextcloud-18.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.zip.sha512">nextcloud-18.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-18.0.0.tar.bz2.asc">nextcloud-18.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-18.0.0.zip.asc">nextcloud-18.0.0.zip.asc</a></p>
<h4>Changes</h4>
<p>Nextcloud Hub is the first completely integrated on-premises content collaboration platform on the market, ready for a new generation of users who expect seamless online collaboration capabilities out of the box.</p>
<p>With this release, we made a change to what we ship. Nextcloud 17 is now Nextcloud Hub 18. Nextcloud Hub comes with a number of new apps which get installed by default on installation (but not shipped as part of the tarball/zip). Nextcloud 17 users can just upgrade as usual to 18, we encourage you to install the new and improved apps like Talk, Calendar, Mail, ONLYOFFICE and more. You will get notified of this recommendation on upgrade!</p>
<p>As this is a major release, the changelog is too long to put here. Users can look at github milestones to find what has been merged. A quick overview of what is new:</p>
<ul>
<li style="list-style: none; list-style-image: none;">📁 Files - features an improved sidebar, accepting internal shares & folder owner transfership
<ul style="margin-top: 0;">
<li style="list-style: none; list-style-image: none;">🗃 Workspaces brings context to your folders, facilitating collaboration in one place.</li>
<li style="list-style: none; list-style-image: none;">🔏 File locking prevents conflicts editing shared files with others</li>
</ul></li>
<li style="list-style: none; list-style-image: none;">🤖 Flow - Brings extensive, easy to use workflow capabilities to Nextcloud. Automatically turn documents in PDFs, send messages to chat rooms and more!</li>
<li style="list-style: none; list-style-image: none;">📝 ONLYOFFICE - Built in ONLYOFFICE makes collaborative editing of Microsoft Office documents accessible to everyone</li>
<li style="list-style: none; list-style-image: none;">📸 Photos - A brand new image gallery makes finding, browsing and sharing your images easier than ever before.</li>
<li style="list-style: none; list-style-image: none;">📅 Calendar 2.0 - Calendar 2.0 books Talk meetings, brings busy view for meetings and resource booking and more</li>
<li style="list-style: none; list-style-image: none;">📩 Mail - Mail 1.0 recognizes itineraries, handles rich text mails and more</li>
<li style="list-style: none; list-style-image: none;">🗣 Talk - rewritten user interface brings message delivery notifications, circles support, message replies and flow integration</li>
</ul>
<p>Read the <a class="hyperlink" href="https://nextcloud.com/blog/the-new-standard-in-on-premises-team-collaboration-nextcloud-hub/">release announcement</a> for more details.</p>
<a name="latest17"></a>
<h3 id="17-0-3">Version 17.0.3 <small>January 31 2020</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.tar.bz2">nextcloud-17.0.3.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.zip">nextcloud-17.0.3.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.tar.bz2.md5">nextcloud-17.0.3.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.zip.md5">nextcloud-17.0.3.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.tar.bz2.sha256">nextcloud-17.0.3.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.zip.sha256">nextcloud-17.0.3.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.tar.bz2.sha512">nextcloud-17.0.3.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.zip.sha512">nextcloud-17.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-17.0.3.tar.bz2.asc">nextcloud-17.0.3.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.3.zip.asc">nextcloud-17.0.3.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/18399">Fix comments search result to work with multibyte strings (server#18399)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18467">Fix listing users in groups with slash in the name (server#18467)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18475">Fix Office preview generation (server#18475)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18488">Use File Node API for more download cases, skip unreadable files (server#18488)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18694">Restore old behavior allowing to set custom appstore (server#18694)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18706">Fix broken upgrade caused by undefined method call (server#18706)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18734">Trash bin: fix exception triggered if no correct fileId is provided. (server#18734)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18747">Cache group existence early to save useless requests to LDAP (server#18747)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18758">Do not rerender the selection menu on show (server#18758)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18792">Set direct login after password reset (server#18792)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18880">Properly handle resources in ReminderService (server#18880)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18932">Dont throw undefined index errors for storages that have no owner set (server#18932)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19014">Always use the latest timestamp for merged activities (server#19014)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19069">Fix loaded controller check (server#19069)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19076">When a user was deleted remove them from applicable list, unless... (server#19076)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19159">AppFetcher: Distinguish between fileName and endpointName (server#19159)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19188">Use themed favicon-fb (server#19188)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/369">GitHub actions/lint (viewer#369)</a></li>
</ul>
<h3 id="17-0-2">Version 17.0.2 <small>December 20 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.tar.bz2">nextcloud-17.0.2.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.zip">nextcloud-17.0.2.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.tar.bz2.md5">nextcloud-17.0.2.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.zip.md5">nextcloud-17.0.2.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.tar.bz2.sha256">nextcloud-17.0.2.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.zip.sha256">nextcloud-17.0.2.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.tar.bz2.sha512">nextcloud-17.0.2.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.zip.sha512">nextcloud-17.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-17.0.2.tar.bz2.asc">nextcloud-17.0.2.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.2.zip.asc">nextcloud-17.0.2.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/17851">Actually return the quote when getting global storage info (server#17851)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17858">Also set X-OC-Mtime header for files that are smaller than 10MB (server#17858)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17883">FIX: horizontal scrolling on mobile due to tab accessibility navigation 'skip to content' positioned at a fixed position (server#17883)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17916">Fix reshare with circle (server#17916)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17919">Bump icewind/searchdav (server#17919)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17925">Make timeout a optional parameter (server#17925)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17928">Check quota before transfer ownership (server#17928)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17945">Re-acquired expired shared locks on large file uploads (server#17945)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17952">Pass through ServerNotAvailableException on app init (server#17952)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18036">Do not check for updates if we have no internet (server#18036)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18040">Convert more columns to bigint (server#18040)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18043">Fix installing with MySQL 8.0.4+ (server#18043)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18047">Uid can be false when the user record does not exit (server#18047)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18050">Update the CRL (server#18050)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18054">Make chunksize (used to check for gone LDAP users) configurable (server#18054)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18075">Remove objectstore credentials (server#18075)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18100">Incorrect integer value: '' for column 'password_invalid' while migra… (server#18100)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18156">Trim the login name (server#18156)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18186">Delay creation of the cert bundle (server#18186)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18189">Handle token insert conflicts (server#18189)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18198">Throw an invalid token exception is token is marked outdated (server#18198)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18205">Backport #18120 (server#18205)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18221">Mark "Talk" active on /call/token URLs (server#18221)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18247">Allow to unfavorite all files (server#18247)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18252">Hide the tooltip if the list row is rerendered (server#18252)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18306">Move overwritehost check to isTrustedDomain (server#18306)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18307">Convert various columns in oc_mounts to bigint (server#18307)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18332">Do not disable authentication apps (server#18332)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18337">Sharee API GS fixes (server#18337)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18352">Handle IPv6 addresses with an explict incoming interface at the end (server#18352)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18355">Adding share type circles (server#18355)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18358">Fix restoring shared versions (server#18358)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18366">Support more IPv6 addresses in the RefreshWebcalJob (server#18366)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18375">Bump the CRL (server#18375)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18386">Allow to detect mimetype by content (server#18386)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18419">Bump serialize-javascript and handlebars (server#18419)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/351">Update icewind/searchdav to 1.0.2 (3rdparty#351)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/407">Is_dir can be null on blacklisted files (activity#407)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/412">Remove debug log (activity#412)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/471">Stable17 Use @nextcloud/axios so the csrf token gets refreshed (notifications#471)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/495">Fix header icon hover & focus feedback (notifications#495)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/499">Fix cutting of multibyte characters (notifications#499)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/506">Do not send push notifications when nothing was deleted (notifications#506)</a></li>
</ul>
<h3 id="17-0-1">Version 17.0.1 <small>November 9 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.tar.bz2">nextcloud-17.0.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.zip">nextcloud-17.0.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.tar.bz2.md5">nextcloud-17.0.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.zip.md5">nextcloud-17.0.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.tar.bz2.sha256">nextcloud-17.0.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.zip.sha256">nextcloud-17.0.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.tar.bz2.sha512">nextcloud-17.0.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.zip.sha512">nextcloud-17.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-17.0.1.tar.bz2.asc">nextcloud-17.0.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.1.zip.asc">nextcloud-17.0.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/17156">Always use the folder icon depending on the mount type if not a share mount (server#17156)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17219">Fix "create folder" icon overlaying home icon (server#17219)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17273">Fix directory detection for s3 (server#17273)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17274">Fix user with id 0 to be able to comment (server#17274)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17277">Handle moveFromStorage within the same storage even when storage wrap… (server#17277)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17281">Dont delete cache entries if deleting an object from object store failed (server#17281)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17295">Correctly detect the mimetype from uploads (server#17295)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17298">Add (hidden) option to configure smb timeout (server#17298)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17300">Position fixed for .toastify.toast (server#17300)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17305">Fix fetching additional search results on scrolling down (server#17305)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17309">Bring the default font size up to 15px (server#17309)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17348">Use handlebars from node_modules (on CI) (server#17348)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17351">Reduce adressbook change events and handling (server#17351)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17358">Fix typo in "which" (server#17358)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17415">Fix updating and deleting authtokens (server#17415)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17418">Allow removing federated shares of locally reshared files (server#17418)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17438">Fix oauth client redirect (server#17438)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17444">Don't call basename on null (server#17444)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17453">Fix axios csrf token update event (server#17453)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17455">Use @nextcloud/axios to keep the CSRF token in sync (server#17455)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17457">Kill ui-regression ci job (server#17457)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17493">Force hide tooltips on sidebar close (server#17493)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17538">Only cache the mimetype if the file exists (server#17538)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17541">Set the proper filename for version downloads (server#17541)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17578">Load additional scripts on help page (server#17578)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17579">Let SCSS cleanup only run once (server#17579)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17581">Pass on direct query parameter during login (server#17581)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17589">Added documentation links on settings pages (server#17589)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17597">Include the share in the Files_Sharing::loadAdditionalScripts event (server#17597)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17617">Treat LDAP error 50 as auth issue, prevents lost server connection errors (server#17617)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17621">Hide strange Everyone and Disabled group numbers with LDAP (server#17621)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17638">Fix browser back button (server#17638)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17676">Fix filename overlapping on mobile (server#17676)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17681">Harden middleware check (server#17681)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17686">Fix jsConfigHelper lang/locale mixup (server#17686)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17688">Fix weird KDE bug with loginflowv2 (server#17688)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17716">Make sure limit is never negative (server#17716)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17731">Fix DAV mimetype search (server#17731)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17742">Return null from migration to match with typehint (server#17742)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17748">Do not show 'Get your own free account' on services under subscription (server#17748)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17766">Fix action menu on mobile (server#17766)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17767">Bring back external storage group select delete (server#17767)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17840">Switch to Files Node API for zip generation (server#17840)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/56">Use correct route to generate (nextcloud_announcements#56)</a></li>
<li><a href="https://github.com/nextcloud/survey_client/pull/98">Name of the collector is `Php`. (survey_client#98)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/232">Update version on master (viewer#232)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/235">Bump eslint-plugin-node from 9.2.0 to 10.0.0 (viewer#235)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/236">Bump @babel/core from 7.5.5 to 7.6.0 (viewer#236)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/237">Bump @babel/preset-env from 7.5.5 to 7.6.0 (viewer#237)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/238">Bump webpack-cli from 3.3.7 to 3.3.8 (viewer#238)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/242">Bump webpack from 4.39.3 to 4.40.1 (viewer#242)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/245">Bump webpack from 4.40.1 to 4.40.2 (viewer#245)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/250">Bump webpack-cli from 3.3.8 to 3.3.9 (viewer#250)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/258">Bump eslint-config-nextcloud from 0.0.5 to 0.0.6 (viewer#258)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/259">Bump url-loader from 2.1.0 to 2.2.0 (viewer#259)</a></li>
</ul>
<h3 id="17-0-0">Version 17.0.0 <small>September 30 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.tar.bz2">nextcloud-17.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.zip">nextcloud-17.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.tar.bz2.md5">nextcloud-17.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.zip.md5">nextcloud-17.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.tar.bz2.sha256">nextcloud-17.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.zip.sha256">nextcloud-17.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.tar.bz2.sha512">nextcloud-17.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.zip.sha512">nextcloud-17.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-17.0.0.tar.bz2.asc">nextcloud-17.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-17.0.0.zip.asc">nextcloud-17.0.0.zip.asc</a></p>
<h4>Changes</h4>
<p>Nextcloud 17 introduces a series of secure collaboration features including a collaborative text editor, remote wipe, updated secure view, improved two-factor-authentication and easier access than ever with deeper integration of large-scale storage like S3 and IBM Spectrum Scale.</p>
<p>As this is a major release, the changelog is too long to put here. Users can look at github milestones to find what has been merged.</p>
<p>A quick overview of what is new:</p>
<ul>
<li>💣 Remote Wipe allows users and administrators to forcibly clean files from remote devices, for example in case they are stolen.</li>
<li>📝 Nextcloud Text, our new distraction-free, <a class="hyperlink" href="https://nextcloud.com/blog/nextcloud-introduces-collaborative-rich-text-editor/">collaborative rich text editor</a></li>
<li>🔒 Improvements to secure view like enforcable watermarks enable virtual data room use</li>
<li>🔐 Setup two-factor authentication after first login, admins can create one-time login tokens in the web UI and delegate this to group admins</li>
<li>📧 secure mailbox in Outlook Add-in</li>
<li>👥 LDAP write support makes it possible to manage users from Nextcloud</li>
<li>💽 S3 versioning support, IBM Spectrum Scale integration and Global Scale with Collabora Online</li>
</ul>
<p>Read the <a class="hyperlink" href="https://nextcloud.com/blog/nextcloud-17-brings-remote-wipe-collaborative-text-editor-and-next-generation-secure-watermarking/">release announcement</a> and blogs it links to for more details.</p>
<a name="latest16"></a>
<h3 id="16-0-8">Version 16.0.8 <small>January 31 2020</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.tar.bz2">nextcloud-16.0.8.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.zip">nextcloud-16.0.8.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.tar.bz2.md5">nextcloud-16.0.8.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.zip.md5">nextcloud-16.0.8.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.tar.bz2.sha256">nextcloud-16.0.8.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.zip.sha256">nextcloud-16.0.8.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.tar.bz2.sha512">nextcloud-16.0.8.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.zip.sha512">nextcloud-16.0.8.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.tar.bz2.asc">nextcloud-16.0.8.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.8.zip.asc">nextcloud-16.0.8.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/18400">Fix comments search result to work with multibyte strings (server#18400)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18440">Bump nextcloud-vue-collections to 0.4.2 (server#18440)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18489">Use File Node API for more download cases, skip unreadable files (server#18489)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18581">Allow inline styles for theming images (server#18581)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18748">Cache group existence early to save useless requests to LDAP (server#18748)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18759">Do not rerender the selection menu on show (server#18759)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18933">Dont throw undefined index errors for storages that have no owner set (server#18933)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19015">Always use the latest timestamp for merged activities (server#19015)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19016">Fix restoring shared versions (server#19016)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/19077">When a user was deleted remove them from applicable list, unless... (server#19077)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/524">Bump handlebars from 4.1.2 to 4.3.0 (notifications#524)</a></li>
</ul>
<h3 id="16-0-7">Version 16.0.7 <small>December 20 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.tar.bz2">nextcloud-16.0.7.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.zip">nextcloud-16.0.7.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.tar.bz2.md5">nextcloud-16.0.7.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.zip.md5">nextcloud-16.0.7.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.tar.bz2.sha256">nextcloud-16.0.7.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.zip.sha256">nextcloud-16.0.7.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.tar.bz2.sha512">nextcloud-16.0.7.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.zip.sha512">nextcloud-16.0.7.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.tar.bz2.asc">nextcloud-16.0.7.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.7.zip.asc">nextcloud-16.0.7.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/17852">Actually return the quote when getting global storage info (server#17852)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17857">Also set X-OC-Mtime header for files that are smaller than 10MB (server#17857)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17884">FIX: horizontal scrolling on mobile due to tab accessibility navigation 'skip to content' positioned at a fixed position (server#17884)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17906">Don't use an undefined index if not needed (server#17906)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17910">Always check via http and https whether htaccess is working (server#17910)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17927">Check quota before transfer ownership (server#17927)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17929">Make timeout a optional parameter (server#17929)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17933">Bump icewind/searchdav (server#17933)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17944">Re-acquired expired shared locks on large file uploads (server#17944)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17953">Pass through ServerNotAvailableException on app init (server#17953)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18037">Do not check for updates if we have no internet (server#18037)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18041">Convert more columns to bigint (server#18041)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18044">Fix installing with MySQL 8.0.4+ (server#18044)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18048">Uid can be false when the user record does not exit (server#18048)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18051">Update the CRL (server#18051)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18055">Make chunksize (used to check for gone LDAP users) configurable (server#18055)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18116">Incorrect integer value: '' for column 'password_invalid' while migra… (server#18116)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18129">Use old node LTS to build handlebars (server#18129)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18183">Trim the login name (server#18183)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18187">Delay creation of the cert bundle (server#18187)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18248">Allow to unfavorite all files (server#18248)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18259">Mark files_rightclick as shipped so it's marked as official (server#18259)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18284">Fix removing groups that have a slash in the name (server#18284)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18308">Move overwritehost check to isTrustedDomain (server#18308)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18309">Convert various columns in oc_mounts to bigint (server#18309)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18333">Do not disable authentication apps (server#18333)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18347">ShareeAPI GS fixes (server#18347)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18356">Adding share type circles (server#18356)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18367">Support more IPv6 addresses in the RefreshWebcalJob (server#18367)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18376">Bump the CRL (server#18376)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18387">Stable17] Allow to detect mimetype by content (server#18387)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/352">Update icewind/searchdav to 1.0.2 (3rdparty#352)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/413">Remove debug log (activity#413)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/489">The token id is an int (notifications#489)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/500">Fix cutting of multibyte characters (notifications#500)</a></li>
</ul>
<h3 id="16-0-6">Version 16.0.6 <small>November 9 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.tar.bz2">nextcloud-16.0.6.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.zip">nextcloud-16.0.6.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.tar.bz2.md5">nextcloud-16.0.6.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.zip.md5">nextcloud-16.0.6.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.tar.bz2.sha256">nextcloud-16.0.6.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.zip.sha256">nextcloud-16.0.6.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.tar.bz2.sha512">nextcloud-16.0.6.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.zip.sha512">nextcloud-16.0.6.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.tar.bz2.asc">nextcloud-16.0.6.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.6.zip.asc">nextcloud-16.0.6.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16814">Instead of upsert query, fallback to default on PSQL <= 9.4 (server#16814)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17012">Return the proper jailed path when requesting the root path (server#17012)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17227">Fix "create folder" icon overlaying home icon (server#17227)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17271">Fix directory detection for s3 (server#17271)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17278">Handle moveFromStorage within the same storage even when storage wrap… (server#17278)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17282">Dont delete cache entries if deleting an object from object store failed (server#17282)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17296">Correctly detect the mimetype from uploads (server#17296)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17299">Add (hidden) option to configure smb timeout (server#17299)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17342">Fix scrolling after switching to grid view (server#17342)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17347">Use handlebars from node_modules (on CI) (server#17347)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17352">Reduce adressbook change events and handling (server#17352)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17416">Fix updating and deleting authtokens (server#17416)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17419">Allow removing federated shares of locally reshared files (server#17419)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17441">Don't call basename on null (server#17441)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17511">Correctly handle emtpy string in proxyuserpwd config (server#17511)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17539">Only cache the mimetype if the file exists (server#17539)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17542">Set the proper filename for version downloads (server#17542)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17580">Let SCSS cleanup only run once (server#17580)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17588">Added documentation links on settings pages (server#17588)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17618">Treat LDAP error 50 as auth issue, prevents lost server connection errors (server#17618)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17619">Fix method scope (server#17619)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17622">Hide strange Everyone and Disabled group numbers with LDAP (server#17622)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17641">Stable17] Load additional scripts on help page (server#17641)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17648">Stop if there is no encrypted token (server#17648)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17653">Reset and init new user form language (server#17653)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17687">Fix jsConfigHelper lang/locale mixup (server#17687)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17689">Fix weird KDE bug with loginflowv2 (server#17689)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17732">Fix DAV mimetype search (server#17732)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17768">Bring back external storage group select delete (server#17768)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17841">Switch to Files Node API for zip generation (server#17841)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17852">Actually return the quote when getting global storage info (server#17852)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/548">Force close all tooltips when closing sharing menu (gallery#548)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/57">Use correct route to generate (nextcloud_announcements#57)</a></li>
<li><a href="https://github.com/nextcloud/survey_client/pull/99">Name of the collector is `Php`. (survey_client#99)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/213">Bump sass-loader from 7.1.0 to 7.2.0 (viewer#213)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/214">Bump webpack from 4.39.1 to 4.39.2 (viewer#214)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/215">Bump sass-loader from 7.2.0 to 7.3.1 (viewer#215)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/216">Bump webpack-cli from 3.3.6 to 3.3.7 (viewer#216)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/217">Bump eslint-loader from 2.2.1 to 3.0.0 (viewer#217)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/218">Bump eslint-plugin-standard from 4.0.0 to 4.0.1 (viewer#218)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/220">Bump eslint-utils from 1.3.1 to 1.4.2 (viewer#220)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/222">Bump webpack-merge from 4.2.1 to 4.2.2 (viewer#222)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/223">Bump babel-eslint from 10.0.2 to 10.0.3 (viewer#223)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/225">Bump webpack from 4.39.2 to 4.39.3 (viewer#225)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/226">Bump nextcloud-vue from 0.12.1 to 0.12.2 (viewer#226)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/227">Bump eslint-plugin-node from 9.1.0 to 9.2.0 (viewer#227)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/232">Update version on master (viewer#232)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/235">Bump eslint-plugin-node from 9.2.0 to 10.0.0 (viewer#235)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/236">Bump @babel/core from 7.5.5 to 7.6.0 (viewer#236)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/237">Bump @babel/preset-env from 7.5.5 to 7.6.0 (viewer#237)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/238">Bump webpack-cli from 3.3.7 to 3.3.8 (viewer#238)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/242">Bump webpack from 4.39.3 to 4.40.1 (viewer#242)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/245">Bump webpack from 4.40.1 to 4.40.2 (viewer#245)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/250">Bump webpack-cli from 3.3.8 to 3.3.9 (viewer#250)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/258">Bump eslint-config-nextcloud from 0.0.5 to 0.0.6 (viewer#258)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/259">Bump url-loader from 2.1.0 to 2.2.0 (viewer#259)</a></li>
</ul>
<h3 id="16-0-5">Version 16.0.5 <small>September 27 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.tar.bz2">nextcloud-16.0.5.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.zip">nextcloud-16.0.5.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.tar.bz2.md5">nextcloud-16.0.5.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.zip.md5">nextcloud-16.0.5.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.tar.bz2.sha256">nextcloud-16.0.5.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.zip.sha256">nextcloud-16.0.5.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.tar.bz2.sha512">nextcloud-16.0.5.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.zip.sha512">nextcloud-16.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-16.0.5.tar.bz2.asc">nextcloud-16.0.5.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.5.zip.asc">nextcloud-16.0.5.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16745">Make possible to focus grid/list view toggle via keyboard (server#16745)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16753">Fix tracking of auto disabled apps in Updater (server#16753)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16802">Filter more configs (server#16802)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16818">Correctly remove apps without any releases (server#16818)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16826">Undefined variable response when server is no nextcloud anymore (server#16826)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16837">Change access handling of projects (server#16837)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16848">Only add the app-itunes-app tag if the id is set (server#16848)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16883">Use custom client URL in welcome emails (server#16883)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16891">Properly redirect if accessing invalid file though /f/ entrypoint (server#16891)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16896">Bump mixin-deep from 1.3.1 to 1.3.2 (server#16896)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16909">Only run integration tests when PHP was modified (server#16909)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16921">Ignore Enter key up event on menu button toggles (server#16921)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16991">Be sure to get the jailed path if the storage is a jail (server#16991)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16994">Remove orphaned calendar data from deleted subscriptions (server#16994)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16995">Only run code coverage CI on merge (server#16995)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16997">Returns 404 (server#16997)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17061">Properly initialize the CacheJail for sharing (server#17061)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17070">Fix SMB availability status + higher delay on auth issues (server#17070)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17091">When you click on thumbnail of a file, it should open the file not the sidebar (server#17091)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17099">Emit moveToTrash event only for the deleting user (server#17099)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17103">Fix opening apps with Ctrl+click (server#17103)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17155">Always use the folder icon depending on the mount type if not a share mount (server#17155)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17157">Don't send executionContexts for Clear-Site-Data (server#17157)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17197">Add uid to delete temp token query (server#17197)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17211">Fix l10n in federated file sharing (server#17211)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17250">Nextcloud 16.0.5 (server#17250)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17257">Fix spaces being collapsed in move dialog (server#17257)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/389">Better dark theme support (activity#389)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/390">Fix travis database tests (activity#390)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/174">Bump lodash from 4.17.11 to 4.17.14 (files_texteditor#174)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/183">Translate menu action (files_texteditor#183)</a></li>
<li><a href="https://github.com/nextcloud/files_videoplayer/pull/138">Bump mixin-deep from 1.3.1 to 1.3.2 (files_videoplayer#138)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/211">Bump mixin-deep from 1.3.1 to 1.3.2 (firstrunwizard#211)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/48">Randomize the interval. (nextcloud_announcements#48)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/51">Improve the notification (nextcloud_announcements#51)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/415">Also set the subject when the subject is not too long (notifications#415)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/418">Bump eslint-utils from 1.3.1 to 1.4.2 (notifications#418)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/420">The backports of #392 and #390 did not work out as expected (notifications#420)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/121">Bump mixin-deep from 1.3.1 to 1.3.2 (recommendations#121)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/221">Bump eslint-utils from 1.3.1 to 1.4.2 (viewer#221)</a></li>
</ul
<h3 id="16-0-4">Version 16.0.4 <small>August 16 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.tar.bz2">nextcloud-16.0.4.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.zip">nextcloud-16.0.4.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.tar.bz2.md5">nextcloud-16.0.4.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.zip.md5">nextcloud-16.0.4.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.tar.bz2.sha256">nextcloud-16.0.4.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.zip.sha256">nextcloud-16.0.4.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.tar.bz2.sha512">nextcloud-16.0.4.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.zip.sha512">nextcloud-16.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-16.0.4.tar.bz2.asc">nextcloud-16.0.4.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.4.zip.asc">nextcloud-16.0.4.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16254">Always set the display name for user shares (server#16254)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16325">Prevent undefined offset 0 in findByUserIdOrMail (server#16325)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16330">Use HTTP1.1 to read S3 objects (server#16330)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16338">Bump lodash.mergewith from 4.6.1 to 4.6.2 (server#16338)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16341">Bump lodash.merge from 4.6.1 to 4.6.2 (server#16341)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16352">Bump lodash from 4.17.11 to 4.17.13 (server#16352)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16405">Addsubtag should push to array (server#16405)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16414">Add catch for RuntimeException (server#16414)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16425">Only prevent disabling encrytion via the API (server#16425)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16432">Do not keep searching for recent (server#16432)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16437">Update operationprogressbar.js (server#16437)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16444">Fix File#putContents(string) on ObjectStorage (server#16444)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16500">Pass $configargs to openssl_pkey_export (server#16500)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16524">Nested recursion breaking max nested level for parent comment calculation (server#16524)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16527">Allow hidden smb shares (server#16527)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16536">Allow to provide supported calendar component set internally as a string (server#16536)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16541">Lock SCSS so we only run 1 job at a time (server#16541)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16543">Fix max contrast retrieval to limit minimum color for relative time (server#16543)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16561">Supresses disclosing the userid for LDAP users in the welcome mail (server#16561)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16562">Use a pattern to identify sensitive config keys (server#16562)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16564">Do not log locked files (server#16564)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16566">Log email shares in admin_audit log (server#16566)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16567">Change send to sent (server#16567)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16578">Do not log all locked exceptions (server#16578)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16598">Check the if we can actually access the storage cache for recent files (server#16598)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16607">Set proper defaults for v-tooltip usages (server#16607)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16610">Fix/xss/on favorite file (server#16610)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16627">Log circles and remote shares in admin_audit (server#16627)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16630">Make sure we only fetch the file by id for the actual owner (server#16630)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16633">Remove unncessary code block in share recommendations, fixed undefined var error (server#16633)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16637">Files_external: proper user context for sharing (server#16637)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16689">Properly return an int in the getId function of the cache (server#16689)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16691">Fix enable/disable user audit message (server#16691)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16695">Delay sending event from app init to when they are needed (server#16695)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/145">Fix download button shown in public share page with hidden downloads (files_pdfviewer#145)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/169">Change name from 'Text editor' to 'Plain text editor' to prevent confusion with 'Text' (files_texteditor#169)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/176">Run drone for webpack build (files_texteditor#176)</a></li>
<li><a href="https://github.com/nextcloud/files_videoplayer/pull/135">Bump lodash from 4.17.11 to 4.17.14 (files_videoplayer#135)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/199">Bump lodash.mergewith from 4.6.1 to 4.6.2 (firstrunwizard#199)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/200">Bump lodash.merge from 4.6.1 to 4.6.2 (firstrunwizard#200)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/202">Bump lodash from 4.17.11 to 4.17.14 (firstrunwizard#202)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/205">Bump fstream from 1.0.11 to 1.0.12 (firstrunwizard#205)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/376">Bump lodash from 4.17.11 to 4.17.13 (notifications#376)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/384">Trim the subject before encrypting the subject (notifications#384)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/390">Align the notification subject vertically to the icon (notifications#390)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/391">Fix notification body text alignment and text contrast (notifications#391)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/392">Fix mention and actions layout (notifications#392)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/105">Bump lodash.mergewith from 4.6.1 to 4.6.2 (recommendations#105)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/107">Bump lodash from 4.17.11 to 4.17.14 (recommendations#107)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/120">Bump tar from 2.2.1 to 2.2.2 (recommendations#120)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/102">Bump cypress-image-snapshot from 3.0.1 to 3.0.2 (viewer#102)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/103">Bump babel-loader from 8.0.5 to 8.0.6 (viewer#103)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/104">Bump cypress-file-upload from 3.1.1 to 3.1.2 (viewer#104)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/109">Bump @babel/preset-env from 7.4.4 to 7.4.5 (viewer#109)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/116">Bump eslint-plugin-node from 9.0.1 to 9.1.0 (viewer#116)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/119">Bump cypress-testing-library from 3.0.1 to 4.0.0 (viewer#119)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/121">Bump nextcloud-vue from 0.11.3 to 0.11.4 (viewer#121)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/127">Bump webpack-cli from 3.3.2 to 3.3.3 (viewer#127)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/130">Bump file-loader from 3.0.1 to 4.0.0 (viewer#130)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/131">Bump cypress-image-snapshot from 3.1.0 to 3.1.1 (viewer#131)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/135">Bump webpack from 4.33.0 to 4.34.0 (viewer#135)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/137">Bump cypress-file-upload from 3.1.2 to 3.1.3 (viewer#137)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/138">Bump webpack-cli from 3.3.3 to 3.3.4 (viewer#138)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/139">Bump nextcloud-server from 0.15.9 to 0.15.10 (viewer#139)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/144">Bump webpack from 4.34.0 to 4.35.0 (viewer#144)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/152">Bump eslint-plugin-vue from 5.2.2 to 5.2.3 (viewer#152)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/153">Bump webpack-cli from 3.3.4 to 3.3.5 (viewer#153)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/154">Bump eslint-plugin-promise from 4.1.1 to 4.2.1 (viewer#154)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/155">Bump url-loader from 2.0.0 to 2.0.1 (viewer#155)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/156">Bump eslint-plugin-import from 2.17.3 to 2.18.0 (viewer#156)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/165">Bump eslint-loader from 2.1.2 to 2.2.1 (viewer#165)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/176">Bump webpack from 4.35.2 to 4.35.3 (viewer#176)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/178">Bump stylelint-scss from 3.8.0 to 3.9.1 (viewer#178)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/182">Bump eslint-plugin-import from 2.18.0 to 2.18.2 (viewer#182)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/187">Bump webpack-cli from 3.3.5 to 3.3.6 (viewer#187)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/188">Bump vue-loader from 15.7.0 to 15.7.1 (viewer#188)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/189">Bump webpack from 4.35.3 to 4.36.1 (viewer#189)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/194">Bump webpack from 4.36.1 to 4.38.0 (viewer#194)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/196">Bump url-loader from 2.0.1 to 2.1.0 (viewer#196)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/201">Bump lodash from 4.17.11 to 4.17.15 (viewer#201)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/202">Bump webpack from 4.38.0 to 4.39.0 (viewer#202)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/204">Bump webpack from 4.39.0 to 4.39.1 (viewer#204)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/47">Detect and switch fullscreen (viewer#47)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/66">Update version on master (viewer#66)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/67">Test actions (viewer#67)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/68">Revert "Test actions" (viewer#68)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/69">Bump nextcloud-vue from 0.9.5 to 0.10.0 (viewer#69)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/70">Bump eslint-plugin-import from 2.16.0 to 2.17.2 (viewer#70)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/71">Bump eslint-import-resolver-webpack from 0.11.0 to 0.11.1 (viewer#71)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/72">Bump webpack from 4.29.6 to 4.30.0 (viewer#72)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/73">Fix/loading/race condition (viewer#73)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/90">Bump webpack-cli from 3.3.1 to 3.3.2 (viewer#90)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/92">Bump eslint-plugin-node from 8.0.1 to 9.0.1 (viewer#92)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/96">Bump webpack from 4.30.0 to 4.31.0 (viewer#96)</a></li>
</ul>
<h3 id="16-0-3">Version 16.0.3 <small>July 9 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.tar.bz2">nextcloud-16.0.3.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip">nextcloud-16.0.3.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.tar.bz2.md5">nextcloud-16.0.3.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip.md5">nextcloud-16.0.3.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.tar.bz2.sha256">nextcloud-16.0.3.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip.sha256">nextcloud-16.0.3.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.tar.bz2.sha512">nextcloud-16.0.3.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip.sha512">nextcloud-16.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-16.0.3.tar.bz2.asc">nextcloud-16.0.3.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip.asc">nextcloud-16.0.3.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16189">Do not fail hard on new user mail error (server#16189)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16244">Fix redirect after rescanFailedIntegrityCheck to "Overview" page (server#16244)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16249">Fix permissions for drag-n-drop uploads (server#16249)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16297">Try to delete the cypress folder of the viewer app (server#16297)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/373">Send browser notifications again (notifications#373)</a></li>
</ul>
<h3 id="16-0-2">Version 16.0.2 <small>July 5 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.tar.bz2">nextcloud-16.0.2.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.zip">nextcloud-16.0.2.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.tar.bz2.md5">nextcloud-16.0.2.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.zip.md5">nextcloud-16.0.2.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.tar.bz2.sha256">nextcloud-16.0.2.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.zip.sha256">nextcloud-16.0.2.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.tar.bz2.sha512">nextcloud-16.0.2.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.zip.sha512">nextcloud-16.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-16.0.2.tar.bz2.asc">nextcloud-16.0.2.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.2.zip.asc">nextcloud-16.0.2.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/15553">Update ca bundle (server#15553)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15554">Update ca bundle checker (server#15554)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15575">User management/subadmin: rephrase ambiguous error message (server#15575)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15592">Update shipped.json to include privacy and recommendations (server#15592)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15593">Show supported apps in app management (server#15593)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15628">Update CRL due to revoked cookbook.crt (server#15628)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15649">Only show sharing section if it has content (server#15649)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15666">Remove quota feedback if no link set (server#15666)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15686">Allow redis cluster to use password (server#15686)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15718">Don't run repair step for every individual user, outsource that to background job (server#15718)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15724">Check the actual status code for 204 and 304 (server#15724)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15728">[Security] Bump tar from 2.2.1 to 2.2.2 (server#15728)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15745">Don't notify admins if no potentially over exposing links found (server#15745)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15754">Also allow dragging below the file list (server#15754)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15768">Change text color in search box in darktheme, ref #15598 (server#15768)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15772">Check for free space on touch (server#15772)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15799">Search files by id in shared storages last (server#15799)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15856">Hide newFile menu if quota is set to 0B (server#15856)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15948">Add core/js/dist/ to l10nignore (server#15948)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15984">Add LDAP integr. test for receiving share candidates with group limitation (server#15984)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16010">Remove auto focus of share input field on dialog open, fix #15261 (server#16010)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16015">LDAP) API: return one base properly when multiple are configured (server#16015)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16038">Handle storage exceptions when trying to set mtime (server#16038)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16051">Fix LDAP Wizard forgetting groups on select with search (server#16051)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16068">Revert "Fix userid casting in notifications" (server#16068)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16080">Fix appid argument for integrity:check-app (server#16080)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16082">Fix full text search for groupfolders (server#16082)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16089">Fall back to black for non-color values (server#16089)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16091">Check if uploading to lookup server is enabled before verifying (server#16091)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16105">Allow apps to store longer messages in the comments API (server#16105)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16112">Invalidates user when plugin reported deletion success (server#16112)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16125">Fix download link included in public share page with hidden download (server#16125)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16127">Better check reshare permissions (server#16127)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16128">Verify that paths are valid for recursive local move (server#16128)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16133">Don't allow to disable encryption via the API (server#16133)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16146">Do not show a internet connectivity warning if internet access is dis… (server#16146)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16157">Update Nextcloud version in docs link (server#16157)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16177">Allow apps to overwrite the maximum length when reading from database (server#16177)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16201">RefreshWebcalJob: replace ugly Regex with standard php utils (server#16201)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16211">Better check reshare permissions part2 (server#16211)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/380">Fix "unshare group share from self" activity (activity#380)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/141">Fix load of character maps (files_pdfviewer#141)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/192">[Security] Bump axios from 0.18.0 to 0.18.1 (firstrunwizard#192)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/529">Correctly show errors when setting the password (gallery#529)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/533">Blacklist using .noimage (gallery#533)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/359">Update dependabot deps in stable16 (notifications#359)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/368">Increase size of icon bubble for more visibility (notifications#368)</a></li>
<li><a href="https://github.com/nextcloud/privacy/pull/133">Add app description to readme and appinfo (privacy#133)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/79">Catch and filter share that can't be found (recommendations#79)</a></li>
<li><a href="https://github.com/nextcloud/recommendations/pull/92">[Security] Bump axios from 0.18.0 to 0.18.1 (recommendations#92)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/113">[Security] Bump tar from 2.2.1 to 2.2.2 (viewer#113)</a></li>
<li><a href="https://github.com/nextcloud/viewer/pull/117">[Security] Bump axios from 0.18.0 to 0.19.0 (viewer#117)</a></li>
</ul>
<h3 id="16-0-1">Version 16.0.1 <small>May 16 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.tar.bz2">nextcloud-16.0.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.zip">nextcloud-16.0.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.tar.bz2.md5">nextcloud-16.0.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.zip.md5">nextcloud-16.0.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.tar.bz2.sha256">nextcloud-16.0.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.zip.sha256">nextcloud-16.0.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.tar.bz2.sha512">nextcloud-16.0.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.zip.sha512">nextcloud-16.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-16.0.1.tar.bz2.asc">nextcloud-16.0.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.1.zip.asc">nextcloud-16.0.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/15223">Fix setupcheck for intl module (server#15223)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15303">Take return of mkdir into consideration; photocache to not create a folder for deletion (server#15303)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15312">Remove the custom prefix from the table name length when checking on … (server#15312)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15341">Check if the data is in the lookup server (server#15341)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15345">Do NOT assume all files are selected if the first checkbox is (server#15345)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15389">Fix collapse button in app navigation in IE11 (server#15389)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15399">Make sure all middlewares are only registered once (server#15399)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15405">Allow to send the password of protected conversations (server#15405)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15409">Remove extra margin from warning messages in authenticate page (server#15409)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15417">Set Edge < 16 as incompatible with css vars (server#15417)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15418">Remove extra param in cache update call (server#15418)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15424">Handle 0 B default quota properly in the web UI (server#15424)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15433">Fix multiselect min width (server#15433)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15434">Make access column a real boolean (server#15434)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15439">Fix public upload by also load the semaphore method (server#15439)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15442">Remove setup args from logging (server#15442)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15452">Use non-absolute logout URL to fix wrong URL in reverse proxy scenario (server#15452)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15469">Fix mobile vertical scrolling (server#15469)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15471">Remove recommendation for opcache on CLI (server#15471)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15482">Update file-upload.js (server#15482)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15513">Add interfaces to interact with subscription from support app (server#15513)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/374">Fall back to application/octet-stream instead of using an invalid mim… (activity#374)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/132">Only call setViewerMode if FileList is available (files_pdfviewer#132)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/150">Use correct CSS URL, remove default marked settings and change to GFM rendering (files_texteditor#150)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/189">Use correct method to determine if HTTPS is used (firstrunwizard#189)</a></li>
</ul>
<h3 id="16-0-0">Version 16.0.0 <small>April 25 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.tar.bz2">nextcloud-16.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.zip">nextcloud-16.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.tar.bz2.md5">nextcloud-16.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.zip.md5">nextcloud-16.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.tar.bz2.sha256">nextcloud-16.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.zip.sha256">nextcloud-16.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.tar.bz2.sha512">nextcloud-16.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.zip.sha512">nextcloud-16.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-16.0.0.tar.bz2.asc">nextcloud-16.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-16.0.0.zip.asc">nextcloud-16.0.0.zip.asc</a></p>
<h4>Changes</h4>
<p>Nextcloud 16 is smarter than ever, with machine learning to detect suspicious logins and offering clever recommendations. Group Folders now sport access control lists so system administrators can easily manage who has access to what in organization-wide shares. We also introduce Projects, a way to easily relate and find related information like files, chats or tasks.</p>
<p>As this is a major release, the changelog is too long to put here. Users can look on github milestones to find what has been merged. Find an overview of what has been improved in this series of blog posts:</p>
<ul>
<li><a href="https://nextcloud.com/blog/nextcloud-16-becomes-smarter-with-machine-learning-for-security-and-productivity/">Nextcloud 16 becomes smarter with Machine Learning for security and productivity</a></li>
<li><a href="https://nextcloud.com/blog/nextcloud-16-implements-access-control-lists-to-replace-classic-file-servers/">ACL permissions for Groupfolders</a></li>
<li><a href="https://nextcloud.com/blog/nextcloud-16-allows-you-to-link-resources-to-keep-track-of-your-projects/">Nextcloud 16 allows you to link resources to keep track of your projects</a></li>
<li><a href="https://nextcloud.com/blog/talk-6.0-brings-commands-improved-user-experience-and-more/">Talk 6.0 brings commands, improved user experience and more</a></li>
</ul>
<a name="latest15"></a>
<h3 id="15-0-14">Version 15.0.14 <small>December 20 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.tar.bz2">nextcloud-15.0.14.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.zip">nextcloud-15.0.14.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.tar.bz2.md5">nextcloud-15.0.14.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.zip.md5">nextcloud-15.0.14.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.tar.bz2.sha256">nextcloud-15.0.14.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.zip.sha256">nextcloud-15.0.14.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.tar.bz2.sha512">nextcloud-15.0.14.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.zip.sha512">nextcloud-15.0.14.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.tar.bz2.asc">nextcloud-15.0.14.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.14.zip.asc">nextcloud-15.0.14.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/17853">Actually return the quote when getting global storage info (server#17853)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17911">Always check via http and https whether htaccess is working (server#17911)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17954">Pass through ServerNotAvailableException on app init (server#17954)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18049">Uid can be false when the user record does not exit (server#18049)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18052">Update the CRL (server#18052)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18106">Revert "Load additional scripts on help page" (server#18106)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18117">Incorrect integer value: '' for column 'password_invalid' while migra… (server#18117)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18190">Delay creation of the cert bundle (server#18190)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18214">Correctly remove apps without any releases (server#18214)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18285">Fix removing groups that have a slash in the name (server#18285)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18310">Convert various columns in oc_mounts to bigint (server#18310)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18357">Adding share type circles (server#18357)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18368">Support more IPv6 addresses in the RefreshWebcalJob (server#18368)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18377">Bump the CRL (server#18377)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/18388">Stable17] Allow to detect mimetype by content (server#18388)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/414">Remove debug log (activity#414)</a></li>
</ul>
<h3 id="15-0-13">Version 15.0.13 <small>November 9 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.tar.bz2">nextcloud-15.0.13.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.zip">nextcloud-15.0.13.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.tar.bz2.md5">nextcloud-15.0.13.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.zip.md5">nextcloud-15.0.13.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.tar.bz2.sha256">nextcloud-15.0.13.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.zip.sha256">nextcloud-15.0.13.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.tar.bz2.sha512">nextcloud-15.0.13.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.zip.sha512">nextcloud-15.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-15.0.13.tar.bz2.asc">nextcloud-15.0.13.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.13.zip.asc">nextcloud-15.0.13.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/17013">Return the proper jailed path when requesting the root path (server#17013)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17272">Fix directory detection for s3 (server#17272)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17297">Correctly detect the mimetype from uploads (server#17297)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17442">Don't call basename on null (server#17442)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17540">Only cache the mimetype if the file exists (server#17540)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17587">Added documentation links on settings pages (server#17587)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17642">Stable17] Load additional scripts on help page (server#17642)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17660">Stable16] fix method scope (server#17660)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17733">Fix DAV mimetype search (server#17733)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17760">Fix to strict typehint in FileMimeType (server#17760)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17853">Actually return the quote when getting global storage info (server#17853)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/549">Force close all tooltips when closing sharing menu (gallery#549)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/58">Use correct route to generate (nextcloud_announcements#58)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/59">Adjust target branch (nextcloud_announcements#59)</a></li>
<li><a href="https://github.com/nextcloud/survey_client/pull/100">Name of the collector is `Php`. (survey_client#100)</a></li>
</ul>
<h3 id="15-0-12">Version 15.0.12 <small>September 27 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.tar.bz2">nextcloud-15.0.12.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.zip">nextcloud-15.0.12.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.tar.bz2.md5">nextcloud-15.0.12.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.zip.md5">nextcloud-15.0.12.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.tar.bz2.sha256">nextcloud-15.0.12.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.zip.sha256">nextcloud-15.0.12.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.tar.bz2.sha512">nextcloud-15.0.12.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.zip.sha512">nextcloud-15.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-15.0.12.tar.bz2.asc">nextcloud-15.0.12.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.12.zip.asc">nextcloud-15.0.12.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16803">Filter more configs (server#16803)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16825">Undefined variable response when server is no nextcloud anymore (server#16825)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16849">Only add the app-itunes-app tag if the id is set (server#16849)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16884">Use custom client URL in welcome emails (server#16884)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16897">Bump mixin-deep from 1.3.1 to 1.3.2 in /apps/accessibility (server#16897)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16900">Bump mixin-deep from 1.3.1 to 1.3.2 in /apps/oauth2 (server#16900)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16902">Bump mixin-deep from 1.3.1 to 1.3.2 in /apps/updatenotification (server#16902)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16904">Bump mixin-deep from 1.3.1 to 1.3.2 in /settings (server#16904)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16905">Bump mixin-deep from 1.3.1 to 1.3.2 in /build (server#16905)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16992">Be sure to get the jailed path if the storage is a jail (server#16992)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16996">Only run code coverage CI on merge (server#16996)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17058">Returns 404 (server#17058)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17062">Properly initialize the CacheJail for sharing (server#17062)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17071">Fix SMB availability status + higher delay on auth issues (server#17071)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17100">Emit moveToTrash event only for the deleting user (server#17100)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17158">Don't send executionContexts for Clear-Site-Data (server#17158)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17198">Add uid to delete temp token query (server#17198)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17212">Fix l10n in federated file sharing (server#17212)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/17251">Nextcloud 15.0.12 (server#17251)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/49">Randomize the interval. (nextcloud_announcements#49)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/53">Stable16] Improve the notification (nextcloud_announcements#53)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/419">Bump mixin-deep from 1.3.1 to 1.3.2 (notifications#419)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/437">Bump tar from 4.4.1 to 4.4.11 (notifications#437)</a></li>
</ul>
<h3 id="15-0-11">Version 15.0.11 <small>August 16 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.tar.bz2">nextcloud-15.0.11.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.zip">nextcloud-15.0.11.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.tar.bz2.md5">nextcloud-15.0.11.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.zip.md5">nextcloud-15.0.11.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.tar.bz2.sha256">nextcloud-15.0.11.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.zip.sha256">nextcloud-15.0.11.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.tar.bz2.sha512">nextcloud-15.0.11.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.zip.sha512">nextcloud-15.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-15.0.11.tar.bz2.asc">nextcloud-15.0.11.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.11.zip.asc">nextcloud-15.0.11.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16224">Dont use part files for dav writes when the target folder doesn't have create permissions (server#16224)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16326">Prevent undefined offset 0 in findByUserIdOrMail (server#16326)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16344">Bump lodash.mergewith from 4.6.1 to 4.6.2 in /settings (server#16344)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16345">Bump lodash.merge from 4.6.1 to 4.6.2 in /settings (server#16345)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16346">Bump lodash.mergewith from 4.6.1 to 4.6.2 in /build (server#16346)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16348">Bump lodash from 4.17.11 to 4.17.14 in /apps/accessibility (server#16348)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16350">Bump lodash from 4.17.11 to 4.17.13 in /settings (server#16350)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16351">Bump lodash from 4.17.11 to 4.17.14 in /apps/updatenotification (server#16351)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16353">Bump lodash from 4.17.11 to 4.17.14 in /build (server#16353)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16357">Bump lodash from 4.17.11 to 4.17.14 in /apps/oauth2 (server#16357)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16426">Only prevent disabling encrytion via the API (server#16426)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16433">Do not keep searching for recent (server#16433)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16445">Fix File#putContents(string) on ObjectStorage (server#16445)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16537">Allow to provide supported calendar component set internally as a string (server#16537)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16548">Bump fstream from 1.0.11 to 1.0.12 in /build (server#16548)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16549">Bump fstream from 1.0.11 to 1.0.12 in /settings (server#16549)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16565">Use a pattern to identify sensitive config keys (server#16565)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16568">Change send to sent (server#16568)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16608">Set proper defaults for v-tooltip usages (server#16608)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16611">Fix/xss/on favorite file (server#16611)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16631">Make sure we only fetch the file by id for the actual owner (server#16631)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16690">Properly return an int in the getId function of the cache (server#16690)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16692">Fix enable/disable user audit message (server#16692)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/146">Fix download button shown in public share page with hidden downloads (files_pdfviewer#146)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/377">Bump lodash from 4.17.10 to 4.17.14 (notifications#377)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/385">Trim the subject before encrypting the subject (notifications#385)</a></li>
</ul>
<h3 id="15-0-10">Version 15.0.10 <small>July 9 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.tar.bz2">nextcloud-15.0.10.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.zip">nextcloud-15.0.10.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.tar.bz2.md5">nextcloud-15.0.10.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.zip.md5">nextcloud-15.0.10.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.tar.bz2.sha256">nextcloud-15.0.10.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.zip.sha256">nextcloud-15.0.10.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.tar.bz2.sha512">nextcloud-15.0.10.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.zip.sha512">nextcloud-15.0.10.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.tar.bz2.asc">nextcloud-15.0.10.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.10.zip.asc">nextcloud-15.0.10.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/16190">Do not fail hard on new user mail error (server#16190)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16192">Forward OCSException to initiator (server#16192)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16283">Properly load permissions in showActions (server#16283)</a></li>
</ul>
<h3 id="15-0-9">Version 15.0.9 <small>July 5 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.tar.bz2">nextcloud-15.0.9.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.zip">nextcloud-15.0.9.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.tar.bz2.md5">nextcloud-15.0.9.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.zip.md5">nextcloud-15.0.9.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.tar.bz2.sha256">nextcloud-15.0.9.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.zip.sha256">nextcloud-15.0.9.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.tar.bz2.sha512">nextcloud-15.0.9.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.zip.sha512">nextcloud-15.0.9.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.tar.bz2.asc">nextcloud-15.0.9.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.9.zip.asc">nextcloud-15.0.9.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/15555">Update ca bundle checker (server#15555)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15572">Update ca bundle (server#15572)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15576">User management/subadmin: rephrase ambiguous error message (server#15576)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15629">Update CRL due to revoked cookbook.crt (server#15629)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15650">Only show sharing section if it has content (server#15650)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15687">Allow redis cluster to use password (server#15687)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15725">Check the actual status code for 204 and 304 (server#15725)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15726">[Security] Bump tar from 2.2.1 to 2.2.2 in /settings (server#15726)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15727">[Security] Bump tar from 2.2.1 to 2.2.2 in /build (server#15727)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15755">Also allow dragging below the file list (server#15755)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15771">Check for free space on touch (server#15771)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15800">Search files by id in shared storages last (server#15800)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15818">[Security] Bump axios from 0.18.0 to 0.19.0 in /apps/accessibility (server#15818)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15855">Hide newFile menu if quota is set to 0B (server#15855)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15861">Don't notify admins if no potentially over exposing links found (server#15861)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15927">Show share settings only if incoming federated shares are allowed (server#15927)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15985">Add LDAP integr. test for receiving share candidates with group limitation (server#15985)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16030">Prevent faulty logs from nested setupFS calls (server#16030)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16052">Fix LDAP Wizard forgetting groups on select with search (server#16052)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16081">Fix appid argument for integrity:check-app (server#16081)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16083">Fix full text search for groupfolders (server#16083)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16090">Fall back to black for non-color values (server#16090)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16092">Check if uploading to lookup server is enabled before verifying (server#16092)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16110">LDAP) API: return one base properly when multiple are configured (server#16110)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16113">Invalidates user when plugin reported deletion success (server#16113)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16126">Fix download link included in public share page with hidden download (server#16126)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16129">Verify that paths are valid for recursive local move (server#16129)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16134">Don't allow to disable encryption via the API (server#16134)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16142">Better check reshare permissions (server#16142)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16202">RefreshWebcalJob: replace ugly Regex with standard php utils (server#16202)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16212">Fix notification casting (server#16212)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/16215">Better check reshare permissions part2 (server#16215)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/381">Fix "unshare group share from self" activity (activity#381)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/142">Fix load of character maps (files_pdfviewer#142)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/530">Correctly show errors when setting the password (gallery#530)</a></li>
</ul>
<h3 id="15-0-8">Version 15.0.8 <small>May 16 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.tar.bz2">nextcloud-15.0.8.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.zip">nextcloud-15.0.8.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.tar.bz2.md5">nextcloud-15.0.8.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.zip.md5">nextcloud-15.0.8.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.tar.bz2.sha256">nextcloud-15.0.8.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.zip.sha256">nextcloud-15.0.8.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.tar.bz2.sha512">nextcloud-15.0.8.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.zip.sha512">nextcloud-15.0.8.zip.sha512</a></br>
PGP (<a href="https://nextcloud.com/nextcloud.asc">Key</a>): <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.tar.bz2.asc">nextcloud-15.0.8.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.8.zip.asc">nextcloud-15.0.8.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/15006">Reconnect to DB after timeout for Notify command. Fixes #14479 (server#15006)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15021">Respect the setting if the lookup server is disabled (server#15021)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15046">Disable the injected snapper logic when apps want to ship their own (server#15046)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15071">Do not allow invalid users to be created (server#15071)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15112">Prevent a reinstall (server#15112)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15119">Do not use spaces in generated passwords (server#15119)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15128">Improve the share link password error feedback with a red border (server#15128)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15131">Use slient option to switch for regular file actions as well (server#15131)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15139">Backport/15129/stable15 (server#15139)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15158">Load apps before running repair steps (server#15158)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15205">Always use a temp file for swift writes (server#15205)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15206">Prefetching blows up if there are a lot of files. (server#15206)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15307">Take return of mkdir into consideration; photocache to not create a folder for deletion (server#15307)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15332">[Security] Bump tar from 4.4.1 to 4.4.8 in /apps/oauth2 (server#15332)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15333">[Security] Bump tar from 4.4.1 to 4.4.8 in /apps/accessibility (server#15333)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15334">[Security] Bump tar from 4.4.1 to 4.4.8 in /apps/updatenotification (server#15334)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15342">Check if the data is in the lookup server (server#15342)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15346">Do NOT assume all files are selected if the first checkbox is (server#15346)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15387">Remove orphan event and contacts data (server#15387)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15390">Fix collapse button in app navigation in IE11 (server#15390)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15421">Set Edge < 16 as incompatible with css vars (server#15421)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15425">Handle 0 B default quota properly in the web UI (server#15425)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15443">Remove setup args from logging (server#15443)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15456">Use non-absolute logout URL to fix wrong URL in reverse proxy scenario (server#15456)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15472">Remove recommendation for opcache on CLI (server#15472)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/15485">Update file-upload.js (server#15485)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/362">Fix missing translation for "Home folder" (activity#362)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/375">Fall back to application/octet-stream instead of using an invalid mim… (activity#375)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/133">Only call setViewerMode if FileList is available (files_pdfviewer#133)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/151">Use correct CSS URL, remove default marked settings and change to GFM rendering (files_texteditor#151)</a></li>
</ul>
<h3 id="15-0-7">Version 15.0.7 <small>April 9 2019</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.7.tar.bz2">nextcloud-15.0.7.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-15.0.7.zip">nextcloud-15.0.7.zip</a></br>
Check the file integrity with:</br>