forked from owncloud-archive/owncloud.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage-changelog.php
3281 lines (3125 loc) · 290 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
<div class="page-header">
<h1>ownCloud Server Changelog</h1>
</div>
<p>We recommend you follow our <a href="/release-channels">Release Channels</a> to always have the latest ownCloud Server version which fits your needs.</p>
Go directly to the latest maintenance release of:
<ul>
<li><a href="#latest9.1">ownCloud 9.1</a></li>
<li><a href="#latest9.0">ownCloud 9.0</a></li>
<li><a href="#latest8.2">ownCloud 8.2</a></li>
<li><a href="#latest8.1">ownCloud 8.1 (unsupported!)</a></li>
<li><a href="#latest8.0">ownCloud 8.0 (unsupported!)</a></li>
<li><a href="#latest7">ownCloud 7 (unsupported!)</a></li>
<li><a href="#latest6">ownCloud 6 (unsupported!)</a></li>
</ul>
<a name="latest9.1"></a></li>
<h3>Version 9.1.5 <small>Apr 18 2017</small></h3></li>
<ul>
<li>[major] Fix potential DB crash due to DB locks with Galera Cluster - <a href="https://github.com/owncloud/core/issues/27071">core/#27071</a></li>
<li>[major] Renaming SMB mount point now does not delete its contents - <a href="https://github.com/owncloud/core/issues/27377">core/#27377</a></li>
<li>[major] Fix quota behavior inconsistencies with LDAP quota - <a href="https://github.com/owncloud/core/issues/27420">core/#27420</a></li>
<li>[major] Prevent useless queries to local DB users table when using LDAP - <a href="https://github.com/owncloud/core/issues/27068">core/#27068</a></li>
<li>[major] Reduce queries to storages table by caching known entries in memcache - <a href="https://github.com/owncloud/core/issues/27312">core/#27312</a></li>
<li>[major] Optimize long-running jobs by only running them for users who actually logged in before - <a href="https://github.com/owncloud/core/issues/26361">core/#26361</a></li>
<li>[major] Link shares now work correctly when using master key encryption - <a href="https://github.com/owncloud/core/issues/27261">core/#27261</a></li>
<li>[major] Delete files tooltip now shows the original file path again - <a href="https://github.com/owncloud/core/issues/27271">core/#27271</a></li>
<li>[major] Keep file id when overwriting files when using home object store - <a href="https://github.com/owncloud/core/issues/27281">core/#27281</a></li>
<li>[major] Add support for custom Sabre auth plugin registration in core - <a href="https://github.com/owncloud/core/issues/27370">core/#27370</a></li>
<li>[major] Fix home folder deletion which could fail with LDAP and home attribute in some cases - <a href="https://github.com/owncloud/core/issues/26848">core/#26848</a></li>
<li>[major] Enable exponential backoff in GDrive SDK library to reduce API rate limit issues - <a href="https://github.com/owncloud/core/issues/20481">core/#20481</a></li>
<li>[minor] Fix web updater on some setups that show error message about session already closed - <a href="https://github.com/owncloud/core/issues/27647">core/#27647</a></li>
<li>[minor] Updated ca-bundle.crt - <a href="https://github.com/owncloud/core/issues/27513">core/#27513</a></li>
<li>[minor] Remove useless warning about contact id when sharing with email - <a href="https://github.com/owncloud/core/issues/27225">core/#27225</a></li>
<li>[minor] Don't store empty groups in system tags table - <a href="https://github.com/owncloud/core/issues/27295">core/#27295</a></li>
<li>[minor] When running cron the log now contains each job's last duration - <a href="https://github.com/owncloud/core/issues/27239">core/#27239</a></li>
<li>[minor] Do not rerun slow unmerged shares repair routine on upgrade when it already ran before - <a href="https://github.com/owncloud/core/issues/27176">core/#27176</a></li>
<li>[minor] SMB storage now properly skips DFS links to forbidden shares - <a href="https://github.com/owncloud/core/issues/26845">core/#26845</a></li>
<li>[minor] Sharing field now does not show remote entry when entering local account/email address - <a href="https://github.com/owncloud/core/issues/26647">core/#26647</a></li>
<li>[minor] Fix integrity check warning about gitignore when updating from a previous 9.1 version - <a href="https://github.com/owncloud/updater/issues/41">updater/#41</a></li>
<li>[minor] Fix mixed translations for LDAP users on some setups - <a href="https://github.com/owncloud/core/issues/27328">core/#27328</a></li>
<li>[minor] Fix theme resource caching with memcache - <a href="https://github.com/owncloud/core/issues/27288">core/#27288</a></li>
<li>[minor] Output exceptions from occ files:scan - <a href="https://github.com/owncloud/core/issues/27136">core/#27136</a></li>
<li>[minor] Fix useless log entry when mounting an orphaned share from a deleted user - <a href="https://github.com/owncloud/core/issues/27026">core/#27026</a></li>
<li>[minor] Fix inconsistent default value for share dialog user enumeration setting - <a href="https://github.com/owncloud/core/issues/27224">core/#27224</a></li>
<li>[minor] Redirect unlink to rmdir when unlinking directories to avoid potential underlying issues - <a href="https://github.com/owncloud/core/issues/27101">core/#27101</a></li>
<li>[minor] Fix log message with monochrome BMP preview - <a href="https://github.com/owncloud/core/issues/27044">core/#27044</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.1.5.tar.bz2">owncloud-9.1.5.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.5.zip">owncloud-9.1.5.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.1.5.tar.bz2.md5">owncloud-9.1.5.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.5.zip.md5">owncloud-9.1.5.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.1.5.tar.bz2.sha256">owncloud-9.1.5.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.5.zip.sha256">owncloud-9.1.5.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.1.5.tar.bz2.asc">owncloud-9.1.5.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.5.zip.asc">owncloud-9.1.5.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.1/owncloud">9.1 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<a name="latest9.0"></a></li>
<h3>Version 9.0.9 <small>Apr 18 2017</small></h3></li>
<ul>
<li>[major] Renaming SMB mount point now does not delete its contents - <a href="https://github.com/owncloud/core/issues/27377">core/#27377</a></li>
<li>[major] Fix quota behavior inconsistencies with LDAP quota - <a href="https://github.com/owncloud/core/issues/27420">core/#27420</a></li>
<li>[major] Prevent useless queries to local DB users table when using LDAP - <a href="https://github.com/owncloud/core/issues/27068">core/#27068</a></li>
<li>[major] Reduce queries to storages table by caching known entries in memcache - <a href="https://github.com/owncloud/core/issues/27312">core/#27312</a></li>
<li>[minor] Updated ca-bundle.crt - <a href="https://github.com/owncloud/core/issues/27513">core/#27513</a></li>
<li>[minor] Sharing field now does not show remote entry when entering local account/email address - <a href="https://github.com/owncloud/core/issues/26647">core/#26647</a></li>
<li>[minor] Fix integrity check warning about gitignore when updating to 9.1 - <a href="https://github.com/owncloud/updater/issues/418">updater/#418</a></li>
<li>[minor] Fix mixed translations for LDAP users on some setups - <a href="https://github.com/owncloud/core/issues/27328">core/#27328</a></li>
<li>[minor] Fix theme resource caching with memcache - <a href="https://github.com/owncloud/core/issues/27288">core/#27288</a></li>
<li>[minor] Output exceptions from occ files:scan - <a href="https://github.com/owncloud/core/issues/27136">core/#27136</a></li>
<li>[minor] Fix useless log entry when mounting an orphaned share from a deleted user - <a href="https://github.com/owncloud/core/issues/27026">core/#27026</a></li>
<li>[minor] Fix inconsistent default value for share dialog user enumeration setting - <a href="https://github.com/owncloud/core/issues/27224">core/#27224</a></li>
<li>[minor] Redirect unlink to rmdir when unlinking directories to avoid potential underlying issues - <a href="https://github.com/owncloud/core/issues/27101">core/#27101</a></li>
<li>[minor] Fix log message with monochrome BMP preview - <a href="https://github.com/owncloud/core/issues/27044">core/#27044</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.9.tar.bz2">owncloud-9.0.9.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.9.zip">owncloud-9.0.9.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.9.tar.bz2.md5">owncloud-9.0.9.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.9.zip.md5">owncloud-9.0.9.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.9.tar.bz2.sha256">owncloud-9.0.9.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.9.zip.sha256">owncloud-9.0.9.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.9.tar.bz2.asc">owncloud-9.0.9.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.9.zip.asc">owncloud-9.0.9.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<a name="latest8.2"></a></li>
<h3>Version 8.2.11 <small>Apr 18 2017</small></h3></li>
<ul>
<li>[major] Use proxy settings when connecting to remote shares - <a href="https://github.com/owncloud/core/issues/27410">core/#27410</a></li>
<li>[major] Fix issue with non-deletable SMB folders when trashbin is disabled - <a href="https://github.com/owncloud/core/issues/27101">core/#27101</a></li>
<li>[minor] Updated ca-bundle.crt - <a href="https://github.com/owncloud/core/issues/27513">core/#27513</a></li>
<li>[minor] Fix inconsistent default value for share dialog user enumeration setting - <a href="https://github.com/owncloud/core/issues/27224">core/#27224</a></li>
<li>[minor] Fix small autoloader issue in rare situations - <a href="https://github.com/owncloud/core/issues/27108">core/#27108</a></li>
<li>[minor] Fix log message with monochrome BMP preview - <a href="https://github.com/owncloud/core/issues/27044">core/#27044</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.11.tar.bz2">owncloud-8.2.11.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.11.zip">owncloud-8.2.11.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.11.tar.bz2.md5">owncloud-8.2.11.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.11.zip.md5">owncloud-8.2.11.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.11.tar.bz2.sha256">owncloud-8.2.11.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.11.zip.sha256">owncloud-8.2.11.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.11.tar.bz2.asc">owncloud-8.2.11.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.11.zip.asc">owncloud-8.2.11.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.1.4 <small>Feb 2 2017</small></h3></li>
<ul>
<li>[major] Make error message for password reset form more generic - <a href="https://github.com/owncloud/core/issues/27011">core/#27011</a></li>
<li>[major] When sharing autocomplete is disabled, also disable for the email field - <a href="https://github.com/owncloud/core/issues/26504">core/#26504</a></li>
<li>[major] Add command to clean up invalid/expired remote storages - <a href="https://github.com/owncloud/core/issues/26379">core/#26379</a></li>
<li>[major] Fix encryption key storage when using LDAP home folder rules - <a href="https://github.com/owncloud/core/issues/26820">core/#26820</a></li>
<li>[major] Properly react on memcache errors - <a href="https://github.com/owncloud/core/issues/25692">core/#25692</a></li>
<li>[major] Fix random normalizedPathCache log messages / garbage collection issues from PHP 7 - <a href="https://github.com/owncloud/core/issues/22370">core/#22370</a></li>
<li>[major] Properly deal with inconsistent LDAP/memcache or user/group manager responses - <a href="https://github.com/owncloud/core/issues/26871">core/#26871</a></li>
<li>[major] Added configreport app which will help with better bug reports - <a href="https://github.com/owncloud/configreport/issues/6">configreport/#6</a></li>
<li>[minor] Fix syncing of file names with colon followed by a number - <a href="https://github.com/owncloud/core/issues/25479">core/#25479</a></li>
<li>[minor] Prevent empty user uid from LDAP - <a href="https://github.com/owncloud/user_ldap/issues/6">user_ldap/#6</a></li>
<li>[minor] Prevent repeated log messages when dealing with broken picture files - <a href="https://github.com/owncloud/core/issues/26758">core/#26758</a></li>
<li>[minor] Fix group-enable option in apps page when memcache is enabled - <a href="https://github.com/owncloud/core/issues/26638">core/#26638</a></li>
<li>[minor] Add AVMaxFileSize config option - <a href="https://github.com/owncloud/files_antivirus/issues/133">files_antivirus/#133</a></li>
<li>[minor] Reduce number of federated share requests when dealing with non-existing entries - <a href="https://github.com/owncloud/core/issues/26324">core/#26324</a></li>
<li>[minor] Remove obsolete legacy storage repair routine - <a href="https://github.com/owncloud/core/issues/26774">core/#26774</a></li>
<li>[minor] Fix broken remote avatar image in activities tab - <a href="https://github.com/owncloud/activity/issues/529">activity/#529</a></li>
<li>[minor] When grouping duplicate shares, sort by stime then id - <a href="https://github.com/owncloud/core/issues/25830">core/#25830</a></li>
<li>[minor] Make file upload post hooks consistent between chunking and non-chunking mode - <a href="https://github.com/owncloud/core/issues/26387">core/#26387</a></li>
<li>[minor] Fix wrong German translation in upload progress bar by using momentjs library - <a href="https://github.com/owncloud/core/issues/26804">core/#26804</a></li>
<li>[minor] Skip unavailable storages in background file scan instead of failing - <a href="https://github.com/owncloud/core/issues/26055">core/#26055</a></li>
<li>[minor] Update PHP 7.1 incompatibility warning - <a href="https://github.com/owncloud/core/issues/26982">core/#26982</a></li>
<li>[minor] Warning notification when uploading 4+ GB file in IE11 - <a href="https://github.com/owncloud/core/issues/27004">core/#27004</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.1.4.tar.bz2">owncloud-9.1.4.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.4.zip">owncloud-9.1.4.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.1.4.tar.bz2.md5">owncloud-9.1.4.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.4.zip.md5">owncloud-9.1.4.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.1.4.tar.bz2.sha256">owncloud-9.1.4.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.4.zip.sha256">owncloud-9.1.4.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.1.4.tar.bz2.asc">owncloud-9.1.4.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.4.zip.asc">owncloud-9.1.4.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.1/owncloud">9.1 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.0.8 <small>Feb 2 2017</small></h3></li>
<ul>
<li>[major] Make error message for password reset form more generic - <a href="https://github.com/owncloud/core/issues/27011">core/#27011</a></li>
<li>[major] When sharing autocomplete is disabled, also disable for the email field - <a href="https://github.com/owncloud/core/issues/26504">core/#26504</a></li>
<li>[major] Add command to clean up invalid/expired remote storages - <a href="https://github.com/owncloud/core/issues/26379">core/#26379</a></li>
<li>[major] Fix encryption key storage when using LDAP home folder rules - <a href="https://github.com/owncloud/core/issues/26820">core/#26820</a></li>
<li>[major] Properly react on memcache errors - <a href="https://github.com/owncloud/core/issues/25692">core/#25692</a></li>
<li>[major] Fix performance regression with many received shares - <a href="https://github.com/owncloud/core/issues/26912">core/#26912</a></li>
<li>[major] Fix random normalizedPathCache log messages / garbage collection issues from PHP 7 - <a href="https://github.com/owncloud/core/issues/22370">core/#22370</a></li>
<li>[major] Prevent LDAP avatar to be duplicated repeatedly in vCard - <a href="https://github.com/owncloud/core/issues/26242">core/#26242</a></li>
<li>[major] Added configreport app which will help with better bug reports - <a href="https://github.com/owncloud/configreport/issues/6">configreport/#6</a></li>
<li>[minor] Fix syncing of file names with colon followed by a number - <a href="https://github.com/owncloud/core/issues/25479">core/#25479</a></li>
<li>[minor] Prevent empty user uid from LDAP - <a href="https://github.com/owncloud/user_ldap/issues/6">user_ldap/#6</a></li>
<li>[minor] Prevent repeated log messages when dealing with broken picture files - <a href="https://github.com/owncloud/core/issues/26758">core/#26758</a></li>
<li>[minor] Fix group-enable option in apps page when memcache is enabled - <a href="https://github.com/owncloud/core/issues/26638">core/#26638</a></li>
<li>[minor] Add AVMaxFileSize config option - <a href="https://github.com/owncloud/files_antivirus/issues/133">files_antivirus/#133</a></li>
<li>[minor] Reduce number of federated share requests when dealing with non-existing entries - <a href="https://github.com/owncloud/core/issues/26324">core/#26324</a></li>
<li>[minor] Remove obsolete legacy storage repair routine - <a href="https://github.com/owncloud/core/issues/26774">core/#26774</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.8.tar.bz2">owncloud-9.0.8.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.8.zip">owncloud-9.0.8.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.8.tar.bz2.md5">owncloud-9.0.8.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.8.zip.md5">owncloud-9.0.8.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.8.tar.bz2.sha256">owncloud-9.0.8.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.8.zip.sha256">owncloud-9.0.8.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.8.tar.bz2.asc">owncloud-9.0.8.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.8.zip.asc">owncloud-9.0.8.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.2.10 <small>Feb 2 2017</small></h3></li>
<ul>
<li>[major] Make error message for password reset form more generic - <a href="https://github.com/owncloud/core/issues/27011">core/#27011</a></li>
<li>[major] When sharing autocomplete is disabled, also disable for the email field - <a href="https://github.com/owncloud/core/issues/26504">core/#26504</a></li>
<li>[major] Fix LDAP "undefined OfflineUser::composeAndStoreDisplayName()" - <a href="https://github.com/owncloud/core/issues/25588">core/#25588</a></li>
<li>[minor] Prevent repeated log messages when dealing with broken picture files - <a href="https://github.com/owncloud/core/issues/26758">core/#26758</a></li>
<li>[minor] Add AVMaxFileSize config option - <a href="https://github.com/owncloud/files_antivirus/issues/133">files_antivirus/#133</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.10.tar.bz2">owncloud-8.2.10.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.10.zip">owncloud-8.2.10.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.10.tar.bz2.md5">owncloud-8.2.10.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.10.zip.md5">owncloud-8.2.10.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.10.tar.bz2.sha256">owncloud-8.2.10.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.10.zip.sha256">owncloud-8.2.10.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.10.tar.bz2.asc">owncloud-8.2.10.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.10.zip.asc">owncloud-8.2.10.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<a name="latest8.1"></a></li>
<h3>Version 8.1.12 <small>Feb 2 2017</small></h3></li>
<ul>
<li>[major] Make error message for password reset form more generic - <a href="https://github.com/owncloud/core/issues/27011">core/#27011</a></li>
<li>[major] When sharing autocomplete is disabled, also disable for the email field - <a href="https://github.com/owncloud/core/issues/26504">core/#26504</a></li>
<li>[minor] Prevent repeated log messages when dealing with broken picture files - <a href="https://github.com/owncloud/core/issues/26758">core/#26758</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.1.12.tar.bz2">owncloud-8.1.12.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.12.zip">owncloud-8.1.12.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.1.12.tar.bz2.md5">owncloud-8.1.12.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.12.zip.md5">owncloud-8.1.12.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.1.12.tar.bz2.sha256">owncloud-8.1.12.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.12.zip.sha256">owncloud-8.1.12.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.1.12.tar.bz2.asc">owncloud-8.1.12.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.12.zip.asc">owncloud-8.1.12.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.1&package=owncloud">8.1 Release Channel</a>, <a href="https://download.owncloud.org/download/repositories/stable/owncloud">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.1.3 <small>Dec 13 2016</small></h3></li>
<ul>
<li>[major] UI: File list now works properly with many hidden entries - <a href="https://github.com/owncloud/core/issues/26518">core/#26518</a></li>
<li>[major] Transfer ownership fails in some sharing scenario - <a href="https://github.com/owncloud/core/issues/26523">core/#26523</a></li>
<li>[major] Transfer ownership fails if external storage with user-specified password - <a href="https://github.com/owncloud/core/issues/26530">core/#26530</a></li>
<li>[major] Transfer ownership fails with file shares with invalid permissions - <a href="https://github.com/owncloud/core/issues/26541">core/#26541</a></li>
<li>[major] Transfer ownership must skip trashed shares - <a href="https://github.com/owncloud/core/issues/26525">core/#26525</a></li>
<li>[major] Versions on external storage never expire - <a href="https://github.com/owncloud/core/issues/24161">core/#24161</a></li>
<li>[major] Properly convert public upload OCS params - <a href="https://github.com/owncloud/core/issues/26691">core/#26691</a></li>
<li>[major] Properly load object store apps at install time when required in config - <a href="https://github.com/owncloud/core/issues/26299">core/#26299</a></li>
<li>[major] Fix issue in sharing API that can happen with Galera Cluster - <a href="https://github.com/owncloud/core/issues/26700">core/#26700</a></li>
<li>[major] Cannot delete file in share link from global external storage - <a href="https://github.com/owncloud/core/issues/25618">core/#25618</a></li>
<li>[major] Fix issue where first run wizard made web UI unusable in IE11 - <a href="https://github.com/owncloud/core/issues/26438">core/#26438</a></li>
<li>[major] Cannot upload to federated share when only create/update permission given - <a href="https://github.com/owncloud/core/issues/26173">core/#26173</a></li>
<li>[major] Auth header in new DAV endpoint can break with Windows Webdav - <a href="https://github.com/owncloud/core/issues/26412">core/#26412</a></li>
<li>[minor] Transfer ownership don't bail out on error - <a href="https://github.com/owncloud/core/issues/26524">core/#26524</a></li>
<li>[minor] Don't scan received shares in OCC files scan or background jobs - <a href="https://github.com/owncloud/core/issues/26590">core/#26590</a></li>
<li>[minor] Remove useless warning in log when accessing public shares - <a href="https://github.com/owncloud/core/issues/25455">core/#25455</a></li>
<li>[minor] Fix disappearance of share info when clicking favorite star - <a href="https://github.com/owncloud/core/issues/26241">core/#26241</a></li>
<li>[minor] Don't bother fetching preview images if previews disabled in config.php - <a href="https://github.com/owncloud/core/issues/26705">core/#26705</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.1.3.tar.bz2">owncloud-9.1.3.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.3.zip">owncloud-9.1.3.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.1.3.tar.bz2.md5">owncloud-9.1.3.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.3.zip.md5">owncloud-9.1.3.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.1.3.tar.bz2.sha256">owncloud-9.1.3.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.3.zip.sha256">owncloud-9.1.3.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.1.3.tar.bz2.asc">owncloud-9.1.3.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.3.zip.asc">owncloud-9.1.3.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.1/owncloud">9.1 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.0.7 <small>Dec 13 2016</small></h3></li>
<ul>
<li>[major] Transfer ownership fails in some sharing scenario - <a href="https://github.com/owncloud/core/issues/26523">core/#26523</a></li>
<li>[major] Transfer ownership fails if external storage with user-specified password - <a href="https://github.com/owncloud/core/issues/26530">core/#26530</a></li>
<li>[major] Transfer ownership fails with file shares with invalid permissions - <a href="https://github.com/owncloud/core/issues/26541">core/#26541</a></li>
<li>[major] Transfer ownership must skip trashed shares - <a href="https://github.com/owncloud/core/issues/26525">core/#26525</a></li>
<li>[major] Versions on external storage never expire - <a href="https://github.com/owncloud/core/issues/24161">core/#24161</a></li>
<li>[major] Properly convert public upload OCS params - <a href="https://github.com/owncloud/core/issues/26691">core/#26691</a></li>
<li>[major] Properly load object store apps at install time when required in config - <a href="https://github.com/owncloud/core/issues/26299">core/#26299</a></li>
<li>[major] Fix issue in sharing API that can happen with Galera Cluster - <a href="https://github.com/owncloud/core/issues/26700">core/#26700</a></li>
<li>[major] Cannot delete file in share link from global external storage - <a href="https://github.com/owncloud/core/issues/25618">core/#25618</a></li>
<li>[major] Auth header in new DAV endpoint can break with Windows Webdav - <a href="https://github.com/owncloud/core/issues/26412">core/#26412</a></li>
<li>[minor] Transfer ownership don't bail out on error - <a href="https://github.com/owncloud/core/issues/26524">core/#26524</a></li>
<li>[minor] Don't scan received shares in occ files:scan or background jobs - <a href="https://github.com/owncloud/core/issues/26590">core/#26590</a></li>
<li>[minor] Fix disappearance of share info when clicking favorite star - <a href="https://github.com/owncloud/core/issues/26241">core/#26241</a></li>
<li>[minor] Don't bother fetching preview images if previews disabled in config.php - <a href="https://github.com/owncloud/core/issues/26705">core/#26705</a></li>
<li>[minor] Fix Webdav auth realm - <a href="https://github.com/owncloud/core/issues/26721">core/#26721</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.7.tar.bz2">owncloud-9.0.7.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.7.zip">owncloud-9.0.7.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.7.tar.bz2.md5">owncloud-9.0.7.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.7.zip.md5">owncloud-9.0.7.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.7.tar.bz2.sha256">owncloud-9.0.7.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.7.zip.sha256">owncloud-9.0.7.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.7.tar.bz2.asc">owncloud-9.0.7.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.7.zip.asc">owncloud-9.0.7.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.1.2 <small>Nov 8 2016</small></h3></li>
<ul>
<li>Core: Adjusted documentation link to issue template - <a href="https://github.com/owncloud/core/issues/26087">core/#26087</a></li>
<li>Core: Display feedback in users page when changing password - <a href="https://github.com/owncloud/core/issues/25532">core/#25532</a></li>
<li>Core: Fix mime type detection in hidden directories - <a href="https://github.com/owncloud/core/issues/26133">core/#26133</a></li>
<li>Core: Change forum URL to central - <a href="https://github.com/owncloud/core/issues/25644">core/#25644</a></li>
<li>Core: Fix share array format passed to "post_unshareFromSelf" hook - <a href="https://github.com/owncloud/core/issues/26390">core/#26390</a></li>
<li>Core: Release mount info memory after running background jobs - <a href="https://github.com/owncloud/core/issues/26223">core/#26223</a></li>
<li>Core: Improve users page performance by not sorting after every add - <a href="https://github.com/owncloud/core/issues/26234">core/#26234</a></li>
<li>Core: Escape special chars in some queries - <a href="https://github.com/owncloud/core/issues/25429">core/#25429</a></li>
<li>Core: Redirect to two factor challenge page when only a single provider exists - <a href="https://github.com/owncloud/core/issues/26134">core/#26134</a></li>
<li>Core: Fix bogus PasswordLoginForbidden DAV error when logging in as non-existing user - <a href="https://github.com/owncloud/core/issues/26123">core/#26123</a></li>
<li>Core: Change the minimum log level to FATAL - <a href="https://github.com/owncloud/core/issues/26131">core/#26131</a></li>
<li>Core: Fix issue with "(2)" appearing on shares when querying avatar with wrong casing - <a href="https://github.com/owncloud/core/issues/26271">core/#26271</a></li>
<li>Core: Enabling an app now also analyzes dependencies at this time instead of only at install - <a href="https://github.com/owncloud/core/issues/26295">core/#26295</a></li>
<li>Core: Reuse cached app info to avoid high load on some environments - <a href="https://github.com/owncloud/core/issues/25603">core/#25603</a></li>
<li>Core: Show warning instead of exception when trying to run ownCloud on Windows - <a href="https://github.com/owncloud/core/issues/26208">core/#26208</a></li>
<li>Core: Fix misleading SSL/TLS SMTP email configuration - <a href="https://github.com/owncloud/core/issues/26447">core/#26447</a></li>
<li>Core: Fix malformed attribute in files app page - <a href="https://github.com/owncloud/core/issues/26480">core/#26480</a></li>
<li>DAV: Improve chunk assembly performance for new DAV endpoint - <a href="https://github.com/owncloud/core/issues/26062">core/#26062</a></li>
<li>DAV: New chunking now returns Etag and OC-Etag on the final MOVE - <a href="https://github.com/owncloud/core/issues/25682">core/#25682</a></li>
<li>DAV: Do not print exception messages in HTML - <a href="https://github.com/owncloud/core/issues/26460">core/#26460</a></li>
<li>DAV: Sanitize length headers when validating quota - <a href="https://github.com/owncloud/core/issues/26366">core/#26366</a></li>
<li>Files: Allow uploading empty files in the web UI - <a href="https://github.com/owncloud/core/issues/19116">core/#19116</a></li>
<li>Files: Properly translate file summary in lists - <a href="https://github.com/owncloud/core/issues/26221">core/#26221</a></li>
<li>Files: Exclude more invalid chars in path - <a href="https://github.com/owncloud/core/issues/26461">core/#26461</a></li>
<li>Sharing: Let the share owner increase permissions - <a href="https://github.com/owncloud/core/issues/25542">core/#25542</a></li>
<li>Federation: Fix sharing with remote user names containing spaces - <a href="https://github.com/owncloud/core/issues/25955">core/#25955</a></li>
<li>Federation: Save some memory in sync job by releasing mount info after each user - <a href="https://github.com/owncloud/core/issues/26204">core/#26204</a></li>
<li>Federation: Fix federated address book syncing by using the correct background job name - <a href="https://github.com/owncloud/core/issues/26202">core/#26202</a></li>
<li>CalDAV: Add Schedule and IMip plugins when receiving webdav v1 api calendar calls - <a href="https://github.com/owncloud/core/issues/23600">core/#23600</a></li>
<li>CardDAV: Unset photo before setting a new one - <a href="https://github.com/owncloud/core/issues/26242">core/#26242</a></li>
<li>CardDAV: Fix for birthday entries - <a href="https://github.com/owncloud/core/issues/25636">core/#25636</a></li>
<li>CardDAV: Limit image export mime types - <a href="https://github.com/owncloud/core/issues/26459">core/#26459</a></li>
<li>Updater: Fix web UI update in some environments - <a href="https://github.com/owncloud/updater/issues/378">updater/#378</a></li>
<li>Updater: Retrigger integrity check after update - <a href="https://github.com/owncloud/updater/issues/405">updater/#405</a></li>
<li>User_LDAP: Added OCC command to update group mappings - <a href="https://github.com/owncloud/user_ldap/issues/14">user_ldap/#14</a></li>
<li>User_LDAP: Fix issue with "(2)" appearing on shares when refreshing users in some scenarios - <a href="https://github.com/owncloud/core/issues/25718">core/#25718</a></li>
<li>User_external: Double verify the SMB response - <a href="https://github.com/owncloud/apps/issues/2198">apps/#2198</a></li>
<li>Firstrunwizard: Only display the wizard when in files app - <a href="https://github.com/owncloud/firstrunwizard/issues/52">firstrunwizard/#52</a></li>
<li>Gallery: Do not display technical error messages - <a href="https://github.com/owncloud/gallery/issues/707">gallery/#707</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.1.2.tar.bz2">owncloud-9.1.2.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.2.zip">owncloud-9.1.2.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.1.2.tar.bz2.md5">owncloud-9.1.2.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.2.zip.md5">owncloud-9.1.2.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.1.2.tar.bz2.sha256">owncloud-9.1.2.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.2.zip.sha256">owncloud-9.1.2.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.1.2.tar.bz2.asc">owncloud-9.1.2.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.2.zip.asc">owncloud-9.1.2.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.1/owncloud">9.1 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.0.6 <small>Nov 8 2016</small></h3></li>
<ul>
<li>Core: Adjusted documentation link to issue template - <a href="https://github.com/owncloud/core/issues/26087">core/#26087</a></li>
<li>Core: Display feedback in users page when changing password - <a href="https://github.com/owncloud/core/issues/25532">core/#25532</a></li>
<li>Core: Fix mime type detection in hidden directories - <a href="https://github.com/owncloud/core/issues/26133">core/#26133</a></li>
<li>Core: Change forum URL to central - <a href="https://github.com/owncloud/core/issues/25644">core/#25644</a></li>
<li>Core: Fix share array format passed to "post_unshareFromSelf" hook - <a href="https://github.com/owncloud/core/issues/26389">core/#26389</a></li>
<li>Core: Release mount info memory after running background jobs - <a href="https://github.com/owncloud/core/issues/26223">core/#26223</a></li>
<li>Core: Improve users page performance by not sorting after every add - <a href="https://github.com/owncloud/core/issues/26234">core/#26234</a></li>
<li>Core: Escape special chars in some queries - <a href="https://github.com/owncloud/core/issues/25429">core/#25429</a></li>
<li>Core: Fix misleading SSL/TLS SMTP email configuration - <a href="https://github.com/owncloud/core/issues/26447">core/#26447</a></li>
<li>DAV: Do not print exception messages in HTML - <a href="https://github.com/owncloud/core/issues/26460">core/#26460</a></li>
<li>DAV: Sanitize length headers when validating quota - <a href="https://github.com/owncloud/core/issues/26366">core/#26366</a></li>
<li>Files: Allow uploading empty files in the web UI - <a href="https://github.com/owncloud/core/issues/19116">core/#19116</a></li>
<li>Files: Exclude more invalid chars in path - <a href="https://github.com/owncloud/core/issues/26461">core/#26461</a></li>
<li>Sharing: Let the share owner increase permissions - <a href="https://github.com/owncloud/core/issues/25542">core/#25542</a></li>
<li>Federation: Fix sharing with remote user names containing spaces - <a href="https://github.com/owncloud/core/issues/25955">core/#25955</a></li>
<li>Federation: Save some memory in sync job by releasing mount info after each user - <a href="https://github.com/owncloud/core/issues/26204">core/#26204</a></li>
<li>CardDAV: Unset photo before setting a new one - <a href="https://github.com/owncloud/core/issues/26242">core/#26242</a></li>
<li>CardDAV: Limit image export mime types - <a href="https://github.com/owncloud/core/issues/26459">core/#26459</a></li>
<li>Updater: Fix web UI update in some environments - <a href="https://github.com/owncloud/updater/issues/378">updater/#378</a></li>
<li>Updater: Retrigger integrity check after update - <a href="https://github.com/owncloud/updater/issues/405">updater/#405</a></li>
<li>User_LDAP: Added OCC command to update group mappings - <a href="https://github.com/owncloud/user_ldap/issues/14">user_ldap/#14</a></li>
<li>User_external: Double verify the SMB response - <a href="https://github.com/owncloud/apps/issues/2198">apps/#2198</a></li>
<li>Antivirus: Fix background scan - <a href="https://github.com/owncloud/files_antivirus/issues/128">files_antivirus/#128</a></li>
<li>Gallery: Do not display technical error messages - <a href="https://github.com/owncloud/gallery/issues/707">gallery/#707</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.6.tar.bz2">owncloud-9.0.6.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.6.zip">owncloud-9.0.6.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.6.tar.bz2.md5">owncloud-9.0.6.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.6.zip.md5">owncloud-9.0.6.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.6.tar.bz2.sha256">owncloud-9.0.6.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.6.zip.sha256">owncloud-9.0.6.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.6.tar.bz2.asc">owncloud-9.0.6.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.6.zip.asc">owncloud-9.0.6.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.2.9 <small>Nov 8 2016</small></h3></li>
<ul>
<li>Core: Adjusted documentation link to issue template - <a href="https://github.com/owncloud/core/issues/26087">core/#26087</a></li>
<li>Core: Display feedback in users page when changing password - <a href="https://github.com/owncloud/core/issues/25532">core/#25532</a></li>
<li>Core: Fix mime type detection in hidden directories - <a href="https://github.com/owncloud/core/issues/26133">core/#26133</a></li>
<li>Core: Change forum URL to central - <a href="https://github.com/owncloud/core/issues/25644">core/#25644</a></li>
<li>Core: Fix unshare from self etag propagation - <a href="https://github.com/owncloud/core/issues/26346">core/#26346</a></li>
<li>Core: Fix misleading SSL/TLS SMTP email configuration - <a href="https://github.com/owncloud/core/issues/26447">core/#26447</a></li>
<li>DAV: Sanitize length headers when validating quota - <a href="https://github.com/owncloud/core/issues/26366">core/#26366</a></li>
<li>Updater: Fix signature data not found error when updating to 9.0 - <a href="https://github.com/owncloud/updater/issues/384">updater/#384</a></li>
<li>Updater: Clicking notification now updates doc in new tab - <a href="https://github.com/owncloud/core/issues/26260">core/#26260</a></li>
<li>User_external: Double verify the SMB response - <a href="https://github.com/owncloud/apps/issues/2198">apps/#2198</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.9.tar.bz2">owncloud-8.2.9.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.9.zip">owncloud-8.2.9.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.9.tar.bz2.md5">owncloud-8.2.9.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.9.zip.md5">owncloud-8.2.9.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.9.tar.bz2.sha256">owncloud-8.2.9.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.9.zip.sha256">owncloud-8.2.9.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.9.tar.bz2.asc">owncloud-8.2.9.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.9.zip.asc">owncloud-8.2.9.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.1.11 <small>Nov 8 2016</small></h3></li>
<ul>
<li>Core: Adjusted documentation link to issue template - <a href="https://github.com/owncloud/core/issues/26087">core/#26087</a></li>
<li>Core: Fix misleading SSL/TLS SMTP email configuration - <a href="https://github.com/owncloud/core/issues/26447">core/#26447</a></li>
<li>DAV: Sanitize length headers when validating quota - <a href="https://github.com/owncloud/core/issues/26366">core/#26366</a></li>
<li>Updater: Fixed to properly use update server URL from config - <a href="https://github.com/owncloud/updater/issues/381">updater/#381</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.1.11.tar.bz2">owncloud-8.1.11.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.11.zip">owncloud-8.1.11.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.1.11.tar.bz2.md5">owncloud-8.1.11.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.11.zip.md5">owncloud-8.1.11.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.1.11.tar.bz2.sha256">owncloud-8.1.11.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.11.zip.sha256">owncloud-8.1.11.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.1.11.tar.bz2.asc">owncloud-8.1.11.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.11.zip.asc">owncloud-8.1.11.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.1&package=owncloud">8.1 Release Channel</a>, <a href="https://download.owncloud.org/download/repositories/stable/owncloud">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<a name="latest8.0"></a></li>
<h3>Version 8.0.16 <small>Nov 8 2016</small></h3></li>
<ul>
<li>Core: Adjusted documentation link to issue template - <a href="https://github.com/owncloud/core/issues/26087">core/#26087</a></li>
<li>DAV: Sanitize length headers when validating quota - <a href="https://github.com/owncloud/core/issues/26366">core/#26366</a></li>
<li>Updater: Fixed to properly use update server URL from config - <a href="https://github.com/owncloud/updater/issues/382">updater/#382</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.0.16.tar.bz2">owncloud-8.0.16.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.16.zip">owncloud-8.0.16.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.0.16.tar.bz2.md5">owncloud-8.0.16.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.16.zip.md5">owncloud-8.0.16.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.0.16.tar.bz2.sha256">owncloud-8.0.16.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.16.zip.sha256">owncloud-8.0.16.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.0.16.tar.bz2.asc">owncloud-8.0.16.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.16.zip.asc">owncloud-8.0.16.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.0&package=owncloud">8.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.1.1 <small>Sep 20 2016</small></h3>
<ul>
<li>Core: Remove OCS response body for HTTP status 204 and 304 which disturbed some firewalls - <a href="https://github.com/owncloud/core/issues/25835">core/#25835</a></li>
<li>Core: Map Oracle driver options to params - <a href="https://github.com/owncloud/core/issues/23938">core/#23938</a></li>
<li>Core: Log cron job class name for easier troubleshooting - <a href="https://github.com/owncloud/core/issues/25743">core/#25743</a></li>
<li>Core: Skip version and trash expiry for users that never logged in - <a href="https://github.com/owncloud/core/issues/25741">core/#25741</a></li>
<li>Core: Added white download icons for apps to use - <a href="https://github.com/owncloud/core/issues/23891">core/#23891</a></li>
<li>Core: Fix warning about undefined offset in LoginController - <a href="https://github.com/owncloud/core/issues/25714">core/#25714</a></li>
<li>Core: Fix warning about undefined two factor providers - <a href="https://github.com/owncloud/core/issues/25606">core/#25606</a></li>
<li>Core: Load app before executing its repair steps - <a href="https://github.com/owncloud/core/issues/25674">core/#25674</a></li>
<li>Core: Fix "defaultapp" setting - <a href="https://github.com/owncloud/core/issues/25562">core/#25562</a></li>
<li>Core: Fix issue when opening some file app links received in share emails - <a href="https://github.com/owncloud/core/issues/25200">core/#25200</a></li>
<li>Core: Reconnect DB in occ files:scan to avoid DB timeouts - <a href="https://github.com/owncloud/core/issues/25853">core/#25853</a></li>
<li>Core: Fix status.php page redirection with non-standard port - <a href="https://github.com/owncloud/core/issues/25946">core/#25946</a></li>
<li>Core: Improve users page loading performance with many groups - <a href="https://github.com/owncloud/core/issues/25922">core/#25922</a></li>
<li>Core: Don't log credentials from tryLogin - <a href="https://github.com/owncloud/core/issues/25895">core/#25895</a></li>
<li>Core: Fix password recovery with case sensitive user names - <a href="https://github.com/owncloud/core/issues/25684">core/#25684</a></li>
<li>Core: Fix two factor page cyclic reload with some providers - <a href="https://github.com/owncloud/core/issues/25893">core/#25893</a></li>
<li>Core: Add visual feedback when updating password in users page - <a href="https://github.com/owncloud/core/issues/25532">core/#25532</a></li>
<li>Core: Fix useless warning when overwriting file when open_basedir is set - <a href="https://github.com/owncloud/core/issues/26033">core/#26033</a></li>
<li>Files: Display hidden files in footer and selection summary - <a href="https://github.com/owncloud/core/issues/25855">core/#25855</a></li>
<li>Files: Fix hidden files handling with insertion or selection - <a href="https://github.com/owncloud/core/issues/25856">core/#25856</a></li>
<li>DAV: Faster classification migration in CalDAV - <a href="https://github.com/owncloud/core/issues/25638">core/#25638</a></li>
<li>DAV: Error message about forbidden password login is now logged in debug level - <a href="https://github.com/owncloud/core/issues/25486">core/#25486</a></li>
<li>DAV: Return "data-fingerprint" property on any file related element - <a href="https://github.com/owncloud/core/issues/25482">core/#25482</a></li>
<li>DAV: Fix missing properties in CalDAV subscriptions - <a href="https://github.com/owncloud/core/issues/24469">core/#24469</a></li>
<li>DAV: Improve performance of chunking in new DAV endpoint- <a href="https://github.com/owncloud/core/issues/26072">core/#26072</a></li>
<li>Sharing: Fixed wrong insufficient storage error - <a href="https://github.com/owncloud/core/issues/25582">core/#25582</a></li>
<li>Sharing: Prevent shared storage recursions to avoid memory issues and crashes - <a href="https://github.com/owncloud/core/issues/25557">core/#25557</a></li>
<li>Sharing: Group received shares which have same source and target - <a href="https://github.com/owncloud/core/issues/25113">core/#25113</a></li>
<li>Sharing: Fix sharing over API when dealing with trailing slashes - <a href="https://github.com/owncloud/core/issues/25464">core/#25464</a></li>
<li>Sharing: Fix public upload issue with quota in some scenarios - <a href="https://github.com/owncloud/core/issues/24751">core/#24751</a></li>
<li>Sharing: Fix issue where videos did not play from share links with PHP 7 - <a href="https://github.com/owncloud/core/issues/25483">core/#25483</a></li>
<li>Sharing: Fix BadMethodCallException in cron or scanner - <a href="https://github.com/owncloud/core/issues/25506">core/#25506</a></li>
<li>Sharing: Prevent ghost mounts for deleted/orphaned shares - <a href="https://github.com/owncloud/core/issues/26001">core/#26001</a></li>
<li>Sharing: Fix fatal error for users with older existing shares from OC <= 8.2 - <a href="https://github.com/owncloud/core/issues/25933">core/#25933</a></li>
<li>Sharing: Always allow share owner to increase permissions - <a href="https://github.com/owncloud/core/issues/25542">core/#25542</a></li>
<li>Sharing: Properly retry federated shares after they were unavailable - <a href="https://github.com/owncloud/core/issues/26037">core/#26037</a></li>
<li>Sharing: Reallow spaces in federated share autocomplete in share dialog - <a href="https://github.com/owncloud/core/issues/25955">core/#25955</a></li>
<li>Encryption: OCC command for decryption now doesn't decrypt received shares - <a href="https://github.com/owncloud/core/issues/25599">core/#25599</a></li>
<li>Files_external: Removed reference magic to avoid potential infinite loops - <a href="https://github.com/owncloud/core/issues/25844">core/#25844</a></li>
<li>Files_external: Added conditional trace logging for debugging SMB on production systems - <a href="https://github.com/owncloud/core/issues/25758">core/#25758</a></li>
<li>Files_external: Fix config database issue when using Oracle - <a href="https://github.com/owncloud/core/issues/25764">core/#25764</a></li>
<li>Files_external: SMB subfolders with read-only attribute are now writeable in OC to match spec - <a href="https://github.com/owncloud/core/issues/24608">core/#24608</a></li>
<li>Files_external: Fix "save in session" mode when using Webdav without cookies/session - <a href="https://github.com/owncloud/core/issues/25511">core/#25511</a></li>
<li>Files_external: Respect theme for external folder icon - <a href="https://github.com/owncloud/core/issues/25461">core/#25461</a></li>
<li>Files_external: Disable NFD encoding wrapper that was enabled by mistake for local storages - <a href="https://github.com/owncloud/core/issues/25819">core/#25819</a></li>
<li>Files_external: Some SMB fixes and better debug logging - <a href="https://github.com/owncloud/core/issues/25817">core/#25817</a></li>
<li>Files_trashbin: Add occ command to trigger trashbin retention expiration - <a href="https://github.com/owncloud/core/issues/25878">core/#25878</a></li>
<li>Files_versions: Add occ command to trigger versions retention expiration - <a href="https://github.com/owncloud/core/issues/25878">core/#25878</a></li>
<li>LDAP: Fix login issue when dealing with display name of deleted users - <a href="https://github.com/owncloud/core/issues/23248">core/#23248</a></li>
<li>LDAP: Prevent triggering email change events at login time for unchanged email - <a href="https://github.com/owncloud/core/issues/25553">core/#25553</a></li>
<li>LDAP: Fix login and logging issue with big avatars by reducing their size - <a href="https://github.com/owncloud/core/issues/25857">core/#25857</a></li>
<li>LDAP: Hide LDAP admin password in wizard - <a href="https://github.com/owncloud/core/issues/25702">core/#25702</a></li>
<li>Provisioning API: Fixed issue where subadmins could not change group memberships - <a href="https://github.com/owncloud/core/issues/25496">core/#25496</a></li>
<li>Provisioning API: Added flag to enable/disable two-factor auth for users - <a href="https://github.com/owncloud/core/issues/25876">core/#25876</a></li>
<li>Activity: Fix owner name processing for received federated shares - <a href="https://github.com/owncloud/core/issues/24938">core/#24938</a></li>
<li>Updater: Fix web update issue with filesystem apps - <a href="https://github.com/owncloud/updater/issues/371">updater/#371</a></li>
<li>Antivirus: Fix incorrect report of file size - <a href="https://github.com/owncloud/files_antivirus/issues/120">files_antivirus/#120</a></li>
<li>Antivirus: Fix background scan - <a href="https://github.com/owncloud/files_antivirus/issues/109">files_antivirus/#109</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.1.1.tar.bz2">owncloud-9.1.1.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.1.zip">owncloud-9.1.1.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.1.1.tar.bz2.md5">owncloud-9.1.1.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.1.zip.md5">owncloud-9.1.1.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.1.1.tar.bz2.sha256">owncloud-9.1.1.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.1.zip.sha256">owncloud-9.1.1.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.1.1.tar.bz2.asc">owncloud-9.1.1.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.1.zip.asc">owncloud-9.1.1.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.1/owncloud">9.1 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.0.5 <small>Sep 20 2016</small></h3>
<ul>
<li>Core: Remove OCS response body for HTTP status 204 and 304 which disturbed some firewalls - <a href="https://github.com/owncloud/core/issues/25835">core/#25835</a></li>
<li>Core: Sanitize more data in config report - <a href="https://github.com/owncloud/core/issues/23728">core/#23728</a></li>
<li>Core: Map Oracle driver options to params - <a href="https://github.com/owncloud/core/issues/23938">core/#23938</a></li>
<li>Core: Log cron job class name for easier troubleshooting - <a href="https://github.com/owncloud/core/issues/25743">core/#25743</a></li>
<li>Core: Skip version and trash expiry for users that never logged in - <a href="https://github.com/owncloud/core/issues/25741">core/#25741</a></li>
<li>Core: Added white download icons for apps to use - <a href="https://github.com/owncloud/core/issues/23891">core/#23891</a></li>
<li>Core: Reconnect DB in occ files:scan to avoid DB timeouts - <a href="https://github.com/owncloud/core/issues/25853">core/#25853</a></li>
<li>Core: Fix status.php page redirection with non-standard port - <a href="https://github.com/owncloud/core/issues/25946">core/#25946</a></li>
<li>Core: Improve users page loading performance with many groups - <a href="https://github.com/owncloud/core/issues/25922">core/#25922</a></li>
<li>DAV: Added quota plugin to new DAV files endpoint - <a href="https://github.com/owncloud/core/issues/25646">core/#25646</a></li>
<li>Sharing: Group received shares which have same source and target - <a href="https://github.com/owncloud/core/issues/25113">core/#25113</a></li>
<li>Sharing: Fix public upload issue with quota in some scenarios - <a href="https://github.com/owncloud/core/issues/24751">core/#24751</a></li>
<li>Sharing: Fix sharing over API when dealing with trailing slashes - <a href="https://github.com/owncloud/core/issues/25464">core/#25464</a></li>
<li>Sharing: Fix path sent by shared storage hooks, could affect some apps like gallery - <a href="https://github.com/owncloud/core/issues/23620">core/#23620</a></li>
<li>Sharing: Fix issue where videos did not play from share links with PHP 7 - <a href="https://github.com/owncloud/core/issues/25483">core/#25483</a></li>
<li>Encryption: OCC command for decryption now doesn't decrypt received shares - <a href="https://github.com/owncloud/core/issues/25599">core/#25599</a></li>
<li>Files_external: Removed reference magic to avoid potential infinite loops - <a href="https://github.com/owncloud/core/issues/25844">core/#25844</a></li>
<li>Files_external: Added conditional trace logging for debugging SMB on production systems - <a href="https://github.com/owncloud/core/issues/25758">core/#25758</a></li>
<li>Files_external: Fix config database issue when using Oracle - <a href="https://github.com/owncloud/core/issues/25764">core/#25764</a></li>
<li>Files_external: SMB subfolders with read-only attribute are now writeable in OC to match spec - <a href="https://github.com/owncloud/core/issues/24608">core/#24608</a></li>
<li>Files_external: Fix "save in session" mode when using Webdav without cookies/session - <a href="https://github.com/owncloud/core/issues/25511">core/#25511</a></li>
<li>Files_external: Respect theme for external folder icon - <a href="https://github.com/owncloud/core/issues/25461">core/#25461</a></li>
<li>Files_external: Some SMB fixes and better debug logging - <a href="https://github.com/owncloud/core/issues/25817">core/#25817</a></li>
<li>Files_trashbin: Add occ command to trigger trashbin retention expiration - <a href="https://github.com/owncloud/core/issues/25878">core/#25878</a></li>
<li>Files_versions: Add occ command to trigger versions retention expiration - <a href="https://github.com/owncloud/core/issues/25878">core/#25878</a></li>
<li>LDAP: Fix login issue when dealing with display name of deleted users - <a href="https://github.com/owncloud/core/issues/23248">core/#23248</a></li>
<li>LDAP: Fix login and logging issue with big avatars by reducing their size - <a href="https://github.com/owncloud/core/issues/25857">core/#25857</a></li>
<li>LDAP: Prevent triggering email change events at login time for unchanged email - <a href="https://github.com/owncloud/core/issues/25553">core/#25553</a></li>
<li>LDAP: Hide LDAP admin password in wizard - <a href="https://github.com/owncloud/core/issues/25702">core/#25702</a></li>
<li>Provisioning API: Fixed issue where subadmins could not change group memberships - <a href="https://github.com/owncloud/core/issues/25496">core/#25496</a></li>
<li>Activity: Fix owner name processing for received federated shares - <a href="https://github.com/owncloud/core/issues/24938">core/#24938</a></li>
<li>Updater: Fix web update issue with filesystem apps - <a href="https://github.com/owncloud/updater/issues/371">updater/#371</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.5.tar.bz2">owncloud-9.0.5.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.5.zip">owncloud-9.0.5.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.5.tar.bz2.md5">owncloud-9.0.5.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.5.zip.md5">owncloud-9.0.5.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.5.tar.bz2.sha256">owncloud-9.0.5.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.5.zip.sha256">owncloud-9.0.5.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.5.tar.bz2.asc">owncloud-9.0.5.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.5.zip.asc">owncloud-9.0.5.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.2.8 <small>Sep 20 2016</small></h3></li>
<ul>
<li>Core: Sanitize more data in config report - <a href="https://github.com/owncloud/core/issues/23728">core/#23728</a></li>
<li>Core: Reconnect DB in occ files:scan to avoid DB timeouts - <a href="https://github.com/owncloud/core/issues/25853">core/#25853</a></li>
<li>Files_trashbin: Add occ command to trigger trashbin retention expiration - <a href="https://github.com/owncloud/core/issues/25878">core/#25878</a></li>
<li>Sharing: Fix path sent by shared storage hooks, could affect some apps like gallery - <a href="https://github.com/owncloud/core/issues/23620">core/#23620</a></li>
<li>LDAP: Fix user cleanup tool deletion detection accuracy - <a href="https://github.com/owncloud/core/issues/25338">core/#25338</a></li>
<li>Updater: Fix "unable to extract package Array" - <a href="https://github.com/owncloud/updater/issues/134">updater/#134</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.8.tar.bz2">owncloud-8.2.8.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.8.zip">owncloud-8.2.8.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.8.tar.bz2.md5">owncloud-8.2.8.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.8.zip.md5">owncloud-8.2.8.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.8.tar.bz2.sha256">owncloud-8.2.8.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.8.zip.sha256">owncloud-8.2.8.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.8.tar.bz2.asc">owncloud-8.2.8.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.8.zip.asc">owncloud-8.2.8.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.1.10 <small>Sep 20 2016</small></h3></li>
<ul>
<li>LDAP: Fix user cleanup tool deletion detection accuracy - <a href="https://github.com/owncloud/core/issues/25338">core/#25338</a></li>
<li>Updater: Properly copy ca-bundle.crt when updating to 8.1.x - <a href="https://github.com/owncloud/updater/issues/164">updater/#164</a></li>
<li>Updater: Fix "unable to extract package Array" - <a href="https://github.com/owncloud/updater/issues/134">updater/#134</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.1.10.tar.bz2">owncloud-8.1.10.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.10.zip">owncloud-8.1.10.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.1.10.tar.bz2.md5">owncloud-8.1.10.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.10.zip.md5">owncloud-8.1.10.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.1.10.tar.bz2.sha256">owncloud-8.1.10.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.10.zip.sha256">owncloud-8.1.10.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.1.10.tar.bz2.asc">owncloud-8.1.10.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.10.zip.asc">owncloud-8.1.10.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.1&package=owncloud">8.1 Release Channel</a>, <a href="https://download.owncloud.org/download/repositories/stable/owncloud">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.0.15 <small>Sep 20 2016</small></h3></li>
<ul>
<li>Updater: Properly copy ca-bundle.crt when updating to 8.1.x - <a href="https://github.com/owncloud/updater/issues/164">updater/#164</a></li>
<li>Updater: Fix "unable to extract package Array" - <a href="https://github.com/owncloud/updater/issues/134">updater/#134</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.0.15.tar.bz2">owncloud-8.0.15.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.15.zip">owncloud-8.0.15.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.0.15.tar.bz2.md5">owncloud-8.0.15.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.15.zip.md5">owncloud-8.0.15.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.0.15.tar.bz2.sha256">owncloud-8.0.15.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.15.zip.sha256">owncloud-8.0.15.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.0.15.tar.bz2.asc">owncloud-8.0.15.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.15.zip.asc">owncloud-8.0.15.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.0&package=owncloud">8.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.1.0 <small>Jul 21 2016</small></h3>
<b>General</b>
<ul>
<li>Background jobs (cron) can now run in parallel</li>
<li>Update notifications in client via API - You can now be notified in your desktop client about available updates for core and apps. The notifications are made available via the notifications API. </li>
<li>Multi bucket support for primary objectstore integration</li>
</ul>
<b>Authentication</b>
<ul>
<li>Pluggable authentication: plugin system that supports different authentication schemes</li>
<li>Token-based authentication</li>
<li>Ability to invalidate sessions</li>
<li>List connected browsers/devices in the personal settings page. Allows the user to disconnect browsers/devices.</li>
<li>Device-specific passwords/tokens, can be generated in the personal page and revoked</li>
<li>Disable users and automatically revoke their sessions</li>
<li>Detect disabled LDAP users or password changes and revoke their sessions</li>
<li>Log in with email address</li>
<li>Configuration option to enforce token-based login outside the web UI</li>
<li>Two Factor authentication plug-in system</li>
<li>OCC command added to (temporarily) disable/enable two-factor authentication for single users </li>
</ul>
<i>Note:</i> the current desktop and mobile client versions do not support two-factor yet, this will be added later.
It is already possible to generate a device specific password and enter that in the current client versions.<br/>
<b>Files app</b>
<ul>
<li>Ability to toggle displaying hidden files</li>
<li>Remember sort order</li>
<li>Permalinks for internal shares</li>
<li>Visual cue when dragging in files app</li>
<li>Autoscroll file list when dragging files</li>
<li>Upload progress estimate</li>
</ul>
<b>Federated sharing</b>
<ul>
<li>Ability to create federated shares with CRUDS permissions</li>
<li>Resharing a federated share does not create a chain of shares any more but connects the share owner's server to the reshare recipient</li>
</ul>
<b>External storage</b>
<ul>
<li>UTF-8 NFD encoding compatibility support for NFD file names stored directly on external storages (new mount option in external storage admin page)</li>
<li>Direct links to the configuration pages for setting up a GDrive or Dropbox app for use with ownCloud </li>
<li>Some performance and memory usage improvements for GDrive, stream download and chunk upload</li>
<li>Performance and memory usage improvements for Dropbox with stream download</li>
<li>GDrive library update provides exponential backoff which will reduce rate limit errors</li>
</ul>
<b>Minor additions</b>
<ul>
<li>Support for print style sheets</li>
<li>Command line based update will now be suggested if the instance is bigger to avoid potential timeouts</li>
<li>Web updater will be disabled if LDAP or shibboleth are installed</li>
<li>DB/app update process now shows better progress information</li>
<li>Added <code>occ files:scan --unscanned</code> to only scan folders that haven't yet been explored on external storages</li>
<li>Chunk cache TTL can now be configured</li>
<li>Added warning for wrongly configured database transactions, helps prevent "database is locked" issues</li>
<li>Use a capped memory cache to reduce memory usage especially in background jobs and the file scanner</li>
<li>Allow login by email</li>
<li>Respect CLASS property in calendar events</li>
<li>Allow addressbook export using VCFExportPlugin</li>
<li>Birthdays are also generated based on shared addressbooks</li>
</ul>
<b>For developers</b>
<ul>
<li>New DAV endpoint with a new chunking protocol aiming to solve many issues like timeouts (not used by clients yet)</li>
<li>New webdav property for share permissions</li>
<li>Background repair steps can be specified info.xml</li>
<li>Background jobs (cron) can now be declared in info.xml </li>
<li>Apps can now define repair steps to run at install/uninstall time </li>
<li>Export contact images via sabre dav plugin </li>
<li>Sabre DAV's browser plugin is available in debug mode to allow easier development around webdav </li>
</ul>
<b>Technical debt</b>
<ul>
<li>PSR-4 autoloading forced for <code>OC\</code> and <code>OCP\</code>, optional for <code>OCA\</code> docs at https://doc.owncloud.org/server/9.1/developer_manual/app/classloader.html</li>
<li>More cleanup of the sharing code (ongoing)</li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.1.0.tar.bz2">owncloud-9.1.0.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.0.zip">owncloud-9.1.0.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.1.0.tar.bz2.md5">owncloud-9.1.0.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.0.zip.md5">owncloud-9.1.0.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.1.0.tar.bz2.sha256">owncloud-9.1.0.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.0.zip.sha256">owncloud-9.1.0.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.1.0.tar.bz2.asc">owncloud-9.1.0.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.1.0.zip.asc">owncloud-9.1.0.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.0.4 <small>Jul 19 2016</small></h3>
<ul>
<li>Files: Prepend slash to paths in file list UI to prevent issues with links from share emails - <a href="https://github.com/owncloud/core/issues/25200">core/#25200</a></li>
<li>Files: Ignore invalid paths in the JS file list - <a href="https://github.com/owncloud/core/issues/25368">core/#25368</a></li>
<li>Files: Fix system tags search query - <a href="https://github.com/owncloud/core/issues/25380">core/#25380</a></li>
<li>Files: Can now properly create folders in IE11 - <a href="https://github.com/owncloud/core/issues/24453">core/#24453</a></li>
<li>DAV: Additional perm check in Webdav - <a href="https://github.com/owncloud/core/issues/25449">core/#25449</a></li>
<li>DAV: Get only vcards which match both the address book id and the vcard uri - <a href="https://github.com/owncloud/core/issues/25294">core/#25294</a></li>
<li>DAV: Suppress warnings from DAV migration if there's nothing to do - <a href="https://github.com/owncloud/core/issues/25279">core/#25279</a></li>
<li>DAV: Contacts API: replace raw image data with url - <a href="https://github.com/owncloud/core/issues/25081">core/#25081</a></li>
<li>Sharing: Fix issue with share ids not being strings on some envs with public links - <a href="https://github.com/owncloud/core/issues/23066">core/#23066</a></li>
<li>Sharing: Fix permission check issue when creating direct shares to users who already have access through group - <a href="https://github.com/owncloud/core/issues/25359">core/#25359</a></li>
<li>Encryption: Fix misleading decrypt-all command message - <a href="https://github.com/owncloud/core/issues/23695">core/#23695</a></li>
<li>Admin: Adding certificate revocation list and validate if the app certificate is revoked - <a href="https://github.com/owncloud/core/issues/25469">core/#25469</a></li>
<li>Admin: Fixes htaccess check on environments that blocks data folder with redirects - <a href="https://github.com/owncloud/core/issues/25416">core/#25416</a></li>
<li>Admin: Prevent endless reload in admin page during setup check - <a href="https://github.com/owncloud/core/issues/24309">core/#24309</a></li>
<li>Admin: Set content type when downloading log file to force download on some browser - <a href="https://github.com/owncloud/core/issues/25382">core/#25382</a></li>
<li>LDAP: Cap memory usage when iterating over all users, eg in a sync job - <a href="https://github.com/owncloud/core/issues/25323">core/#25323</a></li>
<li>LDAP: Fix user cleanup tool deletion detection accuracy - <a href="https://github.com/owncloud/core/issues/25338">core/#25338</a></li>
<li>Versions: Log version expiration as INFO instead of DEBUG to be consistent with trashbin - <a href="https://github.com/owncloud/core/issues/25367">core/#25367</a></li>
<li>Versions: Hide rollback button in versions app when no permission to revert - <a href="https://github.com/owncloud/core/issues/25288">core/#25288</a></li>
<li>Search: Fix search when operating on share file list sections - <a href="https://github.com/owncloud/core/issues/23774">core/#23774</a></li>
<li>Updater: Now uses web requests, useful for environments without CLI or proc_open access - <a href="https://github.com/owncloud/core/issues/21085">core/#21085</a></li>
<li>Updater: fix cleanup routine that failed with some apps - <a href="https://github.com/owncloud/core/issues/24453">core/#24453</a></li>
<li>Updater: fix integrity check issue when updating from 9.0.0 or 9.0.1 - <a href="https://github.com/owncloud/updater/issues/358">updater/#358</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.4.tar.bz2">owncloud-9.0.4.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.4.zip">owncloud-9.0.4.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.4.tar.bz2.md5">owncloud-9.0.4.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.4.zip.md5">owncloud-9.0.4.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.4.tar.bz2.sha256">owncloud-9.0.4.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.4.zip.sha256">owncloud-9.0.4.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.4.tar.bz2.asc">owncloud-9.0.4.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.4.zip.asc">owncloud-9.0.4.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.2.7 <small>Jul 19 2016</small></h3></li>
<ul>
<li>Files: fix locking issue with too long key names - <a href="https://github.com/owncloud/core/issues/25376">core/#25376</a></li>
<li>DAV: Additional perm check in Webdav - <a href="https://github.com/owncloud/core/issues/25449">core/#25449</a></li>
<li>Admin: Set content type when downloading log file to force download on some browser - <a href="https://github.com/owncloud/core/issues/25382">core/#25382</a></li>
<li>Versions: Log version expiration as INFO instead of DEBUG to be consistent with trashbin - <a href="https://github.com/owncloud/core/issues/25367">core/#25367</a></li>
<li>Versions: Hide rollback button in versions app when no permission to revert - <a href="https://github.com/owncloud/core/issues/25288">core/#25288</a></li>
<li>Sharing: Use display name instead of LDAP user id in sharing error messages - <a href="https://github.com/owncloud/core/issues/25305">core/#25305</a></li>
<li>Search: Fix search when operating on share file list sections - <a href="https://github.com/owncloud/core/issues/23774">core/#23774</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.7.tar.bz2">owncloud-8.2.7.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.7.zip">owncloud-8.2.7.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.7.tar.bz2.md5">owncloud-8.2.7.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.7.zip.md5">owncloud-8.2.7.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.7.tar.bz2.sha256">owncloud-8.2.7.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.7.zip.sha256">owncloud-8.2.7.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.7.tar.bz2.asc">owncloud-8.2.7.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.7.zip.asc">owncloud-8.2.7.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.1.9 <small>Jul 19 2016</small></h3></li>
<ul>
<li>Files: Properly update quota information when moving files from/to shared folders - <a href="https://github.com/owncloud/core/issues/21236">core/#21236</a></li>
<li>DAV: Additional perm check in Webdav - <a href="https://github.com/owncloud/core/issues/25449">core/#25449</a></li>
<li>DAV: Fix issue with chunks that got cleared too early - <a href="https://github.com/owncloud/core/issues/24653">core/#24653</a></li>
<li>Users: Capped cache in the user database backend - <a href="https://github.com/owncloud/core/issues/24414">core/#24414</a></li>
<li>Admin: Set content type when downloading log file to force download on some browser - <a href="https://github.com/owncloud/core/issues/25382">core/#25382</a></li>
<li>Admin: Added warning in admin page when using unsupported transaction mode - <a href="https://github.com/owncloud/core/issues/24889">core/#24889</a></li>
<li>LDAP: Fix writing to cache when fallback server should be used immediately - <a href="https://github.com/owncloud/core/issues/23282">core/#23282</a></li>
<li>Versions: Prevent rollback when no permission to revert - <a href="https://github.com/owncloud/core/issues/25288">core/#25288</a></li>
<li>Versions: Properly adjust cached size when reverting versions with encryption - <a href="https://github.com/owncloud/core/issues/23928">core/#23928</a></li>
<li>Search: Don't update search onResize - <a href="https://github.com/owncloud/core/issues/24682">core/#24682</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.1.9.tar.bz2">owncloud-8.1.9.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.9.zip">owncloud-8.1.9.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.1.9.tar.bz2.md5">owncloud-8.1.9.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.9.zip.md5">owncloud-8.1.9.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.1.9.tar.bz2.sha256">owncloud-8.1.9.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.9.zip.sha256">owncloud-8.1.9.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.1.9.tar.bz2.asc">owncloud-8.1.9.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.9.zip.asc">owncloud-8.1.9.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.1&package=owncloud">8.1 Release Channel</a>, <a href="https://download.owncloud.org/download/repositories/stable/owncloud">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.0.14 <small>Jul 19 2016</small></h3></li>
<ul>
<li>Core: Fix app loading order to load authentication apps first, fixes mail app issue - <a href="https://github.com/owncloud/core/issues/25126">core/#25126</a></li>
<li>Files: Fix getting mount points when passing a path to the files:scan command - <a href="https://github.com/owncloud/core/issues/24901">core/#24901</a></li>
<li>DAV: Additional perm check in Webdav - <a href="https://github.com/owncloud/core/issues/25449">core/#25449</a></li>
<li>DAV: Fix issue with chunks that got cleared too early - <a href="https://github.com/owncloud/core/issues/24653">core/#24653</a></li>
<li>Admin: Added warning in admin page when using unsupported transaction mode - <a href="https://github.com/owncloud/core/issues/24889">core/#24889</a></li>
<li>Versions: Prevent rollback when no permission to revert - <a href="https://github.com/owncloud/core/issues/25288">core/#25288</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.0.14.tar.bz2">owncloud-8.0.14.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.14.zip">owncloud-8.0.14.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.0.14.tar.bz2.md5">owncloud-8.0.14.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.14.zip.md5">owncloud-8.0.14.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.0.14.tar.bz2.sha256">owncloud-8.0.14.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.14.zip.sha256">owncloud-8.0.14.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.0.14.tar.bz2.asc">owncloud-8.0.14.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.14.zip.asc">owncloud-8.0.14.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.0&package=owncloud">8.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 9.0.3 <small>Jun 30 2016</small></h3>
<ul>
<li>Don't reload page in case of auth errors during setup checks <a href="https://github.com/owncloud/core/issues/25309">core/#25309</a></li>
<li>On mount make sure multiple shares with same target map to unique one <a href="https://github.com/owncloud/core/issues/25244">core/#25244</a></li>
<li>Wrong file size for encrypted file when reverting version <a href="https://github.com/owncloud/core/issues/23928">core/#23928</a></li>
<li>Fix null pointer exception in user_ldap <a href="https://github.com/owncloud/core/issues/25062">core/#25062</a></li>
<li>Catch exceptions while creating shared mounts <a href="https://github.com/owncloud/core/issues/25199">core/#25199</a></li>
<li>Capped cache for the user/group cache <a href="https://github.com/owncloud/core/issues/24958">core/#24958</a></li>
<li>Capped cache for user config <a href="https://github.com/owncloud/core/issues/25165">core/#25165</a></li>
<li>Capped cache for cache info in UserMountCache <a href="https://github.com/owncloud/core/issues/25118">core/#25118</a></li>
<li>Capped cache for normalized paths <a href="https://github.com/owncloud/core/issues/24340">core/#24340</a></li>
<li>Capped cache for encryption's user access list <a href="https://github.com/owncloud/core/issues/25084">core/#25084</a></li>
<li>Capped cache in the user database backend <a href="https://github.com/owncloud/core/issues/24414">core/#24414</a></li>
<li>Improve memory usage when doing operation on users iteratively <a href="https://github.com/owncloud/core/issues/24327">core/#24327</a></li>
<li>Repair job to fix permissions for avatars, fixes missing avatars <a href="https://github.com/owncloud/core/issues/22978">core/#22978</a></li>
<li>Fix OCS Share API path response, UI showing wrong folder names <a href="https://github.com/owncloud/core/issues/24997">core/#24997</a></li>
<li>Fix federated share upload from link share when quota is unlimited <a href="https://github.com/owncloud/core/issues/24961">core/#24961</a></li>
<li>Added warning in admin page when using unsupported transaction mode <a href="https://github.com/owncloud/core/issues/24889">core/#24889</a></li>
<li>Delay files_sharing's registerMountProviders to fix some update issues <a href="https://github.com/owncloud/core/issues/25187">core/#25187</a></li>
<li>Do not recurse link share fetching to avoid endless loops on Oracle <a href="https://github.com/owncloud/core/issues/25160">core/#25160</a></li>
<li>Emit correct signal when disabling an app <a href="https://github.com/owncloud/core/issues/25149">core/#25149</a></li>
<li>Fix app loading order to load authentication apps first, fixes mail app issue <a href="https://github.com/owncloud/core/issues/25126">core/#25126</a></li>
<li>Fix Dropbox error handling to avoid ownCloud believing that there are no files in some cases <a href="https://github.com/owncloud/core/issues/24739">core/#24739</a></li>
<li>Fix grouped input fields, make sure they take precedence <a href="https://github.com/owncloud/core/issues/25143">core/#25143</a></li>
<li>DAV now returns file name with Content-Disposition header for Chrome with XML files <a href="https://github.com/owncloud/core/issues/25052">core/#25052</a></li>
<li>Decrease initially loaded users in users page <a href="https://github.com/owncloud/core/issues/24734">core/#24734</a></li>
<li>Allow empty host when installing on oracle via CLI <a href="https://github.com/owncloud/core/issues/25106">core/#25106</a></li>
<li>Fix duplicate entries in language selector <a href="https://github.com/owncloud/core/issues/24536">core/#24536</a></li>
<li>Fixed dynamic group ldap access <a href="https://github.com/owncloud/core/issues/24950">core/#24950</a></li>
<li>Fix cron job error related to versions <a href="https://github.com/owncloud/core/issues/22450">core/#22450</a></li>
<li>Delay reloading the page if an ajax error occurs, show notification <a href="https://github.com/owncloud/core/issues/25035">core/#25035</a></li>
<li>Move datadir protection check back from .ocdata to htaccess.txt for more accurate check in some setups <a href="https://github.com/owncloud/core/issues/25045">core/#25045</a></li>
<li>Skip scanning for a user when the user is not setup yet <a href="https://github.com/owncloud/core/issues/25044">core/#25044</a></li>
<li>Catch the ForbiddenException from storage wrappers to make sure it gets handled <a href="https://github.com/owncloud/core/issues/24949">core/#24949</a></li>
<li>Fix file not found in web UI when downloading a single file in a folder <a href="https://github.com/owncloud/core/issues/24783">core/#24783</a></li>
<li>Fix 'lost_password_link' from config.php that did not work as expected <a href="https://github.com/owncloud/core/issues/24789">core/#24789</a></li>
<li>Fix thumbnail download issue with external storage due to inaccurate path handling <a href="https://github.com/owncloud/core/issues/21173">core/#21173</a></li>
<li>Fix endless loading loop in public share in some env when password is set <a href="https://github.com/owncloud/core/issues/23066">core/#23066</a></li>
<li>Propagate size changes when running files:scan with explicit path <a href="https://github.com/owncloud/core/issues/24271">core/#24271</a></li>
<li>Properly check for mbstring extension <a href="https://github.com/owncloud/core/issues/24906">core/#24906</a></li>
<li>Enable range requests for public download, fixes video streaming <a href="https://github.com/owncloud/files_videoplayer/issues/45">files_videoplayer/#45</a>, <a href="https://github.com/owncloud/core/issues/24830">core/#24830</a></li>
<li>Fix performance for isLocal in SharedStorage <a href="https://github.com/owncloud/core/issues/24651">core/#24651</a></li>
<li>Clarify filesystem_check_changes in config.sample.php <a href="https://github.com/owncloud/core/issues/24817">core/#24817</a></li>
<li>Fix IApacheBackend issue due to wrong initialization order <a href="https://github.com/owncloud/core/issues/23899">core/#23899</a></li>
<li>Fix SSO + master key encryption issue due to wrong initialization order <a href="https://github.com/owncloud/core/issues/24182">core/#24182</a></li>
<li>Properly check "installed" config field which was a boolean string in some older setups <a href="https://github.com/owncloud/core/issues/24714">core/#24714</a></li>
<li>Remove more sensitive values from log when logging objects <a href="https://github.com/owncloud/core/issues/24328">core/#24328</a></li>
<li>Free up memory when releasing the last shared lock <a href="https://github.com/owncloud/core/issues/24705">core/#24705</a></li>
<li>Fix issue with chunks that got cleared too early <a href="https://github.com/owncloud/core/issues/24653">core/#24653</a></li>
<li>Fix issue with language detection for apps <a href="https://github.com/owncloud/core/issues/24441">core/#24441</a></li>
<li>Do not automatically enable index.php-less urls, use "htaccess.RewriteBase" config <a href="https://github.com/owncloud/core/issues/24539">core/#24539</a></li>
<li>Show proper error message when trying to create users with invalid characters <a href="https://github.com/owncloud/core/issues/24512">core/#24512</a></li>
<li>Updater server URL can now be specified in config.php <a href="https://github.com/owncloud/core/issues/24500">core/#24500</a></li>
<li>Help Translate link in personal settings is wrong <a href="https://github.com/owncloud/core/issues/23594">core/#23594</a></li>
<li>Fix infinite loop issue when moving files over Webdav in some envs <a href="https://github.com/owncloud/core/issues/24318">core/#24318</a></li>
<li>Remove "en@pirate" locale which caused issues <a href="https://github.com/owncloud/core/issues/24545">core/#24545</a></li>
<li>Make getShareFolder use given view instead of static FS, fixes LDAP issues with mail attr <a href="https://github.com/owncloud/core/issues/25150">core/#25150</a></li>
<li>Add support to know where the storage test comes from <a href="https://github.com/owncloud/core/issues/25166">core/#25166</a></li>
<li>Don't update search onResize <a href="https://github.com/owncloud/core/issues/24682">core/#24682</a></li>
<li>Removed repair steps for broken updater repair <a href="https://github.com/owncloud/core/issues/24438">core/#24438</a></li>
<li>Put back pcntl warning <a href="https://github.com/owncloud/core/issues/24295">core/#24295</a></li>
<li>Disable integrity check failure message in UI when check is disabled <a href="https://github.com/owncloud/core/issues/24752">core/#24752</a></li>
<li>Fix LDAP login with encryption after changing password <a href="https://github.com/owncloud/core/issues/24832">core/#24832</a></li>
<li>Fix displaying of the date in the activity panel in the sidebar <a href="https://github.com/owncloud/activity/issues/517">activity/#517</a></li>
<li>Updater: move __apps temp folder into data folder <a href="https://github.com/owncloud/updater/issues/332">updater/#332</a></li>
<li>Fix updater issue when encryption was enabled <a href="https://github.com/owncloud/update/issues/350">update/#350</a></li>
<li>Gallery: tokens are too loose <a href="https://github.com/owncloud/gallery/issues/669">gallery/#669</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.3.tar.bz2">owncloud-9.0.3.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.3.zip">owncloud-9.0.3.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.3.tar.bz2.md5">owncloud-9.0.3.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.3.zip.md5">owncloud-9.0.3.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.3.tar.bz2.sha256">owncloud-9.0.3.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.3.zip.sha256">owncloud-9.0.3.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.3.tar.bz2.asc">owncloud-9.0.3.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.3.zip.asc">owncloud-9.0.3.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.2.6 <small>June 30 2016</small></h3>
<ul>
<li>Fix oc_appconfig fetching performance <a href="https://github.com/owncloud/core/issues/25226">core/#25226</a></li>
<li>Wrong file size for encrypted file when reverting version <a href="https://github.com/owncloud/core/issues/23928">core/#23928</a></li>
<li>Fix app loading order to load authentication apps first, fixes mail app issue <a href="https://github.com/owncloud/core/issues/25126">core/#25126</a></li>
<li>Fix occ files:scan locking issue with shared folder <a href="https://github.com/owncloud/core/issues/24507">core/#24507</a></li>
<li>Fix quota update after moving files to shared folder in webinterface <a href="https://github.com/owncloud/core/issues/21236">core/#21236</a></li>
<li>Show a proper error message when handling "storage not available" situations <a href="https://github.com/owncloud/core/issues/25037">core/#25037</a></li>
<li>Fix cron job error related to versions <a href="https://github.com/owncloud/core/issues/22450">core/#22450</a></li>
<li>Fix thumbnail download issue with external storage due to inaccurate path handling <a href="https://github.com/owncloud/core/issues/21173">core/#21173</a></li>
<li>Capped cache for the user/group cache <a href="https://github.com/owncloud/core/issues/24958">core/#24958</a></li>
<li>Capped cache for normalized paths <a href="https://github.com/owncloud/core/issues/24340">core/#24340</a></li>
<li>Fix 'lost_password_link' from config.php that did not work as expected <a href="https://github.com/owncloud/core/issues/24789">core/#24789</a></li>
<li>Fix IApacheBackend issue due to wrong initialization order <a href="https://github.com/owncloud/core/issues/23899">core/#23899</a></li>
<li>Fix SSO + master key encryption issue due to wrong initialization order <a href="https://github.com/owncloud/core/issues/24182">core/#24182</a></li>
<li>Read available l10n files also from theme folder <a href="https://github.com/owncloud/core/issues/23571">core/#23571</a></li>
<li>Propagate size changes when running files:scan with explicit path <a href="https://github.com/owncloud/core/issues/24271">core/#24271</a></li>
<li>Fix performance for isLocal in SharedStorage <a href="https://github.com/owncloud/core/issues/24651">core/#24651</a></li>
<li>Clarify filesystem_check_changes in config.sample.php <a href="https://github.com/owncloud/core/issues/24817">core/#24817</a></li>
<li>Free up memory when releasing the last shared lock <a href="https://github.com/owncloud/core/issues/24704">core/#24704</a></li>
<li>Fix issue with chunks that got cleared too early <a href="https://github.com/owncloud/core/issues/24653">core/#24653</a></li>
<li>Fix federated share checkboxes to correctly display disabled state <a href="https://github.com/owncloud/core/issues/24547">core/#24547</a></li>
<li>LDAP: do not attempt to process user records without display name <a href="https://github.com/owncloud/core/issues/20804">core/#20804</a></li>
<li>Updater server URL can now be specified in config.php <a href="https://github.com/owncloud/core/issues/24500">core/#24500</a></li>
<li>Remove "en@pirate" locale which caused issues <a href="https://github.com/owncloud/core/issues/24545">core/#24545</a></li>
<li>Added warning in admin page when using unsupported transaction mode <a href="https://github.com/owncloud/core/issues/24889">core/#24889</a></li>
<li>Don't update search onResize <a href="https://github.com/owncloud/core/issues/24682">core/#24682</a></li>
<li>Gallery: tokens are too loose <a href="https://github.com/owncloud/gallery/issues/669">gallery/#669</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.6.tar.bz2">owncloud-8.2.6.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.6.zip">owncloud-8.2.6.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.6.tar.bz2.md5">owncloud-8.2.6.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.6.zip.md5">owncloud-8.2.6.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.6.tar.bz2.sha256">owncloud-8.2.6.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.6.zip.sha256">owncloud-8.2.6.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.6.tar.bz2.asc">owncloud-8.2.6.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.6.zip.asc">owncloud-8.2.6.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.1.8 <small>May 13 2016</small></h3>
<ul>
<li>Addressed XSS issues in the files_videoviewer app</li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.1.8.tar.bz2">owncloud-8.1.8.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.8.zip">owncloud-8.1.8.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.1.8.tar.bz2.md5">owncloud-8.1.8.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.8.zip.md5">owncloud-8.1.8.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.1.8.tar.bz2.sha256">owncloud-8.1.8.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.8.zip.sha256">owncloud-8.1.8.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.1.8.tar.bz2.asc">owncloud-8.1.8.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.8.zip.asc">owncloud-8.1.8.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.1&package=owncloud">8.1 Release Channel</a>, <a href="https://download.owncloud.org/download/repositories/stable/owncloud">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.0.13 <small>May 13 2016</small></h3>
<ul>
<li>Addressed XSS issues in the files_videoviewer app</li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.0.13.tar.bz2">owncloud-8.0.13.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.13.zip">owncloud-8.0.13.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.0.13.tar.bz2.md5">owncloud-8.0.13.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.13.zip.md5">owncloud-8.0.13.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.0.13.tar.bz2.sha256">owncloud-8.0.13.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.13.zip.sha256">owncloud-8.0.13.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.0.13.tar.bz2.asc">owncloud-8.0.13.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.13.zip.asc">owncloud-8.0.13.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.0&package=owncloud">8.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<a name="latest7"></a>
<h3>Version 7.0.15 <small>May 13 2016</small></h3>
<ul>
<li>Addressed XSS issues in the files_videoviewer app</li>
</ul>
Download: <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.tar.bz2">owncloud-7.0.15.tar.bz2</a> or <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.zip">owncloud-7.0.15.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.tar.bz2.md5">owncloud-7.0.15.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.zip.md5">owncloud-7.0.15.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.tar.bz2.sha256">owncloud-7.0.15.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.zip.sha256">owncloud-7.0.15.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.tar.bz2.asc">owncloud-7.0.15.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/7.0/owncloud-7.0.15.zip.asc">owncloud-7.0.15.zip.asc</a></br>
<p>Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:7.0&package=owncloud">7.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.</p>
<p><strong>Note</strong> that this is the last ownCloud 7.0 update and you should upgrade as soon as possible to ownCloud 8.0 or newer to ensure the security and safety of your data.</p>
<h3>Version 9.0.2 <small>May 4 2016</small></h3>
<ul>
<li>Open sidebar when clicking in the right part of rows in files view - <a href="https://github.com/owncloud/core/issues/23381">#23381</a></li>
<li>user_ldap: Call to a member function setEMailAddress() on a non-object - <a href="https://github.com/owncloud/core/issues/23759">#23759</a></li>
<li>Fatal error in dav app while running cron job - <a href="https://github.com/owncloud/core/issues/23496">#23496</a></li>
<li>Desktop sync fails with big files (OC 8.2.0, client 2.0.2) - <a href="https://github.com/owncloud/core/issues/20261">#20261</a></li>
<li>Wrong image rotation - <a href="https://github.com/owncloud/core/issues/21485">#21485</a></li>
<li>Restrict autoloaded paths to loaded apps (and other enhancements) - <a href="https://github.com/owncloud/core/issues/18839">#18839</a></li>
<li>Exclude autoload_static.php - <a href="https://github.com/owncloud/core/issues/23935">#23935</a></li>
<li>[encryption] Recovery key feature doesn't work when a non-default "User Home Folder Naming Rule" is used - <a href="https://github.com/owncloud/core/issues/23632">#23632</a></li>
<li>Federated sharing: volatile edit permission - <a href="https://github.com/owncloud/core/issues/24032">#24032</a></li>
<li>Transfer ownership with encryption breaks files -> bad signature - <a href="https://github.com/owncloud/core/issues/24095">#24095</a></li>
<li>TextEditor: Checksum not invalidated on file change - <a href="https://github.com/owncloud/core/issues/23782">#23782</a></li>
<li>occ files:scan does not invalidate checksums if file changed on disk. - <a href="https://github.com/owncloud/core/issues/23783">#23783</a></li>
<li>[9.0] handle completely unscanned storages in the background scanner - <a href="https://github.com/owncloud/core/issues/23576">#23576</a></li>
<li>[stable9] Write .htaccess also from CLI - <a href="https://github.com/owncloud/core/issues/24136">#24136</a></li>
<li>Share link: user mail is disappearing after selecting expiration date - <a href="https://github.com/owncloud/core/issues/22947">#22947</a></li>
<li>Folder size not propagated when uploading as share recipient with encryption enabled - <a href="https://github.com/owncloud/core/issues/24105">#24105</a></li>
<li>Can create events in contacts_birthday calendar - <a href="https://github.com/owncloud/core/issues/24154">#24154</a></li>
<li>[stable9] Ignore certificate file if it starts with file:// - <a href="https://github.com/owncloud/core/issues/24172">#24172</a></li>
<li>[stable9] remember email when setting expiration date - <a href="https://github.com/owncloud/core/issues/24149">#24149</a></li>
<li>cron.php does not exit, consumes RAM - <a href="https://github.com/owncloud/core/issues/23621">#23621</a></li>
<li>Cron gives errors on getQuota() on null in apps/files_versions/lib/storage.php on line 691 - <a href="https://github.com/owncloud/core/issues/23513">#23513</a></li>
<li>[9.0] Change the sort order of background jobs to be DESC instead of ASC - <a href="https://github.com/owncloud/core/issues/24196">#24196</a></li>
<li>No "Personal" calendar created for installing user - <a href="https://github.com/owncloud/core/issues/24082">#24082</a></li>
<li>[9.0] dont do optimized size propagation for encrypted files - <a href="https://github.com/owncloud/core/issues/24158">#24158</a></li>
<li>[stable9] on clone Connection, do not take over the existing LDAP resource - <a href="https://github.com/owncloud/core/issues/24236">#24236</a></li>
<li>[stable9] Fix LDAP race conditions - <a href="https://github.com/owncloud/core/issues/24242">#24242</a></li>
<li>Catching undefined exception in versions expire - <a href="https://github.com/owncloud/core/issues/24233">#24233</a></li>
<li>[9.0] Call private cache methods only for `OC\Files\Cache\Cache` - <a href="https://github.com/owncloud/core/issues/24202">#24202</a></li>
<li>"Deadlock found when trying to get lock" in file locking - <a href="https://github.com/owncloud/core/issues/20555">#20555</a></li>
<li>[stable9] don't get the config for the same mount multiple times - <a href="https://github.com/owncloud/core/issues/24259">#24259</a></li>
<li>Scanner doesn't propagate etags any more when file changed - <a href="https://github.com/owncloud/core/issues/24255">#24255</a></li>
<li>Undefined index: extension at /var/www/owncloud/lib/private/installer.php#272 - <a href="https://github.com/owncloud/core/issues/24228">#24228</a></li>
<li>[stable9] Disable pastezone for jquery.fileupload - <a href="https://github.com/owncloud/core/issues/24281">#24281</a></li>
<li>Can't upgrade to 9.0.1 (daily) in CentOS 6.6 - <a href="https://github.com/owncloud/core/issues/24276">#24276</a></li>
<li>[9.0] error out if a local storage isn't setup correctly - <a href="https://github.com/owncloud/core/issues/24289">#24289</a></li>
<li>[Stable 9] Make ownCloud work again in php 7.0.6 - <a href="https://github.com/owncloud/core/issues/24343">#24343</a></li>
<li>After switching to Postgresql changing any activity checkbox checks all of the boxes - <a href="https://github.com/owncloud/core/issues/23761">#23761</a></li>
<li>Upgrade from o.C. 8.2.X to 9.0.X. Cannot access oC if an LDAP user that made a share was deleted from the LDAP server. - <a href="https://github.com/owncloud/core/issues/24090">#24090</a></li>
<li>Update sabre/dav to 3.0.9 for windows 10 support - <a href="https://github.com/owncloud/3rdparty/issues/269">3rdparty/#269</a></li>
<li>Update sabre/dav to 3.0.9 on stable9 - <a href="https://github.com/owncloud/3rdparty/issues/270">3rdparty/#270</a></li>
<li>Spinning wheel OC 9 - <a href="https://github.com/owncloud/activity/issues/481">activity/#481</a></li>
<li>wrong links in RSS feed - <a href="https://github.com/owncloud/activity/issues/508">activity/#508</a></li>
<li>Announcementcenter is listing only the last 5 announcements - <a href="https://github.com/owncloud/announcementcenter/issues/67">announcementcenter/#67</a></li>
<li>Export Addressbook - <a href="https://github.com/owncloud/contacts/issues/248">contacts/#248</a></li>
<li>[stable9] Redirect page if not shown in an iframe - <a href="https://github.com/owncloud/files_pdfviewer/issues/109">files_pdfviewer/#109</a></li>
<li>Fix wrong path to lost password template - <a href="https://github.com/owncloud/templateeditor/issues/43">templateeditor/#43</a></li>
<li>3rdparty folder not overwritten on update - <a href="https://github.com/owncloud/updater/issues/316">updater/#316</a></li>
<li>getExtractionBaseDir should be deleted before code signature is verified - <a href="https://github.com/owncloud/updater/issues/318">updater/#318</a></li>
<li>BrokenUpdaterRepair SQL issue - <a href="https://github.com/owncloud/updater/issues/331">updater/#331</a></li>
<li>Wrong app path when optional PCNTL module was not enabled - <a href="https://github.com/owncloud/updater/issues/335">updater/#335</a></li>
<li>integrity-check command shows error after running updater from 9.0.1 stable to daily stable9 - <a href="https://github.com/owncloud/updater/issues/342">updater/#342</a></li>
<li>updater/update.log has to be stored in the data folder - <a href="https://github.com/owncloud/updater/issues/317">updater/#317</a></li>
<li>3rdparty folder not overwritten on update - <a href="https://github.com/owncloud/updater/issues/316">updater/#316</a></li>
<li>getExtractionBaseDir should be deleted before code signature is verified - <a href="https://github.com/owncloud/updater/issues/318">updater/#318</a></li>
<li>Upgrade from 9.0 to 9.1 fails - <a href="https://github.com/owncloud/updater/issues/336">updater/#336</a></li>
<li>Wrong app path when optional PCNTL module was not enabled - <a href="https://github.com/owncloud/updater/issues/335">updater/#335</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-9.0.2.tar.bz2">owncloud-9.0.2.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.2.zip">owncloud-9.0.2.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-9.0.2.tar.bz2.md5">owncloud-9.0.2.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.2.zip.md5">owncloud-9.0.2.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-9.0.2.tar.bz2.sha256">owncloud-9.0.2.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.2.zip.sha256">owncloud-9.0.2.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-9.0.2.tar.bz2.asc">owncloud-9.0.2.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-9.0.2.zip.asc">owncloud-9.0.2.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/9.0/owncloud">9.0 Release Channel</a> and <a href="https://download.owncloud.org/download/repositories/stable/owncloud/">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.2.5 <small>May 13 2016</small></h3>
<ul>
<li>webdav / files broken after upgrade to 8.2.4 <a href="https://github.com/owncloud/core/issues/24487">#24487</a></li>
<li>Addressed XSS issues in the files_videoviewer app</li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.5.tar.bz2">owncloud-8.2.5.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.5.zip">owncloud-8.2.5.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.5.tar.bz2.md5">owncloud-8.2.5.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.5.zip.md5">owncloud-8.2.5.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.5.tar.bz2.sha256">owncloud-8.2.5.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.5.zip.sha256">owncloud-8.2.5.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.5.tar.bz2.asc">owncloud-8.2.5.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.5.zip.asc">owncloud-8.2.5.zip.asc</a></br>
<h3>Version 8.2.4 <small>May 4 2016</small></h3>
<ul>
<li>[stable8.2] Remove browser autocomplete in new file menu - <a href="https://github.com/owncloud/core/issues/22927">#22927</a></li>
<li>owncloud-8.2.3.tar.bz2 contains /apps/dav folder - <a href="https://github.com/owncloud/core/issues/22962">#22962</a></li>
<li>The download archive should be named after the name of the current folder - <a href="https://github.com/owncloud/core/issues/22836">#22836</a></li>
<li>[Stable 8.2] Rename and move permissions are set when a file is updatable - <a href="https://github.com/owncloud/core/issues/22842">#22842</a></li>
<li>[stable8.2] Remove disabled autocorrect for new file names - <a href="https://github.com/owncloud/core/issues/23025">#23025</a></li>
<li>Windows Office files via SMB mount through WebDAV is prompting for authentication - <a href="https://github.com/owncloud/core/issues/22596">#22596</a></li>
<li>Received share to local user disappears from Webdav when LDAP server unavailable - <a href="https://github.com/owncloud/core/issues/20536">#20536</a></li>
<li>[stable8.2] Update error text for link passwords - <a href="https://github.com/owncloud/core/issues/22934">#22934</a></li>
<li>Renaming and moving displays an error in public shared folder with edit permissions. - <a href="https://github.com/owncloud/core/issues/21678">#21678</a></li>
<li>Sharing to AD group fails when not all users have logged in - <a href="https://github.com/owncloud/core/issues/22907">#22907</a></li>
<li>"Allow editing" capability in share by link not disabled - <a href="https://github.com/owncloud/core/issues/23325">#23325</a></li>
<li>Full name is not shown just after modifying it in the Personal Page - <a href="https://github.com/owncloud/core/issues/20455">#20455</a></li>
<li>Position of edit options in sharing menu confuses user - <a href="https://github.com/owncloud/core/issues/18163">#18163</a></li>
<li>Password-link shares listed in "Shared in ... with ..." section of sidebar - <a href="https://github.com/owncloud/core/issues/22128">#22128</a></li>
<li>Users with LDAP photos unable to see SMB external storage on OwnCloud Android app - <a href="https://github.com/owncloud/core/issues/21555">#21555</a></li>
<li>Webdav invalid request error with samba share - <a href="https://github.com/owncloud/core/issues/22187">#22187</a></li>
<li>Cannot upload file from OC <= 8.2 through fed share to OC 9.0 with unlimited quota - <a href="https://github.com/owncloud/core/issues/23547">#23547</a></li>
<li>Encryption + ext storage + versions broken - <a href="https://github.com/owncloud/core/issues/23681">#23681</a></li>
<li>Desktop sync fails with big files (OC 8.2.0, client 2.0.2) - <a href="https://github.com/owncloud/core/issues/20261">#20261</a></li>
<li>[stable8.2] Fix conditional check in MySQL setup - <a href="https://github.com/owncloud/core/issues/23807">#23807</a></li>
<li>[stable8.2] Fixes a possible infinite change-dir-loop - <a href="https://github.com/owncloud/core/issues/23984">#23984</a></li>
<li>Orientation for shared images broken - <a href="https://github.com/owncloud/core/issues/20484">#20484</a></li>
<li>[encryption] Recovery key feature doesn't work when a non-default "User Home Folder Naming Rule" is used - <a href="https://github.com/owncloud/core/issues/23632">#23632</a></li>
<li>Share Dialog Problems repeating user list - <a href="https://github.com/owncloud/core/issues/18910">#18910</a></li>
<li>Federated sharing: volatile edit permission - <a href="https://github.com/owncloud/core/issues/24032">#24032</a></li>
<li>Share link: user mail is disappearing after selecting expiration date - <a href="https://github.com/owncloud/core/issues/22947">#22947</a></li>
<li>Cannot upload file from OC <= 8.2 through fed share to OC 9.0 with unlimited quota - <a href="https://github.com/owncloud/core/issues/23547">#23547</a></li>
<li>[stable8.2] Ignore certificate file if it starts with file:// - <a href="https://github.com/owncloud/core/issues/24171">#24171</a></li>
<li>[stable8.2] remember email when setting expiration date - <a href="https://github.com/owncloud/core/issues/24150">#24150</a></li>
<li>Error output when passing --data-dir during command line installation - <a href="https://github.com/owncloud/core/issues/23637">#23637</a></li>
<li>cron.php does not exit, consumes RAM - <a href="https://github.com/owncloud/core/issues/23621">#23621</a></li>
<li>[stable8.2] Fix LDAP race conditions - <a href="https://github.com/owncloud/core/issues/24243">#24243</a></li>
<li>"Deadlock found when trying to get lock" in file locking - <a href="https://github.com/owncloud/core/issues/20555">#20555</a></li>
<li>Undefined index: extension at /var/www/owncloud/lib/private/installer.php#272 - <a href="https://github.com/owncloud/core/issues/24228">#24228</a></li>
<li>[8.2] error out if a local storage isn't setup correctly - <a href="https://github.com/owncloud/core/issues/24288">#24288</a></li>
<li>[Stable 8.2] Make ownCloud work again in php 7.0.6 - <a href="https://github.com/owncloud/core/issues/24344">#24344</a></li>
<li>After switching to Postgresql changing any activity checkbox checks all of the boxes - <a href="https://github.com/owncloud/core/issues/23761">#23761</a></li>
<li>Wrong documentation link (Performance Tuning) - <a href="https://github.com/owncloud/core/issues/22985">#22985</a></li>
<li>Activities not loading (Autoload path not allowed) - <a href="https://github.com/owncloud/activity/issues/491">activity/#491</a></li>
<li>Correct use of passed argument - <a href="https://github.com/owncloud/apps/issues/2157">apps/#2157</a></li>
<li>[stable8.2] Redirect page if not shown in an iframe - <a href="https://github.com/owncloud/files_pdfviewer/issues/110">files_pdfviewer/#110</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.2.4.tar.bz2">owncloud-8.2.4.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.4.zip">owncloud-8.2.4.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.2.4.tar.bz2.md5">owncloud-8.2.4.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.4.zip.md5">owncloud-8.2.4.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.2.4.tar.bz2.sha256">owncloud-8.2.4.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.4.zip.sha256">owncloud-8.2.4.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.2.4.tar.bz2.asc">owncloud-8.2.4.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.2.4.zip.asc">owncloud-8.2.4.zip.asc</a></br>
Packages on our Build Service: <a href="https://download.owncloud.org/download/repositories/8.2/owncloud">8.2 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.1.7 <small>May 4 2016</small></h3>
<ul>
<li>[Stable 8.1] Rename and move permissions are set when a file is updatable - <a href="https://github.com/owncloud/core/issues/22843">#22843</a></li>
<li>[stable8.1] Fix broken scanner call in ajax/scan.php - <a href="https://github.com/owncloud/core/issues/23149">#23149</a></li>
<li>Received share to local user disappears from Webdav when LDAP server unavailable - <a href="https://github.com/owncloud/core/issues/20536">#20536</a></li>
<li>Renaming and moving displays an error in public shared folder with edit permissions. - <a href="https://github.com/owncloud/core/issues/21678">#21678</a></li>
<li>Sharing to AD group fails when not all users have logged in - <a href="https://github.com/owncloud/core/issues/22907">#22907</a></li>
<li>"Allow editing" capability in share by link not disabled - <a href="https://github.com/owncloud/core/issues/23325">#23325</a></li>
<li>[encryption] Recovery key feature doesn't work when a non-default "User Home Folder Naming Rule" is used - <a href="https://github.com/owncloud/core/issues/23632">#23632</a></li>
<li>Cannot upload file from OC <= 8.2 through fed share to OC 9.0 with unlimited quota - <a href="https://github.com/owncloud/core/issues/23547">#23547</a></li>
<li>[stable8.1] Ignore certificate file if it starts with file:// - <a href="https://github.com/owncloud/core/issues/24170">#24170</a></li>
<li>Undefined index: extension at /var/www/owncloud/lib/private/installer.php#272 - <a href="https://github.com/owncloud/core/issues/24228">#24228</a></li>
<li>[stable8.1] Redirect page if not shown in an iframe - <a href="https://github.com/owncloud/files_pdfviewer/issues/111">files_pdfviewer/#111</a></li>
<li>[8.1.x] Video can't be played if video file is placed inside parent folder - <a href="https://github.com/owncloud/files_videoplayer/issues/42">files_videoplayer/#42</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.1.7.tar.bz2">owncloud-8.1.7.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.7.zip">owncloud-8.1.7.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.1.7.tar.bz2.md5">owncloud-8.1.7.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.7.zip.md5">owncloud-8.1.7.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.1.7.tar.bz2.sha256">owncloud-8.1.7.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.7.zip.sha256">owncloud-8.1.7.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.1.7.tar.bz2.asc">owncloud-8.1.7.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.1.7.zip.asc">owncloud-8.1.7.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.1&package=owncloud">8.1 Release Channel</a>, <a href="https://download.owncloud.org/download/repositories/stable/owncloud">Stable Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 8.0.12 <small>May 4 2016</small></h3>
<ul>
<li>[Stable 8] Rename and move permissions are set when a file is updatable - <a href="https://github.com/owncloud/core/issues/22844">#22844</a></li>
<li>"Allow editing" capability in share by link not disabled - <a href="https://github.com/owncloud/core/issues/23325">#23325</a></li>
<li>[stable8] Workaround to be able to recognize unlimited quota in fed shares - <a href="https://github.com/owncloud/core/issues/24148">#24148</a></li>
<li>[stable8] Ignore certificate file if it starts with file:// - <a href="https://github.com/owncloud/core/issues/24168">#24168</a></li>
<li>[stable8] Redirect page if not shown in an iframe - <a href="https://github.com/owncloud/files_pdfviewer/issues/112">files_pdfviewer/#112</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-8.0.12.tar.bz2">owncloud-8.0.12.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.12.zip">owncloud-8.0.12.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-8.0.12.tar.bz2.md5">owncloud-8.0.12.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.12.zip.md5">owncloud-8.0.12.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-8.0.12.tar.bz2.sha256">owncloud-8.0.12.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.12.zip.sha256">owncloud-8.0.12.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-8.0.12.tar.bz2.asc">owncloud-8.0.12.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-8.0.12.zip.asc">owncloud-8.0.12.zip.asc</a></br>
Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:8.0&package=owncloud">8.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.
<h3>Version 7.0.14 <small>May 4 2016</small></h3>
<ul>
<li>[stable7] Ignore certificate file if it starts with file:// - <a href="https://github.com/owncloud/core/issues/24167">#24167</a></li>
<li>[stable7] Redirect page if not shown in an iframe - <a href="https://github.com/owncloud/files_pdfviewer/issues/113">files_pdfviewer/#113</a></li>
</ul>
Download: <a href="https://download.owncloud.org/community/owncloud-7.0.14.tar.bz2">owncloud-7.0.14.tar.bz2</a> or <a href="https://download.owncloud.org/community/owncloud-7.0.14.zip">owncloud-7.0.14.zip</a></br>
MD5: <a href="https://download.owncloud.org/community/owncloud-7.0.14.tar.bz2.md5">owncloud-7.0.14.tar.bz2.md5</a> or <a href="https://download.owncloud.org/community/owncloud-7.0.14.zip.md5">owncloud-7.0.14.zip.md5</a></br>
SHA256: <a href="https://download.owncloud.org/community/owncloud-7.0.14.tar.bz2.sha256">owncloud-7.0.14.tar.bz2.sha256</a> or <a href="https://download.owncloud.org/community/owncloud-7.0.14.zip.sha256">owncloud-7.0.14.zip.sha256</a></br>
PGP (<a href="https://owncloud.org/owncloud.asc">Key</a>): <a href="https://download.owncloud.org/community/owncloud-7.0.14.tar.bz2.asc">owncloud-7.0.14.tar.bz2.asc</a> or <a href="https://download.owncloud.org/community/owncloud-7.0.14.zip.asc">owncloud-7.0.14.zip.asc</a></br>
<p>Packages on the openSUSE Build Service: <a href="http://software.opensuse.org/download/package?project=isv:ownCloud:community:7.0&package=owncloud">7.0 Release Channel</a>. Learn more about <a href="/release-channels">Release Channels</a>.</p>
<p><strong>Note</strong> 7.0.15 is the last ownCloud 7.0 update and you should upgrade as soon as possible to ownCloud 8.0 or newer.</p>
<h3>Version 9.0.1 <small>April 6 2016</small></h3>
<ul>
<li>Sharing
<ul>