forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
12360 lines (8881 loc) · 488 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
2016-12-06 kgaikwad <[email protected]>
* fixes #3158 - Remove rescues from try calls in helper file
2016-12-05 Ori Rabin <[email protected]>
* Fixes #17548 - Orphaned smart class parameters are hidden
2016-12-05 Dominic Cleal <[email protected]>
* templates - sync from community-templates
* i18n - extracting new, pulling from tx
2016-12-05 Amir Fefer <[email protected]>
* Fixes #12156 - Adds email configuration into Foreman settings
2016-12-04 Ivan Necas <[email protected]>
* Refs #15779 - move the foreman-tasks to own bundle group
2016-12-04 Tomer Brisker <[email protected]>
* Fixes #17571 - Refactor tfm.tools to use ES6 syntax
2016-12-04 Gail Steiger <[email protected]>
* Fixes #17569 - prevent error on chart component unmount
2016-12-02 Daniel Kimsey <[email protected]>
* Fixes #16907 - Sort proxy features on smart proxy display
2016-12-02 Klaas Demter <[email protected]>
* Fixes #17561 - Allow Dynamic keyword in autoyast files
2016-12-02 Timo Goebel <[email protected]>
* fixes #17095 - ensure subnet belongs to ip from facts
2016-12-01 Marek Hulan <[email protected]>
* Fixes #17495 - align default task and report expiration
2016-12-01 Tomer Brisker <[email protected]>
* Fixes #15287 - Correct link from puppet proxy dashboard chart
2016-12-01 Shimon Shtein <[email protected]>
* Fixes #16987 - Added ability to apply facet attributes
2016-11-30 kgaikwad <[email protected]>
* fixes #17157 - inconsistent mapping of host owner
2016-11-30 treydock <[email protected]>
* Fixes #17535 - Associate host with multiple NICs to VMWare VM
2016-11-30 Tomas Strachota <[email protected]>
* Fixes #17487 - support sessions for api calls
2016-11-30 Tomer Brisker <[email protected]>
* Fixes #17501 - Display tooltips on dashboard widgets (#4067)
2016-11-30 Gail Steiger <[email protected]>
* Fixes #17035 - removes webpack provider plugin
2016-11-30 Michael Moll <[email protected]>
* Refs #17491 - Revert "polyfill Map for ARMv8 node"
2016-11-29 Tomer Brisker <[email protected]>
* Refs #1556 - Remove puppet docroot setting from db and tests
2016-11-28 Timo Goebel <[email protected]>
* fixes #17407 - add a new hosts dashboard widget
2016-11-28 Tomer Brisker <[email protected]>
* Fixes #1556, #11615 - Remove puppet rdoc support
2016-11-28 Daniel Lobato Garcia <[email protected]>
* Fixes #17488 - Add confirmation to import db task
2016-11-28 Shimon Shtein <[email protected]>
* Fixes #17439 - Moved facet base to a concern
2016-11-28 Jan-Otto Kröpke <[email protected]>
* Fixes #16422 - Foreman API throws ruby exception with ovirt network API
2016-11-27 Tomer Brisker <[email protected]>
* Fixes #17491 - polyfill Map for ARMv8 node (#4059)
2016-11-27 Abhay Kadam <[email protected]>
* Fixes #17494 - Remove stray end statement
2016-11-25 Timo Goebel <[email protected]>
* fixes #11127 - show error when rebuild reboot fails
* fixes #17476 - bmc power actions have correct status
2016-11-25 Dominic Cleal <[email protected]>
* fixes #17484 - remove reported_at sequence from report factory
2016-11-25 Marek Hulán <[email protected]>
* Fixes #17483 - async task creation returns 202
2016-11-25 treydock <[email protected]>
* Fixes #17296 - Add setting access_unattended_without_build
2016-11-25 Ohad Levy <[email protected]>
* fixes #17474 - DROP db prior to restore on postgres
2016-11-25 Sean O'Keeffe <[email protected]>
* Fixes #16935 - Allow : & . device ID if there isnt one set
2016-11-25 Marek Hulan <[email protected]>
* Fixes #15779 - make background processing available
2016-11-25 kgaikwad <[email protected]>
* Fixes #17343 - set deep munge config off
2016-11-24 Amir Fefer <[email protected]>
* Fixes #17468 - build PXE returns error with no TFTP proxies
2016-11-24 Ori Rabin <[email protected]>
* Fixes #17441 - override all parameters permission changed to edit
2016-11-24 Conor O'Callaghan <[email protected]>
* Fixes #17461 - use singular form for missing os
2016-11-24 Marek Hulan <[email protected]>
* Fixes #17458 - include user group admins
* Fixes #16739 - unify parameters permissions
2016-11-23 Marek Hulan <[email protected]>
* Fixes #17403 - enable exporting of templates
2016-11-23 Dominic Cleal <[email protected]>
* refs #14688 - correct i18n extraction for all new power methods
2016-11-22 dhlavac <[email protected]>
* Fixes #15232 - Showing inherited roles from User groups to user
2016-11-22 Ohad Levy <[email protected]>
* refs #14688 - updated corret meta tag name and missing whitespace.
2016-11-22 Ondrej Prazak <[email protected]>
* Fixes #14688 - Power status visible on hosts index page
2016-11-22 Ori Rabin <[email protected]>
* Fixes #14951 - Allow matcher for host turning into managed host
2016-11-22 Timo Goebel <[email protected]>
* fixes #17409 - show only real bmc power actions
2016-11-22 amirfefer <[email protected]>
* Fixes #17436 - extract setting value placeholder in settings
2016-11-21 Ori Rabin <[email protected]>
* Fixes #17279 - Changing os search in host to search on os_title
2016-11-21 Tomer Brisker <[email protected]>
* Fixes #17394 - remove npm shrinkwrap file
2016-11-20 kgaikwad <[email protected]>
* Fixes #17303 - correct position of validation msg for parameters
2016-11-18 Shimon Shtein <[email protected]>
* Fixes #17309 - Made facets resilient to class reloading
2016-11-18 Dominic Cleal <[email protected]>
* fixes #17354 - test and improve idempotency of OS fact parser
2016-11-18 Ivan Nečas <[email protected]>
* Fixes #17361 - ensure plugins migration paths are set
2016-11-17 Dominic Cleal <[email protected]>
* refs #16899 - update help button on environments index
2016-11-16 Dominic Cleal <[email protected]>
* fixes #17335 - parse Solaris update as minor version
2016-11-16 alejandrocfg <[email protected]>
* Fixes #16619 - Set EC2 VPC instance private IP from primary NIC
2016-11-15 Dominic Cleal <[email protected]>
* fixes #17340 - assign IPv6 address to Rackspace CR hosts
2016-11-15 Marek Hulán <[email protected]>
* Fixes #17334 - change password strength messages to imply warning
2016-11-15 Amir Fefer <[email protected]>
* Fixes #17332 - Test email error renders properly in users
2016-11-14 Ori Rabin <[email protected]>
* Fixes #17238 - Validates lookup value match exists in key path
2016-11-14 Dominic Cleal <[email protected]>
* fixes #16798 - move scoped_search definitions to STI subclasses
2016-11-14 Ranjan Kumar <[email protected]>
* Fixes #17200 - Add option datacenter to compute resource
2016-11-14 Lukáš Zapletal <[email protected]>
* Fixes #17297 - added PXE loader flags for Debian family
2016-11-11 Dominic Cleal <[email protected]>
* fixes #17314 - use *_subnets permissions for Subnet subclasses
2016-11-11 Mac Reid <[email protected]>
* Fixes #17277 - quote host properties
2016-11-10 Dominic Cleal <[email protected]>
* fixes #17300 - accept Nic
2016-11-09 Tomer Brisker <[email protected]>
* Fixes #17248 - Run js tests with node versions we use
2016-11-09 Marek Hulán <[email protected]>
* Fixes #16971 - CVE-2016-7077 remove unauthorized checkboxes
* Fixes #15498 - removes scopes from includes in taxonomix
2016-11-08 Tomer Brisker <[email protected]>
* Fixes #17195 - CVE-2016-8634 escape html in alert text
2016-11-08 Marek Hulán <[email protected]>
* Fixes #17256 - ignore order in Authorizer
2016-11-08 Lukas Zapletal <[email protected]>
* Fixes #17006 - added SSH BMC provider
2016-11-08 Marek Hulan <[email protected]>
* Fixes #17264 - remove duplicit admin check
2016-11-07 Dominic Cleal <[email protected]>
* refs #17044 - update foreman-debug man page for -s option change
2016-11-07 Justin Sherrill <[email protected]>
* Fixes #16546 - update facts on existing hosts
2016-11-07 Marek Hulan <[email protected]>
* Fixes #17255 - authorizer supports admin users
2016-11-06 Ohad Levy <[email protected]>
* fixes #17236 - ensure source maps are available in dev env.
2016-11-04 Dominic Cleal <[email protected]>
* fixes #7152 - translate setting category names
* fixes #17170 - use strong params in InterfacesController
2016-11-04 Ondrej Prazak <[email protected]>
* Fixes #17206 - Use __() for js translations
2016-11-03 Timo Goebel <[email protected]>
* fixes #17071 - set ip after acquiring compute details
* fixes #17187 - v6 ip not required when cr provides v4
2016-11-03 Pavel Moravec <[email protected]>
* Fixes #17044 - foreman-debug counts size instead lines
2016-11-03 Dominic Cleal <[email protected]>
* fixes #17197 - don't update DNS on ip6 change to empty string
2016-11-03 Shimon Shtein <[email protected]>
* Fixes #16646 - Add ability to plugins to modify index scope
2016-11-03 amirfefer <[email protected]>
* Fixes #17151 - sort PXE labels by hostgroup title
2016-11-02 Timo Goebel <[email protected]>
* fixes #16951 - ipv6 compute orchestration
* fixes #15519 - speed up host edit page rendering on vmware
* fixes #17012 - openstack render scheduler_filter correctly
2016-11-02 Gail Steiger <[email protected]>
* Fixes #17038 - Improve js testing coverage reporting
2016-11-02 Lukáš Zapletal <[email protected]>
* Fixes #16218 - override settings per environment
2016-11-02 Marek Hulán <[email protected]>
* Fixes #17103 - search ignored taxonomies
2016-11-01 Kęstutis Mizara <[email protected]>
* fixes #16091 - Fixed association Foreman host with Compute VM
2016-11-01 Justin Sherrill <[email protected]>
* Fixes #16990 - make access_perm test reusable
2016-11-01 Martin Schurz <[email protected]>
* fixes #16996 - reduce eager_load of tables
2016-11-01 Ori Rabin <[email protected]>
* Fixes #17153 - Consistent name for variable_type in the api
2016-11-01 Tomer Brisker <[email protected]>
* Fixes #17152 - Puppet proxy dashboard displays correctly
* Fixes #16704 - Allow filtering on dashboard
2016-10-31 Timo Goebel <[email protected]>
* fixes #11656 - disable cr interface fields on host edit
2016-10-31 Ondrej Prazak <[email protected]>
* Fixes #17120 - Allow custom name for setting category
2016-10-31 dhlavac <[email protected]>
* Fixes #16548 - Changing user own passwd require current passwd
2016-10-31 Sebastian Gräßl <[email protected]>
* Fixes #17084 - Add webpack on welcome and unauthorized pages
2016-10-31 Dominic Cleal <[email protected]>
* fixes #16866 - don't call orchestration skip if unattended is off
2016-10-31 amirfefer <[email protected]>
* Fixes #12543 - enable utf-8 encoding in email address
2016-10-26 Marek Hulan <[email protected]>
* Fixes #17107 - list override in filter API
* Fixes #17104 - ignore resource via API
2016-10-26 Timo Goebel <[email protected]>
* fixes #17086 - export nic ipv6 address for ENC
2016-10-25 Timo Goebel <[email protected]>
* fixes #17007 - normalize dns records before comparison
2016-10-24 Dominic Cleal <[email protected]>
* fixes #17070 - unpin rabl to permit 0.13.1
2016-10-24 Timo Goebel <[email protected]>
* fixes #17041 - skips orchestration when importing facts
2016-10-19 Timo Goebel <[email protected]>
* fixes #16952 - pass type to proxy when destroying dns records
2016-10-19 Michael Moll <[email protected]>
* fixes #17011 - refactor BUNDLER_CMD in foreman-rake
2016-10-17 Ondrej Prazak <[email protected]>
* Fixes #16737 - Show correct folder level
2016-10-17 Dominic Cleal <[email protected]>
* refs #13968 - use existing feature to ensure reliable comparison
2016-10-17 Swapnil Abnave <[email protected]>
* Fixes #16962 - Typo on domains welcome page
2016-10-17 Timo Goebel <[email protected]>
* fixes #16900 - ensure interface mac address is unicast
2016-10-14 Dominic Cleal <[email protected]>
* fixes #16821 - store plugin permissions in AccessControl in tests
2016-10-14 Daniel Lobato Garcia <[email protected]>
* Fixes #16887 - Display errors from compute resource in VM tab
2016-10-13 Marek Hulán <[email protected]>
* Fixes #16899 - rename helper with conflicting path name
2016-10-13 Daniel Lobato Garcia <[email protected]>
* Fixes #6492 - ipmi_boot permission renamed to ipmi_boot_hosts
2016-10-13 Shlomi Zadok <[email protected]>
* Fixes #13968 - Add error when no known proxy features found
2016-10-13 Timo Goebel <[email protected]>
* fixes #16819 - rebuild tftp with template kinds
* fixes #16892 - secureheaders expects img_src parameter
2016-10-12 Timo Goebel <[email protected]>
* refs #16725 - initialize smart_proxies for models (#3932)
2016-10-11 Ivan Nečas <[email protected]>
* Fixes #16834 - ignore docker interfaces
2016-10-10 Dominic Cleal <[email protected]>
* refs #13424 - add wait_for_ajax to statistics page load test
2016-10-10 Swapnil Abnave <[email protected]>
* Fixes #16828 - cloned-roles - role.builtin must be 0
2016-10-09 Gail Steiger <[email protected]>
* Fixes #13424 - c3 patternfly react implementation
2016-10-07 Dominic Cleal <[email protected]>
* fixes #16805 - reload host parameters on host group change
2016-10-07 Marek Hulan <[email protected]>
* Fixes #16813 - improve error messages for associations
* Fixes #12864 - verify host owner taxonomies
2016-10-07 Shlomi Zadok <[email protected]>
* Fixes #5673 - Allow deletion of role with users
2016-10-07 amirfefer <[email protected]>
* Fixes #13870 - encrypt specific settings values in db
2016-10-07 Timo Goebel <[email protected]>
* fixes #16725 - add plugin extension point for smart proxies
2016-10-06 Marek Hulan <[email protected]>
* Fixes #16806 - include renderer url dependencies
2016-10-06 Daniel Lobato Garcia <[email protected]>
* Fixes #16797 - Log pending migrations
2016-10-05 Marek Hulan <[email protected]>
* Fixes #16803 - tolerate templates without documentation
2016-10-04 Dominic Cleal <[email protected]>
* fixes #16749 - improve NIC update performance during fact imports
* refs #16689 - expand array of eager load tables
* fixes #16786 - don't call to_sentence on associations
* refs #9016 - remove unnecessary condition, fix comment location
* fixes #16717 - input_group_btn option no longer added to field
* fixes #16718 - remove relation.to_a.delete_if in multiple actions
* refs #16702 - fix deprecation passing 'controller' etc.
2016-10-04 Marek Hulán <[email protected]>
* Fixes #16785 - improve resource names for lookup keys
2016-10-03 Marek Hulan <[email protected]>
* Fixes #16765 - DB IPAM works with excluded IPs
2016-10-03 dhlavac <[email protected]>
* Fixes #14277 - Added description field to users
2016-10-03 Ondřej Pražák <[email protected]>
* Fixes #15926 - [API] Add method to get ENC values of a host
2016-10-03 kgaikwad <[email protected]>
* fixes #16514 - redirect to login page if user is deleted
2016-09-30 Lukáš Zapletal <[email protected]>
* Fixes #16649 - PXE helper pxe_kernel_options rendering
2016-09-30 Bryan Kearney <[email protected]>
* Fixes #10930 - Make widget names and titles consistent
2016-09-29 Trey Dockendorf <[email protected]>
* Fixes #16114 - Expose host parameters to GET /api/hosts
2016-09-29 Tomer Brisker <[email protected]>
* Fixes #16723 - Lazy load data for dashboard widgets
2016-09-29 Tomer Brisker <[email protected]>
* Fixes #12111 - Set width for host list action column
2016-09-28 Dominic Cleal <[email protected]>
* fixes #16700 - change CatchJsonParseErrors test to cleanup driver
2016-09-28 Ranjan Kumar <[email protected]>
* Fixes #16681 - strong params in config groups API
2016-09-28 Daniel Lobato Garcia <[email protected]>
* Refs #16689 - Missing DRY index action controllers
2016-09-28 Shlomi Zadok <[email protected]>
* Fixes #16689 - DRY index action with search
2016-09-27 Tomer Brisker <[email protected]>
* Fixes #16702 - pass params to dashboard widgets
2016-09-27 Timo Goebel <[email protected]>
* fixes #16635 - welcome page works with scoped models
2016-09-27 Daniel Lobato Garcia <[email protected]>
* Fixes #6372 - User inherits taxonomies from LDAP on creation
2016-09-26 Shlomi Zadok <[email protected]>
* Fixes #16614 - Humanize Audit class name
* Fixes #14375 - Add search to bookmarks controller
2016-09-26 dhlavac <[email protected]>
* Fixes #4608 - Added description field to role
2016-09-26 Daniel Lobato Garcia <[email protected]>
* Fixes #16624 - Make AuthSourceLDAP taxable
* Fixes #16643 - Display origin for facts
2016-09-26 Dominic Cleal <[email protected]>
* refs #16557 - move templates helper test to correct dir
2016-09-24 Dominic Cleal <[email protected]>
* fixes #16557 - move tests into modern Rails layout
2016-09-23 Daniel Lobato Garcia <[email protected]>
* Fixes #16633 - AuthSourceLDAP uses *_authenticators filters
* Fixes #16625 - Deprecate show_taxonomy_tabs? helper
2016-09-23 Dominic Cleal <[email protected]>
* fixes #16547 - handle nil value from get_interface_scope
2016-09-23 Ondrej Prazak <[email protected]>
* Refs #16074 - Load .env when not running a Procfile
* Fixes #15703 - Singularize media in api doc for orgs
2016-09-23 Lukas Zapletal <[email protected]>
* Fixes #9016 - improved fact loading performance
* Fixes #16652 - UEFI Grub2 support for non-intel archs
2016-09-23 Tomer Brisker <[email protected]>
* Fixes #16286 - Move multiselect from gem to npm
2016-09-22 Shlomi Zadok <[email protected]>
* Fixes #12535 - expose config_groups in ENC
* Fixes #15543 - External method to search fact's hostgroup
* Fixes #14837 - Reword Puppet import buttons
2016-09-22 Lukas Zapletal <[email protected]>
* Fixes #16167 - added list of safemode methods
* Fixes #16532 - fixed hostgroup architecture params
2016-09-22 Marek Hulan <[email protected]>
* Fixes #5901 - fine grain for vmware CPU selectors
* Fixes #16577 - enhance unit detection
2016-09-22 Dominic Cleal <[email protected]>
* fixes #16578 - make keep_param idempotent, remove duplicate call
2016-09-22 Swapnil Abnave <[email protected]>
* Fixes #16530 - Redirect login page back if active session
2016-09-21 Dominic Cleal <[email protected]>
* refs #15846 - correct spelling of parameter
2016-09-21 Stephen Benjamin <[email protected]>
* templates - sync from community-templates
2016-09-21 Tomer Brisker <[email protected]>
* Fixes #16599 - Shrinkwrap npm modules
2016-09-20 Bryan Kearney <[email protected]>
* Fixes #16372 - Convert the header logo to svg instead of png
2016-09-20 Dominic Cleal <[email protected]>
* fixes #16580 - redact BMC password in ENC/templates with setting
2016-09-19 Dominic Cleal <[email protected]>
* fixes #16576 - only load FactName IDs, not models during import
2016-09-19 Tomer Brisker <[email protected]>
* Fixes #16566 - Allow css inline images
* Fixes #16565 - Correct host search by parameters
2016-09-18 Shlomi Zadok <[email protected]>
* Fixes #13704 - Defensive association name setter When setting an association by name (e.g., hostgroup_name, organization_name) and the name does not exist, we raise a not found error
2016-09-16 Dominic Cleal <[email protected]>
* fixes #16567 - use constants to register Rack middleware
2016-09-15 Tomer Brisker <[email protected]>
* Fixes #13936 - Drop support for legacy browsers
2016-09-15 Marek Hulan <[email protected]>
* Fixes #10395 - fine grain for CPU selectors
2016-09-15 dhlavac <[email protected]>
* Fixes #14101 - Exception triggered when editing/adding a role
2016-09-15 Daniel Lobato Garcia <[email protected]>
* Fixes #16562 - Enable JS testing on CI
2016-09-15 Dominic Cleal <[email protected]>
* fixes #16527 - replace where_values calls on relations
2016-09-15 Tomer Brisker <[email protected]>
* Fixes #16564 - Disable FrozenStringLiteralComment cop
2016-09-14 Dominic Cleal <[email protected]>
* fixes #16545 - correctly search for classes from YAML import
* fixes #16529 - require rake/testtask explicitly
2016-09-14 Daniel Lobato <[email protected]>
* Fixes #13748 - Add testing tools for code under webpack
2016-09-14 David Davis <[email protected]>
* Refs #3809 - Turn on MultilineTernaryOperator rubocop
2016-09-14 Tomer Brisker <[email protected]>
* Fixes #14545, #13104 - Correctly parse y.z minor OS versions
2016-09-14 Shlomi Zadok <[email protected]>
* Fixes #16074 - Adds BIND variable to startup process
2016-09-13 Shimon Shtein <[email protected]>
* Fixes #16125 - add owner type validation
2016-09-13 Dominic Cleal <[email protected]>
* refs #15846 - hide API deprecation warnings in tests
2016-09-13 Brad Buckingham <[email protected]>
* Fixes #16525 - host/hostgroup - include _name fields for proxy
2016-09-12 Daniel Lobato <[email protected]>
* Fixes #16219 - Interfaces API works with scoped view_hosts
2016-09-12 Dominic Cleal <[email protected]>
* fixes #16512 - remove Setting#respond_to_missing?
2016-09-12 Ori Rabin <[email protected]>
* Fixes #16378 - Move default_value casting to lookup_key children
2016-09-12 Shimon Shtein <[email protected]>
* Fixes #16397 - set nested template_combo. objects to optional
2016-09-12 Tomer Brisker <[email protected]>
* Fixes #16491 - Upgrade rubocop to version 0.42
* Fixes #9117 - Upgrade secure_headers to version 3.4
2016-09-11 Shlomi Zadok <[email protected]>
* Fixes #16483 - Remove deprecated 'search_by_name' from Puppetclass
2016-09-09 Shlomi Zadok <[email protected]>
* Fixes #16414 - reword alphanumeric validation error message
2016-09-09 Tomas Strachota <[email protected]>
* Fixes #16092 - Test connection buttons don't disapper on error
2016-09-08 Tomer Brisker <[email protected]>
* Fixes #16293 - Move vendored diff.js to webpack (#3784)
2016-09-08 Tomas Strachota <[email protected]>
* Fixes #16072 - Fixes compute profile two pane
2016-09-08 Daniel Lobato <[email protected]>
* Fixes #16463 - Fix with_taxonomy_scope when taxable_ids = []
2016-09-08 Lukas Zapletal <[email protected]>
* Fixes #16424 - extracted create_new_host_when_facts_are_uploaded
2016-09-08 Marek Hulan <[email protected]>
* Fixes #16461 - expose override in filter API
2016-09-08 David Davis <[email protected]>
* Refs #7233 - Fixing erroneous rubocop config
2016-09-08 Shimon Shtein <[email protected]>
* Fixes #15846 - Renamed use_puppet_default to omit in LookupValue
2016-09-07 Dominic Cleal <[email protected]>
* fixes #15248 - remove 1.14 deprecations
* Bump version to 1.14-develop
2016-09-07 Shlomi Zadok <[email protected]>
* Fixes #15992 - Truncate compute resources name in about page
* Fixes #16407 - reword import environments title
* Fixes #16380 - Eager load hosts attributes Since Rails 4, in order to load delegated attributes, we need to use 'eager_load' instead of 'includes'
* Fixes #16415 - Accept unwrapped hash with 'layout' attribute
2016-09-07 Guido Günther <[email protected]>
* Fixes #16439 - Don't fail recreate if DNS is ok
2016-09-07 Lukas Zapletal <[email protected]>
* Fixes #16449 - reordered taxonomy detection during import
2016-09-06 Marek Hulan <[email protected]>
* Fixes #2314 - fine grain for RAM selectors
2016-09-06 Tomer Brisker <[email protected]>
* Fixes #16290 - Move ipaddr.js from bundle to npm
2016-09-06 Timo Goebel <[email protected]>
* fixes #15590 - ipv6 tftp orchestration
2016-09-05 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2016-09-05 Tomer Brisker <[email protected]>
* Fixes #16358 - Load dashboard on puppet proxy view
2016-09-02 Marek Hulan <[email protected]>
* Fixes #16389 - enable taxable object creation in specific context
* Fixes #16405 - Allow roles search by builtin flag
2016-09-02 Tomer Brisker <[email protected]>
* Fixes #13047, #16291 - Upgrade datatables and move it to npm
2016-09-02 Sean O'Keeffe <[email protected]>
* Fixes #16416 - Enable reterive password_hash from templates
2016-09-01 Lukáš Zapletal <[email protected]>
* Fixes #16318 - PXE templates now work in safemode (#3783)
2016-09-01 Tomas Strachota <[email protected]>
* Fixes #16164 - False positives on testing CR connection
* Fixes #16144 - vmWare datacenter error in connection test
2016-09-01 Jon de la Vega <[email protected]>
* Fixes #16357 - Losslessly optimized assets
2016-09-01 Ori Rabin <[email protected]>
* Refs #15814 - Reset override params only for PuppetclassLookupKey
2016-09-01 Tomer Brisker <[email protected]>
* Fixes #16379 - Improve layout of hostname randomize button
2016-09-01 Bryan Kearney <[email protected]>
* Fixes #16371 - Add support for login page dynamic text
* Fixes #16384 - Localize the names for email prefs
2016-08-31 Dominic Cleal <[email protected]>
* fixes #16376 - use correct params filter for nested Puppet LKs
2016-08-31 Ohad Levy <[email protected]>
* Refs #16222 - remove no-global-assign rule from eslint (#3787)
2016-08-30 Ondrej Prazak <[email protected]>
* Fixes #16163 - Hide spinner for vmware cluster
2016-08-28 Tomer Brisker <[email protected]>
* Refs #16222 - remove no-global-assign rule from eslint
2016-08-26 Ondrej Prazak <[email protected]>
* Fixes #14771 - Show corresponding os list for arch
2016-08-26 amirfefer <[email protected]>
* Fixes #16211 - show host autocomplete in audit search
2016-08-26 Ori Rabin <[email protected]>
* Fixes #14468 - fix db:migrate when unattended false on empty db
2016-08-26 Dominic Cleal <[email protected]>
* refs #16260 - wait for AJAX on main dashboard page test
* i18n - extracting new, pulling from tx
2016-08-26 Marek Hulan <[email protected]>
* Fixes #7806 - allow taxonomy association on role level
2016-08-26 Lukas Zapletal <[email protected]>
* Fixes #16057 - added dns_lookup template helper
2016-08-26 Daniel Lobato <[email protected]>
* Fixes #16264 - Template combinations cannot be created
2016-08-25 Dominic Cleal <[email protected]>
* refs #1170 - capitalize statistics heading (#3780)
* refs #12634 - remove blank i18n string, match capitalisation
2016-08-25 Ohad Levy <[email protected]>
* fixes #1170 - adds additional charts to statistics page
2016-08-24 Tomer Brisker <[email protected]>
* Refs #16222 - Increase scope of eslint ignore
* Fixes #16260 - Wait for dashboard to fully load in test
2016-08-24 Dominic Cleal <[email protected]>
* refs #12544 - replace ordered interpolation with named variables
2016-08-24 Lukas Zapletal <[email protected]>
* Fixes #12634 - New HW Model flag pxe_loader
2016-08-24 Shimon Shtein <[email protected]>
* Fixes #12544 - added errors from host to cancelBuild Now the flash will contain detailed error messages.
2016-08-24 David Davis <[email protected]>
* Fixes #15814 - Reset override params when override is off
2016-08-23 Tomer Brisker <[email protected]>
* Fixes #16044 - Load dashboard widgets via ajax
2016-08-23 Dominic Cleal <[email protected]>
* templates - sync from community-templates
* i18n - extracting new, pulling from tx
* fixes #16243 - make Host
* fixes #16220 - replace skip_callback class changes with stubs
* fixes #16221 - replace private AS timezone listing method
2016-08-23 Ohad Levy <[email protected]>
* Fixes #16238 - Speed up dashboard loading time.
2016-08-23 Daniel Lobato García <[email protected]>
* Fixes #16239 - Enable rubocop checks on HoundCI (#3767)
2016-08-23 Daniel Lobato <[email protected]>
* Fixes #16197 - Host#smart_proxies returns only the host proxies
2016-08-22 Gail Steiger <[email protected]>
* Fixes #15806 - add babel-eslint dependency to package.json
* fixes #15806 - Add linting to webpack
2016-08-22 Daniel Lobato <[email protected]>
* Fixes #16222 - Make HoundCI round ESLint on new JS
2016-08-22 Timo Goebel <[email protected]>
* fixes #16199 - always run build related callbacks
2016-08-22 Klaas Demter <[email protected]>
* Fixes #16061 - auto ip assignment for non-primary interfaces
2016-08-22 Tomer Brisker <[email protected]>
* Fixes #16120 - Allow including css in webpack assets
2016-08-22 Dominic Cleal <[email protected]>
* fixes #16172 - remove base_class override in template subclasses
* fixes #16193 - change templates.type default to known STI class
* fixes #16198 - remove therubyracer Bundler group
2016-08-22 David Davis <[email protected]>
* Fixes #16212 - Fix test filenames
2016-08-21 Martin Ducar <[email protected]>
* fixes #16196 - fix typo in image scoped search
2016-08-19 Dominic Cleal <[email protected]>
* fixes #16194 - correct table name in remove_foreign_key call
2016-08-18 Dominic Cleal <[email protected]>
* fixes #16166 - exclude node_modules/ directory from rubocop
2016-08-17 Tomer Brisker <[email protected]>
* Fixes #16104 - Use parameterizable for HW models
2016-08-17 Justin Sherrill <[email protected]>
* Fixes #16073 - match up nic identifiers for unmanaged hosts
2016-08-17 Klaas Demter <[email protected]>
* Fixes #16139 - Add link to code contribution in CONTRIBUTING.md
2016-08-17 Daniel Lobato <[email protected]>
* Fixes #16025 - Fix ERB & params to import subnets from proxy
2016-08-17 Dominic Cleal <[email protected]>
* fixes #16142 - replace Unicode copyright with HTML encoded symbol
2016-08-17 Marek Hulan <[email protected]>
* Refs #12364 - webpack server can serve assets on https
2016-08-16 amirfefer <[email protected]>
* Fixes #16075 - add authenticity token in setting params
2016-08-16 Dominic Cleal <[email protected]>
* fixes #16085 - update Rails to 4.2.7.1
2016-08-15 Tomer Brisker <[email protected]>
* Refs #12364 - Only load the dev server js if it's enabled
2016-08-15 Marek Hulan <[email protected]>
* Fixes #15364 - disable Style/ClassCheck cop
2016-08-15 Dominic Cleal <[email protected]>
* fixes #16089 - replace flot-rails with npm jquery-flot
2016-08-12 Dominic Cleal <[email protected]>
* fixes #16083 - pin gettext_i18n_rails for Ruby 2.0.0
2016-08-11 Tomer Brisker <[email protected]>
* Refs #12364 - Allow running webpack dev server on any hostname
* Fixes #16020 - Prevent reflective XSS on form validation
2016-08-10 Dominic Cleal <[email protected]>
* fixes #15787 - update shoulda-matchers to 3.x
* fixes #16046 - run webpack:compile as pre-req to test rake tasks
* fixes #16039 - update fog-openstack paths to load extensions
2016-08-10 Marek Hulan <[email protected]>
* Fixes #16024 - escape labels of form fields
2016-08-10 Tomer Brisker <[email protected]>
* Fixes #12364 - Use NPM+Webpack to handle external assets
2016-08-10 Martin Bačovský <[email protected]>
* Fixes #12488 - Add admin flag to usergroup param description
2016-08-10 Tomer Brisker <[email protected]>
* Fixes #16022 - Prevent stored XSS in host interface form
2016-08-09 Dominic Cleal <[email protected]>
* refs #13768 - add random_name call to create_hosts permission
2016-08-09 Shimon Shtein <[email protected]>
* Fixes #13813 - Removed "\ " so ruby 1.8 could read the ENC
2016-08-09 Chris Roberts <[email protected]>
* Fixes #15921 - add host command to foreman-debug
2016-08-08 elad <[email protected]>
* Fixes #15924 - Implement server groups and scheduler hints
2016-08-08 Lukas Zapletal <[email protected]>
* Fixes #13768 - random and MAC-based name generator
2016-08-08 aagrawal <[email protected]>
* Fixes #15996 - Multiple nav bars
2016-08-05 Timo Goebel <[email protected]>
* fixes #15977 - change enc output in a compatible way
* fixes #15989 - add clone host button to host view
2016-08-04 Ohad Levy <[email protected]>
* fixes #15919 - statistics page is loaded via AJAX
2016-08-04 Dominic Cleal <[email protected]>
* fixes #15975 - replace instance variable ref in subnet partial
2016-08-04 Timo Goebel <[email protected]>
* fixes #15951 - pass interface compute_attributes
2016-08-03 Ori Rabin <[email protected]>
* Fixes #15953 - pin fast_gettext gem
2016-08-03 Martin Bačovský <[email protected]>
* Fixes #15833 - remove duplicities in smart params listings
2016-08-02 dhlavac <[email protected]>
* Fixes #14301 - Grant access to help pages for view permissions
2016-08-02 Ranjan Kumar <[email protected]>
* Fixes #7955 - /apidoc should point to v2 documentation by default
2016-08-02 Tomer Brisker <[email protected]>
* Refs #15925 - unpin audited gem
2016-08-01 Tomer Brisker <[email protected]>
* Fixes #15925 - pin audited gem to allow tests to pass
2016-07-29 Dominic Cleal <[email protected]>
* fixes #15894 - retry intermittently failing integration tests
* fixes #3917 - replace protected_attrs with strong parameters
2016-07-28 Dominic Cleal <[email protected]>
* fixes #15863 - add short session or request ID to logs
2016-07-27 Dominic Cleal <[email protected]>
* fixes #15847 - change mailer helpers from paths to URLs
2016-07-27 Marek Hulan <[email protected]>
* Fixes #14518, #14516 - status change ignores validations
2016-07-27 Vincent Lequertier <[email protected]>
* Fixes #15771 - add :token to the values returned by the API
2016-07-25 Dominic Cleal <[email protected]>
* fixes #15829 - remove ace-rails-ap file modes from app.js
2016-07-25 David Davis <[email protected]>
* Refs #3809 - Using defaults for AndOr cop
2016-07-22 Brandon Weeks <[email protected]>
* Fixes #15773 - disambiguate table name
2016-07-21 amirfefer <[email protected]>
* Fixes #15037 - Improves editable elements in settings
2016-07-21 Ranjan Kumar <[email protected]>
* Fixes #15684 - foreman-rake without options raise an error
2016-07-21 Dominic Cleal <[email protected]>
* fixes #15762 - move flash testing out of integration test
* fixes #15761 - wait for domain and unused_ip AJAX calls
* fixes #15753 - unpin pg gem, match Rails requirement
* fixes #15751 - replace spork with spring in development
2016-07-21 Michael Moll <[email protected]>
* fixes #15709 - fix SuSE mediapath in PXELinux templates
2016-07-21 Tomer Brisker <[email protected]>
* Fixes #15675 - Improve report expiry performance
2016-07-20 Dominic Cleal <[email protected]>
* fixes #15682 - don't save invalid attributes at login from LDAP
2016-07-20 Tomer Brisker <[email protected]>
* Fixes #15718 - Correctly display hash parameters
2016-07-19 Tomer Brisker <[email protected]>
* Refs #12193 - Remove remaining cached counters
* Fixes #12193 - Stop using counter_cache for host[group] counts
2016-07-19 Daniel Lobato <[email protected]>
* Fixes #15653 - CVE-2016-5390 fix permissions for host API
2016-07-19 Dominic Cleal <[email protected]>
* fixes #15720 - rename *_filter to *_action
2016-07-18 Imri Zvik <[email protected]>
* Fixes #15681 - Upgrade Fog Openstack to at least version 0.1.7
2016-07-18 Shlomi Zadok <[email protected]>
* Fixes #13529 - Remove duplicate permissions A migration which adds unique constraint and removes duplicate permissions
2016-07-18 Stephen Benjamin <[email protected]>
* fixes #15704 - use sendmail for email.yaml
2016-07-18 Dominic Cleal <[email protected]>
* fixes #15699 - set a default FQDN/domain in test environment
2016-07-18 Daniel Lobato <[email protected]>
* Fixes #15527 - api/v2/hosts is slow loading permissions
2016-07-18 David Davis <[email protected]>
* Fixes #15712 - Pinning rabl to less than 0.13
2016-07-14 Justin Sherrill <[email protected]>
* Fixes #11749 - puppet env jquery selector more restrictive
2016-07-13 Ashish Humbe <[email protected]>
* Fixes #14720 - Handling invalid email from auth source
2016-07-13 Timo Goebel <[email protected]>
* fixes #14666 - support IPv6 in UI
2016-07-13 Ivan Nečas <[email protected]>
* Fixes #15134 - wait for ajax in interface test
2016-07-13 Shlomi Zadok <[email protected]>
* Fixes #15655 - Improve ptable migration
2016-07-13 Lukas Zapletal <[email protected]>
* Fixes #15490 - adding view_host filter and better msg
2016-07-12 Ori Rabin <[email protected]>
* Fixes #15629 - parameters form shows new parameters after error