forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
14021 lines (10016 loc) · 546 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
2017-08-28 Daniel Lobato Garcia <[email protected]>
* i18n - extracting new, pulling from tx
2017-08-27 Michael Moll <[email protected]>
* Fixes #1644,#19692 - update fog-libvirt to 0.4.1
2017-08-26 Marek Hulan <[email protected]>
* Fixes #20739 - use unique user label in select
2017-08-25 Ondrej Prazak <[email protected]>
* Fixes #19039 - Lock plugin roles
2017-08-25 Marek Hulán <[email protected]>
* Fixes #20657 - make proxy labels bold
2017-08-25 Partha Aji <[email protected]>
* fixes #20699 - Rake task to selectively backup tables
2017-08-25 kgaikwad <[email protected]>
* Fixes #20701 - Subnet6 fields info in GET api/v2/hostgroups/:id
2017-08-25 Nagoor Shaik <[email protected]>
* Fixes #20711 - GET host interface API will show fqdn attribute
2017-08-25 Marek Hulan <[email protected]>
* Fixes #7778 - allow + in user login
2017-08-24 Marek Hulan <[email protected]>
* Fixes #20726 - allow # in user login
* Fixes #20706 - fix template audit messages
2017-08-24 Lukas Zapletal <[email protected]>
* Fixes #20622 - puppet import does not refresh all statuses
2017-08-24 Ivan Necas <[email protected]>
* Fixes #19113 - use fog-ovirt method for rebooting
2017-08-22 Marek Hulán <[email protected]>
* Fixes #20668 - capitalize cards on smart proxy page
* Fixes #20675 - autosign delete buttons are no longer red
* Fixes #20676 - relabel new button for autosign entry
2017-08-22 Sebastian Gräßl <[email protected]>
* Fixes #20680 - Use default button style for "Add Combination"
2017-08-22 Sebastian Gräßl <[email protected]>
* Fixes #20573 - Include searchbox extension
* Fixes #20669 - Append 'clone' to cloned provisioning templates
2017-08-21 Tomer Brisker <[email protected]>
* Fixes #7499 - Allow searching config group by puppetclass
2017-08-21 Sebastian Gräßl <[email protected]>
* Fixes #20673 - Move locked warning on template editing
2017-08-21 Marek Hulan <[email protected]>
* Fixes #20662 - no failed features
2017-08-20 Tomer Brisker <[email protected]>
* Refs #20255 - simplify hostgroup csv test
2017-08-20 amirfefer <[email protected]>
* Fixes #20416 - fix UI under email preferences
* Fixes #20255 - add csv export for hostgroups
2017-08-20 Amir Fefer <[email protected]>
* Fixes #20612 - Fix error rendering when building pxe default
* Fixes #20628 - cloned host/hostgroup should copy rootpass
2017-08-20 Timo Goebel <[email protected]>
* fixes #20645 - stub templates proxy url call
* fixes #20646 - clear host_id during interface cloning
2017-08-20 Ohad Levy <[email protected]>
* fixes #20636 - update babel-core and loader to newer versions
2017-08-18 Ondrej Prazak <[email protected]>
* Fixes #20529 - Improve the filtering function
2017-08-18 Lukas Zapletal <[email protected]>
* Fixes #20475 - Random DB IPAM with MAC preservation
2017-08-17 Amir Fefer <[email protected]>
* Fixes #20614 - fix host selector for bulk action regression
2017-08-16 Ohad Levy <[email protected]>
* fixes #20316 - allow to delete a user that has notifications
2017-08-16 Tomer Brisker <[email protected]>
* Fixes #20610 - Prevent chrome password autofill
2017-08-16 Maximilian Mack <[email protected]>
* Fixes #20608 - Adding index for ssh_keys
2017-08-15 Swapnil Abnave <[email protected]>
* Fixes #19326 - create compute-resource - URL optional
2017-08-11 Daniel Lobato Garcia <[email protected]>
* Refs #20514 - Add test for $ in user login
2017-08-11 Lukáš Zapletal <[email protected]>
* Fixes #20521 - better subnet prefix label
2017-08-11 Nagoor Shaik <[email protected]>
* Fixes #20553 - br tag now renders to new line
2017-08-10 Avram Lubkin <[email protected]>
* Fixes #20514 - Accept dollar sign($) in login names
2017-08-10 Daniel Lobato Garcia <[email protected]>
* Fixes #20543 - implement asset_path for plugin_assets
2017-08-10 Rune Hammersland <[email protected]>
* Fixes #20537: Monospace fonts in fullscreen editor
2017-08-10 Eric D Helms <[email protected]>
* Fixes #19529: Use main_app for redirect in case of plugins
2017-08-08 Marek Hulán <[email protected]>
* Fixes #20515 - always find user by login
* Fixes #20483 - seed all permission for core roles
2017-08-07 Klaas Demter <[email protected]>
* Fixes #14160 - bump fog-vsphere to 1.11.3
2017-08-07 Daniel Lobato Garcia <[email protected]>
* Fixes #20511 - Webpack config should look for nested deps
2017-08-07 orrabin <[email protected]>
* Fixes #20452 - Keep password value after validation in ovirt CR
2017-08-07 Timo Goebel <[email protected]>
* fixes #20453 - build is enabled for cloned host (#4704)
2017-08-07 lizagilman <[email protected]>
* Refs #19305 - fixing spacing issues on facts page
2017-08-03 Timo Goebel <[email protected]>
* fixes #20495 - sort os by title
2017-08-03 Marek Hulan <[email protected]>
* Refs #16884 - add minitest stubbing to test helper
2017-08-01 lizagilman <[email protected]>
* Fixes #19372 - replace children fact values icon
2017-07-31 dhlavac <[email protected]>
* Fixes #17811 - Improve error message LDAP fail
2017-07-31 lizagilman <[email protected]>
* Fixes #19305 - fixing spacing issue on facts page
2017-07-31 Tomer Brisker <[email protected]>
* Fixes #20403 - Only show authorized compute profiles in forms
* Fixes #20248, #20327 - Respect context in CSV export
2017-07-31 Dominic Cleal <[email protected]>
* fixes #10982 - configure RestClient log to 'proxy' logger
2017-07-28 Ondřej Pražák <[email protected]>
* Fixes #20418 - Add taxonomies to newly imported puppet env
2017-07-27 Daniel Lobato Garcia <[email protected]>
* Refs #17204 - Settings tabs concat Rails 5 compatible
2017-07-27 Sean O\'Keeffe <[email protected]>
* Refs #16592 - consistent capitalization
2017-07-26 Swapnil Abnave <[email protected]>
* Fixes #17204 - Sort setting UI category tabs consistently
2017-07-26 kgaikwad <[email protected]>
* Fixes #20047 - Filter roles by permission
2017-07-26 June Zhang <[email protected]>
* fixes #16592 - keep consistent for headline capitalization
2017-07-26 Ivan Necas <[email protected]>
* Fixes #20396 - better handling of detection of plugin assets
2017-07-26 Michael Moll <[email protected]>
* Fixes #20287 - fix plugin assets precompilation
2017-07-25 Eric D Helms <[email protected]>
* Fixes #20312: Use bundler_ext in production for webpack plugin
2017-07-25 Marek Hulan <[email protected]>
* Fixes #20384 - seed resources before admin exists
2017-07-25 Daniel Lobato Garcia <[email protected]>
* Fixes #20401 - Allow pxe_loader in the Jail
2017-07-25 Elisiano Petrini <[email protected]>
* Fixes #20378 - Puppet 5 environment detection
2017-07-25 Guido Günther <[email protected]>
* Fixes #20386 - Allow to identify smart proxy by ip only
2017-07-24 lizagilman <[email protected]>
* Fixes #19031 - move to patternfly pagination style
2017-07-23 Marek Hulan <[email protected]>
* Fixes #20385 - fix the role plugin DSL
2017-07-23 Klaas Demter <[email protected]>
* refs #19623 - fix if key method is not present for network
2017-07-21 Daniel Lobato Garcia <[email protected]>
* Fixes #20373 - Add ESXi 6.5 to VMWare
2017-07-21 Ohad Levy <[email protected]>
* fixes #20369 - change host creation form tab order
2017-07-20 Tomer Brisker <[email protected]>
* Fixes #20345 - add back button on host info page
2017-07-20 Ohad Levy <[email protected]>
* fixes #20334 - ensure api promise is called correctly.
* fixes #4509 - VMWare: multiple scsi controllers
2017-07-20 Marek Hulán <[email protected]>
* Fixes #16884 - enforce granular filters even during save
* Refs #17525 - verify domain dns id also on update
* Fixes #20321 - run puppet tasks under admin
2017-07-20 Daniel Lobato Garcia <[email protected]>
* Fixes #18618 - Use Dynflow as an ActiveJob backend
2017-07-20 Lukáš Zapletal <[email protected]>
* Fixes #16160 - added start-foreman-dev helper
2017-07-19 Marek Hulan <[email protected]>
* Fixes #20306 - allow the same key for two users
2017-07-19 Ondrej Prazak <[email protected]>
* Fixes #20295 - Sanitize webpack_directories json
2017-07-19 Timo Goebel <[email protected]>
* fixes #20342 - test connection button works for new cr
2017-07-19 Tomas Strachota <[email protected]>
* Fixes #16112 - support for netgroups in LDAP auth source
2017-07-18 Tomer Brisker <[email protected]>
* Fixes #19808 - Remove useless assignments
* Fixes #20325 - Pin ruby2ruby to 2.3.2
2017-07-18 Ohad Levy <[email protected]>
* refs #19478 - update webpack plugins for v3 compatability
* fixes #20328 - ensure target div is always empty
2017-07-18 Ondřej Pražák <[email protected]>
* Fixes #19677 - Add settings for local boot templates
2017-07-17 Ondřej Pražák <[email protected]>
* Fixes #19947 - Fix creating bookmarks for global params
2017-07-14 Ori Rabin <[email protected]>
* Fixes #20284 - Host saves compute profile storage
2017-07-13 kgaikwad <[email protected]>
* Fixes #17360 - Prevent % string interpolation in scoped_search
2017-07-12 François Cami <[email protected]>
* Refs #20119 - Be more descriptive when validating hostname
2017-07-12 orrabin <[email protected]>
* Fixes #20209 - Remove ovirt image from compute profile
2017-07-12 Ori Rabin <[email protected]>
* Fixes #17918,#19354 - Smart class parameters appear in audits
2017-07-12 Ohad Levy <[email protected]>
* fixes #20275 - add css linter support
2017-07-12 Lukáš Zapletal <[email protected]>
* Fixes #20146 - domain-less server email errors fixed
2017-07-12 Daniel Lobato Garcia <[email protected]>
* Fixes #20274 - Filter fixtures have many resource_types
2017-07-11 Tomer Brisker <[email protected]>
* Fixes #20272 - correctly rescue QueryNotSupported in production
* Fixes #20271 - update safemode gem
2017-07-10 Lukas Zapletal <[email protected]>
* Fixes #20258 - better unique permission types error
2017-07-09 Ohad Levy <[email protected]>
* refs #20193 - update to storybook that support webpack3
2017-07-09 Ori Rabin <[email protected]>
* Fixes #20083 - Search by environment for smart class parameter
2017-07-09 matanw <[email protected]>
* fixes #20228 - fix jest testing
2017-07-09 Boaz Shuster <[email protected]>
* Fixes #20119 - Be more descriptive when validating hostname
2017-07-07 Michael Moll <[email protected]>
* fixes #18500 - replace quiet_assets with sprockets-rails flag
2017-07-07 Ohad Levy <[email protected]>
* refs #20097 - use relative path in webpack config
2017-07-06 Tomer Brisker <[email protected]>
* Fixes #19826 - Fix Rails/ActiveSupportAliases cop
* Fixes #19828 - Fix Rails/Blank cop
2017-07-06 Shimon Shtein <[email protected]>
* Fixes #20212 - create and update host actions now showing params
2017-07-06 Daniel Lobato Garcia <[email protected]>
* Fixes #19266 - fix_db_cache crashes Rails initialization
2017-07-05 Tomer Brisker <[email protected]>
* Fixes #20211 - Run js tests if webpack config changes
2017-07-05 Michael Moll <[email protected]>
* Refs #19050 - set defaults Rails version to 4.2
2017-07-05 Dominic Cleal <[email protected]>
* fixes #19050 - add Ruby on Rails 5.0 support
2017-07-05 Ohad Levy <[email protected]>
* fixes #20193 - upgrade storybook to 3.1
2017-07-04 Michael Moll <[email protected]>
* Fixes #20202 - Update rails to 4.2.9
2017-07-04 Ohad Levy <[email protected]>
* fixes #20097 - webpack support for foreman plugins
2017-07-03 Marek Hulán <[email protected]>
* Fixes #20174 - handle no storage pool gracefully
2017-07-03 Lukáš Zapletal <[email protected]>
* Fixes #20143 - changed kind for Preseed default PXEGrub2 (#4630)
2017-07-03 orrabin <[email protected]>
* Fixes #20134 - Compute Profile for Ovirt loads template data
2017-07-03 Tomer Brisker <[email protected]>
* Fixes #19823 - Fix Performance/StartWith cop
* Fixes #19825 - Fix Performance/TimesMap cop
* Fixes #19821 - Enable Performance/CompareWithBlock cop
2017-06-30 Marek Hulán <[email protected]>
* Fixes #20165 - improve org/loc error messages
2017-06-30 Ondrej Prazak <[email protected]>
* Fixes #18892 - Do not show 'undefined method' in error message
2017-06-29 Ondrej Prazak <[email protected]>
* Fixes #18855 - Disable taxonomy validations for roles
2017-06-29 Marek Hulán <[email protected]>
* Fixes #20137 - hide ssh keys for new users
2017-06-29 Ohad Levy <[email protected]>
* fixes #20142 - adds storybook deployer
2017-06-29 Marek Hulan <[email protected]>
* Fixes #20141 - remove close icon from filter warning
2017-06-28 Daniel Lobato Garcia <[email protected]>
* Fixes #20104 - fix_db_cache needs to run as admin
2017-06-27 wiad <[email protected]>
* Fixes #19623 - add comparison to portkey for vmware networks
2017-06-27 Marek Hulán <[email protected]>
* Sync community templates
2017-06-27 Tomer Brisker <[email protected]>
* Fixes #20072 - Allow thin host list via API
2017-06-26 Tomer Brisker <[email protected]>
* Fixes #19844 - fix Security/Eval cop
2017-06-26 Ohad Levy <[email protected]>
* refs #19478 - fixes webpack HOT server.
* refs #19478 - update wrong webpack-dev-server dependency
2017-06-26 Matan Werbner <[email protected]>
* Fixes #19478 - migrate to webpack2
2017-06-24 Daniel Lobato Garcia <[email protected]>
* Refs #20049 - Retry various integration tests
2017-06-23 Marek Hulán <[email protected]>
* Fixes #19383 - document enabled host attribute
2017-06-23 Timo Goebel <[email protected]>
* fixes #19604 - vmware vSphere 6.5 GuestOsIdentifier
2017-06-22 Ori Rabin <[email protected]>
* Fixes #17087 - default and overrides values converted to string
2017-06-22 Jo Vandeginste <[email protected]>
* fixes #19969 - consider subnet6 when determining vlanid
2017-06-22 Michael Moll <[email protected]>
* Refs #19512 - update nodejs versions
2017-06-22 Marek Hulán <[email protected]>
* Fixes #20086 - report message should have capital M
2017-06-22 Shimon Shtein <[email protected]>
* Fixes #20066 - added safe renderer to global params
2017-06-20 Daniel Lobato Garcia <[email protected]>
* Fixes #20049 - Retry various integration tests before failing
2017-06-20 Ohad Levy <[email protected]>
* fixes #19995 - search now uses turbolinks
2017-06-20 Marek Hulán <[email protected]>
* Fixes #20033 - load seed data just once
* Fixes #20035 - Adds API link to About page
2017-06-19 Jo Vandeginste <[email protected]>
* fixes #19977 - Fetch a value for a given subnet parameter name
2017-06-19 Marek Hulán <[email protected]>
* Fixes #20034 - add Organization admin role
2017-06-19 Marek Hulan <[email protected]>
* Fixes #20017 - mail notifications work for global admins
2017-06-19 matanw <[email protected]>
* Fixes #20013 - Notification singleton polling
2017-06-19 Ohad Levy <[email protected]>
* fixes #19913 - fixes rubocop Style/ZeroLengthPredicate
2017-06-19 amirfefer <[email protected]>
* Fixes #16807 - remove premission edit_users for test_mail
2017-06-19 Shimon Shtein <[email protected]>
* Fixes #15711 - Redesigned host info to providers.
2017-06-18 Justin Sherrill <[email protected]>
* Fixes #20038 - exclude classes from hostgroup free search
2017-06-18 matanw <[email protected]>
* Fixes #19615 - Hosts cart to c3
2017-06-16 Tomer Brisker <[email protected]>
* Fixes #19798 - Fix Layout/TrailingBlankLines cop
2017-06-14 Jo Vandeginste <[email protected]>
* fixes #20001 - Allow access to interface fqdn from snippets
2017-06-14 amirfefer <[email protected]>
* Fixes #19315 - redirect to login when session expired
2017-06-13 Ohad Levy <[email protected]>
* fixes #20000 - load dashboard refresh using turbolinks
2017-06-13 Jo Vandeginste <[email protected]>
* Fixes #19991 - Add network6 to nic model
2017-06-12 Tomer Brisker <[email protected]>
* Refs #19588 - Allow passing header to csv responder
2017-06-08 Tomer Brisker <[email protected]>
* Fixes #19921 - Upgrade fast-gettext to 1.4 or newer
2017-06-08 Daniel Lobato Garcia <[email protected]>
* Fixes #19952 - Allow view_audit_logs to work
2017-06-07 Lukáš Zapletal <[email protected]>
* Fixes #19728 - set admin user in rake console
2017-06-07 Tomer Brisker <[email protected]>
* Fixes #19764 - Fix Layout/AccessModifierIndentation cop
* Fixes #19588 - Allow setting custom headers in CSV export
* Fixes #19934 - Don't limit smart class parameter order length
2017-06-06 Eric D Helms <[email protected]>
* Fixes #19930: Skip adding permissions to default_roles during migrate
2017-06-06 Ohad Levy <[email protected]>
* refs #19589 - ensure that foreman starts in production
2017-06-06 Tomer Brisker <[email protected]>
* Fixes #19922 - Unpin gettext_i18n_rails
* Fixes #19923 - Unpin nokogiri gem
2017-06-05 Ori Rabin <[email protected]>
* Fixes #19582 - Alert when puppetclass is not saved due to error
2017-06-05 Tomer Brisker <[email protected]>
* Fixes #19418 - Correctly route cancel button on host form
2017-06-05 Daniel Lobato Garcia <[email protected]>
* Fixes #19631 - ComputeResource with KeyPair can be removed
2017-06-04 Tomer Brisker <[email protected]>
* Fixes #19762 - upgrade to rubocop 0.49.1
* Fixes #19585 - Allow csv export of nested attributes
2017-06-02 Marek Hulán <[email protected]>
* Fixes #19646 - improve inline help
2017-06-02 Shimon Shtein <[email protected]>
* Fixes #19589 - Added plugin migration generator
2017-06-01 Amir Fefer <[email protected]>
* Fixes #15861 - increase size of audited_changes column
2017-06-01 Ohad Levy <[email protected]>
* Fixes #19700 - update rubocop rules
2017-06-01 lizagilman <[email protected]>
* Fixes #19161 - expand value plus icon change to minus icon after click
2017-06-01 Marek Hulán <[email protected]>
* Fixes #19612 - CVE-2017-7505 don't expose admin to taxed users
2017-06-01 Daniel Lobato Garcia <[email protected]>
* Fixes #19717 - Pin npm to < 5.0.0 in TravisCI
2017-05-31 Timo Goebel <[email protected]>
* fixes #19340 - replace all new_host calls with new_vm
2017-05-29 Lukáš Zapletal <[email protected]>
* Fixes #19632 - changed shim and grub1 PXE names
2017-05-29 Marek Hulán <[email protected]>
* Fixes #19672 - fix bulk actions for plugins
2017-05-28 Martin Ducar <[email protected]>
* Fixes #19459 - improve vm boot failure feedback
2017-05-27 Daniel Lobato <[email protected]>
* Fixes #16159 - Rename mail alerts to not be Puppet specific
2017-05-26 Dominic Cleal <[email protected]>
* fixes #18200 - don't re-encrypt settings when value is unchanged
2017-05-25 Tomer Brisker <[email protected]>
* Fixes #19579 - Upgrade fog-libvirt to 0.4
2017-05-25 amirfefer <[email protected]>
* Fixes #19034 - add tasks for clearing expired notifications
2017-05-24 Dominic Cleal <[email protected]>
* fixes #19528 - rewrite FiltersHelperOverrides to support autoload
* fixes #19613 - permit ancestry 3.x
2017-05-24 matanw <[email protected]>
* Fixes #19544 - fix test warnings
2017-05-23 Marek Hulan <[email protected]>
* Fixes #19630 - ignore hidden admins
2017-05-23 Lukas Zapletal <[email protected]>
* Fixes #19583 - reworded blank label for subnet
2017-05-23 Shimon Shtein <[email protected]>
* Fixes #19541 - properly mark user <-> mail_notification relation
2017-05-23 Sebastian Gräßl <[email protected]>
* Fixes #19475 - Rename test variables to more specific term
2017-05-22 Dominic Cleal <[email protected]>
* refs #19534 - check EncryptValue class variables are defined
2017-05-22 Michael Moll <[email protected]>
* Fixes #17377 - update fog(-core) to current versions
2017-05-22 Partha Aji <[email protected]>
* fixes #14699 - Enable host edit to accept new params
2017-05-17 Anurag Patel <[email protected]>
* Fixes #17749 - Remove confusing .gz.txt extension from logs
2017-05-17 Lukas Zapletal <[email protected]>
* Fixes #19534 - removed excessive encryptor logging
* Fixes #19534 - improved orchestration task logging
2017-05-15 Ori Rabin <[email protected]>
* Fixes #19296 - Combination remove link shows correct tooltip
2017-05-15 matanw <[email protected]>
* Fixes #18438 - control notifications polling
2017-05-14 Marek Hulan <[email protected]>
* Fixes #17883 - enforce newer fog-vsphere
2017-05-12 Dominic Cleal <[email protected]>
* fixes #19524 - pin roadie-rails to 1.1.x on Ruby 2.0-2.1
2017-05-11 Dominic Cleal <[email protected]>
* fixes #19437 - remove duplicate Rails.cache.clear calls
* refs #19317 - move FiltersHelperOverrides to app/registries/
2017-05-11 Marek Hulan <[email protected]>
* Fixes #19506 - reset cache after CR update
2017-05-11 Dmitri Dolguikh <[email protected]>
* Fixes #19173 - build notification succeeds with expired token.
2017-05-11 Sean O'Keeffe <[email protected]>
* Fixes #19497 - More passenger info in foreman-debug
2017-05-11 Michael Moll <[email protected]>
* Refs #19512 - use nodejs 6.10 for EL7 tests
2017-05-11 Tomer Brisker <[email protected]>
* Fixes #19504 - Quote puppet class filter in host form
2017-05-11 June Zhang <[email protected]>
* Fixes #19384 - Add tooltip to the Remove Matcher button
2017-05-10 Tomer Brisker <[email protected]>
* Fixes #19490 - Remove Apache License
2017-05-10 matanw <[email protected]>
* Fixes #19502 - fix react warnings
2017-05-10 Ohad Levy <[email protected]>
* fixes #19479, #10587, #19500 - two pane notifications are visible
2017-05-09 Justin Sherrill <[email protected]>
* Fixes #19491 - properly i18n notification seed
2017-05-09 Dominic Cleal <[email protected]>
* fixes #19483 - use #admin? method to check inherited admin flags
* fixes #19476 - list features in smart proxy refresh API response
2017-05-09 Daniel Lobato Garcia <[email protected]>
* Fixes #18995, #18996 - visible_environments works w/o taxonomies
2017-05-08 Anurag Patel <[email protected]>
* Fixes #17771 - Test if rsync successfully uploaded tarball
2017-05-08 Daniel Lobato Garcia <[email protected]>
* templates - sync from community-templates
* i18n - extracting new, pulling from tx
2017-05-08 matanw <[email protected]>
* fixes #14178 - Introduce patternfly toast notifications
2017-05-08 matanwerbner <[email protected]>
* Fixes #18957,#18193,#18678,#18853 - notifications redux
2017-05-08 Gail Steiger <[email protected]>
* fixes #14178 - introduce react patternfly toasts
2017-05-08 Ohad Levy <[email protected]>
* fixes #14178 - introduce patternfly toast notifications
2017-05-08 Tomer Brisker <[email protected]>
* Fixes #19436 - Better controller selection on host dropdown (#4498)
2017-05-07 Dominic Cleal <[email protected]>
* fixes #19464 - rewrite Dashboard
* fixes #19463 - disable auditing of factory_girl fixtures
2017-05-04 Tomer Brisker <[email protected]>
* Fixes #19388 - Show full text of highlighted multiselect lines
2017-05-03 Ivan Nečas <[email protected]>
* Fixes #19400 - defer loading of tables list cache
2017-05-02 Tomer Brisker <[email protected]>
* Fixes #19417 - Safely check params for nested keys
2017-05-01 Timo Goebel <[email protected]>
* refs #19419 - test aws fog_extensions name methods
2017-05-01 lizagilman <[email protected]>
* Fixes #19427 - sort by report time is possible
2017-05-01 Ben Plessinger <[email protected]>
* fixes #19419 - fix invalid syntax in aws fog extention
2017-04-28 Walter Huf <[email protected]>
* Fixes #19399 - Allow API to show usernames with periods
2017-04-27 Petr Benas <[email protected]>
* Fixes #19377 - available_flavors for OpenStack
2017-04-26 lizagilman <[email protected]>
* Fixes #19365 - display loading spinner instead of text
2017-04-25 Shimon Shtein <[email protected]>
* Fixes #19374 - added check to fix double facet registration
2017-04-25 Tomer Brisker <[email protected]>
* Fixes #19125 - Add description to hostgroup
2017-04-24 Dominic Cleal <[email protected]>
* fixes #19317, #10927 - move registries to autoload_once path
* fixes #19344 - sort both expected and actual results in UG test
2017-04-24 June Zhang <[email protected]>
* Fixes #19357 - update the edit icon in hostgroup os edit page
2017-04-23 Dominic Cleal <[email protected]>
* fixes #19324 - permit apipie-rails 0.5.x
2017-04-23 amirfefer <[email protected]>
* Fixes #19176 - fix translated strings in select all hosts
2017-04-21 Dominic Cleal <[email protected]>
* fixes #19345 - set host group parent names for consistent sorting
2017-04-21 Timo Goebel <[email protected]>
* fixes #19328 - autosign tasks have correct wording
2017-04-20 Dominic Cleal <[email protected]>
* fixes #19131 - upgrade minitest to latest 5.x
2017-04-20 Anurag Patel <[email protected]>
* Fixes #17770 - Preserve timestamps for collected files.
2017-04-20 Tomer Brisker <[email protected]>
* Fixes #19309 - Only select first hosts page on select all (#4467)
2017-04-20 Swapnil Abnave <[email protected]>
* Fixes #18381 - PXE loader show inherited value in host/hostgroup
2017-04-19 Marek Hulán <[email protected]>
* Fixes #19295 - use new DHCP API
2017-04-19 Ohad Levy <[email protected]>
* fixes #19192 - adds mark all as read notification action
2017-04-19 Marek Hulan <[email protected]>
* Fixes #18687 - restore hash format for parameter attributes
2017-04-19 Dominic Cleal <[email protected]>
* refs #19298 - update fact test to find links in ol/li elements
2017-04-18 Ohad Levy <[email protected]>
* fixes #19303 - adds jest watch mode
2017-04-18 lizagilman <[email protected]>
* Fixes #19298 - Use chevron instead of colons for breadcrumbs
* Fixes #19288 - word button instead of icon button
2017-04-18 Dominic Cleal <[email protected]>
* refs #19217 - extract template combination "Remove" string
* refs #19288 - extract View Chart string
2017-04-18 June Zhang <[email protected]>
* Fixes #19217 - update the close icon to remove icon
2017-04-18 Daniel Lobato García <[email protected]>
* Fixes #17588 - Remove 1.16 deprecations
2017-04-17 lizagilman <[email protected]>
* Fixes #16839 - sort by origin is possible (#4445)
2017-04-13 Marek Hulan <[email protected]>
* Fixes #19264 - order images by name
2017-04-13 amirfefer <[email protected]>
* Fixes #19265 - Change empty settings value color
2017-04-12 Ivan Nečas <[email protected]>
* Refs #13772 - ensure ApplicationRecord is loaded soon enough
2017-04-12 Tomer Brisker <[email protected]>
* Fixes #19252 - Correct permission mapping for vm association
2017-04-12 Ivan Necas <[email protected]>
* Fixes #19241 - fix warning: already initialized constant ARGV
2017-04-12 June Zhang <[email protected]>
* Fixes #19255 - Edit icon update in the setting page
2017-04-12 Marek Hulán <[email protected]>
* Fixes #17897 - update status api documentation
2017-04-12 Lukas Zapletal <[email protected]>
* Fixes #13772 - orchestration now uses app logger
2017-04-10 Ivan Necas <[email protected]>
* Fixes #19236 - handle situation when host is destroyed oVirt
2017-04-10 Tomer Brisker <[email protected]>
* Fixes #16082 - Associate FactValues with Host
2017-04-07 Ivan Nečas <[email protected]>
* Fixes #19213 - use provision interface in foreman_url
2017-04-07 Timo Goebel <[email protected]>
* fixes #17895 - do not import link-local ipv6 addr fact
2017-04-06 Dominic Cleal <[email protected]>
* fixes #18445 - always define eager_load_paths, use require_dep
2017-04-06 Marek Hulan <[email protected]>
* Fixes #19169 - remove image password from audit
2017-04-05 Marek Hulan <[email protected]>
* Fixes #19064 - seed the external auth source
2017-04-05 Lukas Zapletal <[email protected]>
* Fixes #18561 - faster fact deletion on MySQL
2017-04-05 Tomer Brisker <[email protected]>
* Fixes #19148 - Add description field to subnets
2017-04-04 Tomer Brisker <[email protected]>
* Fixes #19160 - Correct bookmarks documentation link
2017-04-03 Dominic Cleal <[email protected]>
* fixes #18982 - replace AC
* fixes #19127 - update spring to 2.x
2017-04-03 amirfefer <[email protected]>
* Fixes #16043 - add select all hosts option
* Fixes #19123 - fix labels on multiple action pages
2017-04-02 amirfefer <[email protected]>
* Fixes #19122 - clear selected hosts in new search
2017-03-30 Dominic Cleal <[email protected]>
* fixes #19085 - remove test for Token#expires
* fixes #19087 - create host built notification from Host#built
* fixes #19068 - list newly synced templates in DB seeds
2017-03-29 Ori Rabin <[email protected]>
* Fixes #17902 - Smart variable puppet class is not auto selected
2017-03-29 Daniel Lobato Garcia <[email protected]>
* i18n - extracting new, pulling from tx
* Revert "Revert "fixes #18691 - add as_deprecation_tracker to test environment""
* Bump version to 1.16-develop
* templates - sync from community-templates
* Revert "fixes #18691 - add as_deprecation_tracker to test environment"
2017-03-29 Tomer Brisker <[email protected]>
* Fixes #18954 - Add CSV export to facts table
2017-03-28 matanwerbner <[email protected]>
* Fixes #18957,#18193,#18678,#18853 - notifications redux
2017-03-28 Tomer Brisker <[email protected]>
* Fixes #18762 - Add csv export to reports table
2017-03-28 Dominic Cleal <[email protected]>
* fixes #19035 - rewrite TopbarSweeper without rails-observers
2017-03-28 Marek Hulán <[email protected]>
* Fixes #18640 - realign templates structure
* Fixes #18639 - lock all templates we seed
2017-03-28 Lukas Zapletal <[email protected]>
* Fixes #15374 - move progress_report_id to Host
2017-03-28 Ohad Levy <[email protected]>
* fixes #18940 - adds caching to notification api calls.
2017-03-27 Marek Hulan <[email protected]>
* Refs #18001 - Avoid role extending from rake tasks permission
2017-03-27 Ivan Necas <[email protected]>
* Fixes #19017 - prefer request id over session id in logging
2017-03-27 Bryan Kearney <[email protected]>
* Fixes #19036 - Add the hiera.yaml file from to foreman-debug
2017-03-27 Ondrej Prazak <[email protected]>
* Fixes #19030 - Uncomment plugin tests
2017-03-27 Ori Rabin <[email protected]>
* Fixes #12272 - Support multiple certificates in ovirt resource
2017-03-26 Dominic Cleal <[email protected]>
* fixes #18719 - replace usage of deprecated Fixnum constant
2017-03-24 Ondrej Prazak <[email protected]>
* Fixes #18001 - Add plugin permissions to core's roles
2017-03-24 adamruzicka <[email protected]>
* Fixes #18977 - Do not raise on creating a role in plugin when in Rake
2017-03-23 Tomer Brisker <[email protected]>
* Fixes #18893 - Improve latest events widget performance
2017-03-23 Timo Goebel <[email protected]>
* fixes #12419 - template preview host has typeahead
* fixes #18980 - ssh keys new page has breadcrumbs
2017-03-23 lizagilman <[email protected]>
* Fixes #18467, #18737 - search input is not layed on top of notification drawer
2017-03-23 Dominic Cleal <[email protected]>
* refs #18264 - remove text order assumption in response body test
2017-03-23 Walden Raines <[email protected]>
* Fixes #18986: upgrade patternfly-sass to 3.23.0.
2017-03-23 Tomas Strachota <[email protected]>
* Fixes #18065 - make API v1 deprecation warning more apparent
2017-03-22 Timo Goebel <[email protected]>
* fixes #18064 - import host from compute resource
2017-03-22 Dominic Cleal <[email protected]>
* refs #18950 - wait for CR test connection to complete
* fixes #18976 - separate tests with different request formats
2017-03-22 Amir Fefer <[email protected]>
* Fixes #18264 - change select multiple host actions to POST
2017-03-21 Marek Hulán <[email protected]>
* Fixes #18948 - correctly relogin user with SSO sessions
2017-03-21 Ivan Necas <[email protected]>
* Fixes #18949 - info message about current user
2017-03-21 Ohad Levy <[email protected]>
* fixes #16288 - moves ace editor to webpack.
2017-03-21 Dominic Cleal <[email protected]>
* refs #18760 - exclude test routes from permission checks
2017-03-20 Dominic Cleal <[email protected]>
* fixes #18958 - correct format of multiple REMOTE_ADDR addresses
2017-03-20 matan <[email protected]>
* Fixes #18906 - empty tooltip on notification
2017-03-19 Ivan Nečas <[email protected]>
* Fixes #18952 - fix destroy of host without owner
2017-03-19 Dominic Cleal <[email protected]>
* fixes #18950 - enable password field in CR form test
* fixes #18929 - add rails-observers dep for TopbarSweeper
2017-03-15 matanwerbner <[email protected]>
* Fixes #18901 - fix bottom notification dropdown
2017-03-15 Timo Goebel <[email protected]>
* fixes #18476 - users have ssh keys
2017-03-15 Sean O\'Keeffe <[email protected]>
* Fixes #18898 - "Host" prefix isnt required on Host show page
2017-03-14 matan <[email protected]>
* Fixes #18728 - notifications scroll
* Fixes #18888 - refactor powerStatus
2017-03-14 Dominic Cleal <[email protected]>
* refs #18760 - only build CSV URL from permitted params
* refs #17463 - require test helper for smart proxy mixin
2017-03-14 lizagilman <[email protected]>
* Fixes #18234 - display correct icon when no unread notifications
2017-03-14 Tomer Brisker <[email protected]>
* Fixes #18760 - Allow export to CSV
2017-03-14 Shimon Shtein <[email protected]>
* Fixes #18843 - Changed from eager_load to includes in #index
2017-03-14 Ondřej Pražák <[email protected]>
* Fixes #17463 - Detect user's orgs when importing from puppet
2017-03-13 Michael Moll <[email protected]>
* Fixes #18868 - add Parallels PSBM version handling
2017-03-12 Ori Rabin <[email protected]>
* Fixes #18718 - Empty boolean matcher should not turn into false
2017-03-10 Swapnil Abnave <[email protected]>
* Fixes #6817 - AWS VPC groups - show after saving
2017-03-10 Dominik Hlavac <[email protected]>
* Fixes #18764 - Hammer-cli current user password update
2017-03-10 Marek Hulán <[email protected]>
* Fixes #18722 - fix host parameters in host form
2017-03-10 Lukas Zapletal <[email protected]>
* Fixes #18800 - strong params no longer breaks inherited attrs
2017-03-09 Tomer Brisker <[email protected]>
* Fixes #18813 - Sort matchers by priority
2017-03-09 Marek Hulán <[email protected]>
* Refs #18804 - move spinner help icons
2017-03-09 Ohad Levy <[email protected]>
* fixes #18681 - moves polymorphic subject into notification object
* fixes #18796 - do not flot charts by default
2017-03-09 Marek Hulan <[email protected]>
* Fixes #12163 - add a rake task to clean up orphaned facts
2017-03-08 Marek Hulán <[email protected]>