forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
16946 lines (12038 loc) · 648 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-10-16 Martin Bačovský <[email protected]>
* Fixes #25188 - Remove unbound facts from /hosts/x/facts
2018-10-16 Boaz Shuster <[email protected]>
* Fixes #25203 - show hosts count if hostsCount is not null
2018-10-16 Tomer Brisker <[email protected]>
* i18n - extracting new, pulling from tx
* Fixes #25214 - update template snapshots, seeds test
2018-10-16 Lukas Zapletal <[email protected]>
* Fixes #25213 - Bump version of logging-journald to 2.x
2018-10-15 Tomer Brisker <[email protected]>
* templates - sync from community-templates
* i18n - update strings, add nl_NL
2018-10-15 Aditi Puntambekar <[email protected]>
* Fixes #22052 - Added help text in Templates tab
2018-10-15 laviro <[email protected]>
* fixes #25198 - Fix SearchBar keyboard navigation.
2018-10-14 Stephen Benjamin <[email protected]>
* fixes #25007 - fix medium providers for plugins
* fixes #25007 - fix medium providers for plugins
2018-10-12 Marek Hulan <[email protected]>
* Fixes #22737 - add a global option to keep VMs
2018-10-12 Jonathon Turel <[email protected]>
* Fixes #25124 - Add ability to indicate a host substatus
2018-10-11 Amir Fefer <[email protected]>
* Fixes #25175 - fix importing css in layout.scss
2018-10-10 Peter Lehwess <[email protected]>
* Fixes #25075: fix provisioning template preview
2018-10-10 Akshay Mendhe <[email protected]>
* Fixes #24835 - Non-default Settings Bolded
2018-10-10 Tomer Brisker <[email protected]>
* Refs #25053 - Remove unused fact_names_by_id hash
2018-10-10 Alexander Olofsson <[email protected]>
* Fixes #24662 - provision_method change error
2018-10-10 Lukas Zapletal <[email protected]>
* Fixes #25053 - expensive db_facts query executed just once
2018-10-10 Timo Goebel <[email protected]>
* fixes #25154 - do not join reports when searching
2018-10-09 Peter Lehwess <[email protected]>
* Fixes #25150 - Check for `#dynamic` with regex
2018-10-09 kgaikwad <[email protected]>
* Refs #24245 - fix pagination broken due to new pagination changes
2018-10-08 Amir Fefer <[email protected]>
* Fixes #17263 - move jed (i18n) to webpack
2018-10-08 Gilad Lekner <[email protected]>
* Fixes #25137 - webpack-analyze script fails
2018-10-08 Herwig Bogaert <[email protected]>
* Fixes #24744,#24873 - facter 3.x initial support
2018-10-08 boaz1337 <[email protected]>
* Fixes #24870 - show a setting does not have a default value (#6089)
2018-10-07 Michael Moll <[email protected]>
* Refs #24259 - Raise Metrics/MethodLength for Rubocop to pass
* Refs #25123 - Fix Layout/EmptyLinesAroundBlockBody cop
2018-10-07 Boaz Shuster <[email protected]>
* Fixes #24227 - Add permissions info to models API
2018-10-07 Gilad Lekner <[email protected]>
* Fixes #24824 - Allow UI notifications when login is disabled
* Fixes #23445, #21566, #23448 - Refactor Layout to PF
2018-10-07 Ohad Levy <[email protected]>
* refs #16294 - fixes wrong secure websocket detection
2018-10-07 laviro <[email protected]>
* Fixes #24040 - Move the search box to React
2018-10-07 Tomer Brisker <[email protected]>
* Fixes #24802 - Remove taxonomy, login settings from example
* Fixes #24800 - Notify deprecation of taxonomy, login settings
2018-10-07 UXabre <[email protected]>
* Fixes #16294 - Remove noVNC from vendors
2018-10-07 Kamil Szubrycht <[email protected]>
* fixes #25128 - variables loader works with inherited classes
2018-10-05 Tomas Strachota <[email protected]>
* Refs #25123 - sync from community templates
* Fixes #25123 - template requirements and seeding with import
2018-10-05 Lukas Zapletal <[email protected]>
* Fixes #23336 - env variables for test retry and logs
2018-10-04 Lukas Zapletal <[email protected]>
* Fixes #24652 - subnet_for returns highest CIDR prefix
* Fixes #23344 - stubs instead expects in setup blocks
2018-10-04 Ondrej Prazak <[email protected]>
* Refs #24259 - Fix failing test on mysql
2018-10-04 kgaikwad <[email protected]>
* Fixes #24245 - Audit new UX using reactjs
2018-10-04 Michael Moll <[email protected]>
* Fixes #24874 - update secure_headers to 6.x
2018-10-04 Marek Hulan <[email protected]>
* Fixes #25102 - introduce template inputs
2018-10-03 Gilad Lekner <[email protected]>
* Fixes #24643 - Refactor Pagination to PF
2018-10-03 Martin Bačovský <[email protected]>
* Fixes #25099 - Add macros for easier report definition
2018-10-03 Ondrej Prazak <[email protected]>
* Fixes #24259 - Add canned admin role
2018-10-03 Ivan Nečas <[email protected]>
* Fixes #22119 - use SHA instead of MD5 for digesting
2018-10-03 Michael Moll <[email protected]>
* Fixes #19886 - Disable Style/ParallelAssignment cop
* Refs #24783 - Fix newly added Rubocop rule
2018-10-02 UXabre <[email protected]>
* Fixes #24845 - Inconsistent UI for Spice console
2018-10-02 Tomas Strachota <[email protected]>
* Fixes #24958 - allow sourcemaps in production
2018-10-02 Avi Sharvit <[email protected]>
* Fixes #24997 - Remove eslint from hound-ci
2018-10-02 Sebastian Gräßl <[email protected]>
* Fixes #24232 - Return taxed and untaxed audits in list (#6073)
2018-10-02 Lukáš Zapletal <[email protected]>
* Fixes #24886 - fixed audit in seeds test (#6058)
2018-10-02 Ohad Levy <[email protected]>
* Fixes #25091 - only require tests gems in test environment
2018-10-01 Marek Hulan <[email protected]>
* Fixes #25070 - keep variables optional
2018-10-01 Pat Riehecky <[email protected]>
* Fixes #24969 - Further sort parameter overrides by value
2018-09-27 Marek Hulan <[email protected]>
* Fixes #25054 - fixes RSS rescheduling
2018-09-26 Kyle O Button <[email protected]>
* fixes #25038 - allow subnet present in safemode
2018-09-25 Lukas Zapletal <[email protected]>
* Refs #24940 - refresh hosts now loads puppet tab
2018-09-25 Kamil Szubrycht <[email protected]>
* Fixes #24294 - add snapshot tests for templates
2018-09-24 Lukáš Zapletal <[email protected]>
* Fixes #25005 - hosts with no report link on widget (#6082)
2018-09-24 Lukas Zapletal <[email protected]>
* Fixes #24995 - medium_provider is on host
2018-09-21 Stephen Benjamin <[email protected]>
* refs #24965 - add mising 'end' in openstack fog extensions
* fixes #24935 - validate existence of proxy assocations
2018-09-21 Clemens Bergmann <[email protected]>
* Fixes #24965 - can't start Openstack Servers
2018-09-21 Marek Hulan <[email protected]>
* Fixes #24938 - fix image OS label
2018-09-21 Lukas Zapletal <[email protected]>
* Fixes #24849 - PXE global default option is local
2018-09-20 Lukas Zapletal <[email protected]>
* Fixes #24743 - medium provider template check works
* Fixes #21833 - added bootsnap development dependency
2018-09-20 Rahul Bajaj <[email protected]>
* Fixes #24940,#24951 - hostgroup does not fill for non-managed host
2018-09-19 Marek Hulan <[email protected]>
* Sync templates
2018-09-19 Julian Todt <[email protected]>
* Fixes #23210 - Handle PuppetCA tokens
2018-09-18 Marek Hulan <[email protected]>
* Fixes #15707 - AWS support for GovCloud
* Fixes #24957 - correctly filter taxonomies in API
2018-09-18 Lukas Zapletal <[email protected]>
* Fixes #24944 - removes LC_ALL from debug script
2018-09-18 Ondřej Pražák <[email protected]>
* Fixes #24633 - Add uniqueness to puppet class name (#6019)
2018-09-18 Peter Lehwess <[email protected]>
* Fixes #24742 - Refactor unattended controller
2018-09-14 Shimon Shtein <[email protected]>
* Fixes #24056 - Moved facets to Host
2018-09-13 Michael Moll <[email protected]>
* Fixes #19869 - Disable Style/LineEndConcatenation cop
* Fixes #19790 - Fix Layout/SpaceBeforeBlockBraces cop
* Fixes #24780 - update NodeJS versions
* Refs #15806 - add eslint also to travis tests
2018-09-13 Marek Hulan <[email protected]>
* Fixes #24844 - find audited objects correctly
2018-09-13 Tomer Brisker <[email protected]>
* Fixes #24783 - Refactor hosts count
2018-09-13 boaz1337 <[email protected]>
* Fixes #21177 - missing warning icon on ssh keys (#6037)
2018-09-13 Sebastian Gräßl <[email protected]>
* Fixes #24234 - Set no taxonomies on audit for untaxable resources (#6059)
2018-09-13 Amir Fefer <[email protected]>
* Fixes #24914 - show name in smart parameter edit page
* Fixes #24913 - show os name in edit page
2018-09-13 Timo Goebel <[email protected]>
* fixes #1459 - ipxe provisioning support
2018-09-11 Marek Hulan <[email protected]>
* Fixes #24478 - properly sanitize class name
2018-09-11 Chris Roberts <[email protected]>
* Fixes #24836 - Update production.log filename so we get log.gz.
2018-09-10 Michael Moll <[email protected]>
* Fixes #19867 - Fix Style/IfUnlessModifierOfIfUnless cop
2018-09-06 Stephen Benjamin <[email protected]>
* fixes #24702 - fix bulk taxonomy update w/ scoped search
2018-09-06 Avi Sharvit <[email protected]>
* Fixes #24832 - Adds bootstrap-sass package
* Fixes #24807 - unsafe html in toast notification
2018-09-06 Sebastian Gräßl <[email protected]>
* Fixes #24348 - Validate compute resources is within taxonomy
2018-09-06 Tomer Brisker <[email protected]>
* Fixes #24831 - Remove Rails 5.1 workaround for slow api call
2018-09-06 Ondrej Prazak <[email protected]>
* Fixes #24621 - Use custom scope in ResourceSwitcher
2018-09-06 Michael Moll <[email protected]>
* Refs #22612 - Remove Rails 5.1, add Rails 5.2 deprecations
* Refs #22612 - add Active Storage routes
* Refs #22612 - update DB gems from AR adapters
* Fixes #22611 - Adapt DB migrations for Rails 5.2
* Fixes #22612 - Switch Rails to 5.2
2018-09-05 Ivan Necas <[email protected]>
* Fixes #24546 - add uniq constraint on subnet.name
2018-09-05 Ondřej Pražák <[email protected]>
* Fixes #24683 - Styling improvements for PasswordStrength (#5980)
2018-09-05 Ivan Nečas <[email protected]>
* Fixes #24763 - ensure reschedule rss notification on error
2018-09-05 Amir Fefer <[email protected]>
* Fixes #24754 - update react to 16.4
2018-09-04 Justin Sherrill <[email protected]>
* Fixes #21938 - add plugable upgrade rake task
2018-09-04 Andrew Kofink <[email protected]>
* Fixes #24740: document --watch-poll for NFS
2018-09-03 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #24381 - Remove modulepath setting
2018-09-03 Michael Moll <[email protected]>
* Refs #3809 - regenerate .rubocop_todo.yml
* Refs #24654 - fix Rubocop
* Refs #24697 - remove now unneeded Rubocop disabling
2018-09-03 Shira Maximov <[email protected]>
* Fixes #24599 - Not custom instance type should disable params
2018-09-03 Shimon Shtein <[email protected]>
* Fixes #24567 - Relaxed smart proxy version check
2018-09-03 Shira Maximov <[email protected]>
* Fixes #24522 - Fix selected cluster in ovirt network (#5933)
2018-09-02 Boaz Shuster <[email protected]>
* Fixes #24782 - Show hosts count in API
2018-09-02 Lukas Zapletal <[email protected]>
* Fixes #24720 - listen interface aligned in dev script
2018-09-02 kgaikwad <[email protected]>
* Fixes #24735 - parameters missing from GET hostgroup api
2018-09-01 Lukas Zapletal <[email protected]>
* Fixes #21105 - hostgroup provisioning without media
2018-09-01 Ivan Necas <[email protected]>
* Fixes #24620 - suggest Dynflow logger to be info by default
2018-09-01 Marek Hulan <[email protected]>
* Fixes #24665 - mount breadcrumbs only when for 200 response
2018-09-01 Ondrej Prazak <[email protected]>
* Fixes #24102 - Allow more complex logic for template locks
2018-09-01 Daniel Lobato Garcia <[email protected]>
* Fixes #24301 - Create user in LDAP does not require password
2018-09-01 Timo Goebel <[email protected]>
* fixes #24760 - define dashboard module explicitly
2018-08-31 Lukas Zapletal <[email protected]>
* Fixes #24745 - new variables kernel/initrd_uri
2018-08-30 Tomer Brisker <[email protected]>
* Fixes #24759 - Fix failing API FactValueController tests
* Fixes #24712 - Fix performance regression on API
2018-08-30 Ori Rabin <[email protected]>
* Fixes #24564, #24746 - bump version of fog-ovirt
2018-08-29 Lukas Zapletal <[email protected]>
* Fixes #24639 - medium provider works with discovery
2018-08-29 Herwig Bogaert <[email protected]>
* Fixes #24691 - interfaces are incorrectly updated
2018-08-29 Michael Moll <[email protected]>
* Fixes #24737 - add read_attribute_before_type_cast for settings (#6006)
* Fixes #24736 - Refactor admin user role test for Rails 5.2
2018-08-28 Lukas Zapletal <[email protected]>
* Revert "Fixes #24478 - properly sanitize class name"
2018-08-28 Tomer Brisker <[email protected]>
* Fixes #24697 - Don't remove permissions from default role
* Refs #24640 - Cast omitted default with merge_overrides
2018-08-27 Partha Aji <[email protected]>
* Fixes #24338 - Can set filename for CSV response
2018-08-27 Ben Plessinger <[email protected]>
* fixes #24673 - compute resource vm tab loading
2018-08-27 Marek Hulan <[email protected]>
* Fixes #24672 - fix new line in template export metadata
* Fixes #24710 - extend audits in to_prepare
2018-08-26 UXabre <[email protected]>
* Fixes #24686 - Remove border around console to fix cursor offset
2018-08-24 Amit Karsale <[email protected]>
* Fixes #20940 - Interfaces shows extra fields in API /api/hosts/id
2018-08-24 Lukas Zapletal <[email protected]>
* Fixes #24647 - assign environment for hostgroup related
* Fixes #24622 - UEFI HTTP boot loader options
2018-08-23 Rahul Bajaj <[email protected]>
* Fixes #24225 - fixes the navigation for compute profile
2018-08-22 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #23634 - Drop puppet related settings
2018-08-22 Tomas Strachota <[email protected]>
* Fixes #24685 - fix minor issues in the storybook
2018-08-22 Timo Goebel <[email protected]>
* fixes #24496 - remove unattended helper
* fixes #24503 - remove snippets macro
2018-08-22 Ohad Levy <[email protected]>
* fixes #24645 - remove unused brace dependencies
2018-08-22 Shira Maximov <[email protected]>
* Fixes #23979 - add option to search location & organization
2018-08-20 Timo Goebel <[email protected]>
* fixes #24571 - fog-vsphere 2.3 vsphere nic selection
2018-08-20 Tomer Brisker <[email protected]>
* Fixes #24640 - Cast all lookup keys and values (#5956)
2018-08-20 Ondrej Prazak <[email protected]>
* Fixes #24657 - Pin react-bootstrap to 0.32.1
2018-08-19 Michael Moll <[email protected]>
* Fixes #24654 - use dynamic attrs for Factory Bot 5.x compat
2018-08-16 Djebran Lezzoum <[email protected]>
* Fixes #24624 - Host Assign Org/Loc radio mismatch input label (#5953)
2018-08-16 Boaz Shuster <[email protected]>
* Fixes #21885, #23670 - chrome/ff input box inconsistency fix
2018-08-16 Lukas Zapletal <[email protected]>
* Fixes #24600 - crypt salt is always valid
2018-08-15 Ivan Nečas <[email protected]>
* Fixes #24619 - handle Rails env in db:create
2018-08-15 Tomer Brisker <[email protected]>
* Refs #24556 - correct report scanner test (#5952)
2018-08-14 Marek Hulan <[email protected]>
* Fixes #24556 - correct puppet origin detection
2018-08-13 Marek Hulan <[email protected]>
* Fixes #24572 - wrap collection id in array
2018-08-13 Tomer Brisker <[email protected]>
* Fixes #24371 - Improve plugin webpack detection
2018-08-13 Ohad Levy <[email protected]>
* fixes #24590 - adds missing packages to the vendor bundle
2018-08-13 Ian Ballou <[email protected]>
* Fixes #24548 - make SSH timeout configurable
2018-08-11 Tomas Strachota <[email protected]>
* Fixes #24416 - Add UI devel docs into storybook
2018-08-09 Boaz Shuster <[email protected]>
* Fixes #24475 - Add EmptyState to React components
2018-08-09 Tomer Brisker <[email protected]>
* Fixes #24256 - Optimize DB indices
2018-08-09 Ohad Levy <[email protected]>
* fixes #24561 - adds webpack analyze support
2018-08-08 Dustin Wheeler <[email protected]>
* Fixes #23505 - Explicate table for ancestry field. (#5930)
2018-08-08 Evgeni Golov <[email protected]>
* Fixes #24476: add SR-IOV virtual functions to the ignored NICs
2018-08-08 Amir Fefer <[email protected]>
* Fixes #24562 - upgrade enzyme to 3.4.0
2018-08-08 Shira Maximov <[email protected]>
* Fixes #17136 - Enable ha flag when creating ovirt VM
2018-08-07 Iain Walmsley <[email protected]>
* fixes #22090 - friendlyid for lookupvalue plus override api
2018-08-07 lizagilman <[email protected]>
* Fixes #24313 - load data to switcher in smart class parameters
2018-08-07 Ori Rabin <[email protected]>
* Fixes #22155 - Allow name of datacenter in API
2018-08-07 Boaz Shuster <[email protected]>
* Fixes #24200 - Fix ChartBox storybook
* Fixes #24544 - Add tests to 'load bookmarks on demand'
2018-08-07 Ivan Necas <[email protected]>
* Fixes #24526 - handle compute resource fingerprint error (#5910)
2018-08-07 Marek Hulan <[email protected]>
* Fixes #24541 - properly display cdrom check
2018-08-07 Michael Moll <[email protected]>
* Refs #10521 - fix Rubocop issue (#5925)
2018-08-06 Marek Hulan <[email protected]>
* Fixes #24545 - keep the pw field as it was
* Fixes #24520 - set default number of RSS posts
2018-08-06 Ori Rabin <[email protected]>
* Fixes #24473 - Return other OS when oVirt os is not found
2018-08-06 Michael Moll <[email protected]>
* Fixes #22938 - refactor key pair removal on CR deletion test (#5912)
* Fixes #24539 - don't initialize dynflow in db:create
2018-08-06 Sebastian Gräßl <[email protected]>
* Refs #24350 - Adjust puppet_interval to include grace time
2018-08-06 Ohad Levy <[email protected]>
* fixes #24380 - load bookmarks on demand
2018-08-04 Daniel Lobato Garcia <[email protected]>
* Fixes #24298 - Some audits show 'Missing ID' instead of name
2018-08-02 Akshay Mendhe <[email protected]>
* Fixes #24471 - Markings removed from fields in Hostgroup
2018-08-02 lizagilman <[email protected]>
* Fixes #24132, #24315 - fix breadcrumbs index links
2018-08-02 Shira Maximov <[email protected]>
* Refs #23373 - Remove the api fix and fix tests
2018-08-02 Marek Hulan <[email protected]>
* Fixes #24478 - properly sanitize class name
* Fixes #24078 - correctly verify permission on clone button
2018-08-01 Adam Ruzicka <[email protected]>
* Refs #10521 - use assert_includes
* Refs #10521 - Test ordering of statuses
* Refs #10521 - Consider HostStatuses might be added by plugins
2018-08-01 Akshay Mendhe <[email protected]>
* Fixes #24392 - Title "Global Parameters" removed from Host Group (#5897)
2018-08-01 Eric D. Helms <[email protected]>
* Generate source with the actual version specified in VERSION
2018-08-01 Ondřej Pražák <[email protected]>
* Fixes #24486 - Define through association before using it (#5890)
2018-07-31 Timo Goebel <[email protected]>
* fixes #24484 - snippets find template by source (#5891)
* fixes #24469 - host_enc uses reduce (#5884)
2018-07-31 Marek Hulan <[email protected]>
* Fixes #10521 - fix report templates API after refactoring
2018-07-31 Marek Hulán <[email protected]>
* fixes #10521 - reporting templates
2018-07-31 Stephen Benjamin <[email protected]>
* fixes #24388 - validate media and reset if os changes (#5876)
2018-07-30 Ori Rabin <[email protected]>
* Fixes #24355 - Never override a smart class parameter on import
2018-07-30 Ido Kanner <[email protected]>
* Fixes #23168 - undefined method `split' for nil:NilClass
* Fixes #23168 - undefined method `split' for nil:NilClass
2018-07-30 Lukáš Zapletal <[email protected]>
* Fixes #23610,#23417 - audit changes per column (#5570)
2018-07-29 Alexander Fisher <[email protected]>
* Fixes #24394 - Update about page with link to forums
2018-07-27 kamils-iRonin <[email protected]>
* Fixes #22529 - Refactor Template rendering to use a proper rendering service (#5683)
2018-07-27 Marek Hulan <[email protected]>
* Refs #19389 - fixes develop tests
2018-07-27 Chris Roberts <[email protected]>
* Fixes #24386 - Update debug to include proxy certs generate.
2018-07-26 Shimon Shtein <[email protected]>
* Fixes #19389 - Add medium_uri provider
* Fixes #19389 - Added medium hash to TFTP files
2018-07-26 Tomer Brisker <[email protected]>
* Update PR template
2018-07-26 Ivan Nečas <[email protected]>
* Fixes #24387 - defined telemetry buckets in seconds
2018-07-24 Sebastian Gräßl <[email protected]>
* Fixes #24350 - Change general out of sync interval to 30 minutes
2018-07-24 Ohad Levy <[email protected]>
* bump nodejs dependencies based on npm audit
2018-07-23 Avi Sharvit <[email protected]>
* Fixes #24303 - New hostgroup after submit path
2018-07-23 Ivan Necas <[email protected]>
* Fixes #24199 - validate taxonomy of host environment on create (#5793)
2018-07-23 Tomer Brisker <[email protected]>
* Fixes #24343 - Update deprecations for 1.20
2018-07-23 Marek Hulán <[email protected]>
* Fixes #20992 - keep selected roles (#5832)
2018-07-22 Djebran Lezzoum <[email protected]>
* Refs #23066 - Robottelo tests - users and user roles (#5805)
* Refs #22922 - Robottelo tests - compute profiles (#5794)
* Refs #23132 - Robottelo tests - bookmarks (#5818)
* Refs #22979 - Robottelo tests - operating_systems (#5804)
* Refs #23095 - Robottelo tests - subnets and parameters (#5809)
* Refs #23339 - Add Robottelo tests - hosts (#5826)
2018-07-20 Ivan Nečas <[email protected]>
* Fixes #24322 - set owner_type implicitly to User
2018-07-20 Marek Hulan <[email protected]>
* Fixes #24320 - stop dropping vmware fields
2018-07-20 Shira Maximov <[email protected]>
* Fixes #23373 - Fix host dissociation when updating host
* Fixes #23975 - Add Network Interface Type in ovirt VM
2018-07-20 Lukas Zapletal <[email protected]>
* Fixes #23117 - ovirt_ostype host param selects type
2018-07-19 Tomer Brisker <[email protected]>
* Fixes #24291 - Allow searching audits by subnet
* i18n - extracting new, pulling from tx
* Fixes #24302 - Correct string extractions
2018-07-19 Ido Kanner <[email protected]>
* Refs #24281 - Refactor class methods of create and create!
2018-07-19 Timo Goebel <[email protected]>
* fixes #24300 - add capybara minitest assertions
2018-07-19 Peter Lehwess <[email protected]>
* Fixes #24293 - Fix ability to run single tests
2018-07-19 Ian <[email protected]>
* Fixes #24279 - removed setSSHCert - handle_ca no longer around
2018-07-18 Marek Hulán <[email protected]>
* Fixes #24284 - distinguish bruteforce in API
2018-07-18 Arend Lapere <[email protected]>
* fixes #23291 - fixes double appending of /unattended to proxy url
2018-07-17 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #24211 - Allow a newer version of patternfly-sass
2018-07-17 Marek Hulan <[email protected]>
* Fixes #24269 - clean all reports
* Fixes #19983 - allow setting role description
2018-07-17 Tomer Brisker <[email protected]>
* Bump version to 1.20-develop
2018-07-16 Tomer Brisker <[email protected]>
* i18n - extracting new, pulling from tx
2018-07-16 lizagilman <[email protected]>
* Fixes #23575 - avoid change of heights on fact modal
2018-07-16 Dominik Hlavac <[email protected]>
* Fixes #22416 - Taxonomy buttons visible for right taxonomies (#5824)
2018-07-16 Marek Hulán <[email protected]>
* Fixes #24257 - load all reports and audits in tasks
2018-07-15 Ori Rabin <[email protected]>
* Fixes #23831 - Fix JS for oVirt Image based provisioning
2018-07-15 Marek Hulan <[email protected]>
* Fixes #21778 - ignore tax scope when displaying filters
2018-07-15 Dominik Hlavac Duran <[email protected]>
* Fixes #24002 - Add index for unique role names
2018-07-15 Ivan Nečas <[email protected]>
* Fixes #21172 - address comments
* Fixes #21172 - load template variables to partition tables
2018-07-13 Ivan Nečas <[email protected]>
* Fixes #24217 - accept shell script for cloud-init in oVirt
2018-07-12 Ori Rabin <[email protected]>
* Fixes #23836 - Bump fog-ovirt version for update_vm addition
2018-07-12 Ivan Nečas <[email protected]>
* Fixes #24220 - increase recommended pool size for the db
2018-07-12 Lukáš Zapletal <[email protected]>
* Fixes #24185 - logging env override config fixed (#5792)
* Fixes #23623 - expiration rake task in batches
2018-07-12 Marek Hulan <[email protected]>
* Fixes #24194 - support dots in name for http proxies
2018-07-11 Ivan Nečas <[email protected]>
* Refs #24125 - mock libvirt sooner
2018-07-10 Ben Plessinger <[email protected]>
* Fixes #23479 - Enhance OpenStack VM Creation
2018-07-10 Amir Fefer <[email protected]>
* Fixes #23977 - add onClick callback to breadcrumbs
* Fixes #24017 - Add scrollbar in org/log dropdown (#5722)
2018-07-10 Ondřej Pražák <[email protected]>
* Fixes #23918 - Find correct scope when updating taxonomy
* Fixes #24125 - Show error when libvirt not reachable
2018-07-10 Chris Roberts <[email protected]>
* Fixes #23961 - Update Foreman Fog-Vsphere select_nic method.
2018-07-09 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #23579 - Use a bundler group for assets
2018-07-09 Tomer Brisker <[email protected]>
* Fixes #23965 - Only save ids for association audits (#5753)
* Fixes #24192 - Clean up auth_source_selected action leftovers
2018-07-09 Avi Sharvit <[email protected]>
* Fixes #23290 - Unmount components before dom-update
2018-07-08 Daniel Lobato Garcia <[email protected]>
* Fixes #23382 - Hashes in arrays are shown properly on ENC
2018-07-06 Timo Goebel <[email protected]>
* fixes #24186 - improve vsphere error handling
2018-07-06 Ondřej Pražák <[email protected]>
* Fixes #23705 - Do not associate ptable snippets
2018-07-06 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #24167 - Remove legacy_puppet_hostname setting
2018-07-05 Ondřej Pražák <[email protected]>
* Fixes #23896 - Update taxonomies when refreshing metadata
2018-07-05 Ori Rabin <[email protected]>
* Fixes #24122 - Remove limit from LookupValue value
2018-07-05 Marek Hulán <[email protected]>
* Fixes #24158 - fix cloning of roles
2018-07-05 kgaikwad <[email protected]>
* Fixes #23933 - consider associated object in set_taxonomies
2018-07-04 Marek Hulan <[email protected]>
* Fixes #23782 - restore login disabling
2018-07-03 Ondrej Prazak <[email protected]>
* Fixes #23162 - Fix path for tabs on smart-proxy page
2018-07-03 Lukas Zapletal <[email protected]>
* Fixes #21883 - improved user context switch logging
2018-07-03 Ivan Nečas <[email protected]>
* 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 <[email protected]>
* Fixes #24022 - unattended error input is UTF-8 friendly (#5761)
2018-07-01 Lukas Zapletal <[email protected]>
* 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 <[email protected]>
* Fixes #23062 - Add custom message on form submit
2018-07-01 Shira Maximov <[email protected]>
* Fixes #23196 - Add default values for cores and socket in VM
2018-07-01 Amir Fefer <[email protected]>
* Fixes #23920 - add missing header in welcome pages
2018-07-01 Michael Moll <[email protected]>
* Fixes #19766 - Disable Layout/AlignParameters cop
* Fixes #19765 - Disable Layout/AlignHash cop
* Fixes #19887 - Disable Style/ParenthesesAroundCondition cop
2018-06-29 Lukas Zapletal <[email protected]>
* Refs #24057 - fixed broken email test
2018-06-28 Aditi Puntambekar <[email protected]>
* Fixes #24057 - Email subject prefix accepts long strings (#5742)
2018-06-28 Ondrej Prazak <[email protected]>
* Fixes #23994 - Do not update templates out of scope
2018-06-28 David Davis <[email protected]>
* Fixes #24098 - Remove mention bot config
2018-06-27 Amir Fefer <[email protected]>
* Fixes #23991 - rephrase RSS setting description
2018-06-26 Lukáš Zapletal <[email protected]>
* Fixes #18765 - finish script use FQDN when IP is missing
2018-06-26 Bernhard Suttner <[email protected]>
* Fixes #24071 - Adding locked state (#5741)
2018-06-26 Shira Maximov <[email protected]>
* Fixes #23536 - No errors when unattended=false
2018-06-25 Stephen Benjamin <[email protected]>
* fixes #24046 - return id as str for name as last resort
2018-06-25 Tomer Brisker <[email protected]>
* Fixes #23924 - Use consistent IDs for modules in webpack
2018-06-24 Ori Rabin <[email protected]>
* Fixes #24053 - Remove oVirt specific error
2018-06-24 Tom McKay <[email protected]>
* fixes #23862 - scoped search audit comment
2018-06-24 Aditi Puntambekar <[email protected]>
* Fixes #24025 - Pass full_name attribute for settings in API
2018-06-24 Marek Hulan <[email protected]>
* Fixes #23951 - fix searching by config group
2018-06-22 Michael Moll <[email protected]>
* Fixes #23962 - Fix Style/ExpandPathArguments cop
* Refs #20891 - fix for new rubocop rules
2018-06-21 Julian Todt <[email protected]>
* Fixes #23626 - Move autosign to build queue
2018-06-21 Timo Goebel <[email protected]>
* fixes #22467 - dashboard: list hosts in build mode
2018-06-21 Amir Fefer <[email protected]>
* Fixes #23599 - fix subtotal value in API call with thin=true
2018-06-21 Michael Moll <[email protected]>
* Fixes #23865 - update compression-webpack-plugin
2018-06-20 Tomer Brisker <[email protected]>
* Refs #23924 - replace HashModuleId with NamedModules
2018-06-20 Ewoud Kohl van Wijngaarden <[email protected]>
* Refs #23825 - Improve the rake task for tarballs
2018-06-20 Michael Moll <[email protected]>
* 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 <[email protected]>
* Fixes #24003 - remove babel-polyfill from vendor.js
2018-06-19 orrabin <[email protected]>
* Fixes #23976 - Add Quota to oVirt API (#5715)
2018-06-19 Lukas Zapletal <[email protected]>
* Fixes #21007 - new unattended action 'failed'
2018-06-19 Amir Fefer <[email protected]>
* Fixes #23391, #23251 - adjsut breadcrumbs swticher to pf design
2018-06-19 Shira Maximov <[email protected]>
* Fixes #22117 - Add support for number of sockets for ovirt
2018-06-19 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #23825 - Add exporting to Rakefile.dist
2018-06-18 Avi Sharvit <[email protected]>
* Fixes #23790 - Upgrade and pin patternfly-react
2018-06-18 Boaz Shuster <[email protected]>
* Fixes #23709 - Fix ajaxRequestAction failure dispatch
2018-06-18 Lukas Zapletal <[email protected]>
* Fixes #23930 - PXELinux loader is now preferred
2018-06-15 Eric D Helms <[email protected]>
* Fixes #23952 - Include all asset paths when precompiling plugins (#5699)
2018-06-15 odovzhenko <[email protected]>
* Fixes #23953 - Port robottelo tests for settings
2018-06-15 Lukáš Zapletal <[email protected]>
* Fixes #23768 - keep_subnet flag to prevent subnet override (#5635)
2018-06-14 Shira Maximov <[email protected]>
* Fixes #20891 - Remove hostname from /hosts/x/facts results
2018-06-14 Michael Moll <[email protected]>
* 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 <[email protected]>
* Refs #23132 - stabilize bookmark test
2018-06-14 Adam Ruzicka <[email protected]>
* Fixes #23932 - Fixes failing application job tests for some plugins
2018-06-13 Amir Fefer <[email protected]>
* Fixes #23690 - update react to 16.3
2018-06-13 Zachary Bedell <[email protected]>
* fixes #23909 - vsphere: prefer network search by key
2018-06-13 Tomer Brisker <[email protected]>
* Fixes #23913 - Stop auditing host status updates
2018-06-12 Michael Moll <[email protected]>
* Fixes #23857 - Fix Performance/InefficientHashSearch cop
2018-06-12 Stephen Benjamin <[email protected]>
* fixes #23232 - fix error when domain not in taxonomy
2018-06-12 Lukas Zapletal <[email protected]>
* Fixes #23875 - removed old session tests
2018-06-11 Adam Růžička <[email protected]>
* * Fixes #23611 - Provide helper method to run "service" active jobs
2018-06-11 Sean O'Keeffe <[email protected]>
* Fixes #23848 - template import should use taxonomies title
2018-06-11 Sebastian Gräßl <[email protected]>
* Fixes #23843 - Exclude requests to local host from proxying
2018-06-11 Tomer Brisker <[email protected]>
* Fixes #23852 - Properly escape html in template preview errors
2018-06-10 Tristan Robert <[email protected]>
* Fixes #23859 - Fix vm_exists? method
* Fixes #23859 - Queue orchestration compute
2018-06-10 lizagilman <[email protected]>
* Fixes #23598 - move report metrics chart to c3
2018-06-08 Daniel Lobato Garcia <[email protected]>
* Fixes #23818 - Update fog-openstack to save OpenStack OSP 12
2018-06-08 kgaikwad <[email protected]>
* Fixes #23377 - audit external group membership changes (#5555)
2018-06-07 Daniel Lobato Garcia <[email protected]>
* Fixes #13749 - Handle Base64 and binary LDAP avatars
2018-06-07 Tomas Strachota <[email protected]>
* Refs #21580 - require rbvmomi
2018-06-07 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #23842 - Load factory_bot only when needed
2018-06-07 Lukas Zapletal <[email protected]>
* Fixes #23826 - model class logger is now app
2018-06-06 Thomas Gelf <[email protected]>
* Fixes #23830 - gitignore: add vendor/ruby
2018-06-06 Lukas Zapletal <[email protected]>
* Fixes #23800 - i18n for exceptions fixed
2018-06-06 Michael Moll <[email protected]>
* Fixes #23806 - explicitly use Rails 5.2 compatible gems
2018-06-06 Shimon Shtein <[email protected]>
* Fixes #23828 - Upgrade mocha dependency
2018-06-06 Eric D. Helms <[email protected]>
* Fixes #23764: Ensure proper plugin asset generation for SCSS
2018-06-06 Tomer Brisker <[email protected]>
* Fixes #23813 - Allow searching audits by type=auth_source
2018-06-06 Quirin Pamp <[email protected]>
* Fixes #23677 - Add additional config options to foreman-debug
2018-06-05 Michael Moll <[email protected]>
* Refs #23776 - correct deprecation for notice
2018-06-05 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #19968: Add a rake task to seed your database
2018-06-05 Lukas Zapletal <[email protected]>
* Fixes #23775 - exposed random name generator
2018-06-05 Stephen Benjamin <[email protected]>
* fixes #23178 - seeded location should be in seeded org
2018-06-04 Timo Goebel <[email protected]>
* fixes #23378 - vsphere: filter volume key parameter
2018-06-04 Tomas Strachota <[email protected]>
* Fixes #21580 - normalize compute attributes (#4980)