forked from nextcloud/nextcloud.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-changelog.php
2026 lines (1864 loc) · 221 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">
<img class="pattern" src="<?php echo get_template_directory_uri(); ?>/assets/img/common/empty1x1.png" alt="">
<div class="container">
<div class="col-md-6 topheader">
<h1>Nextcloud Server Changelog</h1>
</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="#latest14">Nextcloud 14</a></li>
<li><a href="#latest13">Nextcloud 13</a></li>
<li><a href="#latest12">Nextcloud 12</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="latest14"></a>
<h3 id="14-0-4">Version 14.0.4 <small>November 22 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.tar.bz2">nextcloud-14.0.4.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.zip">nextcloud-14.0.4.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.tar.bz2.md5">nextcloud-14.0.4.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.zip.md5">nextcloud-14.0.4.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.tar.bz2.sha256">nextcloud-14.0.4.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.zip.sha256">nextcloud-14.0.4.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.tar.bz2.sha512">nextcloud-14.0.4.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.zip.sha512">nextcloud-14.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-14.0.4.tar.bz2.asc">nextcloud-14.0.4.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.4.zip.asc">nextcloud-14.0.4.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/11772">Allow overwrite.cli.url without trailing slash (server#11772)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11781">Remove duplicate call to decodeURIComponent (server#11781)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11783">Check for empty string (server#11783)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11798">Add "Referrer-Policy" to htaccess file, addresses issue #11099 (server#11798)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11800">Always query the lookup server in a global scale setup (server#11800)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11851">Fix a case where "password_by_talk" was not a boolean (server#11851)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11925">Add .l10nignore files for compiled assets (server#11925)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11929">Properly escape column name in "createFunction" call (server#11929)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11939">Allow userId to be null (server#11939)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11950">Allow "same-origin" as "Referrer-Policy" (Backport to stable14) (server#11950)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11961">Do not emit preHooks twice on non-part-storage (server#11961)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11976">Filter null values for UserManager::getByEmail (server#11976)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11979">Allow local delivery of schedule message while prohibiting FreeBusy requests (server#11979)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11990">Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.js (server#11990)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11994">Lazy open first source stream in assemblystream (server#11994)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11995">Fix opening a section again in the Files app (server#11995)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12005">Remove cookies from Clear-Site-Data Header (server#12005)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12032">Forwarded ExpiredTokenException (server#12032)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12040">Allow chunked uploads even if your quota is not sufficient (server#12040)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12045">Improve encrypt all / decrypt all (server#12045)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12108">Double check for failed cache with a shared storage (server#12108)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12111">Implement the size of an assembly stream (server#12111)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12120">Bring the browser window of an actor to the foreground when acting as him (server#12120)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12121">Move acceptance tests that crash the PHP built-in server to Apache (server#12121)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12122">Remove unneeded empty search attribute values, fixes #12086 (server#12122)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12137">Fixes wrong variable usage (server#12137)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12141">LDAP: announce display name changes so that addressbook picks it up (server#12141)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12160">Bruteforce protection handling in combination with (server#12160)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12184">Add global site selector as user back-end which doesn't support password confirmation (server#12184)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12187">Do not set indeterminate state for file shares (server#12187)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12197">Revert "Wait for cron to finish before running upgrade command" (server#12197)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12202">Fix bug #12151: fix list formatting by correcting malformed html (server#12202)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12297">A folder should get a folder mimetype (server#12297)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12299">Use the proper server for the apptoken flow login (server#12299)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12300">Do not log FileLock as exception (server#12300)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12301">Set the filemodel before rending the detailsview (server#12301)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12331">Disabled ldap fix (server#12331)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12339">Fix - Add to favorites not working in IE11 (server#12339)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12341">Remove arrow function for ie compatibility (server#12341)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12353">Fix default types of activity event member variables (server#12353)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12372">Suppress wrong audit log messages about failed login attempts (server#12372)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12374">Add fix for IE11 flexbox height bug (server#12374)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12375">Properly search the root of a shared external storage (server#12375)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12412">Fix app update available check (server#12412)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12416">Use nextcloud-password-confirmation (server#12416)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12431">Fix IE rule for min width (server#12431)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12432">Added cache override to ensure an always up-to-date accessibility css (server#12432)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12433">Unique contraint and deadlock fixes for filecache and file_locks (server#12433)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12440">Fix app menu calculation for random size of the right header (server#12440)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12441">Fix missing quickaccess favorite folder on add (server#12441)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12459">Fixes dav share issue with owner (server#12459)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12482">Fix wrong share popover opening on share link (server#12482)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12492">Only use width and opacity for transition (server#12492)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12502">Forward object not found error in swift as dav 404 (server#12502)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12529">Fix the warning appearing in the admin section when mail_smtpmode is not configured (server#12529)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12542">Remove unused svg api route (server#12542)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12545">Bearer tokens are app token (server#12545)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12561">Handle permission in update of share better (server#12561)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/312">Correctly restrict affected users when using command to send emails (activity#312)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/121">Improve code blocks in markdown rendering (files_texteditor#121)</a></li>
<li><a href="https://github.com/nextcloud/survey_client/pull/85">Properly escape column name in "createFunction" call (survey_client#85)</a></li>
</ul>
<h3 id="14-0-3">Version 14.0.3 <small>October 12 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.tar.bz2">nextcloud-14.0.3.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.zip">nextcloud-14.0.3.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.tar.bz2.md5">nextcloud-14.0.3.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.zip.md5">nextcloud-14.0.3.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.tar.bz2.sha256">nextcloud-14.0.3.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.zip.sha256">nextcloud-14.0.3.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.tar.bz2.sha512">nextcloud-14.0.3.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.zip.sha512">nextcloud-14.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-14.0.3.tar.bz2.asc">nextcloud-14.0.3.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.3.zip.asc">nextcloud-14.0.3.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/11662">Fixes the apps menu scrollbar (server#11662)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11761">Ignore "session_lifetime" if it can not be converted to a number (server#11761)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11770">Normalize getUnjailedPath (server#11770)</a></li>
</ul>
<h3 id="14-0-2">Version 14.0.2 <small>October 11 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.tar.bz2">nextcloud-14.0.2.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.zip">nextcloud-14.0.2.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.tar.bz2.md5">nextcloud-14.0.2.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.zip.md5">nextcloud-14.0.2.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.tar.bz2.sha256">nextcloud-14.0.2.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.zip.sha256">nextcloud-14.0.2.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.tar.bz2.sha512">nextcloud-14.0.2.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.zip.sha512">nextcloud-14.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-14.0.2.tar.bz2.asc">nextcloud-14.0.2.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.2.zip.asc">nextcloud-14.0.2.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/11350">Fix contacts menu on mentions (server#11350)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11373">Make the server ready to use global scale with SAML as auth back-end (server#11373)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11374">Fix default flex shrink on list (server#11374)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11385">Fixes the logo height (server#11385)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11389">Do not explode when getting permissions from a FailedStorage (server#11389)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11399">Do not hide the progress bar while the chunked upload is being assembled (server#11399)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11418">Fix "checkWellKnownUrl" not being run (server#11418)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11425">Add back the total used space per user (server#11425)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11426">Fix invalid inline input confirm border (server#11426)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11430">Center back the history icon (server#11430)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11436">AssemblyStream is also eof if we have no more source stream (server#11436)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11451">Re-enable upload button after updating Avatar (server#11451)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11488">Fix typo in config.sample.php (server#11488)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11489">Bugfix 2FA theme: buttons white (server#11489)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11490">Update config and babel for ie11 (server#11490)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11492">Only catch QueryException when trying to build class (server#11492)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11493">Show auth type "None" in email settings (server#11493)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11510">Fix public page footer link wrap (server#11510)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11511">Fix share header text on small widths (server#11511)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11516">Add missing compiled mimetype list (server#11516)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11525">Fixes the move/copy picker buttons (server#11525)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11530">Fix breadcrumbs (server#11530)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11554">Added kinetic scrolling for iOS to apps dropdown menu #10281 (server#11554)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11555">Throw an error if a node is smaller than expected in assemblystream (server#11555)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11556">Reduce the min-width of the files table so it works on sharing pages on mobile (server#11556)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11558">Fix header overflow, fix more apps menu, fix #11552 (server#11558)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11575">Add new group entry on users list + fixes (server#11575)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11577">Redirect guests to login if they follow the link of a comment mention-notifications (server#11577)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11579">Force multiselect max-height to 5.5 items (server#11579)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11580">Just update password hash without validating (server#11580)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11582">Fix sticky header on users list (server#11582)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11608">Fix header border on users list (server#11608)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11610">Fix call to logger (server#11610)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11703">Allow the creationg of previews of files stored in appdata (server#11703)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11706">Update CRL due to changed cert for linkshareex (server#11706)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11738">Fix a misleading setup check for .well-known/caldav & carddav (server#11738)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/101">Remove unneeded CSS rule for IE 11 (files_pdfviewer#101)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/103">Hide footer in public share page (files_pdfviewer#103)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/98">Fix embedded viewer with new server layout on IE 11 (files_pdfviewer#98)</a></li>
</ul>
<h3 id="14-0-1">Version 14.0.1 <small>September 25 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.tar.bz2">nextcloud-14.0.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.zip">nextcloud-14.0.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.tar.bz2.md5">nextcloud-14.0.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.zip.md5">nextcloud-14.0.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.tar.bz2.sha256">nextcloud-14.0.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.zip.sha256">nextcloud-14.0.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.tar.bz2.sha512">nextcloud-14.0.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.zip.sha512">nextcloud-14.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-14.0.1.tar.bz2.asc">nextcloud-14.0.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.1.zip.asc">nextcloud-14.0.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/11039">Fixes the upload progress bar layout - 14 backport (server#11039)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11077">Fix markup and style of mentions in comments (server#11077)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11090">Do not invalidate main token on OAuth (server#11090)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11103">Expire tokens hardening (server#11103)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11152">fix js files client for user names with spaces (server#11152)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11186">Fix user and group listing with users that have an integer user id (server#11186)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11187">Fix exception class (server#11187)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11191">Remove posix_getpwuid and compare only userid (server#11191)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11201">Fix check for more users in sharing dialogue (server#11201)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11237">Remove filter_var flags due to PHP 7.3 deprecation, fixes #10894 (server#11237)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11259">Fixes empty favorite names for trailing slashes (server#11259)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11276">Fix size of icons in menus inside apps when shown as images (server#11276)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11277">Prevent comment being composed from overlapping the submit button (server#11277)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11280">replace setcookie value with '' instead of null. (server#11280)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11282">Fix the link and anchor for the update notifications (server#11282)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11283">Include empty directories in the default state of acceptance tests (server#11283)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11287">Get permission of storage for shares (server#11287)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11288">Shared by info for room shares without names (server#11288)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11291">Fix icons cacher regex for compressed output (server#11291)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11293">Revert "Use APCu caching of composer" (server#11293)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11294">Use user locale as default in the template (server#11294)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11302">Fix expiration code of tokens (server#11302)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11340">Add unit test for findLanguageFromLocale (server#11340)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/295">14 scroll fix (activity#295)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/111">Update stable14 target versions (files_texteditor#111)</a></li>
<li><a href="https://github.com/nextcloud/firstrunwizard/pull/80">Update stable14 target versions (firstrunwizard#80)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/467">Update stable14 target versions (gallery#467)</a></li>
<li><a href="https://github.com/nextcloud/nextcloud_announcements/pull/32">Update stable14 target versions (nextcloud_announcements#32)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/158">Update stable14 target versions (notifications#158)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/161">Update config and babel for ie11 (notifications#161)</a></li>
</ul>
<h3 id="14-0-0">Version 14.0.0 <small>September 10 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.tar.bz2">nextcloud-14.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.zip">nextcloud-14.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.tar.bz2.md5">nextcloud-14.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.zip.md5">nextcloud-14.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.tar.bz2.sha256">nextcloud-14.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.zip.sha256">nextcloud-14.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.tar.bz2.sha512">nextcloud-14.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.zip.sha512">nextcloud-14.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-14.0.0.tar.bz2.asc">nextcloud-14.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-14.0.0.zip.asc">nextcloud-14.0.0.zip.asc</a></p>
<h4>Changes</h4>
<p>Nextcloud 14 merged nearly 1000 pull requests with improvements and changes, almost 150 more than Nextcloud 13. This only covers the core server, hundreds more changes were made in the apps that make up our release, making this version officially our biggest release ever.</p>
<p>While we can never cover everything that has improved, these are the main feature highlights:</p>
<ul>
<li>Video Verification - use a video call with Talk to verify the identity of
somebody before granting them access to a share</li>
<li>Two-factor authentication now with Signal and Telegram as well as NFC and SMS</li>
<li>Accessibility improvements & dark theme</li>
<li>Add a note to shares, share files in a Talk chat, new Deck Kanban app and much more</li>
</ul>
<p><a href="https://nextcloud.com/blog/nextcloud-14-now-available-with-video-verification-signaltelegram-2fa-support-improved-collaboration-and-gdpr-compliance/">Our blog with more details is here.</a></p>
<a name="latest13"></a>
<h3 id="13-0-8">Version 13.0.8 <small>November 22 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.tar.bz2">nextcloud-13.0.8.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.zip">nextcloud-13.0.8.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.tar.bz2.md5">nextcloud-13.0.8.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.zip.md5">nextcloud-13.0.8.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.tar.bz2.sha256">nextcloud-13.0.8.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.zip.sha256">nextcloud-13.0.8.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.tar.bz2.sha512">nextcloud-13.0.8.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.zip.sha512">nextcloud-13.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-13.0.8.tar.bz2.asc">nextcloud-13.0.8.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.8.zip.asc">nextcloud-13.0.8.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/11762">Ignore "session_lifetime" if it can not be converted to a number (server#11762)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11857">Change password expiration time from 12h to 7d (server#11857)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11962">Do not emit preHooks twice on non-part-storage (server#11962)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11978">Filter null values for UserManager::getByEmail (server#11978)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11982">Allow local delivery of schedule message while prohibiting FreeBusy requests (server#11982)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11992">Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.js (server#11992)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11996">Fix opening a section again in the Files app (server#11996)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11997">Lazy open first source stream in assemblystream (server#11997)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12006">Remove cookies from Clear-Site-Data Header (server#12006)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12060">Actually return the root folder when traversing up the tree (server#12060)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12109">Double check for failed cache with a shared storage (server#12109)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12112">Implement the size of an assembly stream (server#12112)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12123">Remove unneeded empty search attribute values, fixes #12086 (server#12123)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12142">LDAP: announce display name changes so that addressbook picks it up (server#12142)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12208">Reset bruteforce on token refresh OAuth (server#12208)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12212">Expired tokens should not trigger bruteforce protection (server#12212)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12298">A folder should get a folder mimetype (server#12298)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12376">Properly search the root of a shared external storage (server#12376)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12434">Unique contraint and deadlock fixes for filecache and file_locks (server#12434)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12460">Fixes dav share issue with owner (server#12460)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12503">Forward object not found error in swift as dav 404 (server#12503)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12546">Bearer tokens are app token (server#12546)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12562">Handle permission in update of share better (server#12562)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/313">Correctly restrict affected users when using command to send emails (activity#313)</a></li>
</ul>
<h3 id="13-0-7">Version 13.0.7 <small>October 11 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.tar.bz2">nextcloud-13.0.7.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.zip">nextcloud-13.0.7.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.tar.bz2.md5">nextcloud-13.0.7.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.zip.md5">nextcloud-13.0.7.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.tar.bz2.sha256">nextcloud-13.0.7.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.zip.sha256">nextcloud-13.0.7.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.tar.bz2.sha512">nextcloud-13.0.7.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.zip.sha512">nextcloud-13.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-13.0.7.tar.bz2.asc">nextcloud-13.0.7.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.7.zip.asc">nextcloud-13.0.7.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/10804">Prefer using dir instead of allinfo for getting smb file info (server#10804)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10824">[LDAP] The WebUI Wizard also should not assign empty config IDs (server#10824)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10829">Fix mimetype detection for junked uploads (server#10829)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10884">Improve performance when dealing with large numbers of shares (server#10884)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10902">Cast timestamps older than unix epoch to 0 (server#10902)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10911">Use the same ignored properties list for both CustomerPropertiesBackends (server#10911)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11400">Do not hide the progress bar while the chunked upload is being assembled (server#11400)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11419">Fix "checkWellKnownUrl" not being run (server#11419)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11437">AssemblyStream is also eof if we have no more source stream (server#11437)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11494">Show auth type "None" in email settings (server#11494)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11524">Fixes the move/copy picker buttons (server#11524)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11704">Allow the creationg of previews of files stored in appdata (server#11704)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11707">Update CRL due to changed cert for linkshareex (server#11707)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11739">Fix a misleading setup check for .well-known/caldav & carddav (server#11739)</a></li>
</ul>
<h3 id="13-0-6">Version 13.0.6 <small>August 30 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.tar.bz2">nextcloud-13.0.6.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.zip">nextcloud-13.0.6.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.tar.bz2.md5">nextcloud-13.0.6.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.zip.md5">nextcloud-13.0.6.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.tar.bz2.sha256">nextcloud-13.0.6.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.zip.sha256">nextcloud-13.0.6.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.tar.bz2.sha512">nextcloud-13.0.6.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.zip.sha512">nextcloud-13.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-13.0.6.tar.bz2.asc">nextcloud-13.0.6.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.6.zip.asc">nextcloud-13.0.6.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/10285">Add sabre plugin to allow anonymous options requests to the dav root (server#10285)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10376">Do scan the root storage in background scan (server#10376)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10552">Adding test for table schedulingobjects and fixing postgres LOB (server#10552)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10565">Fix transfering ownership of a share to user with same id as receiver (server#10565)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10581">Make file cache updates more robust (server#10581)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10591">Retry smb stat on timeout (server#10591)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10620">Use insertIfNotExists to store new mimetypes. (server#10620)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10646">Only warn about data lose on password reset if per-user keys are used (server#10646)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10682">Update the scope of the lockdownmanager (server#10682)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10698">Log entries that are hidden during file listing (server#10698)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10735">Forgotten pass fix link (server#10735)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10759">Fix comment style in config sample (server#10759)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10760">Make sure error_log() always receives a string (server#10760)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10761">Fix call to OC.generateUrl for caldav birthday calendar on/off (server#10761)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10762">Use the path_hash instead of the path to query the filecache (server#10762)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10763">Don't blame random people for background email updates (server#10763)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10783">Resolve all group memberships properly (server#10783)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10816">Remove unexecutable code (server#10816)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10821">Improve URL detection (server#10821)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10823">MySQL 8.0+ and MariaDB 10.3+ are large prefix and barracuda by default (server#10823)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10837">Disallow negative mtime in dav search (server#10837)</a></li>
</ul>
<h3 id="13-0-5">Version 13.0.5 <small>July 23 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.tar.bz2">nextcloud-13.0.5.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.zip">nextcloud-13.0.5.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.tar.bz2.md5">nextcloud-13.0.5.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.zip.md5">nextcloud-13.0.5.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.tar.bz2.sha256">nextcloud-13.0.5.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.zip.sha256">nextcloud-13.0.5.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.tar.bz2.sha512">nextcloud-13.0.5.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.zip.sha512">nextcloud-13.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-13.0.5.tar.bz2.asc">nextcloud-13.0.5.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.5.zip.asc">nextcloud-13.0.5.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/9837">Fix highlighting of the upload drop zone (server#9837)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9839">Apply ldapUserFilter on members of group (server#9839)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9841">Make the DELETION of groups match greedy on the groupID (server#9841)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9843">Add parent index to share table (server#9843)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9958">Log full exception in cron instead of only the message (server#9958)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9986">Properly lock the target file on dav upload when not using part files (server#9986)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10032">LDAP backup server should not be queried when auth fails (server#10032)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10044">Fix filenames in sharing integration tests (server#10044)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10076">Lower log level for quota manipulation cases (server#10076)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10089">Let user set avatar in nextcloud if LDAP provides invalid image data (server#10089)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10093">Improved logging of smb connection errors (server#10093)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10115">Allow admin to disable fetching of avatars as well as a specific attribute (server#10115)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10121">Allow to disable encryption (server#10121)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10164">Update message shown when unsharing a file (server#10164)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10165">Fixed English grammatical error on Settings page. (server#10165)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10169">Request a valid property for DAV opendir (server#10169)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10170">Allow updating the token on session regeneration (server#10170)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10180">Prevent lock values from going negative with memcache backend (server#10180)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10185">Correctly handle users with numeric user ids (server#10185)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10188">Correctly parse the subject parameters for link (un)shares of calendars (server#10188)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10189">Fix "parsing" of email-addresses in comments and chat messages (server#10189)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10195">Sanitize parameters in createSessionToken() while logging (server#10195)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10201">Also retry rename operation on InvalidArgumentException (server#10201)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10202">Improve url detection in comments (server#10202)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10233">Only bind to ldap if configuration for the first server is set (server#10233)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/84">Use download manager from PDF.js to download the file (files_pdfviewer#84)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/87">Fix trying to load removed scripts (files_pdfviewer#87)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/138">Only pull for new messages if the session is allowed to be kept alive (notifications#138)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/139">Always push object data (notifications#139)</a></li>
<li><a href="https://github.com/nextcloud/notifications/pull/140">Add prioritization for Talk (notifications#140)</a></li>
</ul>
<h3 id="13-0-4">Version 13.0.4 <small>June 11 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.tar.bz2">nextcloud-13.0.4.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.zip">nextcloud-13.0.4.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.tar.bz2.md5">nextcloud-13.0.4.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.zip.md5">nextcloud-13.0.4.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.tar.bz2.sha256">nextcloud-13.0.4.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.zip.sha256">nextcloud-13.0.4.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.tar.bz2.sha512">nextcloud-13.0.4.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.zip.sha512">nextcloud-13.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-13.0.4.tar.bz2.asc">nextcloud-13.0.4.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.4.zip.asc">nextcloud-13.0.4.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/9788">Allow setting notify credentials in environment (server#9788)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9803">Make the token expiration also work for autocasting 0 (server#9803)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9820">Enable caldav for webdav subtree public-calendars (server#9820)</a></li>
</ul>
<h3 id="13-0-3">Version 13.0.3 <small>June 7 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.tar.bz2">nextcloud-13.0.3.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.zip">nextcloud-13.0.3.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.tar.bz2.md5">nextcloud-13.0.3.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.zip.md5">nextcloud-13.0.3.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.tar.bz2.sha256">nextcloud-13.0.3.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.zip.sha256">nextcloud-13.0.3.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.tar.bz2.sha512">nextcloud-13.0.3.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.zip.sha512">nextcloud-13.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-13.0.3.tar.bz2.asc">nextcloud-13.0.3.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.3.zip.asc">nextcloud-13.0.3.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/9259">Backport various scss fixes #8777 (server#9259)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9344">Fix ellipsis in filename column (server#9344)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9358">Replace deprecated sinon reset() call with resetHistory() (server#9358)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9377">Issue #9318: catch exceptions in SCSSCacher::resetCache() (server#9377)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9389">Log lock state on conflict (server#9389)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9391">Remove unneeded locks in getCacheEntry (server#9391)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9392">Only allow a single concurrent dav write to a file (server#9392)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9409">Workflow rules error when changing operation (server#9409)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9430">Fix jsunit tests (server#9430)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9432">Allow IPv6 database host (server#9432)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9433">Add labels for Contacts menu and Settings (server#9433)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9436">Get correct version of an app (server#9436)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9453">Fix ids of permission checkboxes for shares (server#9453)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9454">Fix race condition when preparing upload folder (server#9454)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9516">Allow to specify a link to a legal notice (server#9516)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9522">Fix for unbound cloned LDAP connections (server#9522)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9525">Dont use $info as array when its not an array (server#9525)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9540">Improve OAuth (server#9540)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9547">Bump theming version for extraordinary release (server#9547)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9548">Fix translation bug on lost password page (server#9548)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9566">Cleanup locks in scanner on error (server#9566)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9573">Bump version for theming again 🙇 (server#9573)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9579">Make sure force language is reflected in html lang attribute (server#9579)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9586">Add privacy link to theming and fix scrollbars (server#9586)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9590">Fix settings menu (server#9590)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9608">Handle exception while itterating trough smb file listing (server#9608)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9610">Send invitations for shared calendars (server#9610)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9619">Regenerate session id after public share auth (server#9619)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9620">Emit event when running ./occ db:add-missing-indices (server#9620)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9621">Add PHP missing message to index.php (server#9621)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9622">Delete the previews when a version is restored (server#9622)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9629">Limit Sinon version to 5.0.7 at most (server#9629)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9647">Prepare another theming release including translations for recently added imprint and privacy policy strings (server#9647)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9649">Dont open the file on dav HEAD request (server#9649)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9650">Fix(AmazonS3): fix loop $result['Contents'] error (server#9650)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9651">Fix undefined variables (server#9651)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9652">Add search category icon (server#9652)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9654">Fix "Invalid argument supplied for foreach()" (server#9654)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9655">Do not load calendar/addressbook plugins if not needed (server#9655)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9656"> Make LargeFileHelper.php faster by avoiding execs as much as possible (server#9656)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9657">Improve error reporting and move format parameter to the options (server#9657)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9659">The OAuth endpoint needs to support Basic Auth (server#9659)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9661">LDAP password renewal fixes (server#9661)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9662">Check user state when fetching to avoid dealing with offline objects (server#9662)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9668">Make sure the file is readable before attempting to create a preview (server#9668)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9672">Fix drone mysqlmb4 tests (server#9672)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9694">Make sure the log doesn't try to read from PUT if it can't (server#9694)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9707">Allow admins to override FreeBusy capabilities without modifying ShareAPI capabilities (server#9707)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9712">Fix the unit tests (server#9712)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9727">Fix header nav (server#9727)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9732">Fix local users check in contacts menu (server#9732)</a></li>
<li><a href="https://github.com/nextcloud/3rdparty/pull/99">Don't open the file when handling HEAD requests (3rdparty#99)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/101">Do not sanitize markdown output twice (files_texteditor#101)</a></li>
</ul>
<h3 id="13-0-2">Version 13.0.2 <small>April 26 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.tar.bz2">nextcloud-13.0.2.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.zip">nextcloud-13.0.2.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.tar.bz2.md5">nextcloud-13.0.2.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.zip.md5">nextcloud-13.0.2.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.tar.bz2.sha256">nextcloud-13.0.2.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.zip.sha256">nextcloud-13.0.2.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.tar.bz2.sha512">nextcloud-13.0.2.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.zip.sha512">nextcloud-13.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-13.0.2.tar.bz2.asc">nextcloud-13.0.2.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.2.zip.asc">nextcloud-13.0.2.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/8779">Show group display names (server#8779)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8849">Group existence check works without attribute (like with users) (server#8849)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8900">The FN is optional, carrying the displayname if present (server#8900)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8905">Set "share with" field to the ID of the circle (server#8905)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8986">Show EOL warning in the update section (server#8986)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9015">Use app version to generate scss filename (server#9015)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9017">Update icewind/smb to 2.0.5 (server#9017)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9019">Fix search text overlapping close button (server#9019)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9020">Clear any theming prefixed cache on cache buster increase (server#9020)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9064">Reset encryptionVersion to '1' if a file was stream copied (server#9064)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9071">Do not treat is-encrypted as custom property (server#9071)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9072">Fix proper permissions for multiple file access (server#9072)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9073">When formatting a share node an Empty target is invalid (server#9073)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9077">Move on with the next user if we found the user on one user back-end (server#9077)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9089">Allow usage of Windows 10 WebDav Netdrive (server#9089)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9094">Add more logging for the object storage during creation of the buckets (server#9094)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9095">Do not convert email addresses with idn_to_ascii if… (server#9095)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9124">Fix progress bar hidden before the upload ends (server#9124)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9213">Update CRL to include old quicknotes cert (server#9213)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9230">Fix user selectable text for public links for text files (server#9230)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9231">Provide an option to disable HTML emails (server#9231)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9233">Fix appinfo parsing when a single localized option is provided (server#9233)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9234">Use multibyte substring (server#9234)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9236">Fix webdav support for OneNote clients (server#9236)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9238">Fixed files copy/move when in favorites or recent section (server#9238)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/262">Don't update personal settings for admins (activity#262)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/265">Skip parameters which are not there instead of failing out (activity#265)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/64">Bump version 13 (files_pdfviewer#64)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/66">Fix info.xml (files_pdfviewer#66)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/67">No default enable (files_pdfviewer#67)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/418">Fix position of icons in "Share with" input field (gallery#418)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/419">Fix "No results found" tooltip (gallery#419)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/420">Fix UI while a share is being added (gallery#420)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/424">Hide "No results found" tooltip on autocompletion (gallery#424)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/430">Fix error while clicking on the share link checkbox (gallery#430)</a></li>
</ul>
<h3 id="13-0-1">Version 13.0.1 <small>March 15 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.tar.bz2">nextcloud-13.0.1.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.zip">nextcloud-13.0.1.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.tar.bz2.md5">nextcloud-13.0.1.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.zip.md5">nextcloud-13.0.1.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.tar.bz2.sha256">nextcloud-13.0.1.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.zip.sha256">nextcloud-13.0.1.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.tar.bz2.sha512">nextcloud-13.0.1.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.zip.sha512">nextcloud-13.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-13.0.1.tar.bz2.asc">nextcloud-13.0.1.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.1.zip.asc">nextcloud-13.0.1.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/8045">Don't pollute the log on DAV emaillogin (server#8045)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8099">Don't perform CSRF check on OCS routes with Bearer auth (server#8099)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8102">Use S3Client::upload instead of splitting single/multipart upload ourselves (server#8102)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8145">Remove old perl script to update l10n files (server#8145)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8156">Scss hardening (server#8156)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8177">Do not try to get the jailed path if we can't find the id (server#8177)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8183">Handle SSL certificate verifications for others than Let's Encrypt (server#8183)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8195">Use a phan version instead of master (server#8195)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8197">Repair step to clear frontend related caches (server#8197)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8228">Keep previous exception when transforming to dav exception (server#8228)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8250">Actually return stream from swift (server#8250)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8253">Remove invalid link to documentation (server#8253)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8261">Fix deleting folders when using s3 external storage (server#8261)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8264">Link to NC13 dev manual (server#8264)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8267">Better result handling of email search (server#8267)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8271">Update CRL to revoke files_rightclick (server#8271)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8286">Fix styling issues of guest pages #8155 (server#8286)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8287">Remove jquery ui background image (server#8287)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8309">Show open graph preview in WhatsApp (server#8309)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8395">Make acceptance tests for comments more consistent with the others (server#8395)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8407">Fix edit tag textbox size (server#8407)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8440">Use TTF fonts for avatar generation (server#8440)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8470">Use mb_* string methods to extract first character for generated avatars (server#8470)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8515">Show hint in OCS API for user creation (server#8515)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8517">Fix hiding and event propagation issues with the user management popover (server#8517)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8518">Add some whitespace around change.svg icon (server#8518)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8532">Avoid fruitless login attempts (server#8532)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8536">Fix retrieval of group members with numerical uids from LDAP (server#8536)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8554">Theming: handle not being in the serverroot (server#8554)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8561">Ext storage error warning (server#8561)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8577">Set autocomplete=new-password for mail share password (server#8577)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8595">Fix upload button visible on read-only folders (server#8595)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8609">Fixed app navigation for IE11 (server#8609)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8610">Fix breadcrumbs width calculation (server#8610)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8615">Fix comments (and systemtags) when involving users with numerical ids (server#8615)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8621">Update commentstabview.js (server#8621)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8631">Properly encapsulate require_once for app.php (server#8631)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8636">AppData hardening (server#8636)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8654">Use hash algo that's robust against collisions (server#8654)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8663">Fixed date/time picker on IE11 (server#8663)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8667">Use a more widely available method to test s3 settings (server#8667)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8668">Use proper language in language code (server#8668)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8669">Display the proper language strings in settings (server#8669)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8673">Do not create empty userid when attribute does not have allowed chars (server#8673)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8675">Remove too restrict check for background image/color (server#8675)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8676">Fix example regex for user agent matching (server#8676)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8678">Generate different UIDs for Birthday, Anniversary and Death event (server#8678)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8680">Don't use double quotes in MySQL queries (server#8680)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8683">Log exceptions that happen when writing the app store reply to storage (server#8683)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8685">Set the correct active navigation entry (server#8685)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8686">Fix activities for end2end encryption (server#8686)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8687">Filter out the current user when searching for emails too (server#8687)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8688">Fix check if theming defaults instance is available (server#8688)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8693"> Fix undefined index problem (server#8693)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8725">Disable part files for object stores (server#8725)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8738">Better handling of invisible elements in acceptance tests (server#8738)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8745">Remove base url from global cache prefix (server#8745)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8746">Check if the cached js file exists (server#8746)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8749">Sharee email matches not limited (server#8749)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8752">Fix integer overflow in ChunkingPlugin (server#8752)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8755">Revert wording back to updates (server#8755)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8758">Add acceptance tests for permissions on public shared folders (server#8758)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/249">Also send file emails in ASAP mode (activity#249)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/252">Ensure userids are strings (activity#252)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/254">Null coalescing operator is PHP7+ (activity#254)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/55">Update PDF.js to 1.9.426 (files_pdfviewer#55)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/59">Enable full screen mode for PDF files (files_pdfviewer#59)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/83">Fix ACE module files failing to load (files_texteditor#83)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/89">Do not keep FileInfoModels returned by "getModelForFile" (files_texteditor#89)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/394">Fix share drop down in gallery not properly shown (gallery#394)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/402">Fix gallery button hidden in folders without create permission (gallery#402)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/405">Fix controls position in gallery layout (gallery#405)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/406">Removed old code already present thanks to the files app (gallery#406)</a></li>
<li><a href="https://github.com/nextcloud/gallery/pull/407">Create "file app" public share links if the slideshow is opened from ... (gallery#407)</a></li>
<li><a href="https://github.com/nextcloud/password_policy/pull/61">Allow to check against haveibeenpwned.com password list (password_policy#61)</a></li>
</ul>
<h3 id="13-0-0">Version 13.0.0 <small>February 6 2018</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.tar.bz2">nextcloud-13.0.0.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.zip">nextcloud-13.0.0.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.tar.bz2.md5">nextcloud-13.0.0.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.zip.md5">nextcloud-13.0.0.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.tar.bz2.sha256">nextcloud-13.0.0.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.zip.sha256">nextcloud-13.0.0.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.tar.bz2.sha512">nextcloud-13.0.0.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.zip.sha512">nextcloud-13.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-13.0.0.tar.bz2.asc">nextcloud-13.0.0.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-13.0.0.zip.asc">nextcloud-13.0.0.zip.asc</a></p>
<h4>Changes</h4>
<p>Over 1100 changes were merged in the server, with many hundreds more in existing or new apps. The main improvements include:</p>
<ul>
<li>Collaboration features
<ul>
<li>Nextcloud Talk, a private videoconference software integrated with Nextcloud
<ul>
<li>real-time and asynchronous communication with push notifications, calls and chat web and mobile devices</li>
<li>Integration in business workflow with calendar invitations and calls directly from Nextcloud Files</li>
<li>Screen and note sharing with participant moderation capabilities</li>
<li>100% secure peer-to-peer, end-to-end encrypted calls, mediated by self-hosted server</li>
</ul>
</li>
<li>auto-completion of user names in comments and notification to the mentioned user</li>
<li> support free/busy scheduling in native calendar applications like Thunderbird Lightning</li>
<li>show meeting invites in the calendar</li>
</ul></li>
<li>End-to-End Encryption
<ul>
<li>can encrypt data on a per-folder level rather than all-or-nothing approach</li>
<li>does not require users to remember or exchange passwords</li>
<li>does not require re-uploading data upon sharing</li>
<li>features an optional off-line administrator recovery key</li>
<li>allows full audit logging</li>
<li>can be combined with our File Access Control feature so administrator can enforce aspects of End-to-end Encryption</li>
<li>protects from identity theft with our Cryptographic Identity Protection feature</li>
</ul>
This feature is in Tech Preview for Nextcloud 13 and does not yet implement sharing.
</li>
<li>User Interface
<ul>
<li>new way of selecting files</li>
<li>easy way to quickly copy or move to a location</li>
<li>High DPI support</li>
<li>admin menu integrated in one list</li>
<li>no limitation to file uploads via the web interface</li>
<li>user quota in the side bar</li>
<li>social sharing (Twitter, G+, Facebook, Diaspora) now features a preview</li>
<li>improved theming</li>
</ul></li>
<li>Performance
<ul>
<li>decreased page load times with up to 50% and faster search</li>
<li>80% faster LDAP and up to 10x faster external storage</li>
<li>Server-side Encryption performance largely improved</li>
</ul></li>
<li>Other
<ul>
<li>Support for PHP 7.2</li>
<li>Support for PostgreSQL 10</li>
</ul></li>
</ul>
<p><a href="https://nextcloud.com/blog/nextcloud-13-brings-secure-file-sync-and-collaboration-to-the-next-level/">Release announcement with overview about features and changes</a></p>
<p><a href="https://github.com/nextcloud/server/milestone/20?closed=1">See a full list of integrated pull requests here.</a></p>
<a name="latest12"></a>
<h4 id="12-0-13">Version 12.0.13 <small>November 22 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.tar.bz2">nextcloud-12.0.13.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.zip">nextcloud-12.0.13.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.tar.bz2.md5">nextcloud-12.0.13.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.zip.md5">nextcloud-12.0.13.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.tar.bz2.sha256">nextcloud-12.0.13.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.zip.sha256">nextcloud-12.0.13.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.tar.bz2.sha512">nextcloud-12.0.13.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13.zip.sha512">nextcloud-12.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-12.0.13.tar.bz2.asc">nextcloud-12.0.13.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.13zip.asc">nextcloud-12.0.13.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/11763">Ignore "session_lifetime" if it can not be converted to a number (server#11763)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11998">Fix opening a section again in the Files app (server#11998)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12059">Actually return the root folder when traversing up the tree (server#12059)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12110">Double check for failed cache with a shared storage (server#12110)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12461">Fixes dav share issue with owner (server#12461)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12504">Forward object not found error in swift as dav 404 (server#12504)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/12563">Handle permission in update of share better (server#12563)</a></li>
</ul>
<h4 id="12-0-12">Version 12.0.12 <small>October 11 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.tar.bz2">nextcloud-12.0.12.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.zip">nextcloud-12.0.12.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.tar.bz2.md5">nextcloud-12.0.12.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.zip.md5">nextcloud-12.0.12.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.tar.bz2.sha256">nextcloud-12.0.12.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.zip.sha256">nextcloud-12.0.12.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.tar.bz2.sha512">nextcloud-12.0.12.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12.zip.sha512">nextcloud-12.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-12.0.12.tar.bz2.asc">nextcloud-12.0.12.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.12zip.asc">nextcloud-12.0.12.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/10882">Improve performance when dealing with large numbers of shares (server#10882)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11285">Include empty directories in the default state of acceptance tests (server#11285)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11495">Show auth type "None" in email settings (server#11495)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11601">Add future releases to be migrated from (server#11601)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/11708">Update CRL due to changed cert for linkshareex (server#11708)</a></li>
</ul>
<h4 id="12-0-11">Version 12.0.11 <small>August 30 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.tar.bz2">nextcloud-12.0.11.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.zip">nextcloud-12.0.11.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.tar.bz2.md5">nextcloud-12.0.11.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.zip.md5">nextcloud-12.0.11.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.tar.bz2.sha256">nextcloud-12.0.11.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.zip.sha256">nextcloud-12.0.11.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.tar.bz2.sha512">nextcloud-12.0.11.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11.zip.sha512">nextcloud-12.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-12.0.11.tar.bz2.asc">nextcloud-12.0.11.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.11zip.asc">nextcloud-12.0.11.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/10566">Fix transfering ownership of a share to user with same id as receiver (server#10566)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10683">Update the scope of the lockdownmanager (server#10683)</a></li>
</ul>
<h4 id="12-0-10">Version 12.0.10 <small>July 23 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.tar.bz2">nextcloud-12.0.10.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.zip">nextcloud-12.0.10.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.tar.bz2.md5">nextcloud-12.0.10.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.zip.md5">nextcloud-12.0.10.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.tar.bz2.sha256">nextcloud-12.0.10.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.zip.sha256">nextcloud-12.0.10.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.tar.bz2.sha512">nextcloud-12.0.10.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10.zip.sha512">nextcloud-12.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-12.0.10.tar.bz2.asc">nextcloud-12.0.10.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.10zip.asc">nextcloud-12.0.10.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/9842">Make the DELETION of groups match greedy on the groupID (server#9842)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/10196">Sanitize parameters in createSessionToken() while logging (server#10196)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/88">Fix trying to load removed scripts (files_pdfviewer#88)</a></li>
</ul>
<h4 id="12-0-9">Version 12.0.9 <small>June 11 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.tar.bz2">nextcloud-12.0.9.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.zip">nextcloud-12.0.9.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.tar.bz2.md5">nextcloud-12.0.9.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.zip.md5">nextcloud-12.0.9.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.tar.bz2.sha256">nextcloud-12.0.9.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.zip.sha256">nextcloud-12.0.9.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.tar.bz2.sha512">nextcloud-12.0.9.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9.zip.sha512">nextcloud-12.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-12.0.9.tar.bz2.asc">nextcloud-12.0.9.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.9zip.asc">nextcloud-12.0.9.zip.asc</a></p>
<h4>Changes</h4>
<ul>
<li><a href="https://github.com/nextcloud/server/pull/9804">Make the token expiration also work for autocasting 0 (server#9804)</a></li>
</ul>
<h4 id="12-0-8">Version 12.0.8 <small>June 7 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.tar.bz2">nextcloud-12.0.8.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.zip">nextcloud-12.0.8.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.tar.bz2.md5">nextcloud-12.0.8.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.zip.md5">nextcloud-12.0.8.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.tar.bz2.sha256">nextcloud-12.0.8.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.zip.sha256">nextcloud-12.0.8.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.tar.bz2.sha512">nextcloud-12.0.8.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8.zip.sha512">nextcloud-12.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-12.0.8.tar.bz2.asc">nextcloud-12.0.8.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.8zip.asc">nextcloud-12.0.8.zip.asc</a></p>
<h4>Changes</h4>
Many fixes were merged, the most important ones include:
<ul>
<li><a href="https://github.com/nextcloud/server/pull/9359">Replace deprecated sinon reset() call with resetHistory() (server#9359)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9431">Fix jsunit tests (server#9431)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9493">Allow upgrades from ownCloud 10.0.8 (server#9493)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9546">Improve OAuth (server#9546)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9549">Fix translation bug on lost password page (server#9549)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9567">Cleanup locks in scanner on error (server#9567)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9580">Make sure force language is reflected in html lang attribute (server#9580)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9611">Send invitations for shared calendars (server#9611)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9618">Regenerate session id after public share auth (server#9618)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9630">Limit Sinon version to 5.0.7 at most (server#9630)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9660">The OAuth endpoint needs to support Basic Auth (server#9660)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9669">Make sure the file is readable before attempting to create a preview (server#9669)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9671">Fix drone mysqlmb4 tests (server#9671)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9695">Make sure the log doesn't try to read from PUT if it can't (server#9695)</a></li>
</ul>
<h4 id="12-0-7">Version 12.0.7 <small>April 26 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.tar.bz2">nextcloud-12.0.7.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.zip">nextcloud-12.0.7.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.tar.bz2.md5">nextcloud-12.0.7.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.zip.md5">nextcloud-12.0.7.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.tar.bz2.sha256">nextcloud-12.0.7.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.zip.sha256">nextcloud-12.0.7.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.tar.bz2.sha512">nextcloud-12.0.7.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7.zip.sha512">nextcloud-12.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-12.0.7.tar.bz2.asc">nextcloud-12.0.7.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.7zip.asc">nextcloud-12.0.7.zip.asc</a></p>
<h4>Changes</h4>
Many fixes were merged, the most important ones include:
<ul>
<li><a href="https://github.com/nextcloud/server/pull/8850">Group existence check works without attribute (like with users) (server#8850)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8893">Fix undefined index problem (server#8893)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8987">Show EOL warning in the update section (server#8987)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9016">Update icewind/smb to 2.0.5 (server#9016)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9078">Set new-password as autocomplete on the link password (server#9078)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9088">Allow usage of Windows 10 WebDav Netdrive (server#9088)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9214">Update CRL to include old quicknotes cert (server#9214)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9232">Provide an option to disable HTML emails (server#9232)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/9235">Use multibyte substring (server#9235)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/65">Bump version 12 (files_pdfviewer#65)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/68">Fix info.xml (files_pdfviewer#68)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/69">Remove default enable (files_pdfviewer#69)</a></li>
</ul>
<h4 id="12-0-6">Version 12.0.6 <small>March 15 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.tar.bz2">nextcloud-12.0.6.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.zip">nextcloud-12.0.6.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.tar.bz2.md5">nextcloud-12.0.6.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.zip.md5">nextcloud-12.0.6.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.tar.bz2.sha256">nextcloud-12.0.6.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.zip.sha256">nextcloud-12.0.6.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.tar.bz2.sha512">nextcloud-12.0.6.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.zip.sha512">nextcloud-12.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-12.0.6.tar.bz2.asc">nextcloud-12.0.6.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.6.zip.asc">nextcloud-12.0.6.zip.asc</a></p>
<h4>Changes</h4>
Many fixes were merged, the most important ones include:
<ul>
<li><a href="https://github.com/nextcloud/server/pull/7797">Fix password displayed as username in Firefox password manager dialog (server#7797)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8006">Fix #4789: Group admins cannot see disabled users (server#8006)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8022">Fix jquery-ui theming (server#8022)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8074">Do not catch and ignore ServerNotAvailable in the wrong spot (server#8074)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8101">Use S3Client::upload instead of splitting single/multipart upload ourselves (server#8101)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8130">Fix own avatar not updated when display name is changed (server#8130)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8146">Remove old perl script to update l10n files (server#8146)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8152">Update CRL because user_sql cert was lost (server#8152)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8184">Handle SSL certificate verifications for others than Let's Encrypt (server#8184)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8196">Do not try to get the jailed path if we can't find the id (server#8196)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8205">Better result handling of email search (server#8205)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8216">Nextcloud 12 is not compatible with newer than php 7.1 (server#8216)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8229">Keep previous exception when transforming to dav exception (server#8229)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8251">Actually return stream from swift (server#8251)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8254">Remove invalid link to documentation (server#8254)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8262">Fix deleting folders when using s3 external storage (server#8262)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8272">Update CRL to revoke files_rightclick (server#8272)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8408">Fix edit tag textbox size (server#8408)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8516">Show hint in OCS API for user creation (server#8516)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8520">Add some whitespace around change.svg icon (server#8520)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8533">Don't try login with the same name that just failed (server#8533)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8537">Fix retrieval of group members with numerical uids from LDAP (server#8537)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8544">Allow upgrading from OC 10.0.6 & 10.0.7 (server#8544)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8549">Theming: handle not being in the serverroot (server#8549)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8611">Use apps versions to generate suffix when possible (server#8611)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8616">Fix comments (and systemtags) when involving users with numerical ids (server#8616)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8622">Update commentstabview.js (server#8622)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8632">Properly encapsulate require_once for app.php (server#8632)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8655">Use hash algo that's robust against collisions (server#8655)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8674">Do not create empty userid when attribute does not have allowed chars (server#8674)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8677">Fix example regex for user agent matching (server#8677)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8679">Generate different UIDs for Birthday, Anniversary and Death event (server#8679)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8681">Don't use double quotes in MySQL queries (server#8681)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8682">Log exceptions that happen when writing the app store reply to storage (server#8682)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8689">Fix 500 on setup page (server#8689)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8692">Add missing import (server#8692)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8726">Disable part files for object stores (server#8726)</a></li>
<li><a href="https://github.com/nextcloud/server/pull/8739">Better handling of invisible elements in acceptance tests (server#8739)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/232">Display the home icon for empty paths (root folder) (activity#232)</a></li>
<li><a href="https://github.com/nextcloud/activity/pull/253">Ensure userids are strings (activity#253)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/56">Update PDF.js to 1.9.426 (files_pdfviewer#56)</a></li>
<li><a href="https://github.com/nextcloud/files_pdfviewer/pull/60">Enable full screen mode for PDF files (files_pdfviewer#60)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/84">Fix ACE module files failing to load (files_texteditor#84)</a></li>
<li><a href="https://github.com/nextcloud/files_texteditor/pull/90">Do not keep FileInfoModels returned by "getModelForFile" (files_texteditor#90)</a></li>
</ul>
<h4 id="12-0-5">Version 12.0.5 <small>January 24 2018</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.tar.bz2">nextcloud-12.0.5.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.zip">nextcloud-12.0.5.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.tar.bz2.md5">nextcloud-12.0.5.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.zip.md5">nextcloud-12.0.5.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.tar.bz2.sha256">nextcloud-12.0.5.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.zip.sha256">nextcloud-12.0.5.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.tar.bz2.sha512">nextcloud-12.0.5.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.zip.sha512">nextcloud-12.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-12.0.5.tar.bz2.asc">nextcloud-12.0.5.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.5.zip.asc">nextcloud-12.0.5.zip.asc</a></p>
<h4>Changes</h4>
Many fixes were merged, the most important ones include:
<ul>
<li><a href="https://github.com/nextcloud/server/pull/7144">#7144</a> Unlock files even if an exception occurs</li>
<li><a href="https://github.com/nextcloud/server/pull/7322">#7322</a> Set primary action button color to same as theming color</li>
<li><a href="https://github.com/nextcloud/server/pull/7323">#7323</a> Use the correct root for shared jail when the source storage is also a jail</li>
<li><a href="https://github.com/nextcloud/server/pull/7353">#7353</a> Fix translation of federation scope menu</li>
<li><a href="https://github.com/nextcloud/server/pull/7362">#7362</a> Allow to skip data dir permission checks</li>
<li><a href="https://github.com/nextcloud/server/pull/7407">#7407</a> Check if owner of share exists</li>
<li><a href="https://github.com/nextcloud/server/pull/7409">#7409</a> Add retry wrapper when reading files from swift</li>
<li><a href="https://github.com/nextcloud/server/pull/7451">#7451</a> Fix constructor spy in unit test with Sinon 4.1.3</li>
<li><a href="https://github.com/nextcloud/server/pull/7455">#7455</a> Remove wrong entry in admin_settings that causes 500</li>
<li><a href="https://github.com/nextcloud/server/pull/7456">#7456</a> CardDAV convertor check should not be to wide</li>
<li><a href="https://github.com/nextcloud/server/pull/7457">#7457</a> Fix loading icon position in the app menu</li>
<li><a href="https://github.com/nextcloud/server/pull/7464">#7464</a> Allow getting the filepath when getting cached mounts</li>
<li><a href="https://github.com/nextcloud/server/pull/7468">#7468</a> Allow 'Nextcloud' in the user agent string of Android</li>
<li><a href="https://github.com/nextcloud/server/pull/7558">#7558</a> Fix email buttons for white theme</li>
<li><a href="https://github.com/nextcloud/server/pull/7567">#7567</a> Respect sharing options when searching for Sharees</li>
<li><a href="https://github.com/nextcloud/server/pull/7568">#7568</a> Fix duplicate session token after remembered login</li>
<li><a href="https://github.com/nextcloud/server/pull/7577">#7577</a> Check userExists later, saves lookups for appData_INSTANCEID userids</li>
<li><a href="https://github.com/nextcloud/server/pull/7672">#7672</a> Added additional methods for removal of sensitive info</li>
<li><a href="https://github.com/nextcloud/server/pull/7688">#7688</a> Fix scss webroot and url rewrite</li>
<li><a href="https://github.com/nextcloud/server/pull/7717">#7717</a> Throw ServerNotAvailableException when LDAP is caught shutting down</li>
<li><a href="https://github.com/nextcloud/server/pull/7666">#7666</a> Fix drag shadow not visible when dragging a file on a narrow screen</li>
<li><a href="https://github.com/nextcloud/server/pull/7674">#7674</a> Do no run SyncJob in cron</li>
<li><a href="https://github.com/nextcloud/server/pull/7684">#7684</a> Fix inverted app icons on IE11</li>
<li><a href="https://github.com/nextcloud/server/pull/7694">#7694</a> Don't attempt to translate login names to uids when uids are provided</li>
<li><a href="https://github.com/nextcloud/server/pull/7708">#7708</a> Don't show recurring msg when pages result was turned off</li>
<li><a href="https://github.com/nextcloud/server/pull/7742">#7742</a> Hide favourite icon in details view if favourite action is not available</li>
<li><a href="https://github.com/nextcloud/server/pull/7745">#7745</a> Don't lie about preview types</li>
<li><a href="https://github.com/nextcloud/server/pull/7747">#7747</a> Update of composer</li>
<li><a href="https://github.com/nextcloud/server/pull/7758">#7758</a> add option to use legacy v2 auth with s3</li>
<li><a href="https://github.com/nextcloud/server/pull/7759">#7759</a> Use correct L10N files for jsconfig</li>
<li><a href="https://github.com/nextcloud/server/pull/7757">#7757</a> Wait for the shared link to be set in the acceptance tests</li>
<li><a href="https://github.com/nextcloud/gallery/pull/349">gallery/#349</a> Fix date picker not visible in slideshow sharing dialog</li>
<li><a href="https://github.com/nextcloud/activity/pull/229">activity/#229</a> Properly construct path of root on file rename</li>
<li><a href="https://github.com/nextcloud/server/pull/7770">#7770</a> Fix SCSS processing when undoing theming values</li>
<li><a href="https://github.com/nextcloud/server/pull/7774">#7774</a> Update icewind/smb to 2.0.3</li>
<li><a href="https://github.com/nextcloud/server/pull/7777">#7777</a> Set height for sidebar icons</li>
<li><a href="https://github.com/nextcloud/server/pull/7779">#7779</a> Improve zip support</li>
<li><a href="https://github.com/nextcloud/server/pull/7786">#7786</a> Return correct mount type for federated shares</li>
<li><a href="https://github.com/nextcloud/server/pull/7792">#7792</a> Fix empty details view after renaming a file</li>
<li><a href="https://github.com/nextcloud/server/pull/7817">#7817</a> Fix preview when theming changes invertion of icons</li>
<li><a href="https://github.com/nextcloud/server/pull/7821">#7821</a> Log full exception in cron instead of only the message</li>
<li><a href="https://github.com/nextcloud/server/pull/7888">#7888</a> Keep all shipped apps enabled because they should be okay</li>
<li><a href="https://github.com/nextcloud/server/pull/7962">#7962</a> update icewind/smb to 2.0.4</li>
</ul>
<h4 id="12-0-4">Version 12.0.4 <small>December 4 2017</small></h4>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.tar.bz2">nextcloud-12.0.4.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip">nextcloud-12.0.4.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.tar.bz2.md5">nextcloud-12.0.4.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip.md5">nextcloud-12.0.4.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.tar.bz2.sha256">nextcloud-12.0.4.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip.sha256">nextcloud-12.0.4.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.tar.bz2.sha512">nextcloud-12.0.4.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip.sha512">nextcloud-12.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-12.0.4.tar.bz2.asc">nextcloud-12.0.4.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip.asc">nextcloud-12.0.4.zip.asc</a></p>
<h4>Changes</h4>
<h5>Server</h5>
Over 50 fixes were merged in the server.
<ul>
<li><a href="https://github.com/nextcloud/server/issues/6464">Improve text: 'you have now' -> 'you now have (server#6464)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6502">Fix initializing paged search under some circumstances (server#6502)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6509">LDAP: simplify returning the homePath (server#6509)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6524">Fix sharer name overlap with filename (server#6524)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6525">Allow to close sidebar for text files (server#6525)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6527">Fix quota new endpoint 12 (server#6527)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6528">Pass new value to triggerChange (server#6528)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6547">Throw 101 when an empty group string is provided (server#6547)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6554">Contacts menu privacy (server#6554)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6649">Add color-border variable (server#6649)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6661">Do not stop on scss compilation failure (server#6661)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6674">Don't pass User object when uid string is expected (server#6674)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6689">Navigate to the root directory when showing the main filelist (server#6689)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6699">Fix LDAP User deletion (cleanup) (server#6699)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6737">Update aws sdk + s3 improvements (server#6737)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6743">Dont run invalid path repair step when upgrading from 11.0.5.2 and later (server#6743)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6751">Fix language when trying to change password (server#6751)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6792">Fix postgresql tests (server#6792)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6814">Also use configured 'cache_path' for new chunking (server#6814)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6815">Set s3 part size to 500mb (server#6815)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6823">Fix contacts menu for IE11 (server#6823)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6847">Still trigger conflict resolution for existing entries when the curre (server#6847)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6855">Propagate multipart upload exception when aborting upload (server#6855)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6878">Allow to migrate from 10.0.3.3 (server#6878)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6896">Timespan check (server#6896)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6908">Do not log WebDAV maintenance mode exception (server#6908)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6910">Don't reset quota (server#6910)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6935">Backport of translation string fixes (server#6935)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6942">Fix class name in exception logger plugin (server#6942)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6943">Allow quota of 0 again (server#6943)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6944">Fix uninitialized variable $this->params (server#6944)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6945">Don't add a LIKE condition when it's not needed (server#6945)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6946">Fix undefined offset warning when using '/' as external storage root (server#6946)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/6987">Fix page title not changed (server#6987)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7028">Better readability for text on log in page which is directly on backgrounds (server#7028)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7040">Translate Grant Access (server#7040)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7079">Use fopen directly when reading objects from s3 (server#7079)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7081">Improve mimetype detection for object storages (server#7081)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7082">Fix seeking on object storage (server#7082)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7095">Hide spinner for initial install (server#7095)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7096">Ensure uid for calendar objects is unique (server#7096)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7102">Revert "Only allow colons in db host for IPv6 addresses (server#7102)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7114">Theme flow redirection page (server#7114)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7116">Fix icon for security settings (server#7116)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7118">If for some reason the json can't be decoded it is not cached (server#7118)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7120">Improve performance of UserMountCache with external storage folders (server#7120)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7170">{J,CS}SResourceLocator: account for symlinks in app path server#7170)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7186">Fix s3 download and touch (server#7186)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7207">Touch opertation on object storage, don't create the file cache entry to early (server#7207)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7245">Allow migration from upcoming 10.0.4 ownCloud release (server#7245)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7257">CSSResourceLocator: handle SCSS in apps outside root (server#7257)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7259">only replace permission popupmenu (server#7259)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7262">Fix accesslist when a user has an ID only containting 0-9 (server#7262)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7277">Update CRL due to files_frommail (server#7277)</a></li>
<li><a href="https://github.com/nextcloud/server/issues/7328">Only in case of $currentAccess the array uses the id as index (server#7328)</a></li>
</ul>
<h5>Other</h5>
<ul>
<li><a href="https://github.com/nextcloud/3rdparty/issues/69">Add aws sdk (3rdparty#69)</a></li>
<li><a href="https://github.com/nextcloud/activity/issues/202">Don't send emails to disabled users (activity#202)</a></li>
<li><a href="https://github.com/nextcloud/activity/issues/206">Add an option to disable emails completly (activity#206)</a></li>
<li><a href="https://github.com/nextcloud/files_accesscontrol/issues/79">Make sure the mountPoint property is public before using it (files_accesscontrol#79)</a></li>
<li><a href="https://github.com/nextcloud/files_videoplayer/issues/43">Allow to playback m4v files (files_videoplayer#43)</a></li>
<li><a href="https://github.com/nextcloud/notifications/issues/93">Fix notifications order (notifications#93)</a></li>
</ul>
<h3 id="12-0-3">Version 12.0.3 <small>September 20 2017</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.tar.bz2">nextcloud-12.0.3.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.zip">nextcloud-12.0.3.zip</a></br>
Check the file integrity with:</br>
MD5: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.tar.bz2.md5">nextcloud-12.0.3.tar.bz2.md5</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.zip.md5">nextcloud-12.0.3.zip.md5</a></br>
SHA256: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.tar.bz2.sha256">nextcloud-12.0.3.tar.bz2.sha256</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.zip.sha256">nextcloud-12.0.3.zip.sha256</a></br>
SHA512: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.tar.bz2.sha512">nextcloud-12.0.3.tar.bz2.sha512</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.zip.sha512">nextcloud-12.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-12.0.3.tar.bz2.asc">nextcloud-12.0.3.tar.bz2.asc</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.3.zip.asc">nextcloud-12.0.3.zip.asc</a></p>
<h4>Changes</h4>
<p>Nextcloud 12.0.3 delivers a lot of enhancements in various areas including:</p>
<ul>
<li>A number of improvements to email notification templates</li>
<li>2FA enhancements</li>
<li>Smarter LDAP password handling</li>
<li>File Drop and upload-in-general updates</li>
<li>A performance improvement handling large files</li>
</ul>
<p><a href="https://github.com/nextcloud/server/pulls?q=is%3Apr+milestone%3A%22Nextcloud+12.0.3%22+is%3Aclosed">See the full list of changes in github.</a></p>
<h3 id="12-0-2">Version 12.0.2 <small>August 14 2017</small></h3>
<p>Download: <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.2.tar.bz2">nextcloud-12.0.2.tar.bz2</a> or <a href="https://download.nextcloud.com/server/releases/nextcloud-12.0.2.zip">nextcloud-12.0.2.zip</a></br>