-
Notifications
You must be signed in to change notification settings - Fork 3
/
release-notes-9.0
2204 lines (1398 loc) · 93.4 KB
/
release-notes-9.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 9.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 9.0<br/>
<small>Release notes</small></h1>
</div>
## Highlights
- dCache now supports Java 17 as its platform
## Incompatibilities
- the `cleaner` service, originally a single cell, now consists of two parts: one cell for disk cleaning (`cleaner-disk`), one for hsm
cleaning (`cleaner-hsm`)
- DCAP and NFS doors will fail the request if file's storage unit is not configured in PoolManager
- linklocal and localhost interfaces are not published by doors and pools
- DCAP movers always start in `passive` mode
- removed experimental message encoding format
- removed default HSM operation timeout
- With version 9.0.24+, empty and non-existent banfiles will be treated the same
## Release 9.0.26
### ci
CI pipeline improvements.
### dependencies
Update build dependency to be compatible with modern tools.
### Changelog 9.0.25..9.0.26
<!-- git log 9.0.25..9.0.26 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[d238308384](https://github.com/dcache/dcache/commit/d238308384bd32d08c71fd274a5e596bf40cff03)
: [maven-release-plugin] prepare release 9.0.26
[56acff9750](https://github.com/dcache/dcache/commit/56acff9750911a7deefff339c67749eb34e6d61c)
: dependencies: update modernizer plugin to be compatible with maven 3.9
[93b95e3a9f](https://github.com/dcache/dcache/commit/93b95e3a9fc71ac8b6c5a9e76ca90efbb0a09578)
: ci: add property to control upload options
[6ebc3eea28](https://github.com/dcache/dcache/commit/6ebc3eea28b1ad5ea290c2f764a600ee95d72c61)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.25
### chimera
Fixed a bug that made it possible to create a loop on directory move.
### Changelog 9.0.24..9.0.25
<!-- git log 9.0.24..9.0.25 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[4c73ad6598](https://github.com/dcache/dcache/commit/4c73ad6598495d4cfaf9e84d792ab2f94f4ab8a7)
: [maven-release-plugin] prepare release 9.0.25
[383de0d3d7](https://github.com/dcache/dcache/commit/383de0d3d7fc1b7dd76c370c1e4a4d9e8e5abac9)
: chimera: fix loop creation on directory move
[32c778ea93](https://github.com/dcache/dcache/commit/32c778ea93b9098af59f1e369813b4aaef911851)
: ci: drop --ftp-create-dirs option (as we switch to https)
[d213a956a4](https://github.com/dcache/dcache/commit/d213a956a400a99166cda230c80a160137a0279a)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.24
### gplazma
Previously, a missing banfile would result in every successive login attempt failing with an NPE. Now, even if configured, an empty or inexistent banfile will be ignored and logins should succeed.
WARNING: This changes the banfile plugin behaviour! Empty and non-existent banfiles will be treated the same.
### Changelog 9.0.23..9.0.24
<!-- git log 9.0.23..9.0.24 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[594a5ecedf](https://github.com/dcache/dcache/commit/594a5ecedfe4c25ab2d05b8d1d7244c358dda5b6)
: [maven-release-plugin] prepare release 9.0.24
[f2a60a3e70](https://github.com/dcache/dcache/commit/f2a60a3e709dfbfc69a776d7a2e1063e440f5076)
: Fix unit test for commit 6b47354
[b7bd246cff](https://github.com/dcache/dcache/commit/b7bd246cff86cdae9fa489bb872507aa1737ce28)
: gplazma: configured banfile plugin should ignore non-existent ban file
[1accfd13f3](https://github.com/dcache/dcache/commit/1accfd13f3d0d20de8b57d92f0b85d5ed3fccbf8)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.23
### cleaner-disk
No more occasional ConcurrentHashMap exceptions in cleaner-disk
runs due to concurrent pool status changes.
### xroot
Regression eliminated, previous behavior with anonymous read restored.
Fixes previous fix for xroot descriptor: NPE risk mitigated.
### Changelog 9.0.22..9.0.23
<!-- git log 9.0.22..9.0.23 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[5b9380c05f](https://github.com/dcache/dcache/commit/5b9380c05fbb032dc9edb809b72ae14edd593f05)
: [maven-release-plugin] prepare release 9.0.23
[befcb48a10](https://github.com/dcache/dcache/commit/befcb48a10a8287a51e4dd5e9f5bc16885b54cbe)
: dcache-xroot: check that descriptor is not null before calling close -- fix
[68dbc75d77](https://github.com/dcache/dcache/commit/68dbc75d77371a412605f13c92edc434a5457b4a)
: dcache-xroot: check that descriptor is not null before calling close
[d412c22478](https://github.com/dcache/dcache/commit/d412c224782a7f5fa52edef0c8a57fb475c3e933)
: cleaner-disk: prevent ConcurrentModificationException in cleaning run
[a70934f17f](https://github.com/dcache/dcache/commit/a70934f17f35d2079149d55535ff9b4d2b0ba298)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.22
### dependencies
The MongoDB driver was updated. This might lead to different log messages.
### Changelog 9.0.21..9.0.22
<!-- git log 9.0.21..9.0.22 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[5ee504f4d6](https://github.com/dcache/dcache/commit/5ee504f4d6ba75708783ccf83da4487d98dbb6de)
: [maven-release-plugin] prepare release 9.0.22
[64b2b72b61](https://github.com/dcache/dcache/commit/64b2b72b611a05f5b5dc9932b4e3e43b6c14b1a9)
: pom: Update mongodb-driver
[c036f17312](https://github.com/dcache/dcache/commit/c036f17312f0c2ffd4bb18ccc4605610502112c7)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.21
### bulk
The current releae fixed handling of uncaught exception during perform.
### Changelog 9.0.20..9.0.21
<!-- git log 9.0.20..9.0.21 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[9df360ef99](https://github.com/dcache/dcache/commit/9df360ef9975a20024f78c5e4d1707736060c220)
: [maven-release-plugin] prepare release 9.0.21
[9d3295b813](https://github.com/dcache/dcache/commit/9d3295b813576fb3ad41ee3c4809d196364fb6ac)
: dcache-frontend,common: check parsing of Duration in STAGE
[2e559affff](https://github.com/dcache/dcache/commit/2e559affff5ec9ee8f941b8b0fbb1551f705d7be)
: dcache-bulk: fix handling of uncaught exception during perform
[46b687f78a](https://github.com/dcache/dcache/commit/46b687f78ad8e043fb3f9061718dae875b4884d8)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.20
### webdav
The urls similar to this `https://door.domain.foo:1234//pnfs/domain.foo/path/to/file`
were strip into `/domain.foo/path/to/file`.
The current release fixed the parsing of urls with two slashes in the path.
### Changelog 9.0.19..9.0.20
<!-- git log 9.0.19..9.0.20 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[73cb1abb7c](https://github.com/dcache/dcache/commit/73cb1abb7c580a731e4c26cc4af2d8e7f211fa70)
: [maven-release-plugin] prepare release 9.0.20
[6bc9c4f656](https://github.com/dcache/dcache/commit/6bc9c4f656e55999ba1e7106b299c760e9bbc67f)
: webdav: fix infinite recursion in Requests.stripToPath
[b94b640a97](https://github.com/dcache/dcache/commit/b94b640a978dbf83145d0640f9e322f10d1ac556)
: webdav: fix parsing of urls with two slashes in the path
[9d6944931a](https://github.com/dcache/dcache/commit/9d6944931a68d0879ccd6c4b4f901ccfb663a86f)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.19
### door
Exception handling is improuved for Kafka.
### oidc
`Storgae scopes` without path will be rejected now.
### Changelog 9.0.18..9.0.19
<!-- git log 9.0.18..9.0.19 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[3fe7dde81a](https://github.com/dcache/dcache/commit/3fe7dde81a12d03f635d4dd0106b367478c62dda)
: [maven-release-plugin] prepare release 9.0.19
[cf53c01c2a](https://github.com/dcache/dcache/commit/cf53c01c2aef93497741c159532f23cf573b2f54)
: oidc: fix remove invalid testcase
[63aca37fa0](https://github.com/dcache/dcache/commit/63aca37fa073736d8e6f36c42eb465e7a3cb441e)
: oidc: reject storage scopes without path
[e2e61d73c1](https://github.com/dcache/dcache/commit/e2e61d73c1ce54865b721f2827d27e07ee582ee3)
: door,pool: handle multiple possible KafkaExceptions
[40bf212e34](https://github.com/dcache/dcache/commit/40bf212e3458cec9423c398c98dfd44f02cdabfe)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.18
### webdav
This patch fixes a bug that led to wrong paths on redirects.
### Changelog 9.0.17..9.0.18
<!-- git log 9.0.17..9.0.18 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[e6ff5edbbf](https://github.com/dcache/dcache/commit/e6ff5edbbfc81c260ffaa48b457e237bdd0fef9c)
: [maven-release-plugin] prepare release 9.0.18
[915bfaf407](https://github.com/dcache/dcache/commit/915bfaf407033807e26e2a89c70ed1f30cb764bc)
: dcache-qos: correction to the threshold warning
[25bf9b2ae8](https://github.com/dcache/dcache/commit/25bf9b2ae8233cf691bfbe16d1b1fa35b89858cf)
: wevdav: fix redirect path
[1b3f229da3](https://github.com/dcache/dcache/commit/1b3f229da3db6df191e17900a80be2d710857aac)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.17
### bulk
No more NPE/stack trace in the bulk `PIN` activity.
Online files should not accumulate useless user pins anymore.
### cli
No more false stack trace/bug output on the admin shell.
### gplazma
dCache will now accept non-targeted explicit AuthZ statements in the scope claim (e.g., storage.read). dCache will consider tokens containing compute explicit AuthZ statements but without any storage explicit AuthZ statements as tokens with explicit authorisation; the lack of any storage explicit authorisation statements will result in all requests with that token being denied.
dCache should continue to accept JWTs for longer, if there is a problem with the OP.
### pool
No more logged stack traces due to IllegalStateException: Attribute is not defined: SIZE errors.
### Changelog 9.0.16..9.0.17
<!-- git log 9.0.16..9.0.17 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[9b8aa4d839](https://github.com/dcache/dcache/commit/9b8aa4d83941d01c245bdef57baffa6592b093f7)
: [maven-release-plugin] prepare release 9.0.17
[427cbbf201](https://github.com/dcache/dcache/commit/427cbbf2016f17c46d72aac10fd267df1d22dada)
: dcache-bulk: do not PIN or STAGE files with AL ONLINE
[bfb8d25092](https://github.com/dcache/dcache/commit/bfb8d2509259ee112f51171035e19e17ee887f7d)
: dcache-bulk: guard against erroneous argument names
[bea4ad38ea](https://github.com/dcache/dcache/commit/bea4ad38eadc9e8ecb9e47a3cbe8ca551cae9bde)
: pool: on failed upload set file size to zero for space reporting
[13c53cdd6d](https://github.com/dcache/dcache/commit/13c53cdd6dc41de3097e34f2337ffd7af2a11221)
: dcache-cli: convert IllegalArgumentException to CommandException on call()
[b124873c19](https://github.com/dcache/dcache/commit/b124873c19f547d253f707280db48b6e55f53b01)
: gplazma: oidc increase cache duration for OP public key material
[f543d709f9](https://github.com/dcache/dcache/commit/f543d709f99614b7e86397645fee6a55bb45e316)
: gplazma: oidc update explicit AuthZ parsing
[c2c4327779](https://github.com/dcache/dcache/commit/c2c43277793fd11a2f50079248dfd39becf0b911)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.16
### packages
A problem was fixed that prevented `system-test` to run on MacOS.
### webdav
This patch reverts the efficiency improvement of the last patch as it may lead
to failing requests if set to PERFORMANCE.
### Changelog 9.0.15..9.0.16
<!-- git log 9.0.15..9.0.16 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[c1e38ba5be](https://github.com/dcache/dcache/commit/c1e38ba5beaf112ff5f8547efdbc3397576ee712)
: [maven-release-plugin] prepare release 9.0.16
[bf2140b95c](https://github.com/dcache/dcache/commit/bf2140b95c52d7b232dc2e883080faa118896058)
: packages: fix system test populate sed expression
[fc344605b0](https://github.com/dcache/dcache/commit/fc344605b0d83f38c01b4b0f19afa91b168849e1)
: dcache-webdav: revert improve efficiency of directory listing (14085/14088)
[a6ec880729](https://github.com/dcache/dcache/commit/a6ec88072967f5996777f7d047180f1e2657ea26)
: doc: clean up the multiple protocol configuration explanation for xroot
[205c735df3](https://github.com/dcache/dcache/commit/205c735df38f83204c5a548dd18411aa405293a2)
: ci: pin all jobs to dcache-dev runners (temporary)
[fcf6c836b9](https://github.com/dcache/dcache/commit/fcf6c836b9c2016b3d6e98de170afc4760a0ed25)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.15
### logback
Redundant replications of unused log files are removed and the qos activity is now recorded as well.
### qos
A bug was fixed that let to the message queue being blocked.
### webdav
This patch speeds up listing of directories through webdav.
All attributes are no longer supported/returned from PROPFIND, unless you set the following property on the WebDav door:
```
# --- Default PROPFIND properties
#
# The PROPFIND request allows a client to discover information
# (properties) of dCache content. When making a PROPFIND request,
# the client normally indicates which properties are of interest. If
# not specified then the WebDAV server (dCache) is free to return a
# default set of information.
#
# Certain clients make PROPFIND requests without specifying
# the desired set of properties, triggering a default set of
# properties. There are two problems with this: first, the
# clients may react badly if information is missing from this default;
# second, some of the required properties may have an adverse
# performance impact for dCache.
#
# This property controls whether to support client-side requests for
# properties beyond a minimal set or not.
#
# PERFORMANCE -- always return only a minimal set of information that does
# not incur any additional overhead. (These are basically
# the same as what a POSIX list request would proviode).
#
# CLIENT_COMPATIBLE -- return the set of information required by
# the clients. If the client does not specify the properties,
# it will get a maximal default set.
#
# Because the performance impact of the latter under the most common usage scenarios
# could be considerable, the default is set to PERFORMANCE.
#
(one-of?PERFORMANCE|CLIENT_COMPATIBLE)webdav.default-propfind-properties = PERFORMANCE
```
### Changelog 9.0.14..9.0.15
<!-- git log 9.0.14..9.0.15 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[91a68c92f7](https://github.com/dcache/dcache/commit/91a68c92f79b9518c2741446266a76545033586b)
: [maven-release-plugin] prepare release 9.0.15
[b3c04bc5cd](https://github.com/dcache/dcache/commit/b3c04bc5cd3f8270d58762eaf3db3cb1068c396a)
: dcache-webdav: fix incorrect parameter value given to DcacheDirectoryResource constructor
[c95ffc5a18](https://github.com/dcache/dcache/commit/c95ffc5a18f3ca4e7b916df5fd367ffcbe6f17f8)
: dcache-webdav: improve efficiency of directory listing
[190474bf02](https://github.com/dcache/dcache/commit/190474bf02d66d313ab2f8163671523d24bb432b)
: dcache-qos,dcache-bulk: allow qos update to call engine asynchronously
[029a753ca3](https://github.com/dcache/dcache/commit/029a753ca330556768dc0251f5e3c0cf4167aad7)
: skel,logback: make the .resilience and .qos log files singletons
[ca24625745](https://github.com/dcache/dcache/commit/ca2462574598dda981c5423f35c18af99fa40635)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.14
### bulk
Each time a bulk request is started, the container is given a new semaphore based on the number of permits defined for the activity in question.
This patch sets the default per-container permit values to something more reasonable.
### Changelog 9.0.13..9.0.14
<!-- git log 9.0.13..9.0.14 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[e82f3e7f67](https://github.com/dcache/dcache/commit/e82f3e7f67fdd3eab8e20daa32da1f1065cf97a9)
: [maven-release-plugin] prepare release 9.0.14
[3c2fed0587](https://github.com/dcache/dcache/commit/3c2fed05877bb51921cd01a2d3cd9816badd990e)
: dcache-bulk: adjust semaphore permits to something more reasonable
[fe7849fa7b](https://github.com/dcache/dcache/commit/fe7849fa7b6a230dc03f1a0c213339e16a30e113)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.13
### dcache-bulk
Changes were recently made to hold statistical
counts of requests and targets in memory for
the sake of efficiency. However, running target
counts are still problematic. This is
especially true if a request is cancelled.
This is now fixed and the `running` count, which can be confusing
and inaccurate, is not longer displayed.
RT 10496: Odd errors in Bulk logs for some requests in 9.1.0
This ticket uncovered a bug in the abort procedure.
The stored targets were not cancelled on abort. this is now fixed.
### dcache-xroot
Improve efficiency of stat list (`ls -l`) has been introduced.
`ls -l` returns in approximately the
same amount of time as a non-stat listing
`ls`.
### xrootd4j
Upgraded to 4.5.8 which improves handling/logging of Ssl exceptions.
### Changelog 9.0.12..9.0.13
<!-- git log 9.0.12..9.0.13 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[b54eec8f54](https://github.com/dcache/dcache/commit/b54eec8f54b2a2ce930df692518a5cf520f9b9b7)
: [maven-release-plugin] prepare release 9.0.13
[b503a1c9f9](https://github.com/dcache/dcache/commit/b503a1c9f96863196b608b1529af70def5a66998)
: docs: fix external link to nfsmapid and DNS TXT Records docs
[8c377d64b1](https://github.com/dcache/dcache/commit/8c377d64b140176db5c7ed573de70b3fe1eea84c)
: dcache-bulk: cancel all stored targets on abort
[bfa9569455](https://github.com/dcache/dcache/commit/bfa9569455af04907371697c0e2748f8f2ab7219)
: dcache-bulk: remove in memory running state counts
[b17e6b15a7](https://github.com/dcache/dcache/commit/b17e6b15a75fe1c477fefc188ee60dc2aa70a8b4)
: common: modify the way the flag on isRestricted works
[ff1889f226](https://github.com/dcache/dcache/commit/ff1889f2267fb947531ace5eb622d02c3a5af110)
: dcache-xroot: improve efficiency of stat list (ls -l)
[162cba0996](https://github.com/dcache/dcache/commit/162cba09967b88866c7124b17b1db8b94325904b)
: pom.xml: upgrade to xrootd4j 4.5.8
[c255444de4](https://github.com/dcache/dcache/commit/c255444de43b86c8a4f06f653b7a1d78922cf68a)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.12
### pnfsmanager
List scheduling behavior is now optional.
`pnfsmanager.enable.parallel-listing` property variable allows to restore previous behavior - listing requests
are dispatched to a single queue that is prrocessed by multiple parallel workers.
dCache admin can change behavior of listing scheduler.
### Changelog 9.0.11..9.0.12
<!-- git log 9.0.11..9.0.12 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[1c4f133766](https://github.com/dcache/dcache/commit/1c4f13376617af8689d46a192655a2235de96b42)
: [maven-release-plugin] prepare release 9.0.12
[e8163995ba](https://github.com/dcache/dcache/commit/e8163995baddae3440419d5d2540c1b3954edb1b)
: pnfsmanager: make list scheduling behavior optional (selectable)
[c0f18dde41](https://github.com/dcache/dcache/commit/c0f18dde41d43267c92ea98a4443b0b6bd82006b)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.11
### gplazma
gPlazma incompatibiliti detween version before and after 8.2.13 has been detected.
This is now fixed.
### pool
If http client issues two GET requests then zero-copy enabled http mover will try to remove the IdleStateHandler
twice and fail with NoSuchElementException.
This is now fixed.
### qos
A bug in storing and retrieving `tried` value for verify operation has been fixed.
### xroot
Modify mkdir to ignore dir exists on make parent option. The result conforms to vanilla xroot server.
### Changelog 9.0.10..9.0.11
<!-- git log 9.0.10..9.0.11 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[6668baca28](https://github.com/dcache/dcache/commit/6668baca28c2e850919131e4f938126dc014c183)
: [maven-release-plugin] prepare release 9.0.11
[1ace470660](https://github.com/dcache/dcache/commit/1ace4706600220b99a1b5d65890c7ec71fd1c901)
: dcache-gplazma: add serialVersionUID to MultiTargetedRestriction
[e2e56d5120](https://github.com/dcache/dcache/commit/e2e56d5120cfb9856905c0fb6b711dbcf34750f9)
: pool: handle double remove of IdleStateHandler
[ce81176547](https://github.com/dcache/dcache/commit/ce81176547dacd4b3962ed067d0cecc2432e7d18)
: add desc to OIDC properties
[5fbfe12412](https://github.com/dcache/dcache/commit/5fbfe124127388a3d7a9a03d7413b77c270291dc)
: dcache-qos: fix bug in storing and retrieving 'tried' value for verify operation
[7abb11cea5](https://github.com/dcache/dcache/commit/7abb11cea50c917c94d8d4c4252abba940cb107d)
: dcache-xroot: modify mkdir to ignore dir exists on make parent option
[167b1040f1](https://github.com/dcache/dcache/commit/167b1040f141fce1cd5fed79015ca8a812e9d5e0)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.10
### vehicles
This patch fixes a bug where an Exception was thrown while handling relative paths in resolve symlink messages.
### Changelog 9.0.9..9.0.10
<!-- git log 9.0.9..9.0.10 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a4f47e76f4](https://github.com/dcache/dcache/commit/a4f47e76f4a721295542f72715f71a8be57d40b6)
: [maven-release-plugin] prepare release 9.0.10
[ee96a529f0](https://github.com/dcache/dcache/commit/ee96a529f014c8e114dc67361b3a0f0a834c9f25)
: dcache-vehicles: fix NPE in resolve symlink message
[2db0433ac9](https://github.com/dcache/dcache/commit/2db0433ac98ff66cd70421a7d8b9705cc3183c5f)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.9
### frontend
If the user root contains a symlink, or the target path contains a symlink pertaining
to the user root, some REST calls to /api/v1/namespace and /api/v1/id failed. This is fixed now.
All of the REST GET methods now allow anonymous
users to get the data if the global property
allows it. In the case of NONE, 401 not authorized
is returned at login.
### nfs
A race condition was fixed that let to sending a READ request to a pool when the mover was alreay stopped.
### qos
The behaviour was changed to not scan all pools on startup or periodic rescanning of all pools outside
the periodic window.
A bug was fixed that prevented the bulk request to complete.
The error reporting of aborted verification was improved to get a better understanding, what went wrong.
### xrootd
A missing vomsdir is now throwing an exception instead of a stacktrace.
### xrootd4j
Update xrootd4j to a new version, that fixes a byte buffer leak in ZTNCredentialUtils.
### Changelog 9.0.8..9.0.9
<!-- git log 9.0.8..9.0.9 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[10b667f296](https://github.com/dcache/dcache/commit/10b667f296a9a7cc9481f5a62a8c4828b4539a43)
: [maven-release-plugin] prepare release 9.0.9
[2a5f1b4696](https://github.com/dcache/dcache/commit/2a5f1b46964f0c7406e788420c202c3972178f15)
: nfs: fix race condition of LAYOUTRETURN and LAYOUTGET
[c1fa09759c](https://github.com/dcache/dcache/commit/c1fa09759c1970f1926d19a8b2b722d544bd39d9)
: xrootd: throw FileNotFoundException if vomsdir doesn't exist
[99a42835c6](https://github.com/dcache/dcache/commit/99a42835c622ce29873507b3a1d03725f5f15a3e)
: dcache-qos: fix adjuster task cloning to reset state
[3d42d5dda2](https://github.com/dcache/dcache/commit/3d42d5dda25c0b00d65751167f9e6c464d2dc5be)
: dcache-qos: improve exception reported on aborted verification
[281893fb3e](https://github.com/dcache/dcache/commit/281893fb3e62f17d6198676afd4b13ddeb40a40d)
: ci: add gitlab-ci.yml
[d3ea78616f](https://github.com/dcache/dcache/commit/d3ea78616f82d8a62b81e7ab6d3959b371d671d5)
: dcache-frontend: add symlink resolution to /api/v1/id GET and /api/v1/namespace
[4175d9b8d3](https://github.com/dcache/dcache/commit/4175d9b8d325a35ae6a86f77d3a1871da2c37bba)
: dcache-frontend: remove authz checks in Quota GET methods
[722dd95a11](https://github.com/dcache/dcache/commit/722dd95a11608399b18aabe1276a2f1b4f212ee7)
: dcache-qos: remove trigger to rescan pools on tag change
[ff448bd04f](https://github.com/dcache/dcache/commit/ff448bd04f1cdd23ea8eb95d0a33b3bda73bd85e)
: Revert "dcache-qos: remove trigger to rescan pools on tag change"
[50de16ccdb](https://github.com/dcache/dcache/commit/50de16ccdb0200d92430e66fb5accd98e2621ed7)
: pom.xml: bump xrootd4j to next version (4.5.7, 4.4.8, 4.3.9, 4.2.13)
[3623752212](https://github.com/dcache/dcache/commit/36237522124b0e53d003d19537399082bd9adafc)
: dcache-qos: remove trigger to rescan pools on tag change
[2c528cf1fd](https://github.com/dcache/dcache/commit/2c528cf1fd3b8d3ad01c040dd4d2644cd9d44a1d)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.8
### bulk
`RuntimeException`s should not cause the `request ls` to fail globally.
### other
Update our citations file.
### pnfs
A modest speed-up of directory listing by not always
resolving symlinks when checking restrictions.
### qos
Two small incompatibilities with subject and attributes are fixed.
Improvements in triggering QoS operation queues, which reduces the
potential for queue starvation.
### Changelog 9.0.7..9.0.8
<!-- git log 9.0.7..9.0.8 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[19b96b7292](https://github.com/dcache/dcache/commit/19b96b72922fbf9003660942cc2260129082aec3)
: [maven-release-plugin] prepare release 9.0.8
[d17307e90d](https://github.com/dcache/dcache/commit/d17307e90de434208325f0e0f4214df865c1a80f)
: dcache-qos(verifier,engine): fix incompatibility issues with Subject and attributes
[ea451f6ab9](https://github.com/dcache/dcache/commit/ea451f6ab95cc687cf61444bd649facc24634c11)
: dcache-bulk: catch Exception from getSubject()
[4c2be1a800](https://github.com/dcache/dcache/commit/4c2be1a8006cd47231953bc352eee16a4b2bfac3)
: dcache-qos: repair faulty queue refresh algorithm in verifier
[bb03f46404](https://github.com/dcache/dcache/commit/bb03f4640474986cb0266d2b6f802f9b45d14377)
: dcache,pnfs: skip symlink resolution when checking restrictions on directory children during listing
[4279f70f7d](https://github.com/dcache/dcache/commit/4279f70f7dca62118ecf25716e7c635f108f2d75)
: Update the CITATION.cff version field and date-released field for dCache 9.0.
[083c99897c](https://github.com/dcache/dcache/commit/083c99897c0fa5c85990ca831084c5491454d36e)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.7
### webdav
Fixes the webdav dropdown menu layout so it stays in the page.
### Changelog 9.0.6..9.0.7
<!-- git log 9.0.6..9.0.7 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[894a847d71](https://github.com/dcache/dcache/commit/894a847d71d7fc60127b0c01ac5d23382f19c7b6)
: [maven-release-plugin] prepare release 9.0.7
[06b0996325](https://github.com/dcache/dcache/commit/06b09963253668aa510214ec2fa070229ba8540e)
: webdav: fix dropdown menu layout
[a20c766669](https://github.com/dcache/dcache/commit/a20c766669f9f3e59dff18d4cbf40a3a8dda9678)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.6
### bulk
Now REST API (Frontend) distinguishes `Not Found` from `Invalid` request.
Double counting of RUNNING targets has been fixed.
### dcache
netty library has been updated to 4.1.92 with minor bugfix release.
### frontend
SWAGGER comments for bulk offset on POST and GET has been updated.
### metadata
No user- or admin observable changes.
### pnfsmanager
Multiple batch jobs executing listings of the same directories especially if directories contain many entries quickly exhaust active threads,
each thread executing the same listing, denying listing to all other customers and creating significant load on namespace server (and DB).
Clients time out and retry creating even more load on dCache.
This is now fixed and lists of large directories no longer hog PnfsManage denying service to all other list calls.
Additionally observed significnat reduction of CPU and IO load on chimera DB host.
### webdav
The current release fixed visual element regression after bootstrap 5 upgrade
### Changelog 9.0.5..9.0.6
<!-- git log 9.0.5..9.0.6 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a4019359d0](https://github.com/dcache/dcache/commit/a4019359d0deb5af1eb2409f91eff54f3de68035)
: [maven-release-plugin] prepare release 9.0.6
[ebf9eeb234](https://github.com/dcache/dcache/commit/ebf9eeb2340e8a8cc97ae8e6fc9e34b5ba322d9c)
: webdav: fix regression of visual elements with bootstrap 5
[37a1f2b958](https://github.com/dcache/dcache/commit/37a1f2b958fe15e6b09b14994c52254239262c7a)
: webdav: fix visual element regression after bootstrap 5 upgrade
[09527224f8](https://github.com/dcache/dcache/commit/09527224f8a0fb4a9e5285395c7a27d5150d0501)
: dcache-frontend: update SWAGGER comments for bulk offset on POST and GET
[fd41399e3e](https://github.com/dcache/dcache/commit/fd41399e3edf9fb2ca198b87e208d381ee7fda36)
: metadata: add (some) ORCIDs to CITATION.cff
[7698265da1](https://github.com/dcache/dcache/commit/7698265da1030910996749d6f6cba3c8a15a19eb)
: dcache-bulk: increment/decrement in-memory counts exclusively in the target object
[8e946cd47d](https://github.com/dcache/dcache/commit/8e946cd47dd3aab70783695cce3cbed3c3eb2d98)
: pnfsmanager: process listings of the same path sequentially, implement list message folding
[b31e6e8c70](https://github.com/dcache/dcache/commit/b31e6e8c70ce6759df78aae620e1feecbfcac89d)
: dcache-bulk: fix double counting of RUNNING targets
[a86e1fde6a](https://github.com/dcache/dcache/commit/a86e1fde6a12f8cf7d7635bf5f6149baf09b88dc)
: dcache-bulk,dcache-frontend: distinguish "Not Found" from "Invalid" request
[3c82a23def](https://github.com/dcache/dcache/commit/3c82a23def252b3a538e33b098a09728fffac2f8)
: libs: use netty-4.1.92
[042c5cb491](https://github.com/dcache/dcache/commit/042c5cb491e3e06c8cf01f34a48dc09319353531)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.6
### #
### Changelog 9.0.5..9.0.6
<!-- git log 9.0.5..9.0.6 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[a4019359d0](https://github.com/dcache/dcache/commit/a4019359d0deb5af1eb2409f91eff54f3de68035)
: [maven-release-plugin] prepare release 9.0.6
[ebf9eeb234](https://github.com/dcache/dcache/commit/ebf9eeb2340e8a8cc97ae8e6fc9e34b5ba322d9c)
: webdav: fix regression of visual elements with bootstrap 5
[37a1f2b958](https://github.com/dcache/dcache/commit/37a1f2b958fe15e6b09b14994c52254239262c7a)
: webdav: fix visual element regression after bootstrap 5 upgrade
[09527224f8](https://github.com/dcache/dcache/commit/09527224f8a0fb4a9e5285395c7a27d5150d0501)
: dcache-frontend: update SWAGGER comments for bulk offset on POST and GET
[fd41399e3e](https://github.com/dcache/dcache/commit/fd41399e3edf9fb2ca198b87e208d381ee7fda36)
: metadata: add (some) ORCIDs to CITATION.cff
[7698265da1](https://github.com/dcache/dcache/commit/7698265da1030910996749d6f6cba3c8a15a19eb)
: dcache-bulk: increment/decrement in-memory counts exclusively in the target object
[8e946cd47d](https://github.com/dcache/dcache/commit/8e946cd47dd3aab70783695cce3cbed3c3eb2d98)
: pnfsmanager: process listings of the same path sequentially, implement list message folding
[b31e6e8c70](https://github.com/dcache/dcache/commit/b31e6e8c70ce6759df78aae620e1feecbfcac89d)
: dcache-bulk: fix double counting of RUNNING targets
[a86e1fde6a](https://github.com/dcache/dcache/commit/a86e1fde6a12f8cf7d7635bf5f6149baf09b88dc)
: dcache-bulk,dcache-frontend: distinguish "Not Found" from "Invalid" request
[3c82a23def](https://github.com/dcache/dcache/commit/3c82a23def252b3a538e33b098a09728fffac2f8)
: libs: use netty-4.1.92
[042c5cb491](https://github.com/dcache/dcache/commit/042c5cb491e3e06c8cf01f34a48dc09319353531)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.5
### dcache
Symlinks on both constraints and targets are permitted; thus macaroons
will also work.
The support for both absolute and relative paths does not fail if there are symlinks
affecting the path prefix.
### gplazma
If there is a login failure involving a OIDC JWT then potentially
important information is now extracted from the JWT and included
in the logged login failure report.
POSC works with tokens when user root is '/'.
### kafka
Change the LoggingProducerListener so that when a TimeoutException is
caught, the error message will indicate that there is a connection
issue or the broker is down.
### nfs
When on LAYOUTGET door returned an error back to the client, then,
as the operation failed, the client will not issue LAYOUT_RETURN.
Thus such transfers would stay in the door. This is now fixed.
### Changelog 9.0.4..9.0.5
<!-- git log 9.0.4..9.0.5 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[fc918d7eb9](https://github.com/dcache/dcache/commit/fc918d7eb9ba2fcac1dd10ad6eb803a7ebb8f418)
: [maven-release-plugin] prepare release 9.0.5
[97e69442f5](https://github.com/dcache/dcache/commit/97e69442f54b52848a9156285cbfd54e67673f02)
: kafka:fix issue 7123 Kafka events fail to post
[d096a5b034](https://github.com/dcache/dcache/commit/d096a5b034e9b57bbbbc918b7861a53e1c08a1d1)
: gplazma: print selected JWT claims for failed logins
[bcf71f0c34](https://github.com/dcache/dcache/commit/bcf71f0c34ad0cac63496a7ea43c24df90783c28)
: nfs: remove failed to start read transfers
[b8d4f8e02f](https://github.com/dcache/dcache/commit/b8d4f8e02f9e593d2b0029b1640c82e83a07d277)
: Motivation:
[ee41b788b8](https://github.com/dcache/dcache/commit/ee41b788b8cf99982db3fb0599c0476689b13ed8)
: dcache-core,dcache-xroot,dcache-bulk,dcache-frontend: resolve path prefixes and paths for symlinks
[33307a22ee](https://github.com/dcache/dcache/commit/33307a22eefdf25720edc322c25e0b6111cb9aec)
: commons,dcache: alternative symlinks resolution on restrictions
[0a28438ee7](https://github.com/dcache/dcache/commit/0a28438ee79d0482f1e85c4394811b6b14ce9bbf)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.4
### libs
Library update due to CVE-2023-20863
### systemtest
The `populate` script now generates a valid dCache configuration if
oidc-agent is installed and at least one configuration has been loaded.
### Changelog 9.0.3..9.0.4
<!-- git log 9.0.3..9.0.4 -no-merges -format='[%h](https://github.com/dcache/dcache/commit/%H)%n: %s%n' -->
[6f65cd1500](https://github.com/dcache/dcache/commit/6f65cd15008eda2fd713485f1310ea3f88489790)
: [maven-release-plugin] prepare release 9.0.4
[2e85b6357a](https://github.com/dcache/dcache/commit/2e85b6357af7efe75ea534f1485eb820f0f18a5e)
: systemtest: fix support for oidc testing
[9c8bc59f4a](https://github.com/dcache/dcache/commit/9c8bc59f4a17059ca70d2dd8624843e5bd2f778f)
: libs: use spring-5.3.27
[0b1d9891b3](https://github.com/dcache/dcache/commit/0b1d9891b3ad2912dcbebf28c2b9bc23101f3c23)
: [maven-release-plugin] prepare for next development iteration
## Release 9.0.3
### bulk
QoS properties have been set to default to WLCG values. Also decreased the number of targets in a shallow
request and increased number of threads available for target activities to 200.