forked from PanDAWMS/panda-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.txt
1791 lines (1309 loc) · 47.6 KB
/
ChangeLog.txt
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
** Release Notes
1.4.19
* fixed help grouping for python 3
1.4.18
* updated attributes in JobSpec
* fixed loadJson for list
1.4.17
* to randomize access to the panda server
1.4.16
* fixed command history in pbook
1.4.15
* protection against encoding error in job functions in Client.py
1.4.14
* added warning when site and/or excludedSite options are used
* using parse_known_args in pathena for passing arguments with -
1.4.13
* added possible non-option arg parsing in PathenaScript
* added --useCentralRegistry to prun
* added protection against empty tarball in pathena/prun
1.4.12
* fixed pbook return
* changed to prun to use --nGBPerJob and --nFilesPerJob exclusively
1.4.11
* fixed pathena for argv
1.4.10
* fixed username extraction with \d
1.4.9
* changed pbook -c to allow running scripts
* added -3 to pathena, prun, pbook
* removed ()' from username
1.4.8 (12/9/2019)
* doc for pbook
* modified pbook to return an error code in case of failures
1.4.7 (12/3/2019)
* fixed pbook for python 2.6
1.4.6 (12/3/2019)
* fixed pbook for T3
1.4.5 (12/2/2019)
* added new pandamon-based pbook
1.4.4 (11/12/2019)
* fixed BookConfig
1.4.3 (11/11/2019)
* symlink for python2/3 server
1.4.0 (10/30/2019)
* changed version number for EventLoop
1.0.1 (10/29/2019)
* fixed for T3
1.0.0 (10/29/2019)
* cleanup
0.6.26 (12/9/2019)
* added resumeTask function
0.6.25 (8/7/2019)
* added --useSandbox to prun/pcontainer
0.6.24 (7/29/2019)
* added maxWalltime and cpuTimePerEvent
0.6.23 (5/24/2019)
* fixed killAndRetry in pbook
* added getUserJobMetadata in pbook
0.6.22 (5/15/2019)
* added --osMatch
0.6.21 (4/8/2019)
* fixed for container+archive
0.6.20 (4/2/2019)
* to set maxFailure and maxAttempt
* pbook cleanup
0.6.19 (4/1/2019)
* moved the PBookCore class to a separate module https://github.com/PanDAWMS/panda-client/pull/7
0.6.18 (3/26/2019)
* for ALRB containers
0.6.17 (3/18/2019)
* added --priority
0.6.16 (3/11/2019)
* added pcontainer
0.6.15 (1/16/2019)
* added processingType=blah-cont for container-based analysis
0.6.14 (12/12/2018)
* fixed --loadJson for unicode
* fixed --bulkSubmission for log
0.6.13 (12/11/2018)
* added --dumpJson
* added --bulkSubmission
0.6.12 (12/2/2018)
* added --loadJson
0.6.11 (11/28/2018)
* fixed pbook --gui for AnalysisBase
0.6.10 (11/27/2018)
* fixed missing gtk due to asetup
* to allow # as separator in --secondaryDSs
0.6.9 (11/6/2018)
* added --nThreads to pathena
0.6.8 (10/15/2018)
* added --nEventsPerJob to prun
0.6.7 (10/15/2018)
* fixed for GRL+trf
0.6.6 (9/8/2018)
* fixed for AthGeneration nightly
0.6.5 (7/18/2018)
* fixed setup for pip
* removed single-version-externally-managed from cfg
0.6.3 (7/17/2018)
* using setuptools for wheel
0.6.2 (7/14/2018)
* using voms-proxy-info instead of grid-proxy-info
0.6.1 (7/13/2018)
* fixed a bug in 0.6.0
0.6.0 (7/10/2018)
* support for - user_args in pathena
* using argparse in pathena
0.5.99 (6/20/2018)
* fixed --site=RSE
* added --containerImage
0.5.98 (5/7/2018)
* added more messages when failed to extract nickname
0.5.97 (5/3/2018)
* added --maxAttempt to pathena/prun
* fixed --excludeFile
0.5.96 (11/13/2017)
* added a warning message for --nFilesPerJob
0.5.95 (11/01/2017)
* added --ei_api to enable "api" parameter in event index for MC data
0.5.94 (10/5/2017)
* added --nCore
* fixed --extFile
0.5.93 (10/5/2017)
* fixed for AtlasBuildStamp of stable releases
0.5.92 (9/27/2017)
* added a protection in pbook against too long cliParams
0.5.91 (9/9/2017)
* using respectSplitRule by default
0.5.90 (8/28/2017)
* more fixed to remove setokens
0.5.89 (8/28/2017)
* fixed to remove setoken
0.5.88 (8/25/2017)
* fixed for AnalysisXYZ nightlies
0.5.87 (7/26/2017)
* removing whitespaces from --inDS
* renamed an option
0.5.86 (7/26/2017)
* removed --skipScout https://its.cern.ch/jira/browse/ATLASPANDA-385
* fixed for AthAnalysis nightlies
0.5.85 (6/30/2017)
* added --sameSecRetry to pathena
0.5.84 (6/19/2017)
* fixed athenaTag
0.5.83 (5/18/2017)
* fixed mergeOutput+useAthenaPackages
0.5.82 (5/8/2017)
* fixed getAthenaVer
0.5.81 (4/25/2017)
* added nGBPerMergeJob to pathena/prun
0.5.80 (4/7/2017)
* changed AthenaUtils for Athena 21.0
0.5.79 (3/16/2017)
* following the change to the project name in rel 22
* increased record lifetime in pbook to 180 days
0.5.78 (3/6/2017)
* fixed pathena to respect --randomMIN
* added --respectSplitRule to pathena/prun
0.5.77 (2/8/2017)
* removed cmtconfig check with a hardcoded list
0.5.76 (2/3/2017)
* removed tar error messages with empty run dir
0.5.75 (01/31/2017)
* fixed getAthenaVer for CMake-based caches
0.5.74 (01/19/2017)
* added new method for HC: getTaskParamsMap
* Replaced README.txt by README.md
0.5.73 (12/7/2016)
* added support for CMake based nightlies
* fixed cmtConfig for nightlies
0.5.72 (11/29/2016)
* fixed pathena to work witout a local build area for CMake
0.5.71 (10/04/2016)
* added new methods for Hammercloud (getPandaIDsWithTaskID, reactivateTask, getTaskStatus)
0.5.70 (8/31/2016)
* added 10 min timeout to curl GET and POST requests
0.5.69 (8/1/2016)
* fixed pathena merge for CMake
0.5.68 (7/26/2016)
* CMake compatible version
0.5.67 (7/26/2016)
* improved pathena to automatically deduce actual output names for derivation trf
* fixed pathena for SHARE in THistSvc
0.5.66 (7/7/2016)
* disabled log file transfers with --destSE
0.5.65 (6/24/2016)
* fixed addNthFieldOfInFileToLFN for pmerge
0.5.64 (6/23/2016)
* added addNthFieldOfInFileToLFN
0.5.63 (3/31/2016)
* fixed getAthenaVer for ath releases
0.5.62 (3/16/2016)
* fixed newOpts in pbook
0.5.61 (2/26/2016)
* added --allowNoOutput to pathena/prun
0.5.60 (2/9/2016)
* added --skipFilesUsedBy
0.5.59 (1/25/2016)
* changed --addNthFieldOfInDSToLFN to allow multiple fields
0.5.58 (1/19/2016)
* added x86_64-slc6-gcc49-opt to the valid cmtconfig list
0.5.57 (11/20/2015)
* fixed cmtConfig lookup in prun with --athenaTag
* added support for AthAnalysis*
0.5.56 (10/12/2015)
* fixed pathena/prun to ignore local jobReport.*
* added --eventPickWithGUID
0.5.55 (9/9/2015)
* fixed pathena for --nEventsPerJob + --split
0.5.54 (8/13/2015)
* fixed --nEventsPerJob in pathena for real data
0.5.53 (8/12/2015)
* added TrigMC to getAthenaVer
0.5.52 (7/27/2015)
* removed datri stuff
0.5.51 (7/14/2015)
* fixed --memory in pathena/prun
0.5.50 (7/13/2015)
* added --reusableSeconday
0.5.49 (5/24/2015)
* synchronized --notSkipLog and --useLogAsInput in prun
0.5.48 (5/23/2015)
* added --useLogAsInput to prun
0.5.47 (4/2/2015)
* fixed --maxCpuCount in pathena/prun
0.5.46 (3/30/2015)
* added a protection to pbook against too many input datasets
0.5.45 (3/24/2015)
* changed pathena not to use DBR by default
0.5.44 (3/17/2015)
* fixed --goodRunListXML to upload XML to correct node when sandbox is reused
0.5.43 (2/27/2015)
* removed usage of local python from pbook
* added finishTask to pbook
0.5.42 (12/19/2014)
* added forceStaged to pathena
0.5.40 (12/11/2014)
* added support for AtlasDerivation
0.5.39 (12/1/2014)
* changed --loadXML to remove scopes for secondary datasets
0.5.38 (11/21/2014)
* fixed --destSE to transfer log as well
0.5.37 (11/19/2014)
* fixed mergeOutpu pathena to currectly setup Athena on WN
* added --useRucio
0.5.36 (11/13/2014)
* fixed pathena so that files in minDS/cavDS are reusable
0.5.35 (10/29/2014)
* fixed jobO picking for G4sim
0.5.34 (10/29/2014)
* fixed --inputFileList in pathena/prun
0.5.33 (10/27/2014)
* added support for AthAnalysis
* added --nJobs to pathena
0.5.32 (10/20/2014)
* added --eventPickSkipDaTRI to pathena/prun
0.5.31 (10/17/2014)
* fixed prun for GRL
* added a protection against unicode to pbook
0.5.30 (10/2/2014)
* fixed pathena for --minXYZ and --cavXYZ
0.5.29 (9/29/2014)
* added --forceDirectIO to pathena
0.5.28 (9/22/2014)
* fixed pbook for many merging jobs
0.5.27 (9/19/2014)
* fixed DBR lookup for HC
* fixed pbook -c
* added --eventPickNumSites
0.5.26 (9/12/2014)
* fixed GUID duplication caused by --allowTaskDuplication
0.5.25 (9/10/2014)
* added --addNthFieldOfInDSToLFN to pathena/prun
* fixed getJediTaskDetails
0.5.24 (9/9/2014)
* added --allowTaskDuplication to pathena/prun
* added a capability to retry failed jobs while the task is still running
0.5.23 (9/8/2014)
* fixed typo in pathena
0.5.22 (9/5/2014)
* added protection for --nEventsPerJob in pathena
* added protection for --split in pathena
* fixed --match and --antiMatch in prun
0.5.21 (9/3/2014)
* fixed prun for --rootVer + --noCompile
* improved to check length of log dataset container too
0.5.20 (9/2/2014)
* fixed prun for --loadXML with secondary datasets
0.5.19 (8/29/2014)
* using JEDITASKID instead of JOBSETID to gurantee uniquness of file names
* add --useNewCode to pathena and prun
0.5.18 (8/28/2014)
* added protection to pbook against too many PandaIDs
0.5.17 (8/27/2014)
* changed pbook to refresh database before kill/retry
0.5.16 (8/22/2014)
* fixed protection against duplicated dataset name suffixes
0.5.15 (8/20/2014)
* added XML verification to prun
* fixed pathena for --cavDS
0.5.14 (8/19/2014)
* fixed typo in pbook
* changed pathena/prun to allow users to set/unset some parameters when re-submitting
0.5.13 (8/18/2014)
* changed pbook functions to work both with jobsetID and jediTaskID
* fixed pathena to take --nEventsPerJob into account when noInput
* added --unlimitNumOutputs to pathena/prun
0.5.12 (8/15/2014)
* fixed --loadXML in prun
* changed prun to allow users to specify suffixes for output containers
0.5.11 (8/14/2014)
* fixed pathen for --nEventsPerJob and --nEventsPerFile
* disabled obsolete --useOldStyleOutput
0.5.10 (8/13/2014)
* fixed prun for --secondaryDS
* fixed pbook for backward compatibility
0.5.9 (8/12/2014)
* fixed prun for wildcards in --outputs
0.5.8 (8/12/2014)
* fixed --noCompile more
0.5.7 (8/12/2014)
* fixed pathena and prun for event picking
* fixed --noCompile
* added a protection against too long output container names
0.5.6 (7/29/2014)
* fixed pbook for empty transHome
* changed prun to allow --secondaryDSs without --inDS
* added support for cache nightlies
* modified %RNDM replacement to allow usage of % as terminator
* removed 64/32 support in --athenaTag (only --cmtConfig is recommended)
0.5.5 (6/5/2014)
* ignoring pound symbols in --pfnListignoring pound symbols in --pfnList
* added a protection against junk message given by voms-proxy-info
* fixed prun to accept CVMFS ROOT version format
0.5.4
* fixed --mergeScript
0.5.3
* fixed --spaceToken
* fixed --workingGroup
* fixed json error for SL5
* fixed RNDM in --exec of prun
* added --nEvents and --nEventsPerChunk to prun
0.5.2
* fixed for transHome=None
0.5.1
* fixed for --bexec and --destSE
0.5.0
* the first version with JEDI
0.4.33 (12/13/2013)
* fixed for new pyAMI
0.4.32 (11/12/2013)
* setting client_version
* fixed getCmtConfig to check with installedSW
* set --useNewTRF by default in pathena
0.4.31 (9/19/2013)
* fixed threading in pbook
0.4.30 (9/2/2013)
* fixed cmtShowProjects to ignore CMTUSERCONTEXT
0.4.29 (8/7/2013)
* fixed getLatestDBRelease for the change of DBR replication policy
0.4.28 (7/30/2013)
* fixed pathena to respect --nFilesPerJob when --nEventsPerJob
0.4.27 (7/18/2013)
* fixed voms-proxy-info check for PATHENA_GRID_SETUP_SH setting
0.4.26 (7/5/2013)
* added support for ROOT/x86_64-slc6-gcc47-opt
* fixed datriHandler for SLC6
0.4.25 (6/5/2013)
* fixed for the change to DQ2 CC
0.4.24 (6/5/2013)
* fixed grid-cert-info check
0.4.23 (6/4/2013)
* fixed wrong Indetity for proxy generation on SL(C)6
* fixed wrong message for PATHENA_GRID_SETUP_SH on CERN SLC6
* fixed --site BNL to send jobs to ANALY_BNL_SHORT
0.4.22 (5/13/2013)
* fixed ownership of libDS for prun with --noCompile
* fixed --outTarBall of pathena when input sandbox is reused
* fixed ConfigExtractor for AthenaRootComps
0.4.21 (4/3/2013)
* added missing attributes to JobSpec
0.4.20 (3/21/2013)
* improved error message of the brokerage in pathena
* fixed pbook.reproduce for outDS used by multiple jobIDs
0.4.19 (3/18/2013)
* improved --manaVer of prun
0.4.18 (3/14/2013)
* added --noCompile to pathena
* added --manaVer to prun
0.4.17 (3/4/2013)
* added a debug option to pathena
* added --useMana to prun
* changed tgz/rpm repository due to changes of CERN twiki policy
0.4.16 (1/27/2013)
* added --buildInLastChunk to pathena/prun
0.4.15 (1/23/2013)
* added --safetySize to prun
* setting scope to files for migration to Rucio
0.4.14 (1/11/2013)
* added --useNewTRF to pathena which keeps the attempt number when there is only one input
* added a protection to pathena for --nEventsPerJob and --nGBPerJob
0.4.13 (1/10/2013)
* added a debug option to prun
0.4.12 (1/9/2013)
* improved pbook.retry() to allow newOpts without newSite=True
0.4.11 (11/26/2012)
* improved DBR check to accept CVMFS sites even if DBR is missing at DISK
0.4.10 (10/30/2012)
* fixed Client to use the default X509_CERT_DIR if missing
0.4.9 (10/30/2012)
* added --appendStrToExtStream to pathena
* fixed newOpts in pbook.retry()
* fixed for CERN TMPDISK
* fixed for curl+NSS on SLC6
0.4.8 (8/8/2012)
* suppressed redundant messages when sourcing grid-env
* improved the brokerage to use maxCpuCount
0.4.7 (7/19/2012)
* added --noOutput to pathena
0.4.6 (7/18/2012)
* fixed --inputFileList of pathena/prun for whitespaces in list
* fixed Athena tag extraction for nightlies on CVMFS
0.4.5 (7/4/2012)
* improved warning message of the brokerage
* updated pathena/prun to show missing files in the debug mode
0.4.4 (6/27/2012)
* added --useSiteGroup to pathena/prun
0.4.3 (6/21/2012)
* fixed cachesrv lookup to reuse sandbox
0.4.2 (6/13/2012)
* fixed runBrokerage for --useDirectIOSites
0.4.1 (6/11/2012)
* added debug() to pbook
* added --debugMode to pathena/prun
* setting account and appid for Rucio in pbook
* added support to pathena/prun to run nigitlies
* modified putFile to reuse sandbox if CRC and size are identical
0.4.0 (5/31/2012)
* added --noCompile to prun
* added --useDirectIOSites to pathena/prun
0.3.99 (5/18/2012)
* added --useShortLivedReplicas to pathena/prun to enable usage of short-lived replicas
0.3.98 (5/9/2012)
* using pandaGridSetup.sh for CVMFS, as recommended by Asoka De Silva
0.3.97 (5/9/2012)
* fixed warning message related to SKIPEVENTS in --trf
* using glite on CVMFS when athena is setup with CVMFS
* changed nickname to be mandatory
* setting account and appid for Rucio
* added a protection against too large --maxCpuCount
0.3.96 (4/25/2012)
* added reproduce() to pbook
* added a warning when nEventsPerFile>nEventsPerJob but no %SKIPEVENTS in --trf
* fixed --useGOForOutput
* fixed pathena to use AMI for --goodRunListXML + --nEventsPerJob
0.3.95 (3/26/2012)
* fixed pathena for trf+TAG+remoteIO
* using x86_64-slc5-gcc43-opt by default for 17.5.0 or higher
* fixed --athenaTag to recognize 32 and 64
* added --useGOForOutput to pathena/prun
* removed redundant lookup for --dbRelease=LATEST
0.3.94 (3/12/2012)
* fixed pbook to ignore DatasetExistsException when retrying
0.3.93 (3/12/2012)
* fixed timeout in getFilesInUseForAnal
0.3.92 (3/9/2012)
* changed allowProdDisk in addDataset for DATADISK too
0.3.91 (3/7/2012)
* disabled shadow registration
* added --followLinks to prun
0.3.90 (3/6/2012)
* added --athenaTag to pathena
* fixed --skipScan in pathena
* changed --skipScan to use complete replicas only
0.3.89 (3/5/2012)
* fixed SyntaxWarning
0.3.88 (3/5/2012)
* fixed pathena/prun to trigger LFC lookup only for incomplete replicas
* fixed --skipScan in pathena/prun
* fixed replica lookup when two DQ2 IDs in the same site hold inDS
0.3.87 (3/1/2012)
* fixed pathena/prun for libDS
0.3.86 (2/24/2012)
* fixed site lookup for _SOFT
0.3.85 (2/15/2012)
* fixed output file indexing of pathena for general streams
0.3.84 (2/9/2012)
* Mikhail Titov updated datriHandler
* fixed site lookup for _DET
0.3.83 (2/3/2012)
* imposed tighter limit on the length of outDS for mergeOutput
0.3.82 (2/1/2012)
* fixed to use glite 3.2 on CERN AFS
0.3.81 (1/30/2012)
* added a protection to prun against --nGBPerJob plus too large --nJobs
* updated prun for 64bit --rootVer
0.3.80 (1/26/2012)
* fixed site exclusion for access controlled sites
0.3.79 (1/23/2012)
* fixed pathena to use all files in secondary streams
0.3.78 (1/19/2012)
* fixed site lookup for CERN + libDS
0.3.77 (1/19/2012)
* fixed AthenaUtils for general streams
0.3.76 (1/18/2012)
* fixed pathena/prun to solve conflict between --site and --excludedSite
0.3.75 (1/18/2012)
* fixed pathena to use renaming for pool file production to be properly compressed
* added allowProdDisk to Client.addDataset for HC
0.3.74 (1/13/2012)
* added --splitWithNthFiledOfLFN to pathena/prun
* added a warning to pbook.retry when newOpts is used without newSite
* added --disableAutoRetry to pathena/prun
0.3.73 (12/13/2011)
* fixed pbook.retry(newSite) for multiple input jobs
0.3.72 (12/8/2011)
* fixed checkData with DaTRI to ignore diagnostics messages in T3 grid setup script
0.3.71 (11/28/2011)
* fixed site lookup for CERN GROUPDISK
0.3.70 (11/27/2011)
* added --inDsTxt to pathena and prun
* changed --excludedSite of pathena/prun to use action=append
* fixed parameter setting via panda.cfg for multi-site jobs
* modified panda.cfg to be written in metadata
0.3.69 (11/9/2011)
* added --lowMinDS and --highMinDS to pathena for %LOMBIN and %HIMBIN in --trf
0.3.68 (11/7/2011)
* fixed for pyAMI
0.3.67 (11/1/2011)
* updated prun for --useRootCore + --noBuild
* added --pfnList to prun
0.3.66 (10/26/2011)
* fixed --mergeScript of pathena/prun for execution string
0.3.65 (10/25/2011)
* added pbook.kill(running)
* updated pathena/prun so that any option can have a default value in panda.cfg
* updated pathena/prun to allow users to overwrite the default option values with ./panda.cfg
* added a protection to pathena against duplicated streams in THistSvc
* added excludedSite info to brokerage log
* fixed duplicated archiving in pathena/prun
0.3.64 (10/7/2011)
* fixed retryBuild in pbook
0.3.63 (10/7/2011)
* added a patch for CERN-PROD_DET-IBL
* added --transferredDS to pathena/prun
0.3.62 (9/30/2011)
* fixed email scan in psequencer for [email protected]+imap.cern.ch
0.3.61 (9/28/2011)
* fixed sorting in listView of pbook --gui
* added --initScanDepth and getFrozenPandaJobs() to psequencer
* fixed getPandaJob() of psequencer to work with frozen jobs
0.3.60 (9/27/2011)
* Lauren Tompkins added --loadXML,--forceStaged,--forceStagedSecondary,--requireLFC to prun
* fixed pbook for jobs retried on the server side
* fixed PStep for env
* fixed email scan in psequencer for Atlas Pangaea
0.3.59 (9/13/2011)
* fixed --nSkipFiles of pathena/prun for containers
* improved doc on --memory of pathena/prun
0.3.58 (9/13/2011)
* fixed pbook for jobs reassigned by rebrokerage
* added a temporary patch for CERN EOS migration
0.3.57 (9/5/2011)
* made pbook transaction-safe
* fixed pbook.retry() to allow reattempt for failed subjobs in running job
0.3.56 (9/2/2011)
* fixed --trf of pathena for TAG reading
0.3.55 (8/31/2011)
* fixed pbook -c for multiple/keyworded arguments
0.3.54 (8/17/2011)
* fixed file gathering in prun for --useRootCore
0.3.53 (8/5/2011)
* fixed for US T2 TRIG-DAQ
* added retry for registering datasets to DQ2
0.3.52 (8/5/2011)
* fixed for CERN TMP
0.3.51 (7/28/2011)
* fixed --trf of pathena to use TagGUIDCount svc when TAG is used
* added --useRootCore to prun
0.3.50 (7/26/2011)
* added --nMinPerJob and --nCavPerJob to pathena
0.3.49 (7/14/2011)
* fixed termination of prun when --nFiles is used
0.3.48 (7/12/2011)
* fixed tar-archiving for files with special characters
* fixed sendLogInfo for --useOldStyleOutput
* fixed --supStream of pathena to accept wild cards
* fixed ConfigExtractor for DESD
0.3.47 (7/1/2011)
* fixed ConfigExtractor for multiple AANT streams to write to the same file
* changed pathena/prun to make a stage-in request for TAPE files when event-picking
* added --eventPickStagedDS to pathena/prun
0.3.46 (6/30/2011)
* updated pathena/prun to ignore dataset replicas with short lifetime
* added --mergeScript to pathena/prun
* added a protection to DBR lookup to see T1 replicas
0.3.45 (6/20/2011)
* fixed --extFile of pathena to work with sub directories
* added --cmtConfig to pathena/prun
* using uuid.py when uuidgen is unavailable
* updated brokerage to take --memory into account
* added site/cloud/libDS/outDS info to brokerage logging
* added retryBuild to pbook.retry()
0.3.44 (6/6/2011)
* fixed pbook to kill or retry only jobsetIDs by default when uppserJobID is given
0.3.43 (5/31/2011)
* fixed --tmpDir of pathena/prun for relative path
* fixed pathena/prun to prevent running twice on the same input files for --mergeOutput
0.3.42 (5/18/2011)
* increased maxCrossSite to 50
* fixed pathena/prun for ssc5
* added a protection to DBR lookup for DQ2 failure
* fixed pathena to check the size of MinimumBias,Cavern,BeamHalo,BeamGas files
0.3.41 (5/11/2011)
* updated pathena/prun to give warning message if files are missing
* fixed pathena for TAG with trf
0.3.40 (5/5/2011)
* changed TAG reference names to StreamTAG_ref
0.3.39 (5/5/2011)
* added --mergeOutout to pathena/prun
* updated pbook to allow reattempt for merge jobs
* updated pathena/prun for brokerage logging
0.3.38 (4/27/2011)
* fixed excludePattern in archiveFiles
* added more conservative definition for LATEST DBR
0.3.37 (4/18/2011)
* updated DBR lookup to ignore ddo.user.*
* fixed cache server lookup
0.3.36 (4/13/2011)
* added a protection against extremely fain-grained jobs
* added a protection to prun not to send files just under HOME
* fixed prun not to send hidden files
* added a protection when DQ2 complete dataset is incomplete in LFC
* fixed pbook to set parentSetID in retry(newSite=True)
* using new cache server to upload source files
* fixed pathena to use the latest DBR when DBRelease is unset in --trf
* fixed truncation of --execludedSite in pbook.retry(newSite=True)
* fixed string replacement in pbook.retry(newSite=True)
* improved error message related to TAPE in pathena/prun
0.3.35 (4/1/2011)
* added protection not to produce jumbo shadow datasets
0.3.34 (3/29/2011)
* removing whiles paces from --outputs and --extOutFile
* added automatic splitting to pathena/prun to avoid producing jumbo datasets
0.3.33 (3/22/2011)
* fixed AMI lookup in --trf of pathena
0.3.32 (2/26/2011)
* added --notSkipLog to prun
0.3.31 (2/25/2011)
* modified doc on --useNextEvent in pathena
* added --randomMin/Cav to pathena
0.3.30 (2/24/2011)
* added --eventPickAmiTag to pathena/prun
0.3.29 (2/9/2011)
* added --enableJEM and --configJEM to pathena/prun
* added dereferenceSymLinks to archiveSourceFiles
* modified --rootVer to follow versioning convention of ROOT
0.3.28 (2/2/2011)
* added --rootVer to prun
0.3.27 (1/25/2011)
* fixed update for twiki.cern.ch's cert
* fixed Client.convSrmV2ID for MWT2
0.3.26 (1/24/2011)
* added --individualOutDS to prun
0.3.25 (1/20/2011)
* fixed pbook.retry(newSite=True)
* changed URL for dev server
0.3.24 (1/10/2011)
* fixed pbook.retry() for multiple reattempts
0.3.23 (1/10/2011)
* fixed pbook.retry() for automatic freezing
0.3.22 (1/6/2011)
* added --in/outRunConfig to pathena
0.3.21 (1/6/2011)
* updated LFC scan to try another site when timed out
* fixed --useAMIEventLevelSplit of pathena
0.3.20 (12/6/2010)
* fixed --trf of pathena for gsidcap sites
0.3.19 (11/24/2010)
* fixed metadata check to ignore site status
0.3.18 (11/23/2010)
* fixed --pfnList of pathena
0.3.17 (11/21/2010)
* fixed filename duplication for AANT in --individualOutDS of pathena
0.3.16 (11/18/2010)
* fixed for CERN EOS
0.3.15 (11/16/2010)
* added --useAMIEventLevelSplit to pathena
* fixed nEventsPerFile in pathena
0.3.14 (11/15/2010)
* fixed interference between --split and --nEventsPerJob in pathena
0.3.13 (11/13/2010)
* fixed getRunningPandaJobs() in psequencer
0.3.12 (11/9/2010)
* fixed splitter for prun
0.3.11 (11/9/2010)
* added --useContElementBoundary to pathena/prun
* added --prodSourceLabel to prun
* fixed --excludeFile of prun
0.3.10 (11/3/2010)
* fixed a bug related to useTagParent
0.3.9 (11/3/2010)
* updated TAG analysis framework in pathena to use TagGUIDCount svc
* added --notUseTagLookup to pathena not to use TagGUIDCount svc
0.3.8 (10/31/2010)
* added --in/outTarBall to pathena/prun
* fixed --removeFile in pathena
0.3.7 (10/27/2010)
* added --express to pathena/prun
0.3.6 (10/20/2010)
* fixed --eventPick for JSP failures
0.3.5 (10/15/2010)
* fixed misleading message in prun when --secondaryDSs is used
* fixes messages in pathena/prun when no jobs are submitted due to lack
of unused input files
* added pbook.show(X,Y)
0.3.4 (10/9/2010)
* added --restoreDB to pbook
0.3.3 (10/9/2010)
* disallowed userXY
* fixed ConfigExtractor for StreamESD/AOD defined as normal streams
0.3.2 (10/4/2010)