forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
16287 lines (11583 loc) · 625 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
2018-07-16 Tomer Brisker <tbrisker@gmail.com>
* i18n - extracting new, pulling from tx
2018-07-16 lizagilman <lizagilman@gmail.com>
* Fixes #23575 - avoid change of heights on fact modal
2018-07-16 Dominik Hlavac <xhlava42@stud.fit.vutbr.cz>
* Fixes #22416 - Taxonomy buttons visible for right taxonomies (#5824)
2018-07-16 Marek Hulán <ares@users.noreply.github.com>
* Fixes #24257 - load all reports and audits in tasks
2018-07-15 Ori Rabin <orrabin@gmail.com>
* Fixes #23831 - Fix JS for oVirt Image based provisioning
2018-07-15 Marek Hulan <mhulan@redhat.com>
* Fixes #21778 - ignore tax scope when displaying filters
2018-07-15 Dominik Hlavac Duran <dhlavacd@redhat.com>
* Fixes #24002 - Add index for unique role names
2018-07-15 Ivan Nečas <inecas@redhat.com>
* Fixes #21172 - address comments
* Fixes #21172 - load template variables to partition tables
2018-07-13 Ivan Nečas <inecas@redhat.com>
* Fixes #24217 - accept shell script for cloud-init in oVirt
2018-07-12 Ori Rabin <orrabin@gmail.com>
* Fixes #23836 - Bump fog-ovirt version for update_vm addition
2018-07-12 Ivan Nečas <inecas@redhat.com>
* Fixes #24220 - increase recommended pool size for the db
2018-07-12 Lukáš Zapletal <lzap@redhat.com>
* Fixes #24185 - logging env override config fixed (#5792)
* Fixes #23623 - expiration rake task in batches
2018-07-12 Marek Hulan <mhulan@redhat.com>
* Fixes #24194 - support dots in name for http proxies
2018-07-11 Ivan Nečas <inecas@redhat.com>
* Refs #24125 - mock libvirt sooner
2018-07-10 Ben Plessinger <plessbd@users.noreply.github.com>
* Fixes #23479 - Enhance OpenStack VM Creation
2018-07-10 Amir Fefer <amirfefer@gmail.com>
* Fixes #23977 - add onClick callback to breadcrumbs
* Fixes #24017 - Add scrollbar in org/log dropdown (#5722)
2018-07-10 Ondřej Pražák <xprazak2@users.noreply.github.com>
* Fixes #23918 - Find correct scope when updating taxonomy
* Fixes #24125 - Show error when libvirt not reachable
2018-07-10 Chris Roberts <chrobert@redhat.com>
* Fixes #23961 - Update Foreman Fog-Vsphere select_nic method.
2018-07-09 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23579 - Use a bundler group for assets
2018-07-09 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #23965 - Only save ids for association audits (#5753)
* Fixes #24192 - Clean up auth_source_selected action leftovers
2018-07-09 Avi Sharvit <asharvit@redhat.com>
* Fixes #23290 - Unmount components before dom-update
2018-07-08 Daniel Lobato Garcia <me@daniellobato.me>
* Fixes #23382 - Hashes in arrays are shown properly on ENC
2018-07-06 Timo Goebel <mail@timogoebel.name>
* fixes #24186 - improve vsphere error handling
2018-07-06 Ondřej Pražák <xprazak2@users.noreply.github.com>
* Fixes #23705 - Do not associate ptable snippets
2018-07-06 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #24167 - Remove legacy_puppet_hostname setting
2018-07-05 Ondřej Pražák <xprazak2@users.noreply.github.com>
* Fixes #23896 - Update taxonomies when refreshing metadata
2018-07-05 Ori Rabin <orrabin@gmail.com>
* Fixes #24122 - Remove limit from LookupValue value
2018-07-05 Marek Hulán <ares@users.noreply.github.com>
* Fixes #24158 - fix cloning of roles
2018-07-05 kgaikwad <kavitagaikwad103@gmail.com>
* Fixes #23933 - consider associated object in set_taxonomies
2018-07-04 Marek Hulan <mhulan@redhat.com>
* Fixes #23782 - restore login disabling
2018-07-03 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23162 - Fix path for tabs on smart-proxy page
2018-07-03 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #21883 - improved user context switch logging
2018-07-03 Ivan Nečas <inecas@redhat.com>
* Fixes #24072 - freeip with compute resource via hostgroup
* Refs #24072 - fix compute profile with CR set via HG
* Refs #24072 - fix selecting hostgroup with compute resource
2018-07-02 Lukáš Zapletal <lzap@redhat.com>
* Fixes #24022 - unattended error input is UTF-8 friendly (#5761)
2018-07-01 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23834 - better assert in host test
* Fixes #24109 - common kernelcmd param for all OSes
* Fixes #23808 - monotonic timer to measure durations
2018-07-01 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23062 - Add custom message on form submit
2018-07-01 Shira Maximov <shiramaximov@gmail.com>
* Fixes #23196 - Add default values for cores and socket in VM
2018-07-01 Amir Fefer <amirfefer@gmail.com>
* Fixes #23920 - add missing header in welcome pages
2018-07-01 Michael Moll <kvedulv@kvedulv.de>
* Fixes #19766 - Disable Layout/AlignParameters cop
* Fixes #19765 - Disable Layout/AlignHash cop
* Fixes #19887 - Disable Style/ParenthesesAroundCondition cop
2018-06-29 Lukas Zapletal <lzap+git@redhat.com>
* Refs #24057 - fixed broken email test
2018-06-28 Aditi Puntambekar <apuntamb@redhat.com>
* Fixes #24057 - Email subject prefix accepts long strings (#5742)
2018-06-28 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23994 - Do not update templates out of scope
2018-06-28 David Davis <daviddavis@redhat.com>
* Fixes #24098 - Remove mention bot config
2018-06-27 Amir Fefer <amirfefer@gmail.com>
* Fixes #23991 - rephrase RSS setting description
2018-06-26 Lukáš Zapletal <lzap@redhat.com>
* Fixes #18765 - finish script use FQDN when IP is missing
2018-06-26 Bernhard Suttner <sbernhard@users.noreply.github.com>
* Fixes #24071 - Adding locked state (#5741)
2018-06-26 Shira Maximov <shiramaximov@gmail.com>
* Fixes #23536 - No errors when unattended=false
2018-06-25 Stephen Benjamin <stephen@redhat.com>
* fixes #24046 - return id as str for name as last resort
2018-06-25 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #23924 - Use consistent IDs for modules in webpack
2018-06-24 Ori Rabin <orrabin@gmail.com>
* Fixes #24053 - Remove oVirt specific error
2018-06-24 Tom McKay <thomasmckay@redhat.com>
* fixes #23862 - scoped search audit comment
2018-06-24 Aditi Puntambekar <apuntamb@redhat.com>
* Fixes #24025 - Pass full_name attribute for settings in API
2018-06-24 Marek Hulan <mhulan@redhat.com>
* Fixes #23951 - fix searching by config group
2018-06-22 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23962 - Fix Style/ExpandPathArguments cop
* Refs #20891 - fix for new rubocop rules
2018-06-21 Julian Todt <julian.todt@dm.de>
* Fixes #23626 - Move autosign to build queue
2018-06-21 Timo Goebel <mail@timogoebel.name>
* fixes #22467 - dashboard: list hosts in build mode
2018-06-21 Amir Fefer <amirfefer@gmail.com>
* Fixes #23599 - fix subtotal value in API call with thin=true
2018-06-21 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23865 - update compression-webpack-plugin
2018-06-20 Tomer Brisker <tbrisker@gmail.com>
* Refs #23924 - replace HashModuleId with NamedModules
2018-06-20 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Refs #23825 - Improve the rake task for tarballs
2018-06-20 Michael Moll <kvedulv@kvedulv.de>
* Revert "Fixes #24003 - remove babel-polyfill from vendor.js"
* Fixes #19858 - Configure Style/EmptyMethod cop (#5703)
* Fixes #19873 - Fix Style/MultilineIfModifier cop (#5705)
2018-06-19 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #24003 - remove babel-polyfill from vendor.js
2018-06-19 orrabin <orabin@redhat.com>
* Fixes #23976 - Add Quota to oVirt API (#5715)
2018-06-19 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #21007 - new unattended action 'failed'
2018-06-19 Amir Fefer <amirfefer@gmail.com>
* Fixes #23391, #23251 - adjsut breadcrumbs swticher to pf design
2018-06-19 Shira Maximov <shiramaximov@gmail.com>
* Fixes #22117 - Add support for number of sockets for ovirt
2018-06-19 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23825 - Add exporting to Rakefile.dist
2018-06-18 Avi Sharvit <asharvit@redhat.com>
* Fixes #23790 - Upgrade and pin patternfly-react
2018-06-18 Boaz Shuster <boaz.shuster.github@gmail.com>
* Fixes #23709 - Fix ajaxRequestAction failure dispatch
2018-06-18 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23930 - PXELinux loader is now preferred
2018-06-15 Eric D Helms <eric.d.helms@gmail.com>
* Fixes #23952 - Include all asset paths when precompiling plugins (#5699)
2018-06-15 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23953 - Port robottelo tests for settings
2018-06-15 Lukáš Zapletal <lzap@redhat.com>
* Fixes #23768 - keep_subnet flag to prevent subnet override (#5635)
2018-06-14 Shira Maximov <shiramaximov@gmail.com>
* Fixes #20891 - Remove hostname from /hosts/x/facts results
2018-06-14 Michael Moll <kvedulv@kvedulv.de>
* Fixes #19789 - fix Layout/SpaceAroundOperators cop
* Fixes #19775 - Fix Layout/ExtraSpacing cop
* Refs #22058 - refresh rubocop config and apply autofixes
2018-06-14 Marek Hulan <mhulan@redhat.com>
* Refs #23132 - stabilize bookmark test
2018-06-14 Adam Ruzicka <aruzicka@redhat.com>
* Fixes #23932 - Fixes failing application job tests for some plugins
2018-06-13 Amir Fefer <amirfefer@gmail.com>
* Fixes #23690 - update react to 16.3
2018-06-13 Zachary Bedell <zac@thebedells.org>
* fixes #23909 - vsphere: prefer network search by key
2018-06-13 Tomer Brisker <tbrisker@gmail.com>
* Fixes #23913 - Stop auditing host status updates
2018-06-12 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23857 - Fix Performance/InefficientHashSearch cop
2018-06-12 Stephen Benjamin <stephen@redhat.com>
* fixes #23232 - fix error when domain not in taxonomy
2018-06-12 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23875 - removed old session tests
2018-06-11 Adam Růžička <adamruzicka@users.noreply.github.com>
* * Fixes #23611 - Provide helper method to run "service" active jobs
2018-06-11 Sean O'Keeffe <seanokeeffe797@gmail.com>
* Fixes #23848 - template import should use taxonomies title
2018-06-11 Sebastian Gräßl <mail@bastilian.me>
* Fixes #23843 - Exclude requests to local host from proxying
2018-06-11 Tomer Brisker <tbrisker@gmail.com>
* Fixes #23852 - Properly escape html in template preview errors
2018-06-10 Tristan Robert <tristan.robert.44@gmail.com>
* Fixes #23859 - Fix vm_exists? method
* Fixes #23859 - Queue orchestration compute
2018-06-10 lizagilman <lizagilman@gmail.com>
* Fixes #23598 - move report metrics chart to c3
2018-06-08 Daniel Lobato Garcia <me@daniellobato.me>
* Fixes #23818 - Update fog-openstack to save OpenStack OSP 12
2018-06-08 kgaikwad <kavitagaikwad103@gmail.com>
* Fixes #23377 - audit external group membership changes (#5555)
2018-06-07 Daniel Lobato Garcia <me@daniellobato.me>
* Fixes #13749 - Handle Base64 and binary LDAP avatars
2018-06-07 Tomas Strachota <tstrachota@redhat.com>
* Refs #21580 - require rbvmomi
2018-06-07 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23842 - Load factory_bot only when needed
2018-06-07 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23826 - model class logger is now app
2018-06-06 Thomas Gelf <thomas@gelf.net>
* Fixes #23830 - gitignore: add vendor/ruby
2018-06-06 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23800 - i18n for exceptions fixed
2018-06-06 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23806 - explicitly use Rails 5.2 compatible gems
2018-06-06 Shimon Shtein <sshtein@redhat.com>
* Fixes #23828 - Upgrade mocha dependency
2018-06-06 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #23764: Ensure proper plugin asset generation for SCSS
2018-06-06 Tomer Brisker <tbrisker@gmail.com>
* Fixes #23813 - Allow searching audits by type=auth_source
2018-06-06 Quirin Pamp <pamp@atix.de>
* Fixes #23677 - Add additional config options to foreman-debug
2018-06-05 Michael Moll <kvedulv@kvedulv.de>
* Refs #23776 - correct deprecation for notice
2018-06-05 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #19968: Add a rake task to seed your database
2018-06-05 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23775 - exposed random name generator
2018-06-05 Stephen Benjamin <stephen@redhat.com>
* fixes #23178 - seeded location should be in seeded org
2018-06-04 Timo Goebel <mail@timogoebel.name>
* fixes #23378 - vsphere: filter volume key parameter
2018-06-04 Tomas Strachota <tstrachota@redhat.com>
* Fixes #21580 - normalize compute attributes (#4980)
2018-06-03 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23776 - Remove deprecations for 1.18
2018-06-02 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23756 - improved wait_for_ajax
2018-06-01 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23142,#23503 - telemetry improvements
2018-06-01 Rahul Bajaj <rahulrb0509@gmail.com>
* Fixes #23769 - consistency in docs for foreman/katello
2018-06-01 Marek Hulan <mhulan@redhat.com>
* Refs #22984 - fix the type for all templates
2018-05-31 Marek Hulan <mhulan@redhat.com>
* Fixes #22778 - disableable bruteforce protection
2018-05-31 Ondrej Prazak <oprazak@redhat.com>
* Bump version to 1.19.0-develop
2018-05-31 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23643 - Stop bundle install in Travis
2018-05-31 Steve Miller <me@r15cookie.com>
* Fixes #19990 - VMWare allow save vm w/o size_gb attr
2018-05-31 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23376 - subnet.vlanid size is 4 bytes
* Fixes #23379 - proxy stubs on API level
2018-05-30 Peter Ondrejka <pondrejk@redhat.com>
* Refs #23499 - pids for ported tests
2018-05-30 Michael Moll <kvedulv@kvedulv.de>
* Refs #22601 - update AS deprecations
* Refs #22601 - update DB gems from AR adapters
* Fixes #22601 - Update Rails to 5.1.6
2018-05-30 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23736 - Add RancherOS templates into seeds
* Sync templates from community-templates
2018-05-29 Timo Goebel <mail@timogoebel.name>
* fixes #23686 - filter audits by settings type
2018-05-28 Michael Moll <kvedulv@kvedulv.de>
* Fixes #21997 - make http_proxy extension excon >0.59 compatible (#5526)
2018-05-27 Michael Moll <kvedulv@kvedulv.de>
* change some URLs to https
2018-05-27 Gilad Lekner <gilad215@gmail.com>
* fixes #23357 - Refactor Notification Drawer from patternfly-react
2018-05-25 Ohad Levy <ohadlevy@gmail.com>
* refs #22847 - remove unused charts code.
* fixes #23681 - move auth_source_ldap js to webpack (#5607)
2018-05-24 Amir Fefer <amirfefer@gmail.com>
* Fixes #23550 - add to_hash method to Menu
2018-05-24 Lukáš Zapletal <lzap@redhat.com>
* Fixes #23679 - Nil error in migrate_template_to_parameters_macros (#5606)
2018-05-22 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23635 - Centralize use of facter
* Fixes #23645 - Make loading settings.yaml optional
* Fixes #23577 - Configurable security token path
2018-05-22 Boaz Shuster <ripcurld.github@gmail.com>
* Fixes #22698 - clear the search filter
2018-05-22 Bastian Blank <bastian.blank@credativ.de>
* Rename method that does not cache
* Fixes #23608 - Only calculate lookup values once
2018-05-22 Michael Moll <kvedulv@kvedulv.de>
* Fixes #19855 - Disable Style/ConditionalAssignment cop
2018-05-22 Marek Hulan <mhulan@redhat.com>
* Fixes #23487 - support namespaced controllers
2018-05-22 Timo Goebel <mail@timogoebel.name>
* fixes #23573 - add pagelets for cr show page
2018-05-22 Boaz Shuster <boaz.shuster.github@gmail.com>
* Fixes #23468 - Add a test helper to test reducers with fixtures
2018-05-19 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23646 - Remove storeconfig leftovers
2018-05-19 Evgeni Golov <evgeni@golov.de>
* Refs #23511 - make webpack generated bundle reusable by plugins
2018-05-18 Amir Fefer <amirfefer@gmail.com>
* Fixes #23628 - fix BreadcrumbBar actions test failure
2018-05-18 Timo Goebel <mail@timogoebel.name>
* fixes #23621 - passwords can be md5 hashed
2018-05-18 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* Fixes #23629 - Fix redirect parameters on hosts page
2018-05-18 Djebran Lezzoum <ldjebran@gmail.com>
* Refs #23295 - Robottelo tests reporting (#5586)
2018-05-17 Marek Hulan <mhulan@redhat.com>
* Fixes #22983, #22010 - ignore persistence authz for relations
2018-05-17 Amir Fefer <amirfefer@gmail.com>
* Fixes #23364 - add search input in breadcrumbs switcher
2018-05-16 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23609 - Port robottelo tests for classparameters
2018-05-16 ldjebran <ldjebran@gmail.com>
* Fixes #23605 - Port robottelo tests - smart_proxy
2018-05-16 Avi Sharvit <asharvit@redhat.com>
* Fixes #22683 - Domain level PasswordStrength entry
* Fixes #23521 - BreadcrumbBar nested name_field
2018-05-16 Amir Fefer <amirfefer@gmail.com>
* Fixes #23601 - switch org/loc button ordering in vertical nav
* Fixes #23559 - fix breadcrumbs switcher in trends page
2018-05-16 Ondřej Pražák <xprazak2@users.noreply.github.com>
* Fixes #23576 - Fix the 'webpacked_plugins_js_for' helper (#5552)
2018-05-15 ldjebran <ldjebran@gmail.com>
* Fixes #23597 - Port robottelo tests - combination template
* Fixes #23586 - Port robottelo tests for template
2018-05-15 Amir Fefer <amirfefer@gmail.com>
* Fixes #23602 - Remove statisticsHelper file (dead code)
2018-05-15 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23587 - Verify webpack precompile is needed
2018-05-14 Amir Fefer <amirfefer@gmail.com>
* Fixes #23558 - fix npm warning about ellipsis-with-tooltip
2018-05-14 Luuk <luukhafkamp@gmail.com>
* Fixes #22000 - Replace Button component with Patternfly
2018-05-13 lupan.daniel <lupan.daniel@gmail.com>
* Fixes #21992 - Uses patternfly spinner component
2018-05-12 Lonneke Vuur <l.vuur@outlook.com>
* Fixes #15549 - Correct documentation for exports rake task
2018-05-12 lupan.daniel <lupan.daniel@gmail.com>
* Fixes #23169 - Orders settings alphabetically
2018-05-12 Amir Fefer <amirfefer@gmail.com>
* Fixes #23549 - add axios support for wait_for_ajax
2018-05-11 Marek Hulan <mhulan@redhat.com>
* Fixes #23426 - support default flag in templates import
2018-05-11 ldjebran <ldjebran@gmail.com>
* Fixes #23565 - Port robottelo test for smart variables
2018-05-10 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #23511 - Generate webpack plugins in context of vendor/bundle
2018-05-10 lizagilman <lizagilman@gmail.com>
* Fixes #22847 - Use pf-react donut chart in facts page
2018-05-10 Andrea Kao <eirinikos@gmail.com>
* Fixes #23483: edit Foreman license info for GitHub UI
2018-05-09 Amir Fefer <amirfefer@gmail.com>
* Fixes #23527 - enable breadcrumbs switcher in trends
2018-05-08 odovzhenko <oleg.dovzhenko@gmail.com>
* Refs #23485 - Fix interface test
2018-05-08 Amir Fefer <amirfefer@gmail.com>
* Fixes #23248 - disable switcher in compute attributes
2018-05-08 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23518 - Use puma for Capybara tests
2018-05-06 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23514 - Simplify javascript import path
2018-05-04 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Refs #23462 - Allow newer patternfly
2018-05-04 Peter Ondrejka <pondrejk@redhat.com>
* port robottelo tests for filters
2018-05-03 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23474 - update capybara to 3.x
* Refs #23474 - capybara 3.x compatible poltergeist version
* Fixes #23469 - update show_me_the_cookies to 4.x
2018-05-03 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23485 - Port robottelo tests for interfaces
2018-05-03 Amir Fefer <amirfefer@gmail.com>
* Fixes #23486 - remove js warnings when a modal opens
2018-05-03 Tomas Strachota <tstrachota@redhat.com>
* Fixes #23462 - bump patternfly-react to ^2.1.0
2018-05-03 Shira Maximov <shiramaximov@gmail.com>
* Fixes #18429 - Add foreman API support for trends
2018-05-03 Ondrej Prazak <oprazak@redhat.com>
* Fixes #22592 - Add component for radio buttons
2018-05-02 Michael Moll <kvedulv@kvedulv.de>
* Refs #21204 - correct duplicate key in settings fixture
2018-05-02 Ohad Levy <ohadlevy@gmail.com>
* fixes #23387 - FOREMAN_RSS_LATEST_POSTS option now works
2018-05-01 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23443 - relax pinning of rails-i18n
2018-05-01 Ohad Levy <ohadlevy@gmail.com>
* fixes #23467 - refer to any facts, not just puppet's
2018-04-30 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23444 - update secure_headers to 5.x
2018-04-28 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #23414 - Allow plugins to compile in production
2018-04-28 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23361 - Handle webpack manifests from plugins
* Fixes #23423 - Loosen seamless-immutable and lodash dependencies
2018-04-28 ldjebran <ldjebran@gmail.com>
* Fixes #23419 - Port robottelo tests for hostgroup
2018-04-27 kgaikwad <kavitagaikwad103@gmail.com>
* Fixes #23415 - nullify taxonomy associations for audits (#5502)
2018-04-26 Michael Moll <kvedulv@kvedulv.de>
* Fixes #19781 - Fix Layout/LeadingCommentSpace cop
2018-04-26 Ondrej Prazak <oprazak@redhat.com>
* Refs #23147 - Fix style offences
2018-04-26 Peter Lehwess <peter.lehwess@dm.de>
* Fixes #23398 - Don't extend classes from within initializers
2018-04-25 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23358 - Fix audit mails for template content
2018-04-25 Boaz Shuster <ripcurld.github@gmail.com>
* Fixes #23386 - Exit fullscreen when pressing ESC
2018-04-25 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23365 - Silence the ENOENT error for .env
2018-04-25 Ivan Nečas <inecas@redhat.com>
* Fixes #20590 - full ovirt cloud-init support
2018-04-25 Peter Lehwess <peter.lehwess@dm.de>
* Fixes #23276 - Bump up the version of fog-vsphere
2018-04-24 Djebran Lezzoum <ldjebran@gmail.com>
* Fixes #23295 - Robottelo tests reporting (#5464)
2018-04-24 Lukas Zapletal <lzap+git@redhat.com>
* Refs #23177 - datetime precision fixed for unattended test
2018-04-24 Timo Goebel <mail@timogoebel.name>
* fixes #21657 - remove facets when host is removed
2018-04-24 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #23195 - Audit associations on creation and destruction (#5455)
2018-04-23 Lukas Zapletal <lzap+git@redhat.com>
* Refs #23177 - id is not used for unattended order
2018-04-23 jyejare <jyejare@redhat.com>
* Fixes #23350 - Port: Robotello: Minitest: Role Tier1 Tests
2018-04-23 Timo Goebel <mail@timogoebel.name>
* fixes #23335 - normalize scsi attributes in rails 5 (#5475)
2018-04-23 Lukáš Zapletal <lzap@redhat.com>
* Fixes #23331 - grouped permissions for host disabled (#5468)
2018-04-23 Baptiste Agasse <baptiste.agasse@lyra-network.com>
* Fixes #23269 - Align ovirt automatic network selection on vmware
2018-04-23 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23235 - Disable Style/IfUnlessModifier cop
2018-04-22 Marek Hulan <mhulan@redhat.com>
* Fixes #23347 - only show password for internal auth source
2018-04-21 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23339 - Port robottelo tests for hosts
2018-04-21 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23254 - Utilize webmock to prevent network connection
* Fixes #23346 - memory cache store is used for tests
2018-04-20 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #23252 - Speed up unattended controller tests
2018-04-17 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #23147 - Allow plugins to compile production webpack assets
2018-04-17 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23273 - use safemode which allows .freeze
2018-04-16 Tomer Brisker <tbrisker@gmail.com>
* Fixes #23255 - Speed up seeds test
2018-04-16 Daniel Lobato Garcia <me@daniellobato.me>
* Refs #23215 - 2.3 compat. for webpack in plugins script
2018-04-16 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23177 - unattended warning on multiple MACs
2018-04-16 Avi Sharvit <asharvit@redhat.com>
* Fixes #23249 - Support api returning page as string
* Fixes #23240 - BreadcrumbBar prop-type warnings
2018-04-15 Adam Ruzicka <aruzicka@redhat.com>
* Fixes #23223 - Don't allow Dynflow to initialize in db:drop rake
2018-04-15 Marek Hulan <mhulan@redhat.com>
* Fixes #23263 - support namespaced models in audits
2018-04-13 Daniel Lobato Garcia <me@daniellobato.me>
* Fixes #23215 - Keep original names in webpack bundle
2018-04-13 Andrew Kofink <akofink@redhat.com>
* Fixes #23125: add asset_debug config setting
2018-04-12 Ondrej Prazak <oprazak@redhat.com>
* Fixes #15411 - Move smart_proxy_ids_for to Host
2018-04-12 Adam Růžička <adamruzicka@users.noreply.github.com>
* Fixes #23256 - Check if the delayed plans have expected interface (#5448)
2018-04-12 Ivan Necas <inecas@redhat.com>
* Fixes #23145 - fix strong params for compute attributes on fail (#5412)
2018-04-12 Amir Fefer <amirfefer@gmail.com>
* Fixes #23225 - fix vm tab js error in host page
2018-04-11 Amir Fefer <amirfefer@gmail.com>
* Fixes #23222 - flatten breadcrumbs switcher fetched data
* Fixes #22855 - Add full breadcrumbs functionality
2018-04-11 Daniel Lobato Garcia <me@daniellobato.me>
* Fixes #23220 - Humanized name for RSS notifications
2018-04-11 Tomer Brisker <tbrisker@users.noreply.github.com>
* Revert "Fixes #22117 - Add support for number of sockets for ovirt"
* Revert "Fixes #23196 - Add default values for cores and socket in VM"
2018-04-11 Shira Maximov <shiramaximov@gmail.com>
* Fixes #23196 - Add default values for cores and socket in VM
* Fixes #22117 - Add support for number of sockets for ovirt
2018-04-11 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23132 - Fix seeds tests
* Fixes #23132 - Fix seeds tests
* Fixes #23132 - Port robottelo tests for bookmarks
2018-04-11 Ori Rabin <orabin@redhat.com>
* Fixes #23199, #23179 - Bump fog-ovirt to fix ovirt cores/quota
2018-04-11 Michael Moll <kvedulv@kvedulv.de>
* Fixes #19770 - Disable Layout/DotPosition cop
* Fixes #19787 - Fix Layout/SpaceAfterComma cop
2018-04-10 Ondřej Pražák <xprazak2@users.noreply.github.com>
* Fixes #22809 - Turn VM attributes to hash (#5403)
2018-04-09 Lukáš Zapletal <lzap@redhat.com>
* Fixes #23059 - journald plugin is not required (#5377)
2018-04-09 Julian Todt <34890848+juliantodt@users.noreply.github.com>
* Fixes #23040 - Anonymize old audits (#5393)
2018-04-08 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23157 - Enable Performance/FixedSize cop
* Fixes #19848 - Set Style/Alias cop to prefer_alias_method
2018-04-08 Timo Goebel <mail@timogoebel.name>
* fixes #21520 - vsphere: valid vm cloning request
2018-04-07 Marek Hulan <mhulan@redhat.com>
* Fixes #22954 - only deserialize safe objects
2018-04-07 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23135 - foreman-selinux-install.log is collected [skip ci]
2018-04-06 Ondrej Prazak <oprazak@redhat.com>
* Fixes #23097 - Show npm postinstall errors
2018-04-06 Ivan Nečas <inecas@redhat.com>
* Fixes #21055 - use _id attributes for host taxonomy validator
2018-04-06 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #23115 - session is used instead session_safe
2018-04-06 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23106 - Fix MySQL tests
* Fixes #23106 - Port robottelo tests for usergroups
2018-04-05 Sebastian Gräßl <mail@bastilian.me>
* Fixes #23113 - Allow disabling of out of sync status
2018-04-05 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23081 - Fix Style/SafeNavigation cop
* Fixes #19894 - Fix Style/RedundantParentheses cop
* Fixes #19796 - Fix Layout/SpaceInsidePercentLiteralDelimiters cop
* Fixes #19840 - Fix Rails/ReadWriteAttribute cop
* Fixes #19839 - Fix Rails/Present cop
* Fixes #22331 - Fix Rails/Presence cop
* Fixes #19832 - Fix Rails/FindBy cop
* Fixes #23123 - Fix Rails/ActiveRecordAliases cop
2018-04-05 Andrew Kofink <ajkofink@gmail.com>
* Fixes #21829: Add association_exists_validator (#5405)
2018-04-05 Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
* Fixes #23129 - Disable webpack source maps in production
2018-04-05 Ivan Nečas <inecas@redhat.com>
* Fixes #23067 - expose option to use oVirt APIv4
2018-04-05 patilsuraj767 <patilsuraj767@gmail.com>
* Fixes #22982 - Change Environments to Puppet Environments
2018-04-04 Ondřej Pražák <xprazak2@users.noreply.github.com>
* Fixes #22893 - Specify taxonomies on template import (#5323)
2018-04-04 Baptiste Agasse <baptiste.agasse@lyra-network.com>
* fixes #21694 - Add consistency validation for MTU and VLAN
* fixes #21694 - Add MTU to subnet and interface API
* fixes #21694 - Add MTU to subnet
2018-04-04 Michael Moll <kvedulv@kvedulv.de>
* Refs #23011 - set TargetRubyVersion: to 2.3
* Fixes #23080 - Fix Style/EvalWithLocation cop
* Fixes #23079 - Fix Naming/HeredocDelimiterCase cop
* Fixes #19909 - Fix Style/TrivialAccessors cop
* Fixes #23077 - Fix Style/TrailingCommaInArrayLiteral cop
* Fixes #23076 - Fix Style/TrailingCommaInHashLiteral cop
* Fixes #23075 - Fix Rails/HttpStatus cop
2018-04-04 Marek Hulan <mhulan@redhat.com>
* Refs #22049 - improve metadata usability
2018-04-04 Julian Todt <julian.todt@dm.de>
* Fixes #23039 - Remove deleted LDAP users
2018-04-04 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #23098 - Allow searching on all audited models by type (#5395)
2018-04-04 Marek Hulán <ares@users.noreply.github.com>
* Fixes #6752 - log audit events (#5391)
2018-04-04 Stephen Benjamin <stephen@redhat.com>
* Sync community templates
2018-04-03 Ewoud Kohl van Wijngaarden <github@kohlvanwijngaarden.nl>
* Fixes #23100 - Simplify gem requirements syntax (#5394)
2018-04-03 Daniel Lobato García <me@daniellobato.me>
* Refs #15634 - Fix OS test (#5397)
2018-04-03 Tomer Brisker <tbrisker@users.noreply.github.com>
* Refs #22096 - Assign taxonomy to taxonomy audits (#5387)
2018-04-03 Enzo Hamelin <enzo.hamelin@gmail.com>
* Fixes #15634 - RancherOS support
2018-04-03 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23095 - Fix mysql tests
* Fixes #23095 - Port robottelo tests for subnets and parameters
2018-04-03 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23093 - prevent DB deadlocks in IntegrationTestHelper
2018-04-03 Ori Rabin <orabin@redhat.com>
* Fixes #22546 - CVE-2018-1097: Bump fog-ovirt for power action fix
2018-04-02 Bryan Kearney <bryan.kearney@gmail.com>
* Fixes #22856 - Extract the strings from a bare foreman
2018-04-02 Marek Hulan <mhulan@redhat.com>
* Fixes #23064 - log log in and log out activities
2018-04-02 Michael Moll <kvedulv@kvedulv.de>
* Fixes #19895 - Fix Style/RedundantReturn cop
* Fixes #22849 - update rubocop to 0.54
2018-04-02 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23066 - Port robottelo tests for users and user roles
2018-04-01 ldjebran <ldjebran@gmail.com>
* Fixes #23045 - Port Robottelo PTables tests
2018-04-01 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #23004 - Port robottelo tier1 media tests
2018-04-01 Tomer Brisker <tbrisker@gmail.com>
* Refs #22285 - Prepare UI for strong params enforcement
* Refs #22285 - Prepare tests for strong params enforcement
* Refs #22285 - Correct parameter filtering for strong params
* Refs #22285 - Allow unwrapped params on API
* Refs #22285 - add common parameters to strong_params whitelist
* Refs #22285 - Remove keep_param
2018-04-01 Michael Moll <kvedulv@kvedulv.de>
* Refs #22236 - Fix Layout/TrailingWhitespace cop
* Fixes #19910 - Fix Style/UnlessElse cop
* Fixes #19905 - Fix Style/SymbolLiteral cop
* Fixes #19901 - Fix Style/SpecialGlobalVars cop
* Fixes #19874 - Fix Style/MultilineMemoization cop
* Fixes #19857 - Fix Style/EachWithObject cop
* Fixes #19793 - Fix Layout/SpaceInsideReferenceBrackets cop
2018-03-29 Ivan Nečas <inecas@redhat.com>
* Fixes #22888 - remove code around dynflow db_pool_size
2018-03-29 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #22764 - gc stat metric works on rails reload
* Refs #22493 - documented logging macros [skip ci]
2018-03-29 Amir Fefer <amirfefer@gmail.com>
* Fixes #22236 - Adds breadcrumbs to foreman UI
2018-03-29 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #22049 - Add metadata to Audit view (#5359)
2018-03-28 Jan Jansky <jjansky@jjanskyNTB.usersys.redhat.com>
* Fixes #23046 - gateway parameter for subnet corrected
2018-03-28 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #22922 - Port robottelo tier1 compute profiles tests (#5333)
2018-03-28 Amir Fefer <amirfefer@gmail.com>
* Fixes #22685 - improve statistics page loading time
2018-03-28 Chris Roberts <chrobert@redhat.com>
* Refs #22968 - update debug with dynflow logs
2018-03-27 Martin Povolny <mpovolny@redhat.com>
* Fixes #23028 - Properly escape params passed to where (CVE-2018-1096) (#5363)
2018-03-27 John Vagrant <vagrant@smqa-r210-02.lab.eng.brq.redhat.com>
* fixes #23026 - make changes to compute resource passwords audited
2018-03-26 Sean O'Keeffe <seanokeeffe797@gmail.com>
* Fixes #23002 - seed Installation Media with taxonomies
2018-03-26 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #22990 - Use shoulda-matchers
* Fixes #22990 - Port robottelo tier1 compute resources
2018-03-26 Tomer Brisker <tbrisker@gmail.com>
* Fixes #23012 - allow OS release in safemode
2018-03-26 Michael Moll <kvedulv@kvedulv.de>
* Refs #22918 - fix Layout/EmptyLines cop
* Refs #15286 - fix Layout/IndentationWidth cop
2018-03-25 Michael Moll <kvedulv@kvedulv.de>
* Fixes #23007 - renew certs used in oVirt model test
2018-03-22 Partha Aji <paji@redhat.com>
* Fixes #22624 - User selectable columns model + api
2018-03-22 Marek Hulan <mhulan@redhat.com>
* Fixes #22918 - Audit all taxonomies assignments
2018-03-22 Sean O'Keeffe <seanokeeffe797@gmail.com>
* Fixes #22986 - search templates by vendor and default
* Fixes #22984 - Migrate templates auditable_type
2018-03-22 ldjebran <ldjebran@gmail.com>
* Fixes #22979 - Port Robottelo OperatingSystems tests
2018-03-22 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #22158 - Add rake task to delete old audits (#5343)
2018-03-21 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #22910 - Port robottelo tier1 environment tests (#5329)
2018-03-21 Sebastian Gräßl <mail@bastilian.me>
* Refs #22310 - Fix minor rubocop issue
2018-03-21 Marek Hulan <mhulan@redhat.com>
* Fixes #22869 - support template locking on import
2018-03-21 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #22796 - fact importing telemetry
2018-03-21 Djebran Lezzoum <ldjebran@gmail.com>
* Fixes #22930 - Port robottelo Architectures tests (#5335)
2018-03-21 Ido Kanner <ikanner@redhat.com>
* Fixes #2828 - Report an error when trying to save ovirt resource
2018-03-20 kgaikwad <kavitagaikwad103@gmail.com>
* Fixes #22927 - method in audit_associations to get class
2018-03-20 odovzhenko <oleg.dovzhenko@gmail.com>
* Fixes #22800 - Port robottelo tier1 location tests
2018-03-20 orrabin <orabin@redhat.com>
* Fixes #15984 - Avoid escaping overridden parameters (#5126)
2018-03-20 Marek Hulan <mhulan@redhat.com>
* Fixes #22892 - allow extending audited associations
2018-03-20 Dominik Hlavac <xhlava42@stud.fit.vutbr.cz>
* Fixes #15286 - New API for auth sources (#4865)
2018-03-20 Ori Rabin <orabin@redhat.com>
* Fixes #22788 - host compute attributes reload after error
2018-03-19 Stephen Benjamin <stephen@redhat.com>
* refs #22857 - remove separate kickstart for RHEL
2018-03-19 Tomas Strachota <tstrachota@redhat.com>
* Fixes #22817 - update scoped search to 4.1.3
2018-03-19 Daniel Lobato Garcia <me@daniellobato.me>
* Fixes #22880 - Move to Minitest
2018-03-19 Marek Hulan <mhulan@redhat.com>
* Fixes #22916 - add alias for last_report search
2018-03-19 Tomer Brisker <tbrisker@users.noreply.github.com>
* Fixes #22096 - Make Audits taxable (#5269)
2018-03-19 Djebran Lezzoum <ldjebran@gmail.com>
* Fixes #22793 - Port robottelo tests for organization (#5295)
2018-03-19 Dominik Hlavac <xhlava42@stud.fit.vutbr.cz>
* Fixes #18854 - Search by usergroup on hosts (#5317)
2018-03-18 Amir Fefer <amirfefer@gmail.com>
* Fixes #22908 - add placeholder to datatable search inputs
* Fixes #22901 - fix js execution after hitting back/forward
2018-03-16 Lukáš Zapletal <lzap@redhat.com>
* Fixes #21120 - orchestration tasks are added only once (#5079)
2018-03-15 Stephen Benjamin <stephen@redhat.com>
* fixes #22902 - change suggested memory to 2GB