-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyst-cli-release-notes.html
1277 lines (1276 loc) · 66 KB
/
myst-cli-release-notes.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Release Notes | Rubicon Red - MyST CLI</title>
<link rel="shortcut icon" href="images/favicon.ico">
<!-- All styles -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" id="contact-form-7-css" href="styles/contact-form-7.css" type="text/css" media="all">
<link rel="stylesheet" id="prefix-style-custom-css" href="styles/custom.css" type="text/css" media="all">
<link rel="stylesheet" id="all-fonts-css" href="styles/fonts.css" type="text/css" media="all">
<link rel="stylesheet" id="genericons-css" href="styles/genericons.css" type="text/css" media="all">
<link rel="stylesheet" id="prefix-style-css" href="styles/normalize.css" type="text/css" media="all">
<link rel="stylesheet" id="prefix-style-layout-css" href="styles/layout.css" type="text/css" media="all">
<link rel="stylesheet" id="prefix-style-ui-css" href="styles/ui.css" type="text/css" media="all">
<link rel="stylesheet" id="prefix-style-style-css" href="styles/base.css" type="text/css" media="all">
<link rel="stylesheet" id="prefix-custom-style-css" href="styles/style.css" type="text/css" media="all">
</head>
<body class="no-top-padding">
<header class="header" role="header">
<div class="navbar secondary">
<div class="container">
<div class="row">
<div class="full-grid">
<nav class="nav nav-left">
<ul>
<li>
<a href="https://www.rubiconred.com">
<img
src="images/rubicon-red-logo.png"
alt="MyST RubiconRed">
</a>
</li>
<li>
<a href="https://www.linkedin.com/company/rubicon-red"
target="_blank">
<span class="fa fa-linkedin"></span>
</a>
</li>
<li>
<a href="https://twitter.com/rubicon_red" target="_blank">
<span class="fa fa-twitter"></span>
</a>
</li>
<li>
<a href="https://www.youtube.com/user/rubiconxred"
target="_blank">
<span class="fa fa-youtube"></span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<!--End of Header -->
<main class="main-content" role="main" id="main">
<section class="content-section">
<div class="container">
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.5.1.1">MyST CLI 5.5.1.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.5.1.0">MyST CLI 5.5.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-4273 - MyST now prompts the user for the Database Host, Port and Service Name rather than requiring to enter the complete URL</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-4273 - Bug fix: For RAC databases, MyST now computes the correct DataSource URLs when the type is set to GridLink</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.5.0.0">MyST CLI 5.5.0.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-4273 - No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.4.2.1">MyST CLI 5.4.2.1 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.4.2.0">MyST CLI 5.4.2.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-4172 - Multiple role expressions can now �be assigned against a JMS module</li>
<li>FC-3537 - The default transaction support option can now be configured for JCA adapters�within the Model and Blueprint editor</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-4176 - Fixed an issue introduced in 5.4.1.0 which caused the legacy deploy-offline and deploy-online actions to failed</li>
<li>FC-4166 - Fixed an issue where Jar library redeployment fails when there is no managed server (single admin server)</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.4.1.0">MyST CLI 5.4.1.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-4089 - MyST CLI platforms in XML and Properties notation are now compatible with MyST Studio. Users�can easily push them to�MyST Studio and start performing automated operations against the�Platform Instances�such as�Deployment, 11g to 12c Upgrade, Cloud Migration, Patching, Configuration Management and Drift Detection.</li>
<li>FC-4089 - MyST CLI platforms in XML and Properties notation are now compatible with MyST Studio. Users�can easily push them to�MyST Studio and start performing automated operations against the�Platform Instances�such as�Deployment, 11g to 12c Upgrade, Cloud Migration, Patching, Configuration Management and Drift Detection.</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-3264 - For JAR deployments, the existing version is now removed and overwritten with the new one rather than two versions co-existing, as was the case before</li>
<li>FC-4032 - Deploy operation no longer has a mandatory dependency on a WebLogic server instance to allow for deployment of non-WebLogic artifacts.</li>
<li>FC-3322 - Node Manager Passphrase is masked on the file-system for added security.</li>
<li>FC-3264 - For JAR deployments, the existing version is now removed and overwritten with the new one rather than two versions co-existing, as was the case before</li>
<li>FC-4032 - Deploy operation no longer has a mandatory dependency on a WebLogic server instance to allow for deployment of non-WebLogic artifacts.</li>
<li>FC-3322 - Node Manager Passphrase is masked on the file-system for added security.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.4.0.0">MyST CLI 5.4.0.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-3994 - A new utility is now available for migrating existing MyST CLI customers to MyST Studio based on their workspace configuration.</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-3990 - The MyST Configuration Plan can now be configured to have different behaviour for unresolved variables encountered during substitution. We can now choose to ignore the replacement, fail it (default) or replace anyway with the variable itself.</li>
<li>FC-4023 - Relaxed the RCU database password validation for 12c and above.</li>
<li>FC-4025 - If there is an issue with the dry run it shows a more specific error message.</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>FC-3714 - The SCA revision is now correctly applied to SOA composite deployments instead of defaulting to '1.0'.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.3.2.0">MyST CLI 5.3.2.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Advanced SOA and BPM composite deploy-time customisation can now be supported through a MyST Configuration Plan.</li>
<li>Application Roles can now be assigned to other Application Roles.</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Fixes an issue with MFT and SOA having conflicting port values when present in the same domain, from 12.2.1.2.0 the default MFT port is different to SOA.</li>
<li>Fixed an issue relating to Work Manager Max Threads not being correctly discovered during introspection.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.3.1.0">MyST CLI 5.3.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Additional deploy-time properties were added for the ADF artifact type so that it now supports all of the properties that are supported by the Java EAR artifact type.</li>
<li>Embedded deployment plans are supported for J2EE applications</li>
<li>MyST supports applying atypical patches that mandate ORACLE_HOME to be set at Patch time.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.3.0.3">MyST CLI 5.3.0.3 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.3.0.2">MyST CLI 5.3.0.2 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: The Agent to Studio integration was broken in 5.3.0.0</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.3.0.1">MyST CLI 5.3.0.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.3.0.0">MyST CLI 5.3.0.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now supports optionally specifying an IP address or hostname to bind to for HTTP and HTTPS communication. This allows multiple OHS instances to be configured on the same machine using identical port configuration without resource clashes.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.2.1.0">MyST CLI 5.2.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>SQL artifacts now get executed as part of standard deployment</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Fixed issue where MyST hangs if there is no java on the target host in the PATH</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.2.0.2">MyST CLI 5.2.0.2 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.2.0.1">MyST CLI 5.2.0.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.2.0.0">MyST CLI 5.2.0.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST supports sudo-rule for platform provisioning where one can specify a run-as-user assuming whose identity MyST will perform all actions after connecting as the agent user.</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Projects can now be deleted via MyST CLI</li>
<li>MyST is now certified against OFMW 12.2.1.2.0 for the following components: SOA,OSB,BAM,BPM,B2B,WSM,MFT,ESS,ADF,BI,OBIEE,OTD,WLS,OHS</li>
<li>Passphrase is now masked in myst-web and MyST CLI</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.1.1.3">MyST CLI 5.1.1.3 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.1.1.2">MyST CLI 5.1.1.2 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.1.1.1">MyST CLI 5.1.1.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.1.1.0">MyST CLI 5.1.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now removes 'absent' patches before applying new patches</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.1.0.2">MyST CLI 5.1.0.2 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>You can explicitly define a listen address for OHS</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Fixed: Node Manager identity key store passphrases fail if there is a special character</li>
<li>Fixed: Dependent patches not rolled back in reverse order</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.0.1.1">MyST CLI 5.0.1.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>SOA Extensions deployment are now supported for SOA 12.2.1</li>
<li>Improvements on Weblogic Workmanager support</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Fixed: In some circumstances MyST execution was hanging when the target nodes had Kerberos enabled</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.0.0.3">MyST CLI 5.0.0.3 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Fixed: Issue when provisioning/updating an environment with Weblogic Mail Session</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="5.0.0.2">MyST CLI 5.0.0.2 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now supports provisioning of OBIEE 12c</li>
<li>MyST now supports deployment of BAM 12.2.x artifacts</li>
<li>MyST now supports configuration of WebLogic Store-and-forward resources (agents, remote contexts, imported destinations and error handling)</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now allows users to have their custom Maven settings and takes care of distributing and using it while running Maven</li>
<li>For artifact configuration plans, the user now needs to specify less metadata and MyST discovers the plan automatically if configured with proper naming conventions</li>
<li>WebLogic Authenticator for OpenLDAP can now be configured with MyST</li>
<li>Migratable targets are now supported for Weblogic resources update</li>
<li>Per-host Node Manager can now be enabled using MyST</li>
<li>Custom nodemanager.properties can now be set using MyST</li>
<li>SOA Mbeans can now be configured on 12.2.1.1.0</li>
<li>MyST now allows one to configure SSL for OHS</li>
<li>MyST now allows one to define a custom log format for OHS</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.1.5">MyST CLI 4.0.1.5 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Added support for Weblogic custom system policy</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: patch-domain action has fixes and improvements</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.1.4">MyST CLI 4.0.1.4 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: When JSSE is enabled MyST sets weblogic.security.SSL.minimumProtocolVersion property to TLSv1.0</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.1.3">MyST CLI 4.0.1.3 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Fixed issue in the patch-domain action, which was introduced in 4.0.1.2</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.1.2">MyST CLI 4.0.1.2 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: MyST Agent now successfully configures multiple custom environment variables for a FMW domain in setUserOverrides.sh/cmd</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.1.1">MyST CLI 4.0.1.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.1.0">MyST CLI 4.0.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>The end user can now skip the SCA 11g compilation phase during the build process.</li>
<li>The OTD listener is now part of the MyST platform lifecycle, supporting start/stop/terminate actions.</li>
<li>The Out of the box Derby database is not enabled as part of OSB 12c provisioning anymore.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.0.1">MyST CLI 4.0.0.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="4.0.0.0">MyST CLI 4.0.0.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>BPMN Mbeans can now be configured using MyST</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Additional JMS and Authentication Provider configuration parameters are available in the core model</li>
<li>RecurringScheduleConfig can now be configured through a MyST platform blueprint</li>
<li>BAM and BPM routing rules for Oracle HTTP Server are now automatically computed</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: There was a bug which was throwing an error when creating a Blueprint with OTD 12.2.1.1.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.9.2.0">MyST CLI 3.9.2.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Improvements to shutdown time for the WebLogic admin server for 12c products</li>
<li>The transaction recovery privilege can now be enabled for the SOAINFRA database as part of the RCU execution</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.9.1.0">MyST CLI 3.9.1.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>Ability to configure the WSM keystore</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>patch-domain now updates all servers in a platform and allows to customise the domain.home directory</li>
<li>WLST security objects can now be automatically converted to myst-extension</li>
<li>Removed unnecessary targeting from mds-owsm for ESS</li>
<li>MyST now supports updating configuration via the 'update' action for OTD</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: When Exalogic was enabled in an MFT domain it was auto-computing SOA and OSB as products</li>
<li>Bug fix: MyST now correctly provisions configurations using OHS 12.2.1.1.0</li>
<li>Bug fix: Start/Stop of OAG instances was not working in an Exalogic environment</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.9.0.3">MyST CLI 3.9.0.3 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>WLST security objects can now be automatically converted to myst-extension.</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>The target URL for Java projects can now be stripped of the version when deployed through MyST Studio.</li>
<li>Fixed an issue with provisioning configurations using OHS 12.2.1.1.0.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.9.0.2">MyST CLI 3.9.0.2 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>Oracle Fusion Middleware (Integration) 12.2.1.1 is now supported (Preview).</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.9.0.1">MyST CLI 3.9.0.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>OAG patches are now specified the same way as for OFMW products.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.9.0.0">MyST CLI 3.9.0.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>OTD 12.2.1 installation is now supported</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li> "If the admin server has JSSE Enabled specified as true</li>
<li>Exalogic Shared Deployment directory is aligned with EDG</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.2.3">MyST CLI 3.8.2.3 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.2.2">MyST CLI 3.8.2.2 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Remote installation now performs a homogeneous installation of all products for 11g </li>
<li>Configuring Keystore Providers and Trusted SAML Issuers in a domain with SSL enabled is now supported</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.2.1">MyST CLI 3.8.2.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.2.0">MyST CLI 3.8.2.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST computation simplifies Exalogic EDG compliance</li>
<li>MyST now supports RDS as a datasource type and does auto computation if the flag, 'aws-rds-enabled' is set to true for RCU</li>
<li>MyST now supports an additional flag argument, 'limit-nodes' which can be set to limit the action to specific nodes. All actions which manage start / stop lifecycle of servers / machines honor this (patch, stop, stop-all, start-all, restart-all, start-nm, stop-nm, etc.)</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now supports start, stop and terminate operations for OAG configurations.</li>
<li>MyST now ensures that OAG instances are assigned with an ordering consistent with the ordering of nodes in a configuration.</li>
<li>DNS lookup to create fully qualified domain names for hosts must now be enabled via the -Ddns.domain-name.generation=on parameter, and does not happen by default.</li>
<li>Note - The update action no longer applies patches. To apply them, one would have to first run the patch action explicitly</li>
<li>Security improvement: RCU system password can be used only by RCU actions</li>
<li>You can now add additional parameters to be taken by the OFMW installation. e.g: -Doui.additional.args=-ignoreSysPrereqs</li>
<li>You can now specify the RCU property for OFMW 12.2.1: soa-profile-type=LARGE, which will use partitioning on the SOA schemas</li>
<li>MyST now allows one to have composite actions as part of pre / post of other actions</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug Fixed: Patches under fmw-common can now be applied. e.g: For OWSM</li>
<li>Bug fix: The start-nm command honours the -Dmachines override now</li>
<li>Bug fix: Provisioning was failing when one has OSB, SOA, BAM, BPM, ESS and ADF 12.2.1</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.1.1">MyST CLI 3.8.1.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>No changes</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.1.0">MyST CLI 3.8.1.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>OAG Patch 11g is now supported</li>
<li>MyST now allows DBAs to define pre and post SQL to be executed at schema creation-time during platform provisioning</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now supports the destroy action with a non-standard inventory location pointer file (identified via the oui.inventory.loc property) </li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.0.1">MyST CLI 3.8.0.1 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>BSU is supported now as part of platform update</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: The platform update was always updating password, hence requiring a server restart even if the password was not changed</li>
<li>Bug fix: Even when the configuration plan was not getting applied, the deployment was marked as successful</li>
<li>Bug fix: The security action in 12c was failing if credentials maps are defined as part of the model</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.8.0.0">MyST CLI 3.8.0.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Improved the support for SOA tuning parameters</li>
<li>Jenkins is not part of the MyST CLI installer anymore. You can install Jenkins from the official distribution, and still use the MyST CLI Jenkins plugin</li>
<li>The MyST agent and MyST workspace directories on the target hosts can now be customised in MyST Studio. The temporary files are now being saved under the MyST temporary workspace, and are deleted when MyST agent completes its execution.</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Fixed URL parsing when invoking SQL action using Oracle native SQLPlus client</li>
<li>Bug fix: Custom XPath deployment failed after deploying OWSM Policies</li>
<li>Bug fix: The RCU prefix is now converted to upper case. That fixes issues when MyST rcu drop action wasn't dropping the database schemas for JMS database persistence</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.7.2.0">MyST CLI 3.7.2.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now supports Solaris 11 as a supported operating system for provisioning</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>ADF is now supported as part of WLS vanilla cluster</li>
<li>The global connection pool parameters are now part of the JCA model and need not be specified as custom properties</li>
<li>UMS Configuration is now supported in 12c</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Sub-deployments were not being properly targeted in offline mode, resulting in UDDs getting targeted in an incompatible way to multiple clusters</li>
<li>Bug fix: The global connection pool parameters were not supported in the new JCA implementation</li>
<li>Bug fix: All 11g environments started failing whiling starting the managed servers as part of the provisioning</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.7.1.0">MyST CLI 3.7.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>RCU JMS/TLOG persistent component WLSDSTORE now supports honor-OMF</li>
<li>MyST now supports provisioning WCP 12.2.1 domains</li>
<li>JCA adapter configuration is now supported as part of platform update</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Fixed issue that prevented to specify the J2EE deployment order</li>
<li>Bug fix: Fixed issue that prevented a MyST Customisation plan to be applied to OSB artifacts whenever using EMBEDDED plan</li>
<li>Fixed obscure issue on Oracle Linux 5.10 where the WebLogic Node Manager shuts down after provisioning</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.7.0.0">MyST CLI 3.7.0.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Internal: start-nm improvements</li>
<li>Deployment for SOA composites is supported now over SSL</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.6.2.1">MyST CLI 3.6.2.1 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>OWSM Policies in 12c are now supported in MyST</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>User overrides for environment variables are easier to define at the blueprint-level with MyST Studio</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Fixed issue which was causing non-root, non-global inventory to be used during provisioning</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.6.2.0">MyST CLI 3.6.2.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>EM Credential Maps in 12c are now supported</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now uses the trust store configured at the admin server level for establishing connections to WebLogic / Node Manager before falling back to the in-built store</li>
<li>Security enhancements for the support artifact</li>
<li>Improvements to support for Oracle common security WLST execution in 12c</li>
<li>RCU action for creating Database JMS persistence store/TLOGS support now Oracle Database 12c</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: MyST now supports SOA and BAM provisioned on the same domain, with multiple nodes. The issue was around UMSJMS servers.</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.6.1.0">MyST CLI 3.6.1.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>The MyST model now supports most of the common logging configuration for the WebLogic servers</li>
<li>The MyST model now supports mail sessions</li>
<li>The MyST model now supports JTA timeout configuration</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST now looks for the API key in a configuration file rather than using a hard-coded token when it invokes the studio to retrieve platform models</li>
<li>patch-domain is improved to support Weblogic 12c better</li>
<li>Added RCU support for the 'honor-omf' flag</li>
<li>The LDAP provider configuration in the MyST model has been extended to support additional configuration parameters</li>
<li>The startup and shutdown class configuration has been extended in the MyST model to support additional configuration parameters</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Node manager computation was incomplete when there is a customisation on the Admin Server properties</li>
<li>Bug fix: oui.inventory.loc default value /etc/oraInst.loc was not computed for MyST Studio, and was resulting in the instance configuration getting messed up</li>
<li>Bug fix: The node manager computation for 12c does not work if the configuration already contains the node manager entry</li>
<li>Bug fix: Reordering of LDAP providers was not working</li>
<li>Bug fix: Persistence strategy for one data sources was affecting the setting for other data sources</li>
<li>Bug fix: The node manager settings dont seem to get applied if previous changes are introduced in online mode which require a server restart</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.6.0.0">MyST CLI 3.6.0.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Oracle inventory now defaults to the standard /etc/oraInst.loc if not specified</li>
<li>Non-remote install for 12c products has been deprecated</li>
<li>MyST now looks for the trust store used for making WLST connections under the MYST_HOME if not found under the MYST_WORKSPACE</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.5.1.0">MyST CLI 3.5.1.0 Release</h1>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST CLI has a new agent binary for applying patches which directly consumes the Studio JSON model and returns back a JSON output as well</li>
<li>The new patch action can remove applied patches as well based on configuration</li>
<li>You can now specify Identity store details and additional Java arguments to the node manager</li>
</ul>
</div>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: Weblogic 12c installation when using the deprecated MyST install method, might not use the existing Oracle Inventory Location</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.5.0.1">MyST CLI 3.5.0.1 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>No bugs reported</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.5.0.0">MyST CLI 3.5.0.0 Release</h1>
<h2 class="underlined_title">New Features</h2>
<div class="bullet-points">
<ul class="tick">
<li>MyST Custom Configuration plan is now supported for OSB artifacts</li>
<li>MyST now supports SSL configuration for WebLogic, including custom identity and trust stores</li>
<li>JMS resources are now supported in the MyST Model</li>
<li>LDAP, OID and Active Directory authentication providers are now supported in the MyST Model</li>
</ul>
</div>
<h2 class="underlined_title">Improvements</h2>
<div class="bullet-points">
<ul class="tick">
<li>Server Channels are now supported in the MyST Model</li>
<li>Exalogic is now supported in the MyST Model</li>
<li>MyST Web MYST_HOME and MYST_WORSPACE directories were fixed. This can be customised now by setting respectively System Environment variables: MYST_HOME and MYST_WORKSPACE</li>
<li>Added support for OFMW 11.1.1.6.0 catalog</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.4.2.2">MyST CLI 3.4.2.2 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">
<ul class="tick">
<li>Bug fix: No bugs reported</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="release-notes full-grid">
<h1 class="underlined_title" id="3.4.2.1">MyST CLI 3.4.2.1 Release</h1>
<h2 class="underlined_title">Bug Fixes</h2>
<div class="bullet-points">