-
Notifications
You must be signed in to change notification settings - Fork 3
/
release-notes-8.0
1595 lines (964 loc) · 58.5 KB
/
release-notes-8.0
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
HTML header: <title>dCache 8.0 Release Notes</title>
<!--#include virtual="/template/default-head.shtml" -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"/>
<!--link type="text/css" rel="stylesheet" href="jquery.tocify.css" /-->
<style type="text/css">
h5 {
font-size: 15px;
font-style: italic;
margin-top: 20px;
}
body {
padding-top: 20px;
}
@media (max-width: 767px) {
#toc {
position: relative;
width: 100%;
margin: 0px 0px 20px 0px;
}
}
@media print {
#toc {
display: none;
}
}
</style>
<div class="container">
<div id="banner">
<div id="bird_large">
<img src="/images/dcache-banner.png" class="bird"></img>
</div>
<div id="sidebar-b">
<span class="dcache-nav-bar">
<a href="/index.shtml">home</a>
|
<a href="/news.shtml">news</a>
|
<a href="/manuals/index.shtml">documentation</a>
|
<a href="/downloads/IAgree.shtml">downloads</a>
|
<a href="/feedback.shtml">feedback</a>
|
<a href="/manuals/googlesearch.shtml">search</a>
|
<a href="/imprint.shtml">imprint </a>
</span>
</div>
</div>
<div id="content">
<div class="row">
<div class="page-header">
<h1>What's new in dCache 8.0<br/>
<small>Release notes</small></h1>
</div>
## Highlights
- better nfs v4.x performance of state validation in highly concurrent environment
## Incompatibilities
- the `mountd` service is started only if NFS v3 is enabled
- removed historic code of `HSM flush manager`
## Acknowledgments
(tbd, this section uses markdown formatting)
## Release 8.0.32
### xrootd4j
Update xrootd4j to a new version, that fixes a byte buffer leak in ZTNCredentialUtils.
### Changelog 8.0.31..8.0.32
<!-- git log 8.0.31..8.0.32 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[068634ea4d](https://github.com/dcache/dcache/commit/068634ea4de75e18c201e154e3c80b59ec513ecb)
: [maven-release-plugin] prepare release 8.0.32
[22046e7e6f](https://github.com/dcache/dcache/commit/22046e7e6f3a280ad820ba0224c822bd25aa7535)
: ci: add gitlab-ci.yml
[a14dadf9a8](https://github.com/dcache/dcache/commit/a14dadf9a8b474781f9b68194f903a357a6d0606)
: pom.xml: bump xrootd4j to next version (4.5.7, 4.4.8, 4.3.9, 4.2.13)
[893474629f](https://github.com/dcache/dcache/commit/893474629f364076f55896d0cd45c3d465a6b994)
: Update the CITATION.cff version field and date-released field for dCache 8.0.
[2bb3a94839](https://github.com/dcache/dcache/commit/2bb3a948392c853537c5dbc57f39e34dba2e3fa9)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.31
### metadata
No user- or admin observable changes.
### Changelog 8.0.30..8.0.31
<!-- git log 8.0.30..8.0.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[75cec72a0b](https://github.com/dcache/dcache/commit/75cec72a0beabc2beebfa37a3555c6d02efc73e7)
: [maven-release-plugin] prepare release 8.0.31
[ae1e840b16](https://github.com/dcache/dcache/commit/ae1e840b161c7b4cdbf4a12d1ce764a1aaf9b163)
: metadata: add (some) ORCIDs to CITATION.cff
[f4a6da7e36](https://github.com/dcache/dcache/commit/f4a6da7e369bc7fb69fc9069096fb32edebf75ad)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.31
### #
### Changelog 8.0.30..8.0.31
<!-- git log 8.0.30..8.0.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[75cec72a0b](https://github.com/dcache/dcache/commit/75cec72a0beabc2beebfa37a3555c6d02efc73e7)
: [maven-release-plugin] prepare release 8.0.31
[ae1e840b16](https://github.com/dcache/dcache/commit/ae1e840b161c7b4cdbf4a12d1ce764a1aaf9b163)
: metadata: add (some) ORCIDs to CITATION.cff
[f4a6da7e36](https://github.com/dcache/dcache/commit/f4a6da7e369bc7fb69fc9069096fb32edebf75ad)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.30
### gplazma
POSC works with tokens when user root is '/'.
### Changelog 8.0.29..8.0.30
<!-- git log 8.0.29..8.0.30 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7ff300522d](https://github.com/dcache/dcache/commit/7ff300522d828f0d5205b002cec74782a97ea811)
: [maven-release-plugin] prepare release 8.0.30
[f3cece6f39](https://github.com/dcache/dcache/commit/f3cece6f3997242cbacc78539ac95d8f8111a6b8)
: Motivation:
[0c84dd149f](https://github.com/dcache/dcache/commit/0c84dd149f7ecd19280a7499eff87cbc282ad680)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.29
### Technical Release
## Release 8.0.28
### xrootd4j
update to next xrootd4j version (4.5.6, 4.4.7, 4.3.8, 4.2.12)
### Changelog 8.0.27..8.0.28
<!-- git log 8.0.27..8.0.28 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a51717a7b1](https://github.com/dcache/dcache/commit/a51717a7b1d7c962fdc98a89668d40f94114bfae)
: [maven-release-plugin] prepare release 8.0.28
[dd23075a89](https://github.com/dcache/dcache/commit/dd23075a8939e5e89e38d03cc2257713076ffd56)
: pom.xml: update to next xrootd4j version (4.5.6, 4.4.7, 4.3.8, 4.2.12)
[a0f30127f9](https://github.com/dcache/dcache/commit/a0f30127f9e1a27d8b170d81b7369efd0c274109)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.27
### gplazma
It is now possible to configure dCache so the oidc plugin does not check
audience fields. This should be used where necessary and only for a
short transition period.
An OP declaration now supports the `-suppress=offline` argument to force
dCache to query the userinfo endpoint, even if the access token is a
JWT. A warning is logged on startup if offline verification is
suppressed.
### pom
Update stable branches to include bug fix to the TPC client behavior
so that it establishes a secure connection to its source when the source TLS
setting is STRICT.
### Changelog 8.0.26..8.0.27
<!-- git log 8.0.26..8.0.27 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a1268e7afc](https://github.com/dcache/dcache/commit/a1268e7afc8579c6e500add9650e33d47e75af9f)
: [maven-release-plugin] prepare release 8.0.27
[ec8c4f360a](https://github.com/dcache/dcache/commit/ec8c4f360a66230904a2d3923242eb7f5458a68d)
: pom.xml: update to next xrood4j version (4.5.5, 4.3.7, 4.2.11)
[653e136e1f](https://github.com/dcache/dcache/commit/653e136e1fd98cfd35cf73a08778f3bd5f93479d)
: gplazma: oidc add suppress for audience claim verification
[6af747c189](https://github.com/dcache/dcache/commit/6af747c189d3d1187ecdd43b17a8fd9932973331)
: gplazma: oidc allow suppression of offline verification
[f92e0954f6](https://github.com/dcache/dcache/commit/f92e0954f6b6a17499eb85a9545f2389e03e0ea7)
: gplazma: oidc add support for suppress option
[28680eb4fe](https://github.com/dcache/dcache/commit/28680eb4fea0a064bf0fe658f8c26ac5920226c5)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.26
### frontend
Use of relative path when issuing mv through
the RESTful /api/v1/namespace was broken. This is fixed now.
### Changelog 8.0.25..8.0.26
<!-- git log 8.0.25..8.0.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[dbcad8ed23](https://github.com/dcache/dcache/commit/dbcad8ed23ec3f40c995c76870268d0a6fdecf56)
: [maven-release-plugin] prepare release 8.0.26
[e6afeeba48](https://github.com/dcache/dcache/commit/e6afeeba482709bcbc1dcb5d8e8bd86a6b7cc757)
: dcache-frontend: resolve on parent of source when renaming
[f697ff05ec](https://github.com/dcache/dcache/commit/f697ff05ec38827fc0e5b9d86ca4ec787a070b87)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.26
### frontend
Use of relative path when issuing mv through
the RESTful /api/v1/namespace was broken. This is fixed now.
### Changelog 8.0.25..8.0.26
<!-- git log 8.0.25..8.0.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[dbcad8ed23](https://github.com/dcache/dcache/commit/dbcad8ed23ec3f40c995c76870268d0a6fdecf56)
: [maven-release-plugin] prepare release 8.0.26
[e6afeeba48](https://github.com/dcache/dcache/commit/e6afeeba482709bcbc1dcb5d8e8bd86a6b7cc757)
: dcache-frontend: resolve on parent of source when renaming
[f697ff05ec](https://github.com/dcache/dcache/commit/f697ff05ec38827fc0e5b9d86ca4ec787a070b87)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.26
### frontend
Use of relative path when issuing mv through
the RESTful /api/v1/namespace was broken. This is fixed now.
### Changelog 8.0.25..8.0.26
<!-- git log 8.0.25..8.0.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[dbcad8ed23](https://github.com/dcache/dcache/commit/dbcad8ed23ec3f40c995c76870268d0a6fdecf56)
: [maven-release-plugin] prepare release 8.0.26
[e6afeeba48](https://github.com/dcache/dcache/commit/e6afeeba482709bcbc1dcb5d8e8bd86a6b7cc757)
: dcache-frontend: resolve on parent of source when renaming
[f697ff05ec](https://github.com/dcache/dcache/commit/f697ff05ec38827fc0e5b9d86ca4ec787a070b87)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.25
### gplazma
dCache now handles malformed .info policies correctly: logging the problem but continuing to allow logins.
### Changelog 8.0.24..8.0.25
<!-- git log 8.0.24..8.0.25 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[62743d50c1](https://github.com/dcache/dcache/commit/62743d50c1936dd71a476ef3393e50e0b8ff13ea)
: [maven-release-plugin] prepare release 8.0.25
[1bf94684b6](https://github.com/dcache/dcache/commit/1bf94684b62ccc21566434aa687eed77a663b115)
: gplazma: x509 do not report bad .info files as a dCache bug
[6da3201de7](https://github.com/dcache/dcache/commit/6da3201de7f3cea1e24567ff7ddfbed64f4d831c)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.24
### frontend
Request for pin without lifetime unit specified works now.
### telemetry
Caught exceptions are now logged without a stacktrace.
### xroot
Clients should be blocked from pre-emptive removal if a
file/directory already exists when doing copy.
### Changelog 8.0.23..8.0.24
<!-- git log 8.0.23..8.0.24 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[ed81c6864e](https://github.com/dcache/dcache/commit/ed81c6864ec59809bcc812f7c77ef378a8d8fec7)
: [maven-release-plugin] prepare release 8.0.24
[041a529cfb](https://github.com/dcache/dcache/commit/041a529cfbdb34290784a22f970bd5adaf4962c7)
: dcache-frontend: convert empty to null when processing TimeUnit attribute
[7e27eb6a67](https://github.com/dcache/dcache/commit/7e27eb6a676d7de8c50f9a0b8c605f7e5dee5241)
: dcache-xroot: return kXR_ItExists error code when file exists
[a2fcb519a5](https://github.com/dcache/dcache/commit/a2fcb519a53bce663e328ca3ed22e0821bc39108)
: telemetry: Don't log stacktrace for caught expceptions
[f51f48c782](https://github.com/dcache/dcache/commit/f51f48c7820f52a333302c1a9d11418bdc8dabf5)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.23
### common
Prevent two potential NPEs in common utility methods.
IndexOutOfBoundsException should not occur during timeseries histogram
creation; stack trace is replaced by a logging statement.
### gplazma
For xrootd "persist on successful close" (POSC), authorization is
successful for both x509 and OIDC/Scitokens.
### history
The history service should no longer generate the reported
NaN stack trace in the histogram pipeline.
### Changelog 8.0.22..8.0.23
<!-- git log 8.0.22..8.0.23 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[bb35fede39](https://github.com/dcache/dcache/commit/bb35fede39767bd0969f3c18a087f834e3a35787)
: [maven-release-plugin] prepare release 8.0.23
[6ae94ef7a2](https://github.com/dcache/dcache/commit/6ae94ef7a256bd6819964c703654175987cbaa3d)
: common: provisional fix for out of bounds error in timeseries histogram
[1cb1647b91](https://github.com/dcache/dcache/commit/1cb1647b910fe3486eaac84b5872bc71299c07eb)
: gplazma: allow upload permissions with MultiTargetRestriction
[1a0b2b1306](https://github.com/dcache/dcache/commit/1a0b2b1306cc442312be68776b2cc8c3399dd9f0)
: common: prevent NPE by explict cast of (Double)double in ternary condition
[013b84e178](https://github.com/dcache/dcache/commit/013b84e1786ea9256f923ee5ad1143fc0afc2997)
: commons: add null check to nanToZero method
[51c4eb323e](https://github.com/dcache/dcache/commit/51c4eb323e2522828cbf331f52b350fc8cca59e8)
: dcache-history: avoid NaN stack trace in histogram conversion
[2bc8d6b20d](https://github.com/dcache/dcache/commit/2bc8d6b20d76c2bec93d033f864b094aef354749)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.22
### chimera
There should be less load on the trash table database of the cleaner and thus higher performance.
### dcache-xroot
With `xrootd.authz.anonymous-operations=READONLY`, anonymous login allows world-readable files to
be read; with `xrootd.authz.anonymous-operations=NONE`, it does not allow anonymous operations. This is
for two-party interactions. Third-party copy
with OIDC tokens will work regardless of the
value given to this property.
### Changelog 8.0.21..8.0.22
<!-- git log 8.0.21..8.0.22 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7ffcdd9dc3](https://github.com/dcache/dcache/commit/7ffcdd9dc3ec5478ea6c35ae9a10d01a063880d1)
: [maven-release-plugin] prepare release 8.0.22
[cd0a97e6bf](https://github.com/dcache/dcache/commit/cd0a97e6bf3f9940bc59b299811a3d331f378eb8)
: dcache-xroot: make handling of anonymous restrictions consistent
[85c045b5ab](https://github.com/dcache/dcache/commit/85c045b5ab1130ed1dfef25d158ffb403dc830f8)
: pom.xml: update to next xrood4j version (4.5.4, 4.4.5, 4.3.6, 4.2.10)
[6009cb2f7d](https://github.com/dcache/dcache/commit/6009cb2f7d46fd07db2130d9a181f18cef1aba50)
: dcache-chimera: reduce frequency of expensive cleaner inode deletion
[909579a03d](https://github.com/dcache/dcache/commit/909579a03d40cf73d66aa85db2993e63770db74b)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.21
### pool
Updated host certificate is available to https mover. Fixed p2p transfers over HTTPS.
### Changelog 8.0.20..8.0.21
<!-- git log 8.0.20..8.0.21 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[f239437306](https://github.com/dcache/dcache/commit/f239437306f0aa268636e9ac4e3e53c88ad5dc42)
: [maven-release-plugin] prepare release 8.0.21
[7bd277c0f5](https://github.com/dcache/dcache/commit/7bd277c0f5de24dec063656441ae4b35074bd3c2)
: pool: reload host certificate if changed
[59d3b4b7a1](https://github.com/dcache/dcache/commit/59d3b4b7a1a50bd15edf7d2963f0f5f14d88835e)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.20
### chimera
When receiving a reply from a pool it is no longer waiting for, cleaner-hsm will not send a new delete request
or forget the currently-waited-on pool anymore. Logging is added to inform when cleaner-hsm receives
a reply from a pool it is no longer waiting for, indicating that the timeout might be too small.
### xroot
There should be no longer exceptions reporting no exception handler to handle
the exception.
### Changelog 8.0.19..8.0.20
<!-- git log 8.0.19..8.0.20 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[14a861d8ab](https://github.com/dcache/dcache/commit/14a861d8ab5e0ff38f8c4ec152da495fa07b3b95)
: [maven-release-plugin] prepare release 8.0.20
[bbb32e627d](https://github.com/dcache/dcache/commit/bbb32e627de836d44c129e610d2a640fd7c03c96)
: dcache-xroot: handle outbound errors on channel promise
[9416c5763f](https://github.com/dcache/dcache/commit/9416c5763ff02ff47bae9026adb387e195fe33b2)
: dcache-chimera: cleaner better handles stale delete reply
[4c9759811e](https://github.com/dcache/dcache/commit/4c9759811e2fcafa06eabb2000354aa9f9314fc8)
: book: add NOTE on domain naming, uniqueness
[cc4e6ab688](https://github.com/dcache/dcache/commit/cc4e6ab688888ba4658ab8d55a9fea899b42aea3)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.19
### Pool, Chimera
Prevent NullPointerExceptions in the cleaner and repeating pool restarted messages in PoolManager when pools report null as their connected hsm instances.
### Changelog 8.0.18..8.0.19
<!-- git log 8.0.18..8.0.19 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[db22ba4b0e](https://github.com/dcache/dcache/commit/db22ba4b0eaa1bf1acc38e7b79489f297e672502)
: [maven-release-plugin] prepare release 8.0.19
[9ef05f6077](https://github.com/dcache/dcache/commit/9ef05f607712ded570a74bcf2bc20a579292e5fa)
: pool,chimera: fix pool pings having a `null`-valued hsm field
[9afc115674](https://github.com/dcache/dcache/commit/9afc115674046fa857a3970c18ae018726c719f7)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.18
### chimera
A bug was fixed that threw a NullPointerException when the associated hsms for a pool are stored as `null`.
### xroot
Update xrootd4j to support kXR_prefname in kXR_locate request.
### Changelog 8.0.17..8.0.18
<!-- git log 8.0.17..8.0.18 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[ea29bc88f8](https://github.com/dcache/dcache/commit/ea29bc88f8fee2079c081adf608d6899f311ba98)
: [maven-release-plugin] prepare release 8.0.18
[34878eab37](https://github.com/dcache/dcache/commit/34878eab373b5a2dbd77286d6351d38463609984)
: dcache-chimera: prevent PoolInformationBase NPE
[aba314f3f7](https://github.com/dcache/dcache/commit/aba314f3f7fe29dc9b2ccc18306a66a8cc6cbbf6)
: pom.xml: update xrootd4j (4.5.3, etc.)
[54be3df23c](https://github.com/dcache/dcache/commit/54be3df23c7dfa09d51532121cb7ecbdb6796d33)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.17
### chimera
Cleaner cells that do not have leadership will now more strictly enforce not triggering delete runs.
### nfs-proxy
Proxy-IO with posix locks now works as expected.
### Changelog 8.0.16..8.0.17
<!-- git log 8.0.16..8.0.17 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[774b0a554d](https://github.com/dcache/dcache/commit/774b0a554dd7b7b8e71d5d0f60a4d440aac27e6f)
: [maven-release-plugin] prepare release 8.0.17
[167d77a771](https://github.com/dcache/dcache/commit/167d77a7716872d00397e4b2b7b43d2c06b8f96c)
: nfs-proxy: use open-stateid when proxying IO request to a pool
[4296a797ec](https://github.com/dcache/dcache/commit/4296a797ec59c8012b8ce7af15550b72e1fbbef2)
: dcache-chimera: make sure non-leader does not execute clean run
[d0ae726b32](https://github.com/dcache/dcache/commit/d0ae726b32afe9bce3cc11352a91665e080bb13f)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.16
### nearline-storage
A NPE on error path has been fixed.
The race condition when flushing removed file is fixed now.
### Changelog 8.0.15..8.0.16
<!-- git log 8.0.15..8.0.16 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[aa9bf6d434](https://github.com/dcache/dcache/commit/aa9bf6d4345df7598f6912255b8e4baff75b2d23)
: [maven-release-plugin] prepare release 8.0.16
[749bb7ccb8](https://github.com/dcache/dcache/commit/749bb7ccb846474bc08d8bf7d83e94e0d5d61982)
: nearline-storage: fix race in flushing removed file
[9b9d6e2929](https://github.com/dcache/dcache/commit/9b9d6e292910edb2a921223a602658ae29b7cc6a)
: nearline-storage: fix NPE on error path
[d522b5d708](https://github.com/dcache/dcache/commit/d522b5d70851b976147c447ba19746d54656cafa)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.15
### frontend
The current release fixed type default of RESTful pool/nearline/queues resource
### Changelog 8.0.14..8.0.15
<!-- git log 8.0.14..8.0.15 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[da56544ded](https://github.com/dcache/dcache/commit/da56544ded00ccbd1a62a5a3070587a67e7d9ae6)
: [maven-release-plugin] prepare release 8.0.15
[f04f03b9a6](https://github.com/dcache/dcache/commit/f04f03b9a68d30389b003841db8f15a3d0ebe3c8)
: dcache-frontend: fix type default of RESTful pool/nearline/queues resource
[70e662242a](https://github.com/dcache/dcache/commit/70e662242a06a466ff07c7cc2b44e48471438637)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.14
### chimera
Pools that are no longer actively being cleaned were previously falsely
still listed as active in the admin interface when the cleaning attempt
ended due to an exception. This has been fixed.
### core
If a pin is unpinned while a pin request for that same pin is still
ongoing in pinmanager, pinning will not be retried.
### Changelog 8.0.13..8.0.14
<!-- git log 8.0.13..8.0.14 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[74db9a46fc](https://github.com/dcache/dcache/commit/74db9a46fc39ef46eb7c7bdc2775153a398aa49c)
: [maven-release-plugin] prepare release 8.0.14
[57dec67417](https://github.com/dcache/dcache/commit/57dec6741783cafe631c55d8f89dcdafe93e0ad0)
: dcache-core: let pinmanager stop retrying pinning upon unpin state
[bf9ee600d4](https://github.com/dcache/dcache/commit/bf9ee600d4d097b487606f68b7a8f3a6b79f470d)
: dcache-chimera: disk-cleaner, error handling in parallel pool deletes
[0cd908caac](https://github.com/dcache/dcache/commit/0cd908caac5e50ab9e047ade1b47b45a0ce9f9e7)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.13
### gplazma2-grid
An empty requires field in IGTF policy is now accepted. Files with invalid or unexpected policies are ignored.
### webdav
A bug was fixed that caused a NullPointerException while sending Kafka messages.
jquery was updated to version 3.6.1 and bootstrap was updated to version 5.2.1
### Changelog 8.0.12..8.0.13
<!-- git log 8.0.12..8.0.13 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[530f6ed109](https://github.com/dcache/dcache/commit/530f6ed109d24092d4d223214821413ac2b0e79f)
: [maven-release-plugin] prepare release 8.0.13
[58629d1bbf](https://github.com/dcache/dcache/commit/58629d1bbf83ffafdd428700ce21d007fc5ae408)
: dcache: NPE on removal via WebDAV and token
[14815d279c](https://github.com/dcache/dcache/commit/14815d279ce7674a8cc65c3a4d02432b734bf386)
: webdav: update 3rd party js libraries
[7d17c92cc8](https://github.com/dcache/dcache/commit/7d17c92cc8ff382fb8ffce83af5c01174d949e30)
: doc: add recipe to cookbook for migration/draining of resilient pools
[2a4f47be9d](https://github.com/dcache/dcache/commit/2a4f47be9d25d5515a252db05ca07c8b3f0ab050)
: gplazma2-grid: invalid IGTF policy file should fail with ParserException
[888fecc199](https://github.com/dcache/dcache/commit/888fecc199ff2cfbb2376741afc46b2d19c61af5)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.12
### common
dCache now reports RemoteTransferManager as being replicable.
### dcache-xroot
A possible thread starvation and inability to
allow more clients to connect hase been fixed.
### webdav
Fix a bug where the WebDAV door will continue attempting to kill a
cancelled HTTP-TPC transfer indefinitely if the corresponding
RemoteTransferManager cell has been switched off.
The current release fixed a NullPointerException when reporting on active transfers if the
client has disconnected but the door has not yet cancelled the transfer.
### xroot
Documentation now offers some explicit
guidance as to pool configuration for
xrootd reqarding memory.
### Changelog 8.0.11..8.0.12
<!-- git log 8.0.11..8.0.12 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[2c4134828e](https://github.com/dcache/dcache/commit/2c4134828e485d9611de1de0370d588ad23f15a3)
: [maven-release-plugin] prepare release 8.0.12
[6c1b92bd5b](https://github.com/dcache/dcache/commit/6c1b92bd5bebce26006c7163df6a59c456a935b6)
: dcache-xroot: interrupt doOnOpen thread in the event of channel inactive
[4122a3b15e](https://github.com/dcache/dcache/commit/4122a3b15e88d8121dd3a29c07c957979f12e1b9)
: webdav: http-tpc do not keep retrying to cancel transfer
[48ad0f7042](https://github.com/dcache/dcache/commit/48ad0f7042ce604b349c402759729b7659d6977f)
: webdav: fix NPE if client aborts transfer
[9a4b63f79e](https://github.com/dcache/dcache/commit/9a4b63f79e7f207ca8afd0909bea1fbd600921d1)
: dcache-xroot: add Book section on direct memory requirements for pools*
[b028c0ae2a](https://github.com/dcache/dcache/commit/b028c0ae2afc7522e6c0f1d99dbf24d16cd5b214)
: pom.xml: update to latest xrootd4j bugfix
[d7892ccb7f](https://github.com/dcache/dcache/commit/d7892ccb7f2ced5fd8216cf24129ef2fcddd39ad)
: [maven-release-plugin] prepare for next development iteration
[141a314453](https://github.com/dcache/dcache/commit/141a31445322127e5ad4c30518662ec508a60320)
: properties: report that remote transfer manager is replicable
## Release 8.0.11
### dcache
A clarification on authorized keys format has been added.
### Changelog 8.0.10..8.0.11
<!-- git log 8.0.10..8.0.11 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[d7dba3390a](https://github.com/dcache/dcache/commit/d7dba3390add55c981c6a57550164cce220203b6)
: [maven-release-plugin] prepare release 8.0.11
[f03030ce4d](https://github.com/dcache/dcache/commit/f03030ce4dd8cc4ef9b1d505696fea324e90a807)
: Add clarification on authorized keys format
[843aa5336c](https://github.com/dcache/dcache/commit/843aa5336cb2bf48e74cd9cf79414e1e702015cc)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.10
### dcache-bulk
Runtime exceptions do not kill the queue thread now
and do not leave the request in a stalled state.
### webdav
Existing monitoring information does not show HTTP-TPC transfers, which
may result in admins being unaware of dCache activity.
This is now fixed and The Active Transfers page (from httpd) and the transfers resource (from
frontend) now include HTTP-TPC transfers.
WebDAV HTTP-TPC now supports multiple RemoteTransferManager services,
which allows for high-availability deployments. The WebDAV door and all
RemoteTransferManager services must be upgraded to support this new
feature.
### Changelog 8.0.9..8.0.10
<!-- git log 8.0.9..8.0.10 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[1e11319d30](https://github.com/dcache/dcache/commit/1e11319d305f3fe00069bab504ed617898d52c7f)
: [maven-release-plugin] prepare release 8.0.10
[f8020c82cf](https://github.com/dcache/dcache/commit/f8020c82cfdcd90d2137388290d1476d0a654a7f)
: dcache-bulk: (version 1) handle unexpected exceptions in queue
[1fca124200](https://github.com/dcache/dcache/commit/1fca124200792cd153521af3b5d02ab56201b252)
: webdav/httpd/frontend: add HTTP-TPC transfers to transfer list
[b35d3e847a](https://github.com/dcache/dcache/commit/b35d3e847a263dd4b7984ef2ea57f581deef83e3)
: webdav/transfermanager: support multiple RemoteTransferManager
[c02d6ece3c](https://github.com/dcache/dcache/commit/c02d6ece3c20e77e791d97078d68789d454b3383)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.10
### dcache-bulk
Runtime exceptions do not kill the queue thread now
and do not leave the request in a stalled state.
### webdav
Existing monitoring information does not show HTTP-TPC transfers, which
may result in admins being unaware of dCache activity.
This is now fixed and The Active Transfers page (from httpd) and the transfers resource (from
frontend) now include HTTP-TPC transfers.
WebDAV HTTP-TPC now supports multiple RemoteTransferManager services,
which allows for high-availability deployments. The WebDAV door and all
RemoteTransferManager services must be upgraded to support this new
feature.
### Changelog 8.0.9..8.0.10
<!-- git log 8.0.9..8.0.10 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[1e11319d30](https://github.com/dcache/dcache/commit/1e11319d305f3fe00069bab504ed617898d52c7f)
: [maven-release-plugin] prepare release 8.0.10
[f8020c82cf](https://github.com/dcache/dcache/commit/f8020c82cfdcd90d2137388290d1476d0a654a7f)
: dcache-bulk: (version 1) handle unexpected exceptions in queue
[1fca124200](https://github.com/dcache/dcache/commit/1fca124200792cd153521af3b5d02ab56201b252)
: webdav/httpd/frontend: add HTTP-TPC transfers to transfer list
[b35d3e847a](https://github.com/dcache/dcache/commit/b35d3e847a263dd4b7984ef2ea57f581deef83e3)
: webdav/transfermanager: support multiple RemoteTransferManager
[c02d6ece3c](https://github.com/dcache/dcache/commit/c02d6ece3c20e77e791d97078d68789d454b3383)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.9
### frontend, bulk
Both numeric and string values for PIN lifetime are
valid now. Also, skipDirs for DELETE can be both boolean and string.
All other current arguments are required to be strings, as before.
### Changelog 8.0.8..8.0.9
<!-- git log 8.0.8..8.0.9 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7887ef8a2d](https://github.com/dcache/dcache/commit/7887ef8a2dcb64b947dc13df54164fc1cdf9faa1)
: [maven-release-plugin] prepare release 8.0.9
[30ec4454d5](https://github.com/dcache/dcache/commit/30ec4454d5aeb7444caa53f37d42e2c093ed93d3)
: dcache-frontend,bulk: fix typing of argument values
[baf0d890f8](https://github.com/dcache/dcache/commit/baf0d890f891cee5ba4921c709697faec3ed370a)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.8
### frontend
Anonymous access receives a 401 error and doesn't trigger a stack-trace
when unlimitedVisibility is set to false.
clearOnSuccess, clearOnFailure and cancelOnFailure can have boolean and string values now.
### pool
A bug is fixed where the checksum calculation would fail for empty
files.
### Changelog 8.0.7..8.0.8
<!-- git log 8.0.7..8.0.8 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[1a412d30c9](https://github.com/dcache/dcache/commit/1a412d30c9e90835cea0faefa867cf0babbbcc52)
: [maven-release-plugin] prepare release 8.0.8
[9fae9e8a75](https://github.com/dcache/dcache/commit/9fae9e8a75cb50b46f776a347548a39bc89d0ddc)
: dcache-frontend: protect against RuntimeError in case of denied anonymous access
[551fc779da](https://github.com/dcache/dcache/commit/551fc779daf6c5d3362e7521d58e154f37ea918f)
: restore inadvertently removed 'target' extraction in toBulkRequest()
[faffec45bf](https://github.com/dcache/dcache/commit/faffec45bfabe98edf265dd2e382c2e701fe767c)
: dcache-frontend: bulk-requests POST, allow either string or boolean for boolean values
[e449c33482](https://github.com/dcache/dcache/commit/e449c33482088db180ea670d7afea584b9496343)
: pool: don't treat an empty file as a sparse file
[ea3e74ef2a](https://github.com/dcache/dcache/commit/ea3e74ef2a81ce3a6971b879a394d51b72b060d3)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.7
### ChimeraVfs
This release restores the ability to modify file levels.
### info
The delay between messages sent by info was increased to reduce log messages of "DGA {...} triggering too quickly".
### pool
If the scrubber state file is empty, scrubber will now log a more
helpful error message and proceed scrubbing the pool.
### Changelog 8.0.6..8.0.7
<!-- git log 8.0.6..8.0.7 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[5781884976](https://github.com/dcache/dcache/commit/57818849768e6ca666e01b8450f713578684a0a8)
: [maven-release-plugin] prepare release 8.0.7
[4a2eb74fab](https://github.com/dcache/dcache/commit/4a2eb74fab50194df3aa153bef9f5651f883832e)
: pool: improve handling empty saved state by scrubber
[b90c4fbec2](https://github.com/dcache/dcache/commit/b90c4fbec2b726a5e75dd427e78d6fb484ad1ea0)
: dcache-xroot,pom.xml: bump xrootd4j to 4.3.1
[bf11ceecbb](https://github.com/dcache/dcache/commit/bf11ceecbbd094bde20745c101b8ff3adb2d2426)
: dcache-xroot: flesh out channel inactive and exception caught
[42f94b841e](https://github.com/dcache/dcache/commit/42f94b841edb73d80283bd47d65d07c87d64d344)
: info: increase delay between messages
[f0d69b8c0f](https://github.com/dcache/dcache/commit/f0d69b8c0f14f25fb940c46dd3936f8a29839fdd)
: ChimeraVfs: Check file level in addition to inode type when disallowing file size change
[ce556c9015](https://github.com/dcache/dcache/commit/ce556c9015298206baad5897fcf5476b83162452)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.6
### dcache
Improved documentation for kafka Producer properties.
Improved error message for inexistent statistics path.
### dcache-xroot
The current relase Updated master xrootd4j to 4.3.0.
### frontend
NPE is fixed when SRR when space information is not available yet.
### nfs
Closing on open-for-read file now does not trigger extra layout recall.
### xrootd
Rendezvous TPC without requiring a JWT token to be passed
by the third-party client is possible (again).
### Changelog 8.0.5..8.0.6
[a92fa0cf2d](https://github.com/dcache/dcache/commit/a92fa0cf2d4e82b66526f958e71c68adc2abfcb4)
: [maven-release-plugin] prepare release 8.0.6
[d488867ee8](https://github.com/dcache/dcache/commit/d488867ee851522bc7c0003038f4bbf427e3c50f)
: dcache:improve documentation for kafka properties
[4389adec33](https://github.com/dcache/dcache/commit/4389adec331fc3b1867ebeab021e2dec603f8153)
: nfs: re-send kill only for write movers
[cc04c4f5dd](https://github.com/dcache/dcache/commit/cc04c4f5dd5693e83a0b08f65d2871dd87061c2c)
: dcache-xrootd: fix TPC rendezvous to work with token authorization
[675302e989](https://github.com/dcache/dcache/commit/675302e989d9a55f92562ed6bb6fc142c76fbe9d)
: dcache-core: improve error message for inexistent statistics path
[2fe8b1446f](https://github.com/dcache/dcache/commit/2fe8b1446f1d8b615638db666a44c019102a9307)
: frontend: fix NPE in SRR when space information is not available yet.
[b01c233ed6](https://github.com/dcache/dcache/commit/b01c233ed64420f27ee7eea2e1983b922f717489)
: dcache-xroot: update master xrootd4j to 4.3.0, and stable branches to next minor version
[c5b07458ac](https://github.com/dcache/dcache/commit/c5b07458ac13d55064a512bc0ea80928e9411494)
: [maven-release-plugin] prepare for next development iteration
## Release 8.0.5
### script
Direct deprecation warnings are now redirected to stderr.
### Changelog 8.0.4..8.0.5
<!-- git log 8.0.4..8.0.5 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[2901d045e5](https://github.com/dcache/dcache/commit/2901d045e56f98ae9a2df1f29b4c125a3816dc5c)
: [maven-release-plugin] prepare release 8.0.5