-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8526 lines (5565 loc) · 193 KB
/
ChangeLog
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
Thu Oct 17 07:49:48 2024 leake
* Revision tag: R1-26g
* Updated
SVN revision: 165269
M yam/__init__.py
* Updating message.
SVN revision: 165268
M HISTORY.rst
* Fixing update for git so it fetches on tags rather than pulls.
SVN revision: 165267
M yam/git_revision_control_system.py
Wed Oct 16 06:58:12 2024 leake
* Revision tag: R1-26f
* Updated
SVN revision: 165243
M yam/__init__.py
* Adding entry for new release.
SVN revision: 165242
M HISTORY.rst
* FORMATTED.
SVN revision: 165241
M test/test_unit/test_sandbox/script.py
M yam/module_saving_utils.py
M yam/client.py
M pyam
* Refactoring and fixing up reg tests to work with new unique_branch_id that doesn't do extra copies of git modules.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/pyam/-/issues/32
SVN revision: 165240
M test/test_unit/test_package_sandbox/script.py
M yam/sandbox.py
M test/test_unit/test_sandbox/script.py
M yam/loose_sandbox.py
M yam/client.py
M yam/module_configuration_utils.py
M yam/main_package_sandbox.py
M yam/package_sandbox.py
M yam/tagged_package_sandbox.py
* Updating so that finding a unique branch doesn't add an extra git clone.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/pyam/-/issues/32
SVN revision: 165227
M yam/module_saving_utils.py
M yam/client.py
M yam/module_configuration_utils.py
M pyam
* FORMATTED.
SVN revision: 165226
M yam/git_revision_control_system.py
* Updating reg test based on changes to avoid checking out a git module twice.
* We are now on actual tags rather than checking the commits associated with tags.
* Using classmethod rather than staticmethod to make test_encapsulation happy.
SVN revision: 165225
M yam/git_revision_control_system.py
M test/test_git/test_system/test_checkout/test_tagged/script.t
M test/test_git/test_system/test_save/test_main/script.t
M test/test_git/test_system/test_save/test_normal/script.t
* Refactoring so we don't do a full git module checkout twice each time we check out a new git work module.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/pyam/-/issues/32
SVN revision: 165224
M yam/git_revision_control_system.py
M pyam
M yam/work_module.py
Tue Oct 8 10:37:59 2024 leake
* Revision tag: R1-26e
* Fixing tests so they clean up folders they create in /tmp.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/pyam/-/issues/35
SVN revision: 165113
M test/test_unit/test_mysql_database_reader/script.py
M test/test_system/test_register_new_module/test_expected_errors/script.bash
M test/test_integration/test_mysql_database/script.py
M test/common/mysql/mysql_server.bash
Mon Aug 26 08:01:51 2024 leake
* Revision tag: R1-26d
* Adding comment for new release.
SVN revision: 164120
M HISTORY.rst
* Updated
SVN revision: 164119
M yam/__init__.py
* Adding chmod to temporary directory. mkdtemp generates a secure
directory that is only readable/writeable by the user. However, for
pyam-build, we don't want this. We want the normal 775 permissions for
the directory.
SVN revision: 164118
M pyam-build
Thu Jul 25 12:06:11 2024 leake
* Revision tag: R1-26c
* Updating.
SVN revision: 163522
M HISTORY.rst
* Updated
SVN revision: 163521
M yam/__init__.py
* Minor cleanup for variables we no longer need (related to email change
in previous commit).
SVN revision: 163520
M pyam-build
* No longer sending email. Just using stderr to print out the errors. The
email was having SSL issues and the new style works better with airflow.
SVN revision: 163518
M pyam-build
Sat Jul 20 12:09:33 2024 leake
* Revision tag: R1-26b
* FORMATTED
SVN revision: 163458
M yam/revision_tag_utils.py
Sat Jul 20 10:45:31 2024 jain
* Revision tag: R1-26a
* Updated
SVN revision: 163454
M HISTORY.rst
* Updated
SVN revision: 163453
M yam/__init__.py
* Summary:
SVN revision: 163452
M yam/revision_tag_utils.py
Fri Jul 5 13:35:50 2024 leake
* Revision tag: R1-26
* Adding history message for release.
SVN revision: 163154
M HISTORY.rst
* Updated
SVN revision: 163153
M yam/__init__.py
* Adding pyam-format to the list of scripts.
SVN revision: 163152
M setup.py
* Avoiding syntax warning in Python 3.12 by using a raw string.
SVN revision: 162769
M yam/yam_log.py
Tue Jun 25 08:07:56 2024 leake
* Revision tag: R1-25z
* Updated
SVN revision: 162765
M yam/__init__.py
* Updating history.
SVN revision: 162764
M HISTORY.rst
* Updating to use the correct version of git add so pyam doesn't try to
add all the files (even the unversioned ones).
SVN revision: 162763
M yam/git_revision_control_system.py
Tue May 21 14:34:37 2024 leake
* Revision tag: R1-25y
* Updating regex so that comparisons pass regardless of which user is
running the test.
SVN revision: 162122
M test/common/regexp.lst
Thu May 16 12:06:31 2024 leake
* Revision tag: R1-25x
* Adding change entry.
SVN revision: 161985
M HISTORY.rst
* Updated
SVN revision: 161984
M yam/__init__.py
* FORMATTED.
SVN revision: 161983
M pyam
* Syncing pyam.
SVN revision: 161982
M pyam
* Committing mergeinfo
SVN revision: 161980
M .
* Catching corner case where stdin is None (happens when running from a
daemon worker).
SVN revision: 161978
M Dshell/Modules/pyam/featureBranches/pyam-R1-25u-leake1/pyam
Wed May 15 06:16:32 2024 leake
* Revision tag: R1-25w
* Updating orig file due to formatting.
SVN revision: 161877
M test/test_system/test_config/test_expected_errors/output.orig
Tue May 14 14:59:55 2024 leake
* Revision tag: R1-25v
* FORMATTED.
SVN revision: 161869
M yam/git_revision_control_system.py
M yam/email_utils.py
M yam/mysql_database_reader.py
M yam/branched_work_module.py
M yam/build_system.py
M yam/tagged_work_module.py
M yam/configuration_writer.py
M yam/file_system.py
M yam/yam_exception.py
M setup.py
M yam/package_sandbox.py
M yam/make_build_system.py
M yam/mysql_database_writer.py
M yam/database_writer.py
M yam/name_utils.py
M yam/loose_sandbox.py
M yam/local_file_system.py
M test/test_fuzz/test_command_line/script.py
M yam/main_work_module.py
M pyam
M yam/tagged_package_sandbox.py
M yam/sandbox.py
M yam/savable_module.py
M test/test_code/test_vulture/vulture.py
M yam/revision_tag_utils.py
M test/test_code/test_pep257/pep257.py
M yam/module_configuration_utils.py
M yam/concrete_configuration_reader.py
M yam/mysql_database_utils.py
M yam/database_reader.py
M yam/revision_control_system.py
M yam/main_package_sandbox.py
M yam/pysvn_verbose/__init__.py
M test/test_unit/test_svn_revision_control_system/subversion.py
M yam/work_module.py
M yam/svn_revision_control_system.py
M test/test_unit/test_package_sandbox/script.py
M test/test_unit/test_work_module/script.py
M yam/concrete_configuration_writer.py
M yam/configuration_reader.py
M test/test_unit/test_svn_revision_control_system/script.py
M yam/module.py
M test/test_unit/test_svn_revision_control_system/interrupt_test.py
M yam/client.py
M yam/database.py
M yam/yam_log.py
* Updating glob patterns. Before FC40 directories had ./tmp*/sandbox, but
now they are /tmp*/sandbox. Changing to */tmp*/sandbox to work with all
versions.
SVN revision: 161389
M test/test_system/test_build/test_with_package/script.t
M test/test_system/test_build/test_normal/script.t
* Updating so this works with Python verions >= 3.11
SVN revision: 161388
M test/test_distribution/test_all/script.bash
M test/test_distribution/test_setup/script.bash
* Updated
SVN revision: 160872
M yam/__init__.py
Mon Apr 15 14:43:35 2024 leake
* Revision tag: R1-25u
* Adding history entry for 1.25.21.
SVN revision: 160862
M HISTORY.rst
* FORMATTED.
SVN revision: 160861
M yam/email_utils.py
* Updated
SVN revision: 160860
M yam/__init__.py
* Fixing content transfer type to use 8bit. This is what was there before,
but got missed in the port to aiosmtp.
SVN revision: 160859
M yam/email_utils.py
M test/common/email/file_printing_smtp_server.py
Mon Apr 15 08:25:45 2024 leake
* Revision tag: R1-25t
* Syncing with newest pyam.
SVN revision: 160831
M test/common/email/file_printing_smtp_server.py
M yam/__init__.py
M test/test_system/test_save/test_with_email/email_dump_file.orig
M test/test_unit/test_email_utils/script.py
M HISTORY.rst
M yam/email_utils.py
* Committing mergeinfo
SVN revision: 160829
M .
* Updating history.
SVN revision: 160827
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/HISTORY.rst
* Updated
SVN revision: 160826
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/yam/__init__.py
* FORMATTED.
SVN revision: 160825
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/test/common/email/file_printing_smtp_server.py
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/test/test_unit/test_email_utils/script.py
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/yam/email_utils.py
* Updating to use aiosmtpd rather than smtpd. aiosmtpd is replaces smtpd
in newer python versions.
SVN revision: 160824
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/test/common/email/file_printing_smtp_server.py
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/test/test_system/test_save/test_with_email/email_dump_file.orig
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/test/test_unit/test_email_utils/script.py
M Dshell/Modules/pyam/featureBranches/pyam-R1-25r-leake1/yam/email_utils.py
* Switched from deprecated readfp to read_file.
SVN revision: 160816
M Dshell/yam/concrete_configuration_reader.py
* FORMATTED
SVN revision: 160814
M Dshell/yam/tagged_work_module.py
Sat Apr 13 11:49:37 2024 jain
* Revision tag: R1-25s
* SVN revision: 160810
M HISTORY.rst
* Updated
SVN revision: 160809
M yam/__init__.py
* Fixed the sync() method to respect a branch if it is specified.
SVN revision: 160808
M yam/tagged_work_module.py
* Removing print to the terminal, as this conflicts with the --module-only
option that is designed to print just the module name. This will still
print to the yamlog.
SVN revision: 160259
M yam/client.py
Sun Mar 3 10:16:00 2024 jain
* Revision tag: R1-25r
* Updated
SVN revision: 159518
M HISTORY.rst
* Updated
SVN revision: 159517
M yam/__init__.py
* Switched paths from using the obsolete dlab/ partition
SVN revision: 159516
M tox.ini
M js/index.php
M webpage/YaMReleases.php
M webpage.bash
Mon Feb 26 10:43:48 2024 leake
* Revision tag: R1-25q
* Updated
SVN revision: 159373
M yam/__init__.py
* Updating history.
SVN revision: 159372
M HISTORY.rst
* Fixing conditional.
SVN revision: 159371
M yam/git_revision_control_system.py
* Committing mergeinfo
SVN revision: 159369
M .
Tue Feb 13 06:51:45 2024 leake
* Revision tag: R1-25p
* Resolving merge conflicts.
SVN revision: 158963
M yam/git_revision_control_system.py
M yam/client.py
M HISTORY.rst
M README.rst
M yam/__init__.py
* Committing mergeinfo
SVN revision: 158961
M .
* Fixed typo.
SVN revision: 158038
M HISTORY.rst
* Updated to filter out extra messages coming from 'pyam diff' which were
being interpreted as the presence of unreleased commits for the modules,
and causing this command to fail.
SVN revision: 158037
M pyam-format
* Updated.
SVN revision: 158036
M HISTORY.rst
Tue Feb 13 06:48:33 2024 leake
* Revision tag: R1-25p
* FORMATTED.
SVN revision: 158958
M yam/client.py
M yam/git_revision_control_system.py
* Adding entry for new release.
SVN revision: 158957
M HISTORY.rst
* Updating copyright year to include 2024.
SVN revision: 158956
M README.rst
* Updated
SVN revision: 158955
M yam/__init__.py
* Updating pyam to work with external git modules via SSH as well
(previously only supported HTTPS).
SVN revision: 158954
M yam/git_revision_control_system.py
* Fixed typo.
SVN revision: 158038
M Dshell/HISTORY.rst
* Updated to filter out extra messages coming from 'pyam diff' which were
being interpreted as the presence of unreleased commits for the modules,
and causing this command to fail.
SVN revision: 158037
M Dshell/pyam-format
* Updated.
SVN revision: 158036
M Dshell/HISTORY.rst
Mon Dec 25 18:51:49 2023 jain
* Revision tag: R1-25o
* Updated
SVN revision: 157771
M yam/__init__.py
* Updated.
SVN revision: 157770
M HISTORY.rst
* Updated to use a branch off of an older release. This regtest is not in
good shape however and needs fixing since it does not verify that we are
taking a diff between the correct tags.
SVN revision: 157769
M test/test_system/test_diff/test_normal/script.bash
* Fixed diff() to use the root of the branch (instead of the latest
release) when on a branch.
SVN revision: 157768
M yam/client.py
Wed Dec 6 14:06:14 2023 leake
* Revision tag: R1-25n
* Bumpging version.
SVN revision: 157151
M HISTORY.rst
* Updated
SVN revision: 157150
M yam/__init__.py
* Adding fetch at an appropriate point so we don't try and compare against tags that don't exist.
* Improving error message for git in the case of mainline trunk commits.
SVN revision: 157147
M yam/git_revision_control_system.py
Thu Sep 14 16:01:59 2023 leake
* Revision tag: R1-25m
* Updating since git now tries to open the editor for a commit message.
SVN revision: 153727
M test/test_git/test_system/test_rebuild/test_normal/script.t
M test/test_git/test_system/test_sync/test_normal/script.t
M test/test_git/test_system/test_save/test_main/script.t
M test/test_git/test_system/test_save/test_normal/script.t
Thu Sep 14 12:36:39 2023 leake
* Revision tag: R1-25l
* Updating history.
SVN revision: 153719
M HISTORY.rst
* Updated
SVN revision: 153718
M yam/__init__.py
* Committing mergeinfo
SVN revision: 153716
M .
* Committing mergeinfo
SVN revision: 153681
M Dshell/Modules/pyam/featureBranches/pyam-R1-25j-leake
* Committing mergeinfo
SVN revision: 153422
M Dshell/Modules/pyam/featureBranches/pyam-R1-25i-leake
Thu Sep 14 12:32:03 2023 leake
* Revision tag: R1-25k
* Updating so that you can add release messages to a git module.
SVN revision: 153707
M yam/client.py
* Committing mergeinfo
SVN revision: 153705
M .
* Committing mergeinfo
SVN revision: 153413
M Dshell/Modules/pyam/featureBranches/pyam-R1-25i-leake1
Fri Sep 8 08:01:20 2023 leake
* Revision tag: R1-25j
* Added array_unique call to make branch values uniques (for some reason
they are at times duplicated in the database)
SVN revision: 153475
M webpage/YaMReleases.php
Wed Aug 30 14:14:49 2023 leake
* Revision tag: R1-25i
* FORMATTED.
SVN revision: 153392
M test/test_fuzz/test_command_line/script.py
* Trying this but using the common mysql server script.
SVN revision: 153391
M test/test_fuzz/test_command_line/script.py
Wed Jun 7 06:58:41 2023 leake
* Revision tag: R1-25h
* Adding entry.
SVN revision: 150312
M HISTORY.rst
* Updated
SVN revision: 150311
M yam/__init__.py
* FORMATTED.
SVN revision: 150310
M yam/git_revision_control_system.py
* Adding sync before checking out a new tag to ensure the tag is in the
local repo.
SVN revision: 150309
M yam/git_revision_control_system.py
* Making this work for FC38. Not worrying about FC36 compatibility
anymore.
SVN revision: 150290
M Dshell/test/test_system/test_initialize/test_normal/script.t
Fri May 26 13:58:50 2023 jain
* Revision tag: R1-25g
* SVN revision: 149844
M HISTORY.rst
* Fixed up sync method to return right away if already at latest version.
SVN revision: 149843
M yam/tagged_work_module.py
* Updated
SVN revision: 149842
M yam/__init__.py
* Trying to get this to work with FC36 and FC38.
SVN revision: 149756
M test/test_system/test_save/test_build_release_with_tag/script.t
* Trying to make this work in both FC36 and FC38.
SVN revision: 149755
M test/test_system/test_initialize/test_normal/script.t
* Fixing bash syntax.
SVN revision: 149754
M test/test_distribution/test_setup/script.bash
* Fixing bash syntax.
SVN revision: 149753
M test/test_distribution/test_all/script.bash
Thu May 18 17:51:06 2023 jain
* Revision tag: R1-25f
* FORMATTED
SVN revision: 149728
M yam/client.py
Thu May 18 11:45:37 2023 jain
* Revision tag: R1-25e
* SVN revision: 149696
M HISTORY.rst
* Now add link to ReleaseNotes for package releases
SVN revision: 149695
M webpage/YaMReleases.php
* Updated
SVN revision: 149676
M yam/__init__.py
* minor fix
SVN revision: 149675
M yam/client.py
* Updated so that package releases create ReleaseNote links that can be
used to create links on the releases page.
SVN revision: 149640
M yam/client.py
M pyam
* Trying to fix this on FC38.
SVN revision: 149639
M test/test_system/test_initialize/test_normal/script.t
* Fixed typ
SVN revision: 149637
M HISTORY.rst
Tue May 16 21:28:44 2023 jain
* Revision tag: R1-25d
* Fixed the import.
SVN revision: 149633
M pyam
* Added missing import.
SVN revision: 149632
M pyam
* SVN revision: 149631
M HISTORY.rst
* Updated
SVN revision: 149630
M yam/__init__.py
* Added --baseline option to 'pyam config' to generate a config file
associated with a baseline release.
The package name is not allowed with the --baseline option for 'pyam save-package'.
SVN revision: 149629
M pyam
* Updated
SVN revision: 149628
M test/test_system/test_config/test_recall_from/script.t
Sun May 14 14:15:20 2023 jain
* Revision tag: R1-25c
* Updated
SVN revision: 149505
M yam/__init__.py
* Updated.
SVN revision: 149504
M HISTORY.rst
* Updated column sorting capability to reverse sort order with each click.
Added page navigation capability at the top of the table as well.
SVN revision: 149503
M webpage/YaMReleases.php
* Made tmp sandbox area writeable - needed when running from a tagged
module checkout of pyam.
SVN revision: 149502
M test/common/sandbox/make_fake_sandbox.bash
Sun May 14 10:23:50 2023 jain
* Revision tag: R1-25b
* Updated
SVN revision: 149498
M yam/__init__.py
* Updated.
SVN revision: 149497
M test/test_system/test_sync/test_tagged_with_release/script.t
M test/test_system/test_sync/test_normal/script.t
M test/test_git/test_system/test_sync/test_normal/script.t
M test/test_system/test_save/test_maintenance/script.t
M HISTORY.rst
M test/test_system/test_sync/test_normal_with_release/script.t
M test/test_system/test_sync/test_main_with_release/script.t
M test/test_system/test_sync/test_all/script.t
M test/test_system/test_sync/test_tagged_modules/script.t
* Added informative message during syncing.
SVN revision: 149496
M pyam
* Fixed a bug in the syncing of link modules where due to a bad path, pyam
was detecting that the target link module did not exsist and was
checking out a tagged version instead.
Added --baseline option to the register-new-package, save-package and
sync commands.
For the register-new-package command, this option will create a new BaselinePkg
package with just the 'SiteDefs' module to be used for baseline
releases.
For the save-pacakge command, this option will make a release of the
BaselinePkg using the module releases defined by the (required) yam
config file.
For the sync command, this option will cause the module syncing to use
module releases associated with the specified baseline release for each
module sync.
SVN revision: 149495
M pyam
* Updating since grep -E should be used in place of egrep.
SVN revision: 149457
M test/test_smoke/script.t
* Updating for Python 3.11
SVN revision: 149456
M test/test_distribution/test_setup/script.bash
* Updating for Python 3.11
SVN revision: 149455
M test/test_distribution/test_all/script.bash
* Updating for make 4.4
SVN revision: 149454
M test/test_system/test_initialize/test_normal/script.t
* Updating for make 4.4
SVN revision: 149453
M test/test_system/test_save/test_build_release_with_tag/script.t
Sun May 7 23:38:36 2023 jain
* Revision tag: R1-25a
* Replaced obsolete egrep with grep -E
SVN revision: 149309
M test/test_system/test_config/test_recall_from/script.t
* Replaced obsolete egrep with grep -E
SVN revision: 149308
M test/test_system/test_build/test_with_package/script.t
M test/test_system/test_build/test_normal/script.t
* Fixing numbering.
SVN revision: 149182
M HISTORY.rst
Tue May 2 11:36:48 2023 leake
* Revision tag: R1-25
* Updating history.
SVN revision: 149174
M HISTORY.rst
* Updated
SVN revision: 149173
M yam/__init__.py
* Adding switch to tag method as this is different than swtich to branch in git.
* See https://dartsgitlab-internal.jpl.nasa.gov/darts-lab/jpl-internal/all-access/development/infrastructure/pyam/-/issues/24
SVN revision: 149172
M yam/git_revision_control_system.py
M yam/tagged_work_module.py
M yam/revision_control_system.py