-
Notifications
You must be signed in to change notification settings - Fork 3
/
release-notes-7.0
2762 lines (1691 loc) · 107 KB
/
release-notes-7.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 7.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 7.0<br/>
<small>Release notes</small></h1>
</div>
## Highlights
- dCache internal copy triggerd by `srmcp` uses HTTP (was DCAP)
## Incompatibilities
- the argument of the `kill client` admin command for the NFS door accepts client session id
- dropped support for pcells GUI
## Acknowledgments
(tbd, this section uses markdown formatting)
## Release 7.0.40
### 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.
### Changelog 7.0.39..7.0.40
<!-- git log 7.0.39..7.0.40 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[4a0a5ba588](https://github.com/dcache/dcache/commit/4a0a5ba5887b824d85c89ce5f2afe3900bd36857)
: [maven-release-plugin] prepare release 7.0.40
[0a3053f9c4](https://github.com/dcache/dcache/commit/0a3053f9c41c64f8d0380324e33becfad0ef8bc9)
: dcache: NPE on removal via WebDAV and token
[7fa0cfb3c6](https://github.com/dcache/dcache/commit/7fa0cfb3c6d2768caeafcabc56108536a268ed31)
: gplazma2-grid: invalid IGTF policy file should fail with ParserException
[127c85aad3](https://github.com/dcache/dcache/commit/127c85aad33e56cfa3f844b46de7dc77b251745b)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.39
### xrootd4j
A potential for DOS in xrootd write was fixed.
### Changelog 7.0.38..7.0.39
<!-- git log 7.0.38..7.0.39 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[5a6f77513e](https://github.com/dcache/dcache/commit/5a6f77513e5d15194dda08d131d3a7576f19b0f5)
: [maven-release-plugin] prepare release 7.0.39
[f50b1f3c9b](https://github.com/dcache/dcache/commit/f50b1f3c9bf86bde0c2a5d0c8db860c3fe2df442)
: pom.xml: update to latest xrootd4j bugfix
[05e6a04ee2](https://github.com/dcache/dcache/commit/05e6a04ee20f59f8a9ec46a562605fb143d5b1f9)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.38
### dcache-bulk
Runtime exceptions do not kill the queue thread now
and do not leave the request in a stalled state.
### Changelog 7.0.37..7.0.38
<!-- git log 7.0.37..7.0.38 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[113733fba8](https://github.com/dcache/dcache/commit/113733fba8e5d9ae633e11bc24deeb0fae86398e)
: [maven-release-plugin] prepare release 7.0.38
[893a316349](https://github.com/dcache/dcache/commit/893a316349f7e0b44ef25ea9a71eca5d654f7cfa)
: dcache-bulk: (version 1) handle unexpected exceptions in queue
[b5f9f0bc09](https://github.com/dcache/dcache/commit/b5f9f0bc09bab9d8093ec871ff4dd51020a8c7a6)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.38
### dcache-bulk
Runtime exceptions do not kill the queue thread now
and do not leave the request in a stalled state.
### Changelog 7.0.37..7.0.38
<!-- git log 7.0.37..7.0.38 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[113733fba8](https://github.com/dcache/dcache/commit/113733fba8e5d9ae633e11bc24deeb0fae86398e)
: [maven-release-plugin] prepare release 7.0.38
[893a316349](https://github.com/dcache/dcache/commit/893a316349f7e0b44ef25ea9a71eca5d654f7cfa)
: dcache-bulk: (version 1) handle unexpected exceptions in queue
[b5f9f0bc09](https://github.com/dcache/dcache/commit/b5f9f0bc09bab9d8093ec871ff4dd51020a8c7a6)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.37
### 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 7.0.36..7.0.37
<!-- git log 7.0.36..7.0.37 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[812313e745](https://github.com/dcache/dcache/commit/812313e74593ff287c105a1442e0bea70e507113)
: [maven-release-plugin] prepare release 7.0.37
[ae71eaa25f](https://github.com/dcache/dcache/commit/ae71eaa25f6de70d53dff2d8cbf64a8e33d7863b)
: dcache-frontend,bulk: fix typing of argument values
[fda7c37650](https://github.com/dcache/dcache/commit/fda7c3765053059a5cbf8cd0566e75c3bcc33e70)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.36
### 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 7.0.35..7.0.36
<!-- git log 7.0.35..7.0.36 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[56620b4c1c](https://github.com/dcache/dcache/commit/56620b4c1ce28ff54f7ba526df66f9969f76e329)
: [maven-release-plugin] prepare release 7.0.36
[9a6c0a8ce0](https://github.com/dcache/dcache/commit/9a6c0a8ce0911f3ac1e967344ab37d1d2686741a)
: dcache-frontend: protect against RuntimeError in case of denied anonymous access
[5d5933b754](https://github.com/dcache/dcache/commit/5d5933b7547a421ee35b3b484d648e3a02408f67)
: restore inadvertently removed 'target' extraction in toBulkRequest()
[1653e01498](https://github.com/dcache/dcache/commit/1653e01498eb3d4e218f9aeb3e3d4a3857b7e1be)
: dcache-frontend: bulk-requests POST, allow either string or boolean for boolean values
[99b66657d3](https://github.com/dcache/dcache/commit/99b66657d3ca9a55de0baf0074f57ba7df9ac4df)
: pool: don't treat an empty file as a sparse file
[d0dcd7a365](https://github.com/dcache/dcache/commit/d0dcd7a36555461d70f180b0f76bb83715ea81b0)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.35
### debian
Added explicit dependency on rsyslog for debian packages so there are no
errors during installation.
### 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 7.0.34..7.0.35
<!-- git log 7.0.34..7.0.35 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[74a36d4a07](https://github.com/dcache/dcache/commit/74a36d4a070e249697612a33710aa1db4ceeeb1a)
: [maven-release-plugin] prepare release 7.0.35
[02a5bd6ee3](https://github.com/dcache/dcache/commit/02a5bd6ee3d5cc41d1098977c4f1a401b7bf7d71)
: pool: improve handling empty saved state by scrubber
[8b80371c30](https://github.com/dcache/dcache/commit/8b80371c30d16bd1613dde52a80bb83f4a4db36d)
: dcache-xroot,pom.xml: bump xrootd4j to 4.3.1
[a3d487d527](https://github.com/dcache/dcache/commit/a3d487d52758eb58b5825d4cf4bf99e79e4ac634)
: dcache-xroot: flesh out channel inactive and exception caught
[380bb8e7de](https://github.com/dcache/dcache/commit/380bb8e7de11c45e3cadac3e6ee91bfe286014b3)
: info: increase delay between messages
[94b58cbd7e](https://github.com/dcache/dcache/commit/94b58cbd7e1bf523995983a26fb07a4e6d4c34da)
: deb: add explicit dependency on rsyslog package
[25ff3ab9c1](https://github.com/dcache/dcache/commit/25ff3ab9c171f5dbc840783b9fb3ad159f576f08)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.34
### 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.
### xrootd
Rendezvous TPC without requiring a JWT token to be passed
by the third-party client is possible (again).
### Changelog 7.0.33..7.0.34
<!-- git log 7.0.33..7.0.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[cb62fd12e7](https://github.com/dcache/dcache/commit/cb62fd12e73ae742801461972bff4c1f5f388b69)
: [maven-release-plugin] prepare release 7.0.34
[c45cb04006](https://github.com/dcache/dcache/commit/c45cb04006aad3dc64460caba010ec24052fd1bc)
: dcache:improve documentation for kafka properties
[4d87218ff8](https://github.com/dcache/dcache/commit/4d87218ff82d6800f03a4df0016f3a9263592f65)
: dcache-xroot: update master xrootd4j to 4.3.0, and stable branches to next minor version
[552471dd34](https://github.com/dcache/dcache/commit/552471dd34ddf98e0680d71e73dea63eba11c694)
: dcache-core: improve error message for inexistent statistics path
[298769c978](https://github.com/dcache/dcache/commit/298769c97888094235e38ba34f8ff93fb53b6ec8)
: [maven-release-plugin] prepare for next development iteration
### Changelog 7.0.33..7.0.34
<!-- git log 7.0.33..7.0.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[cb62fd12e7](https://github.com/dcache/dcache/commit/cb62fd12e73ae742801461972bff4c1f5f388b69)
: [maven-release-plugin] prepare release 7.0.34
[c45cb04006](https://github.com/dcache/dcache/commit/c45cb04006aad3dc64460caba010ec24052fd1bc)
: dcache:improve documentation for kafka properties
: frontend: fix NPE in SRR when space information is not available yet.
[4d87218ff8](https://github.com/dcache/dcache/commit/4d87218ff82d6800f03a4df0016f3a9263592f65)
: dcache-xroot: update master xrootd4j to 4.3.0, and stable branches to next minor version
[552471dd34](https://github.com/dcache/dcache/commit/552471dd34ddf98e0680d71e73dea63eba11c694)
: dcache-core: improve error message for inexistent statistics path
[298769c978](https://github.com/dcache/dcache/commit/298769c97888094235e38ba34f8ff93fb53b6ec8)
: [maven-release-plugin] prepare for next development iteration
### Changelog 7.0.33..7.0.34
<!-- git log 7.0.33..7.0.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[cb62fd12e7](https://github.com/dcache/dcache/commit/cb62fd12e73ae742801461972bff4c1f5f388b69)
: [maven-release-plugin] prepare release 7.0.34
[c45cb04006](https://github.com/dcache/dcache/commit/c45cb04006aad3dc64460caba010ec24052fd1bc)
: dcache:improve documentation for kafka properties
[4d87218ff8](https://github.com/dcache/dcache/commit/4d87218ff82d6800f03a4df0016f3a9263592f65)
: dcache-xroot: update master xrootd4j to 4.3.0, and stable branches to next minor version
[552471dd34](https://github.com/dcache/dcache/commit/552471dd34ddf98e0680d71e73dea63eba11c694)
: dcache-core: improve error message for inexistent statistics path
[298769c978](https://github.com/dcache/dcache/commit/298769c97888094235e38ba34f8ff93fb53b6ec8)
: [maven-release-plugin] prepare for next development iteration
### Changelog 7.0.33..7.0.34
<!-- git log 7.0.33..7.0.34 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[cb62fd12e7](https://github.com/dcache/dcache/commit/cb62fd12e73ae742801461972bff4c1f5f388b69)
: [maven-release-plugin] prepare release 7.0.34
[c45cb04006](https://github.com/dcache/dcache/commit/c45cb04006aad3dc64460caba010ec24052fd1bc)
: dcache:improve documentation for kafka properties
[4d87218ff8](https://github.com/dcache/dcache/commit/4d87218ff82d6800f03a4df0016f3a9263592f65)
: dcache-xroot: update master xrootd4j to 4.3.0, and stable branches to next minor version
[552471dd34](https://github.com/dcache/dcache/commit/552471dd34ddf98e0680d71e73dea63eba11c694)
: dcache-core: improve error message for inexistent statistics path
[298769c978](https://github.com/dcache/dcache/commit/298769c97888094235e38ba34f8ff93fb53b6ec8)
: [maven-release-plugin] prepare for next development iteration
<!-- git log 8.0.5..8.0.6 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[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 7.0.33
Technical release
## Release 7.0.32
### pnfsmanager
Doors no longer allow a user to discover whether or not a file or
directory exists within directories they cannot access.
### pom
Updated spring libs to version 5.2.20, CVE-2022-22965
### Changelog 7.0.31..7.0.32
<!-- git log 7.0.31..7.0.32 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[c67b0e6580](https://github.com/dcache/dcache/commit/c67b0e6580994a87985a95319b13b0af9625ed83)
: [maven-release-plugin] prepare release 7.0.32
[868b62ae65](https://github.com/dcache/dcache/commit/868b62ae65550d4d474a4bd6edef89a3d7156afa)
: pnfsmanager: avoid leaking whether or not file exists
[2315a76d2b](https://github.com/dcache/dcache/commit/2315a76d2bbbf887531ae2906c05d321a7455da2)
: pom: update spring libs to 5.2.20
[87b83d7d02](https://github.com/dcache/dcache/commit/87b83d7d02b89581e49dfa06c33f7a0c9116f571)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.31
### dcache-chimera
Cleaner batch delete exception has been fixed.
### frontend
A bug is fixed that inverted the property `frontend.srr.public=true`.
True means now `allow public access` and false does not.
### Changelog 7.0.30..7.0.31
<!-- git log 7.0.30..7.0.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[9fb85efcf1](https://github.com/dcache/dcache/commit/9fb85efcf1a6cc0df54c6b1c5dabf67c9e27a22c)
: [maven-release-plugin] prepare release 7.0.31
[df44d5232f](https://github.com/dcache/dcache/commit/df44d5232f2360e070454f2db0071356afd9e2d8)
: nearline-storage: fix request count on error path in AbstractRequest#failed
[cdf0801f74](https://github.com/dcache/dcache/commit/cdf0801f74392c59a5e1a59c63695b21c9ad0918)
: nearline-storage: fix queued count when request initialization falied
[049d0e87ba](https://github.com/dcache/dcache/commit/049d0e87ba3665656548e140c160fa1b11caa621)
: pool: add bunch of unit tests for NearlineStorageHandlerTest
[ee21055a2b](https://github.com/dcache/dcache/commit/ee21055a2b115a6e9a80be2934603ea9cf4ca275)
: frontend: fix problem with making SRR resources public
[1ac59ba001](https://github.com/dcache/dcache/commit/1ac59ba001c2216d39c9a1f71566910612aa3539)
: dcache-chimera: fix cleaner batch delete exception
[e5ce5ff260](https://github.com/dcache/dcache/commit/e5ce5ff26001ba7d515e204c08386771f15b882f)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.31
### dcache-chimera
Cleaner batch delete exception has been fixed.
### frontend
A bug is fixed that inverted the property `frontend.srr.public=true`.
True means now `allow public access` and false does not.
### Changelog 7.0.30..7.0.31
<!-- git log 7.0.30..7.0.31 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[9fb85efcf1](https://github.com/dcache/dcache/commit/9fb85efcf1a6cc0df54c6b1c5dabf67c9e27a22c)
: [maven-release-plugin] prepare release 7.0.31
[df44d5232f](https://github.com/dcache/dcache/commit/df44d5232f2360e070454f2db0071356afd9e2d8)
: nearline-storage: fix request count on error path in AbstractRequest#failed
[cdf0801f74](https://github.com/dcache/dcache/commit/cdf0801f74392c59a5e1a59c63695b21c9ad0918)
: nearline-storage: fix queued count when request initialization falied
[049d0e87ba](https://github.com/dcache/dcache/commit/049d0e87ba3665656548e140c160fa1b11caa621)
: pool: add bunch of unit tests for NearlineStorageHandlerTest
[ee21055a2b](https://github.com/dcache/dcache/commit/ee21055a2b115a6e9a80be2934603ea9cf4ca275)
: frontend: fix problem with making SRR resources public
[1ac59ba001](https://github.com/dcache/dcache/commit/1ac59ba001c2216d39c9a1f71566910612aa3539)
: dcache-chimera: fix cleaner batch delete exception
[e5ce5ff260](https://github.com/dcache/dcache/commit/e5ce5ff26001ba7d515e204c08386771f15b882f)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.30
### frontend
The property `frontend.srr.public=true|false` is added to
frontend to control SRR resource restriction. The default
value is false.
### ftp
The FTP cell is killed asynchronously now after the session terminates
so the door will remain responsive when many clients terminate their
FTP session concurrently.
### pool
HTTP-TPC transfers now prefer IPv6 address, if both endpoints support
it.
### Changelog 7.0.29..7.0.30
<!-- git log 7.0.29..7.0.30 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[7b72e83c8c](https://github.com/dcache/dcache/commit/7b72e83c8c812d6259e0bbde462fdf1c308f7ffa)
: [maven-release-plugin] prepare release 7.0.30
[7b629782bf](https://github.com/dcache/dcache/commit/7b629782bfec45ce14152db63dc5419d274dae0c)
: frontend: make srr resources public
[9bc70f0c37](https://github.com/dcache/dcache/commit/9bc70f0c37fb880c53eb7209b69c2ba3143d2ad8)
: ftp: kill cell asynchronously
[ac537a3d75](https://github.com/dcache/dcache/commit/ac537a3d75794b2786e5246cef4e66619f687f12)
: pool: http-tpc prefer IPv6 address
[775f297c91](https://github.com/dcache/dcache/commit/775f297c918920b56fcc0fff686650ef8b3ef3c3)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.29
### common
A bug was fixed where dCache will no longer accept certificates issued by a
trusted CA after that CA updates their CA certificate while keeping the
public/private key-pair the same. This is typically done to change
something in CA's certificate.
There are places where dCache configuration requires an absolute path.
In some places attempting to use a relative path will yield an unhepful
`null` in the log file. This is now fixed, so a meaningful error
message is logged instead.
### pool
An NPE on attempt by client to read from a broken replica is fixed now.
### webdav
The current release fixed handling of `webdav.authz.allowed-paths` so it no longer triggers a
NullPointerException.
### Changelog 7.0.28..7.0.29
<!-- git log 7.0.28..7.0.29 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[e78e047486](https://github.com/dcache/dcache/commit/e78e0474868eea2c93e8d8cafbfcac60f3051b64)
: [maven-release-plugin] prepare release 7.0.29
[f0473acaeb](https://github.com/dcache/dcache/commit/f0473acaebfe10bc117b25d7b0dd30fbea6192a9)
: pool: fix NPE on attempt by client to read from a broken replica
[b5d6ffefc2](https://github.com/dcache/dcache/commit/b5d6ffefc2dc63e6066024653684526619314c57)
: webdav: fix NPE if 'webdav.authz.allowed-paths' disallows a request
[e1abc5ba77](https://github.com/dcache/dcache/commit/e1abc5ba771875ba6354e0aa2200fda9d80dc13f)
: libraries: upgrade version of canl
[dba6c0d781](https://github.com/dcache/dcache/commit/dba6c0d78133ab11c943ccbb2198fe4e274602a4)
: common: provide reasonable error message if path is not absolute
[f38e28bedb](https://github.com/dcache/dcache/commit/f38e28bedb19fea987cd07684a3533fbf6a30bbd)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.28
### Pool
The current relase fixed a problem where a file's tape location that used to exist in the
namespace and was subsequently removed can reappear if the file made
precious and flushed to tape.
### TransferManager
TransferManager now logs bugs with the corresponding stack-trace,
making fixes any such bug easier.
### Changelog 7.0.27..7.0.28
[b9244d1ec5](https://github.com/dcache/dcache/commit/b9244d1ec58ee5e27fbb0d8221852b1d76f5f4c4)
: [maven-release-plugin] prepare release 7.0.28
[374874d77e](https://github.com/dcache/dcache/commit/374874d77e2038c89c8c790323632c816bf42563)
: pool: only send new URLs when flushing file
[690a60c4d8](https://github.com/dcache/dcache/commit/690a60c4d80afe0d695f13a00b71b09583e88740)
: TransferManager: log bugs with corresponding stack-trace
[a6d480d918](https://github.com/dcache/dcache/commit/a6d480d918492b928ab46ed318bcbc5e2faee2e3)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.27
### gplazma
dCache will now reject WLCG-AuthZ-JWT profile tokens with a 'wlcg.ver'
claim that it does not support. Other tokens (e.g., SciTokens) are
unaffected by this change.
### loginbroker
This patch fixes SRM based upload or download where the client requests an
xroot-based transfer. The SRM door will now also consider any xroot
door with xrootd.security.tls.mode configured to OPTIONAL when
building a TURL targeting either xroot or xroots protocols.
### pnfsmanager
PnfsManager now has two commands, 'reset chimera stats' and 'reset stats',
to support resetting the gauge and counter statistics available through
the 'info' command.
dCache no longer leaks information about whether or not files exist when
using macaroons or Scitokens / WLCG AuthZ JWT profile tokens.
### webdav
The WebDAV door cannot send the HTTP response to some HTTP request if
the client has already disconnected. dCache no longer logs an error
that it cannot send the HTTP response.
A client that disconnects during a proxied HTTP transfer (GET or PUT) is
no longer logged in the WebDAV door's log file; instead, it is logged in
the cell's pinboard. The billing message is updated to make it clearer
what went wrong.
### Changelog 7.0.26..7.0.27
<!-- git log 7.0.26..7.0.27 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[00946f48ce](https://github.com/dcache/dcache/commit/00946f48ceb8ed42280a37d81fe1f2be586e2098)
: [maven-release-plugin] prepare release 7.0.27
[4408f186a3](https://github.com/dcache/dcache/commit/4408f186a30b39c7f210823edf5f33ed6d4638b9)
: skel: bump logback to 1.2.10
[3a483f0b57](https://github.com/dcache/dcache/commit/3a483f0b5753d3b88c0035b562aec6297d79858f)
: pnfsmanager: add support for resetting gauge and counter statistics
[14a4bd0fc3](https://github.com/dcache/dcache/commit/14a4bd0fc33c032a03c88f4764cdff214b3d4c5b)
: loginbroker: add support for multiple protocol families
[5f3eaec55e](https://github.com/dcache/dcache/commit/5f3eaec55ef504b2a41379d8c59833c19a6d5951)
: webdav: better logging if client disconnects during proxied transfer
[b7c6fd0b5c](https://github.com/dcache/dcache/commit/b7c6fd0b5ceb371d2bd698296f4124068cefec3f)
: webdav: don't log an error if client disconnects before response sent
[1be1b15e39](https://github.com/dcache/dcache/commit/1be1b15e39221e2b2baf465a86a1e951a5865555)
: PnfsManager: check restrictions before resolving path to PNFS-ID
[082c8dac41](https://github.com/dcache/dcache/commit/082c8dac41df7827fb0b0187aed32b5c21bae781)
: gplazma: scitoken validate 'wlcg.ver' claim
[2554063b6e](https://github.com/dcache/dcache/commit/2554063b6e5e8811b4efa874a1344ba6ab5dd6e9)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.26
### common-security
A better error message is logged when attempting to use a password-protected credential:
`java.io.IOException: Error decrypting private key: the password is incorrect or the PEM data is corrupted.`
### pool
This patch introduces the flag `-noheader` for use with `rep ls -s`
that produces output similiar to what we used to see in previous
dCache releases. In addition, a bug is fixed that prevented printing
of precious and sticky file counts.
### webdav
The HTTP-TPC should have fewer failed transfers when faced with many
short-lived transfers.
It's now possible to access a summary of HTTP-TPC transfers and
configuration information via the WebDAV door's info admin command.
### Changelog 7.0.25..7.0.26
<!-- git log 7.0.25..7.0.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[668e8e308b](https://github.com/dcache/dcache/commit/668e8e308be97553318bbebc46d0cf0c2506c85d)
: [maven-release-plugin] prepare release 7.0.26
[db29849a38](https://github.com/dcache/dcache/commit/db29849a38422785c84f96921e01008f5de2e7e9)
: common-security: prevent NPE on password protected cert
[be4b78ee00](https://github.com/dcache/dcache/commit/be4b78ee00088a040d98e23dfcb1330f0d08f184)
: webdav: http-tpc update heuristics for failing transfer
[76afc8b04f](https://github.com/dcache/dcache/commit/76afc8b04f10324b3936c84ab335aa2548347ae4)
: Remove double whitespaces
[915588d535](https://github.com/dcache/dcache/commit/915588d535be0ff3b58f9019b3690c1bd358c4a4)
: webdav: http-tpc provide status information in 'info' admin command
[b01928e780](https://github.com/dcache/dcache/commit/b01928e7802775969dfd84016d560d6e6c01129c)
: pool: fix rep ls formating
[f722aa856e](https://github.com/dcache/dcache/commit/f722aa856e5da1932c2bcbb75f521176de2dd456)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.25
### dcache
The RemoteTransferManager now better describes the current state of a
transfer.
### gplazma
The `scitoken` gplazma plugin now supports extracting the `sub` and
`wlcg.groups` claims in the same fashion as the `oidc` plugin.
### pool
The current release fixed open queue flag when template defined by queue define class.
The current release fixed open queue flag when template defined by `queue define class` issue.
### webdav
The WebDAV door's `http-tpc ls` command now has the possibility to show
the current state of the transfer. This may be useful diagnosing
transfers spending a lot of time deciding on which pool to transfer
should take place.
### Changelog 7.0.24..7.0.25
<!-- git log 7.0.24..7.0.25 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[8e889089d1](https://github.com/dcache/dcache/commit/8e889089d1ea7e8335fa28aa1adf4ebbf1812e84)
: [maven-release-plugin] prepare release 7.0.25
[51675a94fc](https://github.com/dcache/dcache/commit/51675a94fc64a28c4eea22e264728df8e7117b49)
: RemoteTransferManager: update state description
[8072e370a2](https://github.com/dcache/dcache/commit/8072e370a2c6c21025dc3d715e682d4fe215686e)
: webdav: http-tpc add "prep" duration to 'http-tpc ls' command
[220c264298](https://github.com/dcache/dcache/commit/220c264298220d9973b608ebdec6afa34a5680c9)
: webdav: http-tpc show whether transfer is queued on pool
[ca8c6ac8f8](https://github.com/dcache/dcache/commit/ca8c6ac8f89d6a50e51baa36ddd3b5b003944679)
: webdav: http-tpc update 'http-tpc ls' command to include state
[769a52b335](https://github.com/dcache/dcache/commit/769a52b33543e8c9d5ec14dd97dfede0b2f2c247)
: glazma: scitoken add support for additional principals
[7d55df2eba](https://github.com/dcache/dcache/commit/7d55df2eba089b1d98dc3224de3813f1b7cf79ea)
: srr: limit publisched endpoints to GLOBAL scope
[0c77844e8d](https://github.com/dcache/dcache/commit/0c77844e8da53f6b92bbf7748f832578039ef609)
: Revert "frontend: fix handling of SRR requests over IPv6"
[b4270dce77](https://github.com/dcache/dcache/commit/b4270dce777be9c3b8bf39908e51d10dae9cd17c)
: pool: adjust StorageClassContainerTest for dcache pre- 7.1
[4630b7de82](https://github.com/dcache/dcache/commit/4630b7de824e74a1d29e570707a1037ef12d6ca9)
: pool: fix open queue flag when template defined by `queue define class`
[7b401f1792](https://github.com/dcache/dcache/commit/7b401f17922bdd716b34d41b1431d4141db0e550)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.24
### dcache-core
The current release fixed NPE in TransferManager when no pool was selected before transfer is cancelled.
### frontend
The current release fixed handling of SRR requests over IPv6.
### gplazma
The scitoken plugin now supports OPs that publish their public keys
without any corresponding ID (i.e., no kid value).
### nfsv
nfs can write into space reservations now.
### pinmanager
A more detailed pinmanager log entry is provided for pin requests that
are caught in a retry loop, and eventually time out.
### resilience
A runtime exception triggered by side effect of logging has been fixed.
### storagedescriptor
The script for generating SRR records (from the info service output) has
been updated. The field `lastupdated` has been adjusted to the correct
name `latestupdate`.
### webdav
A bug is fixed where HTTP-TPC PULL request can fail (under heavy load)
with the downloaded file being deleted, but dCache reports the transfer
as successful.
dCache now provides a faster respones to the HTTP-TPC client (typically FTS)
should the door decide to fail a transfer.
The WebDAV door should be now faster at accepting new transfers and faster
at handling transfer completions when handling many small transfers.
The HTTP-TPC support in the WebDAV door is now e more robust to high
number of transfers finishing concurrently.
### xroot
Now it is possible to support kXR_delete as a write request on the pool.
### xrootd4j
Library updates for xrootd4j which contains fix for Unix Protocol.
### Changelog 7.0.23..7.0.24
<!-- git log 7.0.23..7.0.24 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[84a64622d3](https://github.com/dcache/dcache/commit/84a64622d345459dd6431bfca62b20a18d2bb390)
: [maven-release-plugin] prepare release 7.0.24
[0cde68a7d5](https://github.com/dcache/dcache/commit/0cde68a7d5d722ae9b20f5c379597fc97b68c868)
: webdav: http-tpc improve throughput with short transfers
[146e3eff6b](https://github.com/dcache/dcache/commit/146e3eff6b4636733af2c13c32507ce0b2ea14a1)
: frontend: fix handling of SRR requests over IPv6
[6f3de19fc6](https://github.com/dcache/dcache/commit/6f3de19fc6460a59e1f3649d4375a60e0e91b0bb)
: webdav: http-tpc don't wait if door fails transfer
[8553f3cd86](https://github.com/dcache/dcache/commit/8553f3cd8617063bf5db74462cecbc3e65d93623)
: webdav: http-tpc avoid resetting transfer state
[faa5c5c0c9](https://github.com/dcache/dcache/commit/faa5c5c0c9258c3633305c9ed1717b4b2498f234)
: dcache-core: fix NPE in TransferManager when no pool was selected before transfer is cancelled
[1de238b324](https://github.com/dcache/dcache/commit/1de238b324787ff006a9f4311257928a2a24001c)
: resilience: fix runtime exception triggered by side effect of logging
[523bc1947c](https://github.com/dcache/dcache/commit/523bc1947cc349cf163746bffb2c72dd9ad781b7)
: gplazma: scitoken add support for OPs that advertise keys without kid
[4994fae87b](https://github.com/dcache/dcache/commit/4994fae87bd475f2916058dc021b222ecc512147)
: nfsv: convert UnixNumericXxxPrincipal into dCache analogs
[4d1f3859e4](https://github.com/dcache/dcache/commit/4d1f3859e43c3043e02ce21105dec6feda083ccc)
: webdav: http-tpc move transfer finalisation off of message queue
[6fcb288fef](https://github.com/dcache/dcache/commit/6fcb288fef3bf436f441d7842cc3b76add4455d0)
: pom.xml: update xrootd4j dependencies to 4.2.5/4.1.6/4.0.11
[1efccdb8bd](https://github.com/dcache/dcache/commit/1efccdb8bdeca82893f862e0aadbf88e3e9fc35e)
: CanlContextFactory: throw FileNotFound for missing ca certs dir
[8fa5f54f32](https://github.com/dcache/dcache/commit/8fa5f54f32c5c841700d83550e922973ccf4df1d)
: pinmanager: provide more details information on timeout
[be6acb3727](https://github.com/dcache/dcache/commit/be6acb3727565349d11a88e3b4091d4f66f8df4f)
: storagedescriptor: fix element name to 'latestupdate'
[617ce6874c](https://github.com/dcache/dcache/commit/617ce6874cd3718c47410fff4b3d77db40d1c50c)
: dcache-xroot: support kXR_delete as a write request on the pool
[f3fc267df1](https://github.com/dcache/dcache/commit/f3fc267df1379db8e16dc011989d7b778c7550ac)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.23
### ftp
The FTP door now provides more succinct information on pinboard, should
use less CPU and take better advantage of the available cores.
### pnfsmanager
Attempts to create a file where the parent directory is either missing
or not a directory now provide clearer error messages.
### pool
The pool now provides more information for bugs reported as
java.lang.IllegalStateException: Handle is closed.
### webdav
The HTTP-TPC response is improved if a client attempts to pull a file
into a non-existing directory, or attempts to use an existing file as an
ancestor directory.
### xrootd
Improved exception handling for Xrootd.
### Changelog 7.0.22..7.0.23
<!-- git log 7.0.22..7.0.23 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[ce7aabc449](https://github.com/dcache/dcache/commit/ce7aabc44979a55145dc0042c167372cefa91a98)
: [maven-release-plugin] prepare release 7.0.23
[104e7a6df6](https://github.com/dcache/dcache/commit/104e7a6df6e76972a3823d415f9f5360b8d537ed)
: dcache-frontend: support different attribute styles for bulk request
[10c3f64e23](https://github.com/dcache/dcache/commit/10c3f64e234dfe9eebb26e774ae798441f347c6a)
: pool: provide more information when handle is double-closed
[8e6dded13b](https://github.com/dcache/dcache/commit/8e6dded13b7f6b99b27f8799223fb07bcc4bef0a)
: dcache-xrootd: Alternate fix for client write to closed checksum channel
[f57cf49e7c](https://github.com/dcache/dcache/commit/f57cf49e7c589917ad79e566c671a617dff7e732)
: pnfsmanager: fix confusing error message.
[56f0bfc7f8](https://github.com/dcache/dcache/commit/56f0bfc7f8f640f30f5b184aca5da95e05835ada)
: webdav: fix error handling for bad paths
[0cd25c99d7](https://github.com/dcache/dcache/commit/0cd25c99d7f91b6523ba65bc29492d9e3e8b949c)
: ftp: switch to more reasonable logging of Subject
[03c699c7ab](https://github.com/dcache/dcache/commit/03c699c7ab4e5b2d198bbe72681e1a5ee3cc3cef)
: [maven-release-plugin] prepare for next development iteration
## Release 7.0.22
### chimera
A bug is fixed that triggered downstream errors when getUid() is called.
### universal-spring-cell
This patch fixes a problem where a call to api/PoolManager returned 404