-
Notifications
You must be signed in to change notification settings - Fork 16
/
ChangeLog.txt
2265 lines (1640 loc) · 56.1 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.5.82
* removed redundant f-formatted strings for python 2
1.5.81
* fixed --appendStrToExtStream, and add other options for --trf stream names https://github.com/PanDAWMS/panda-client/pull/41
* allowing ramCount in newOpts of pbook.retry
* added --tarBallViaDDM to prun/pathena
1.5.80
* added framework option to prun and pathena
1.5.79
* added option name check in pbook.retry
1.5.78
* protection against missing THistSvc
1.5.77
* added --useNumFilesInSecDSsAsRatio to prun
1.5.76
* For changes in ALRB_USER_PLATFORM
* execute_pchain in panda_api.py
1.5.75
* warning message for missing nickname in IAM
1.5.74
* added support for D2AODs in pathena
1.5.73
* fixed module of JobSpec and FileSpec
* to allow main in --useAthenaTag
* improved pchain to set --useAthenaPackages automatically
1.5.72
* fixed for OIDC
1.5.71
* synchronous workflow submission
1.5.70
* fixed FakeAppMgr for recent changes of AthAppMgr.OutStreamType
1.5.69
* fixed _NativeClient
1.5.68
* to throw an exception when unpicking is failed
1.5.67
* added reload_input to pbook
* added memory warning and -y to pathena/prun
1.5.66
* fixed FileSpec import
1.5.65
* added --workflowName to pchain
* added n_try in a few functions in Client
* removal of symlink creation in build step
* added json serializable
1.5.64
* fixed pyproject.toml
* improved various messages
1.5.63
* to check python3 if python is missing
1.5.62
* protection against non-ASCII args
1.5.61
* fixed changes in 1.5.60
1.5.60
* fixed pathena -c
1.5.59
* added update_events and get_events_status
1.5.58
* set modules for unpickling in client-light
1.5.53
* regex in outputs of prun
1.5.52
* added pyproject.toml
* introduced panda-client-light
* added get_files_in_datasets
1.5.50
* to recreate cpack tarball for subsequent file appending as gzip -d is not enough
1.5.49
* not to ignore tar failures
1.5.48
* pbook in batch mode
1.5.47
* utilities for ID tokens
1.5.46
* to skip cpack if the user doesn't have own build dir
1.5.45
* removed -D CPACK_INSTALL_CMAKE_PROJECTS="" from cpack arguments
1.5.44
* fixed --nFBPerMergeJob in pathena
1.5.43
* fixed --nGBPerMergeJob in prun
1.5.42
* added retry when checking sandbox files created by cpack
1.5.41
* added secret-related methods to JobSpec
1.5.40
* fixed delete_secret with file secrets
1.5.39
* fixed --official in pchain
1.5.38
* --help == --helpGroup ALL
* low-level API to pause/resume tasks
* protection against unrecognized arguments in prun
* stripping role from workingGroup
1.5.37
* fixed --official for OIDC
* added json_outputs arg to idds command
1.5.36
* fixed --inOutDsJson for python3
1.5.35
* using OIDC_AUTH_* if PANDA_AUTH_* are missing
1.5.34
* fixed pbook+token
1.5.33
* fixed username extraction to get rid of emails
1.5.32
* fixed nFiles+python3
1.5.31
* added pbook.retry(all)
1.5.30
* improved secondaryDSs to allow specifying input file list
1.5.29
* added reload_input
* gzip for python 2 and 3
* to hide tokens in http requests
1.5.28
* fixed for consolidate
* added --persistentFile
1.5.27
* added non-ascii file/dataset name check
* added consolidate when --notExpandBlah
1.5.26
* to use PANDA_AUTH_ID_TOKEN in Client
1.5.24
* removed getCachePrefixes and getCmtConfigList for installedSW retirement
1.5.23
* keep port number of sandbox host
1.5.22
* fixed archive making in pchain
1.5.21
* fixed for --flag in Derivation_tf.py
1.5.20
* added increase_attempt_nr
1.5.19
* cleanup
1.5.18
* changed definition of --memroy of pathena/prun to memory size per core
1.5.17
* added --extFile to pchain
* improved the error message in pchain in case of wrong argument
1.5.16
* fixed BS for rel 22
1.5.15
* message cleanup
1.5.14
* added PANDA_BEHIND_REAL_LB
* added getFile
1.5.13
* to allow https in PANDA_URL
1.5.12
* fixed 1.5.11
1.5.11
* added --secondaryDSs and --notExpandSecDSs to pathena
1.5.10
* fixed GRL for py3
1.5.9
* added --fixedCpuTime to pathena/prun
1.5.8
* fixed --architecture of pathena/prun to keep cmtconfig stuff in task.architecture
1.5.7
* added --vo, --prodSourceLabel, and --workingGroup to pchain
1.5.6
* added PANDACACHE_URL
1.5.5
* fixed setup.sh for sl6
1.5.4
* to set PYTHONPATH consistent with python version
* fixed --debugMode
1.5.3
* using pandacache:443
1.5.2
* made --nFiles=-1 work in prun
* more messages for OIDC
* reduced frequency of token refresh
1.5.1
* fixed OIDC for new ATLAS panda server URL
1.5.0
* added is_file to set_secret in pbook
1.4.99
* loader in iDDS API
1.4.98
* fixed share/function for old bash in SL6
1.4.97
* typo
1.4.96
* --intrSrv in pchain
* fixed kill_workflow in pbook
* fixed architecture in prun
1.4.95
* using 25080 for http
1.4.94
* to allow named arguments in pbook.retry()
1.4.93
* add secret functions to pbook
* --useSecrets in prun
1.4.92
* using 80 and 443 to access the panda server
* protection against @ in --architecture
* removed the iam scope when getting ID tokens
* CI update
1.4.91
* added a delimiter in prun's jobParameters
* changed job parameter order in prun
1.4.90
* changed p* commands to work with conda, venv, etc
1.4.89
* added *_workflow commands to pbook
1.4.87
* improved doc of pbook.retry
1.4.86
* pflow -> pchain
* moved the check function of pchain to server-side
1.4.85
* making pandatools symlink for backward-compatibility when being installed standalone
1.4.84
* fixed pflow --check for python 2
1.4.83
* to allow phpo in workflow
* added --check to pflow
* added phpo.cwl
1.4.82
* renamed pandatools to pandaclient to avoid name conflict when installed on the server-side
1.4.81
* added --execWithRealFileNames to prun
* added --useAthenaPackages and --relayHost to pflow
1.4.80
* added --outDiskCount to pathena and prun
1.4.79
* added --notExpandSecDSs to prun
1.4.78
* added --maxLoopCount to phpo
1.4.77
* removed --useLocalIO from job params
1.4.76
* changed --architecture to follow https://its.cern.ch/jira/browse/CRIC-173
1.4.75
* added --noSeparateLog to prun
1.4.74
* fixed the 1.4.73 change
1.4.73
* added recover_lost_files in pbook
1.4.72
* added --parentTaskID
1.4.71
* protection against wrong types in --loadJson
1.4.70
* changed %RNDM to be reproducible in retries
1.4.69
* added --mergeLog to pathena/prun
* added manage to iDDS API
1.4.68
* fixed --lowMinDS
1.4.65
* to allow master, latest, and timestamp in --athenaTag
1.4.64
* not to enforce directIO when --trf in pathena
1.4.63
* changed definition of --maxPoints and --maxEvaluationJobs to be per segment
1.4.61
* added PANDA_USE_NATIVE_HTTPLIB
1.4.57
* added GUI example
1.4.56
* added --dumpTaskParams to prun
1.4.53
* to escape double quotes in passphrase
1.4.49
* added --respectLB to pathena/prun
1.4.48
* added Jupyter Lab support
1.4.47
* fixed side effect in 1.4.46
1.4.46
* fixed for AtlasStats
1.4.45
* fixed OIDC stuff for python3
1.4.43
* disabled host cert check in device code flow
1.4.42
* for OIDC with Indigo IAM
1.4.41
* added --notExpandaInDS to pathena/prun
* introduced PANDAMON_URL
1.4.40
* added OIDC support
1.4.39
* to ignore --rootVer when --useAthenaPackage/athenaTag
1.4.38
* fixed --rootVer + --useAthenaPackage
1.4.37
* protection against unknown athenaTag
1.4.36
* added --avoidVP
1.4.35
* --cmtConfig = --architecture
1.4.34
* using ALRB for container execution in prun by default
1.4.33
* set --noBuild in pathena when --containerImage is used
* fixed --trf + --noOutput in pathena
1.4.32
* added --architecture
1.4.31
* protection against long site parameter in phpo
* added --checkPointInterval to phpo
1.4.30
* added --oldContMode and --alrbArgs to prun
* added --checkPointToSave and --checkPointToLoad to phpo
1.4.29
* fixed --evaluationMetrics in phpo
1.4.28
* added --searchSpaceFile to phpo
1.4.27
* bug fix
1.4.26
* to suppress CMT error for --containerImage
* fixed pathena to work in empty directory
1.4.25
* setting useCMake in pathena when --containerImage + --noBuild + --trf is used
1.4.24
* using preprocess/postprocess in phpo
1.4.23
* added phpo
* fixed prun for preprocess/postprocess
* fixe pathena for --noBuild + --containerImage
1.4.22
* fixed --containerImage of pathena to let ALRB run containers on WN
* added --directExecInContainer to prun
1.4.21
* added JobSpec.job_label to disambiguate neutral prodsourcelabels
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)