forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
9426 lines (6861 loc) · 380 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
2015-10-07 Dominic Cleal <[email protected]>
* Bump version to 1.11-develop
* i18n - extracting new, pulling from tx
* templates - sync from community-templates
2015-10-07 Daniel Lobato <[email protected]>
* Refs #10409 - Rails 4 compatible changes with Rails 3
* Refs #12067 - Delegated method to_ip_address should be public
* Fixes #12067 - Delegated methods need to be public, not protected
2015-10-07 Tom Caspy <[email protected]>
* fixes #12082 - moving modules outside setup blocks in orchestration test
2015-10-07 Eric D. Helms <[email protected]>
* Fixes #12074: Pin rack-cache to less than 1.3.0
2015-10-05 Marek Hulan <[email protected]>
* Fixes #10993 - handle no interfaces in facts correctly
2015-10-02 Marek Hulan <[email protected]>
* Fixes #12034 - scope nics to validate uniqueness against
* Fixes #12013 - ignore all macvtap interfaces
2015-10-01 Dominic Cleal <[email protected]>
* fixes #11375, #11782 - validate a host's lookup_values
* fixes #11964 - mark existing parameters as overridden during clone
* fixes #11945 - fix undefined variable in param_true/false helpers
2015-10-01 Julien Pivotto <[email protected]>
* fixes #11990 - improve virtual interfaces discovery in fact parser
2015-10-01 David Davis <[email protected]>
* Fixes #12015 - Pin version of fog-google
2015-09-30 Dominic Cleal <[email protected]>
* fixes #11996 - use preload to avoid multiple fact/host table joins
2015-09-30 Marek Hulan <[email protected]>
* Fixes #12005 - align host selector for template preview
2015-09-29 Dominic Cleal <[email protected]>
* fixes #11980 - pin net-ssh to 2.x on Ruby 1.9.3
2015-09-25 Marek Hulan <[email protected]>
* Fixes #11767 - avoid cleaning of interface attributes
2015-09-25 Daniel Lobato <[email protected]>
* Fixes #7567 - Substitute find_or_create_by by first_or_create
2015-09-24 Dominic Cleal <[email protected]>
* fixes #11885 - exclude lookup_value_matcher on clone
2015-09-24 Ondrej Prazak <[email protected]>
* Fixes #11764 - Taxonomy parameters can be accessed through API
2015-09-24 Daniel Lobato <[email protected]>
* Refs #11846 - Specify join_tables for taxonomies
* Fixes #11912 - Remove deprecated assert_present assert_blank
* Fixes #11863 - Rewrite except_hidden user scope for Rails 4 compatibility
2015-09-23 Dominic Cleal <[email protected]>
* fixes #11883 - fix classes accessors when cloning host groups
2015-09-22 Shlomi Zadok <[email protected]>
* Fixes #11848 - Align 'Host parameters' table with 'Global parameters' table sizes
2015-09-21 amirfefer <[email protected]>
* Fixes #2943,#11387 - Add unset option to password_f in layout helper, added in Host and hostgroup root_pass, LDAP acount password, BMC password and compute resources password
* Fixes #9267 - overridden smart class parameters large names are truncated with tooltip
* Fixes #11893 - extract test connection string in compute resource vmware form
2015-09-21 Dominic Cleal <[email protected]>
* refs #11807 - change nested lookup_values destroy test params to match UI
2015-09-21 Shlomi Zadok <[email protected]>
* Fixes #11847 - find overridable global parameters by .fields selector
* Fixes #11851 - include ActiveRecord
* Fixes #11859 - handle HTML in parameters safely when hiding values (CVE-2015-5282)
2015-09-21 Ori Rabin <[email protected]>
* Fixes #11861 - Smart variables can be removed and deleted
2015-09-18 Christine Fouant <[email protected]>
* fixes #9815 - Corrects group parameter cloning on hostgroup
2015-09-18 Dominic Cleal <[email protected]>
* fixes #11835 - increase host_status.status field length to store metrics
2015-09-17 Shlomi Zadok <[email protected]>
* Fixes #11858 - DRY get ancestry parameters
* Fixes #11763 - Add inherited parameters to Host view api
2015-09-17 Lukas Zapletal <[email protected]>
* Fixes #11850 - improved DNS error message
2015-09-17 Dominic Cleal <[email protected]>
* refs #11833, #11791 - fix N+1 query during config status applicability check
2015-09-17 Walden Raines <[email protected]>
* Fixes #11692: update ace-rails-ap to 4.x.
* Fixes #11845: handle case of hidden textarea that is not an editor.
2015-09-17 Stephen Benjamin <[email protected]>
* fixes #11833 - remove puppet references from config status
2015-09-17 Daniel Lobato <[email protected]>
* Fixes #11813 - Use new engines listing syntax
* Fixes #11812 - Remove whiny nils and add eager load
* Fixes #11817 - Do not allow multi-line URL validations
* Fixes #11814 - model_name needs to be stringified on Rails 4
* Fixes #11818 - Update match routes to get
* Fixes #11844 - Remove duplicate scope in FactValue
* Fixes #11846 - Specify join_table and foreign keys for habtm associations
2015-09-16 Ori Rabin <[email protected]>
* Fixes #11468 - separate global and class parameters on host/hostgroup form
* Fixes #11188 - EnsureNotUsedBy checks for unscoped associations before destroying
2015-09-16 Lukas Zapletal <[email protected]>
* Fixes #11709 - better error for DNS conflict timeouts
2015-09-16 Marek Hulan <[email protected]>
* Fixes #11034 - custom uniqueness validations for interface attributes
2015-09-16 Daniel Lobato <[email protected]>
* Fixes #11816 - Remove whitelist_attributes as it's deprecated
2015-09-15 Tom McKay <[email protected]>
* fixes #11766 - differentiate between puppet facts and those from plugins
2015-09-15 Marek Hulan <[email protected]>
* Fixes #11791 - avoid N+1 query caused by configuration status
* Fixes #11761 - support hostgroup form push through AJAX
2015-09-15 Shlomi Zadok <[email protected]>
* fixes #11242 - Add operatingsystem_id to os_default_templates in API
* fixes #11037 - Add ByIdName to environment model
* Fixes #11401 - Add scoped search to auth_source on name
2015-09-15 Dominic Cleal <[email protected]>
* fixes #11807 - update existing lookup value when changed from nested host form
2015-09-15 Walden Raines <[email protected]>
* Fixes #11689: hide editor container when hidden value.
2015-09-14 Ondrej Prazak <[email protected]>
* Fixes #2267 - general rebuild of TFTP, DNS, DHCP
2015-09-14 Daniel Lobato <[email protected]>
* Refs #11693 - APIv1 returns message when attempting deletion of Smart class parameter
2015-09-14 Phirince Philip <[email protected]>
* Fixes #11745 - set_diff/edit_mode only if editor exists
* fixes #11723 - foreman_url usable from default PXE template
2015-09-14 Shlomi Zadok <[email protected]>
* fixes #11130 - Use self.table_name instead of deprecated set_table_name
2015-09-14 Marek Hulan <[email protected]>
* Fixes #10805 - match vlans attached to bonds correctly
2015-09-12 Alves Lobo Michael <[email protected]>
* Fixes #3650, #11600 - Compute Resource availability_zones, flavors, security_groups API v2 endpoints
2015-09-11 Tom Caspy <[email protected]>
* fixes #11715 - base64 encoded passwords must not be reencoded
2015-09-11 Marek Hulan <[email protected]>
* Fixes #11704 - consider no reports as warning if reports are expected
2015-09-11 Stephen Benjamin <[email protected]>
* refs #11776 - do not set default taxonomy settings by default
2015-09-10 Walden Raines <[email protected]>
* Fixes #11688: default text editor to ruby.
2015-09-10 Tom Caspy <[email protected]>
* fixes #11610 - removing a bunch of N+1 queries from the migration
2015-09-10 Dominic Cleal <[email protected]>
* fixes #11473 - remove re-init of domain select2 on env selection
* fixes #8521 - fix classes accessors, copy overrides on host clone
2015-09-09 Tom Caspy <[email protected]>
* fixes #10589 - removing N+1 queries from after_save callbacks when changing hostgroup
2015-09-09 Daniel Lobato <[email protected]>
* Fixes #10106 - Make tests run in parallel
2015-09-09 Dominic Cleal <[email protected]>
* refs #11738 - fix incorrect capitalisation and host group wording
2015-09-09 Brad Buckingham <[email protected]>
* fixes #11738 - add missing punctuation to provisioning template view
2015-09-08 Shimon Shtein <[email protected]>
* Fixes #11727 - Added proper human readable description to User#mail_enabled field
2015-09-08 Dominic Cleal <[email protected]>
* refs #11719 - change pg/sqlite3 deps to match ActiveRecord
* fixes #11341 - update fog to 1.34.0
* fixes #11719 - mysql2 dep must match ActiveRecord's runtime dep
2015-09-08 Daniel Lobato <[email protected]>
* Fixes #11621 - n+1 query on User Groups index
2015-09-08 Tom Caspy <[email protected]>
* fixes #9108 - parent parameters are now overrideable
2015-09-07 Tom Caspy <[email protected]>
* fixes #11415 - using the correct method for classification caster
* fixes #3145 - host with a lot of parameters quicker
2015-09-07 Ondrej Prazak <[email protected]>
* Fixes #11683 - Fixed Hostgroup#new parameters spinner when Lifecycle selected
* Fixes #11693 - removed 'destroy' for smart class parameter from API controllers
2015-09-07 Marek Hulan <[email protected]>
* Fixes #11707 - skip irrelevant states in host overview
2015-09-07 Shimon Shtein <[email protected]>
* Fixes #11665 - Removed to_s function from OpenStruct instance
2015-09-07 Ori Rabin <[email protected]>
* Fixes #11663 - Empty lookup value not validated when use_puppet_default is checked
2015-09-04 Marek Hulan <[email protected]>
* Fixes #11696 - remove unused code
* Fixes #10782 - global host status
* Fixes #11263 - set newly seeded partition tables default
2015-09-04 Pavel Moravec <[email protected]>
* Fixes #11677 - foreman-debug: netstat to print all connections
2015-09-04 Daniel Lobato <[email protected]>
* Fixes #11407 - Uppercase logins from LDAP break external user group sync
2015-09-04 Ondrej Prazak <[email protected]>
* Fixes #11426 - remove puppet class paremeters no longer possible during edit in UI
2015-09-04 Stephen Benjamin <[email protected]>
* fixes #9654 - mark seeded org/loc as default
2015-09-04 Walden Raines <[email protected]>
* Fixes #11625: refactor the ace editor to make it reusable.
2015-09-03 Daniel Lobato <[email protected]>
* Fixes #11428 - External user groups refresh shouldn't be case sensitive
2015-09-03 Ivan Nečas <[email protected]>
* Fixes #11673 - accept integer value when setting the integer via API
2015-09-03 Ondrej Prazak <[email protected]>
* Fixes #1477 - Hostgroup no longer looses puppet classes when environment changed during hostgroup editing
2015-09-03 Tomer Brisker <[email protected]>
* Fixes #11650 - show global parameter value inherited from parent taxonomy
2015-09-03 Michael Moll <[email protected]>
* refs #11449 - move therubyracer to its own bundler group
2015-09-03 Brad Buckingham <[email protected]>
* fixes #11649 - taxonomies api - add description to base.json.rabl
2015-09-03 Ori Rabin <[email protected]>
* fixes #10832 - separating lookup keys into puppet and variable
2015-09-02 Tomer Brisker <[email protected]>
* Fixes #11466, #11462 - Improve layout of textareas
2015-09-02 Daniel Lobato <[email protected]>
* Refs #3809 - Enable Rails delegate cop
* Refs #3809 - Stabby lambda syntax for oneliners
2015-09-02 Julien Pivotto <[email protected]>
* Fixes #11630 - Enable management of nics in compute profiles without libvirt network
2015-09-01 Tom Caspy <[email protected]>
* fixes #11570 - returning 'dependent destroy' to lookup values
2015-09-01 Daniel Lobato <[email protected]>
* Fixes #11579 - Reports show/destroy restricted by host authorization (CVE-2015-5233)
2015-09-01 Stephen Benjamin <[email protected]>
* fixes #11619 - only check template changes when persisted
2015-08-31 Marek Hulan <[email protected]>
* Fixes #11031 - ignore identifiers of interfaces being destroyed
2015-08-31 Lukas Zapletal <[email protected]>
* Fixes #11284 - clear cache during websocket setting migration
2015-08-31 Ondrej Prazak <[email protected]>
* Fixes #11427 - puppetclass edit text under optional input validator is now alert-info
* Fixes #11467 - Textareas in form may be resized only vertically
2015-08-31 Shimon Shtein <[email protected]>
* Fixes #11596 - Changed the javascript to put the error near te ip field, not inside it.
2015-08-31 Tomer Brisker <[email protected]>
* Fixes #11388 - Popovers display with correct size and dismiss on next click
2015-08-28 amirfefer <[email protected]>
* Fixes #10408 - adding checkbox in hosts-index page for keeping selected hosts
* Fixes #11461 - Remove 'global scope' column in host/hostgroup parameters form
2015-08-28 Ondrej Prazak <[email protected]>
* Fixes #11437 - do not modify frozen arrays in select_f helper
2015-08-28 Ori Rabin <[email protected]>
* Fixes #10731 - Allow matches to merge with default values
2015-08-28 Tomer Brisker <[email protected]>
* Fixes #9453 - improve tooltips on puppetclass selection forms
2015-08-27 Lukas Zapletal <[email protected]>
* Fixes #11560 - foreman-debug counts denials correctly
2015-08-27 amirfefer <[email protected]>
* Fixes #11581 - Headlines extracted in the selected hosts modal
2015-08-27 Tom Caspy <[email protected]>
* fixes #11571 - resetting column information in migration
2015-08-26 Amir Feferkuchen <[email protected]>
* Fixes #11006, #11004 - Facts % is now in the center of the graph
2015-08-26 Tom Caspy <[email protected]>
* fixes #11425 - adding lookup_value_matcher to host and hostgroup to make db schema more logical
* fixes #9058 - interfaces should not be affected when changing loc/org
2015-08-26 Ivan Nečas <[email protected]>
* Fixes #9704,#9705 - ability to customize vmware VM on image-based provisioning
2015-08-25 alongoldboim <[email protected]>
* Fixes #11451 - Changed bookmark name to be unique per controller.
2015-08-25 Tom Caspy <[email protected]>
* fixes #10130 - availability zones should be available in open stack
2015-08-24 imriz <[email protected]>
* Fixes #11282 - Search on numeric facts is broken if using "~"
2015-08-24 Tomer Brisker <[email protected]>
* Fixes #11450 - Improve hidden parameter handling
* Fixes #11413 - disable SQL logging by default
2015-08-24 Daniel Lobato <[email protected]>
* Fixes #11379 - Audit search for hostgroup/OS title
2015-08-24 Eric D. Helms <[email protected]>
* Fixes #11303: Allow scoped search by name for permissions.
2015-08-20 amirfefer <[email protected]>
* Fixes #11174 - Don't show password placeholder when empty
2015-08-19 Julien Pivotto <[email protected]>
* fixes #11385 - Enable management of nics in compute profiles without libvirt network
2015-08-19 Shlomi Zadok <[email protected]>
* fixes #11374 - re-initialize select2 on smart vars
2015-08-19 Dominic Cleal <[email protected]>
* fixes #11170 - pass quoted args through foreman-rake
2015-08-19 Tomer Brisker <[email protected]>
* Fixes #11432 - Allow copying from ACE editor
2015-08-19 Avi Tal <[email protected]>
* fixes #11220 - column ambiguity for non-admin host creation
2015-08-19 Tom Caspy <[email protected]>
* fixes #10232 - moving validations and casting out of lookup key and value
2015-08-18 slivik <[email protected]>
* fixes #11274 - Unable to get resourcePoo
2015-08-18 Dominic Cleal <[email protected]>
* fixes #10997 - update fog to 1.33.0
2015-08-17 amirfefer <[email protected]>
* Fixes #11371,#4410 - puppet parameters truncated and tooltip added
2015-08-17 Shlomi Zadok <[email protected]>
* fixes #11240 - Add api docs to hostgroup params
2015-08-17 alongoldboim <[email protected]>
* Fixes #11372 - Formalize assets names.
2015-08-17 Tomer Brisker <[email protected]>
* Fixes #11376 - show location tab in organization editor
2015-08-14 Justin Sherrill <[email protected]>
* Fixes #11339 - ensure unique parameters before adding uniq index
2015-08-13 Marek Hulan <[email protected]>
* Fixes #11187 - explicitly pass resource_type and permission to check
2015-08-13 Shimon Shtein <[email protected]>
* Fixes #11255 - Fixed inheritance checks for explicit input on host clone
2015-08-13 Tom Caspy <[email protected]>
* fixes #1881 - adding auto refresh button to dashboard
2015-08-13 Ori Rabin <[email protected]>
* Fixes #4419 - rearranging smart class parameters edit form
2015-08-11 Phirince Philip <[email protected]>
* fixes #11312 - Allow plugins to update the Rabl view_paths
2015-08-11 Tomas Strachota <[email protected]>
* Fixes #10248 - cloning volume information for virtual machines
2015-08-10 Tomer Brisker <[email protected]>
* Fixes #7840 - Show correct values for smart variables on host edit page
2015-08-07 Dominic Cleal <[email protected]>
* refs #11216 - remove update-rails from locale update steps
2015-08-06 lawre <[email protected]>
* fixes #11250 - Remove uniqueness check from subnet network addresses
2015-08-06 Shlomi Zadok <[email protected]>
* fixes #11172 - disable select2 with css class (and enable elsewhere)
* fixes #11171 - compute profiles nics & volumes select2 are initiated separately
2015-08-05 Marek Hulan <[email protected]>
* Fixes #11283 - check for operatingsystem_ids before using it
* Fixes #1453 - add use_image and jumpstart helpers to Host jail
2015-08-03 Ondrej Prazak <[email protected]>
* Fixes #4468 - Dropdown shows '1' when all reports within last 24 hours
2015-08-03 Martin Bačovský <[email protected]>
* Fixes #11219 - rename config_template attributes in os_default_templates
2015-07-31 Marek Hulan <[email protected]>
* Fixes #11258 - validation handles blank provider
2015-07-31 Stephen Benjamin <[email protected]>
* fixes #7275 - remove welcome page and replace with docs button
2015-07-31 Ondrej Prazak <[email protected]>
* Fixes #7167 - names of settings marked for translation
2015-07-31 Ori Rabin <[email protected]>
* Fixes #10558 - adds migration to remove and prevent duplicate tokens
2015-07-29 Lukas Zapletal <[email protected]>
* Fixes #11230 - foreman-debug calls 'plugin:list' now
2015-07-29 Tomer Brisker <[email protected]>
* Fixes #11231 - Correctly stubbify global parameters
* Fixes #11216 - use rails-i18n gem for translating rails strings
* Fixes #10133 - Prevent deadlocks when fixing counter_cache
2015-07-29 Shimon Shtein <[email protected]>
* Fixes #9591 - Added support for "inherit" state.
2015-07-29 Ondrej Prazak <[email protected]>
* Fixes #10826 - Adds unique constraint to the title in operatingsystem table
2015-07-29 alongoldboim <[email protected]>
* Fixes #11013 - Added common table css classes to the tables
2015-07-28 Shlomi Zadok <[email protected]>
* fixes #11122 - initialize ENCRYPTION_PREFIX only once
* fixes #11175 - [API] Add taxonomies to ptables, display ptables in taxonomies
2015-07-28 Lukas Zapletal <[email protected]>
* Fixes #11206 - plugin API now expose default role permissions
2015-07-27 Marek Hulan <[email protected]>
* Fixes #11062 - do not process data when FormData is used
2015-07-24 Daniel Lobato <[email protected]>
* Refs #3809 - Enable cop Style/MultilineTernaryOperator
* Refs #3809 - Enable cop Style/IfUnlessModifier
* Refs #3809 - Enable cop Style/AlignArray
2015-07-24 Ivan Nečas <[email protected]>
* Fixes #10850 - handled errors when missing template when rendering widget
2015-07-24 imriz <[email protected]>
* Fixes #11150 - Allow searching of facts as types other than string
2015-07-22 alongoldboim <[email protected]>
* Fixes #11168 - Provisioning templates form is showing corrrect tabs
* Fixes #11009 - include instruction using foreman-debug into 500 error page
2015-07-22 Pavel Moravec <[email protected]>
* fixes #11149 - foreman-debug to collect two httpd katello.conf files
2015-07-22 Daniel Lobato <[email protected]>
* Fixes #10929 - Add removed widgets to dashboard
2015-07-22 Shimon Shtein <[email protected]>
* Fixes #4830 - Added a new template to show when no trend data is collected.
2015-07-21 Dominic Cleal <[email protected]>
* refs #10550 - extract settings API error string
2015-07-20 Ondrej Prazak <[email protected]>
* Fixes #10550 - Settings API will not update when value parameter is missing
* Fixes #6854 - Api status allowed for all users
2015-07-20 alongoldboim <[email protected]>
* Fixes #11011 - notifications are removed when window is changed
* Fixes #11010 - removed type and association tabs, placed those options in the template tab
2015-07-20 Tom Caspy <[email protected]>
* fixes #5897 - when user doesn't have an email, email isn't required
2015-07-20 Daniel Lobato <[email protected]>
* Fixes #11089 - Adapt tests to Rails 4
2015-07-17 Dominic Cleal <[email protected]>
* fixes #11120 - migrate websockets setting when readonly in settings.yaml
2015-07-16 Marek Hulan <[email protected]>
* Fixes #11035 - template preview feature
2015-07-16 Timo Goebel <[email protected]>
* fixes #5630 - fixes VMWare clone from template fails if VMWare is in foreign language
2015-07-16 Shlomi Zadok <[email protected]>
* fixes #10985 - Set css class for width of filter select on Puppet CA index
2015-07-16 Dominic Cleal <[email protected]>
* fixes #11121 - initialise websockets_encrypt after dependencies
2015-07-15 Tom Caspy <[email protected]>
* fixes #11095 - lookup keys do not get saved to db on setter invokation
2015-07-15 Dominic Cleal <[email protected]>
* fixes #10994 - remove new_* data from compute profile attributes
2015-07-14 alongoldboim <[email protected]>
* Fixes #11014 - increased space for subnet domain assocation(up to 70 chars).
* Fixes #9293 - Organization/location menu closes correctly
2015-07-14 Tomas Strachota <[email protected]>
* Fixes #11111 - action dropdowns pulled right
2015-07-14 Ori Rabin <[email protected]>
* Fixes #10915 - Deleting a host removes all host specific overrides
2015-07-14 Shimon Shtein <[email protected]>
* Fixes #8343 - Consolidated code paths, and removed unnecessary DB calls for parent object
2015-07-14 Lukas Zapletal <[email protected]>
* Fixes #9603 - fixed websockets_* set of settings
2015-07-14 Daniel Lobato <[email protected]>
* Fixes #11023 - Pass identity_endpoint to Openstack Fog 1.32.0
* Fixes #11078 - Substitute find_all_by by where to comply with Rails 4
2015-07-13 alongoldboim <[email protected]>
* Fixes #10356 - changed the POST/PUT RABL template to be the same as the GET template
2015-07-09 Dominic Cleal <[email protected]>
* fixes #11048 - add script to sync unattended templates from community-templates
2015-07-09 Eric D. Helms <[email protected]>
* Fixes #11056: Configure base SETTINGS for test environment.
2015-07-09 Shimon Shtein <[email protected]>
* Fixes #10438 - Removed trends:clean task, as it is no longer needed
2015-07-09 Ondrej Prazak <[email protected]>
* Fixes #3971 - warning shown when PXE template is edited and has hosts in build mode
2015-07-08 Ori Rabin <[email protected]>
* Fixes #11012 - Making Puppet menu cosistent
2015-07-08 Martin Bačovský <[email protected]>
* Fixes #11033 - adding missing params to auth_source ldap API docs
2015-07-08 Eric D. Helms <[email protected]>
* Fixes #11025: Allow skip test runner to run through Jenkins test task.
2015-07-06 Dominic Cleal <[email protected]>
* fixes #11024 - update smart proxy realm docs link
* fixes #11018 - correct syntax error in version number
2015-07-06 Daniel Lobato <[email protected]>
* Fixes #10867 - OpenStack boot_from_volume is true only when checked
* Refs #3809 - Style/blocks cop enabled
2015-07-05 Dominic Cleal <[email protected]>
* fixes #10216 - sort report log messages in natural order
2015-07-03 Dominic Cleal <[email protected]>
* fixes #10470 - update fog to 1.32.0
2015-07-02 Eric D. Helms <[email protected]>
* Fixes #10803: Return nil if no resource_type when creating a filter.
2015-07-02 Shlomi Zadok <[email protected]>
* fixes #10964 - [js] search env_id by name attribute
* fixes #10965 - remove select css classes from days_filter
2015-07-02 Daniel Lobato <[email protected]>
* Fixes #10928 - Default dashboard widgets for new users
2015-07-02 Tomas Strachota <[email protected]>
* Fixes #10976 - Suggest new ip button does not work
2015-07-02 alongoldboim <[email protected]>
* Fixes #10635 - Formalize deprecation warning
2015-07-01 Martin Bačovský <[email protected]>
* Fixes #10963 - partition table can't access os ids
2015-07-01 Shlomi Zadok <[email protected]>
* fixes #10965 - change days_filter sentence
2015-07-01 Lukas Zapletal <[email protected]>
* Fixes #10785 - force encoding for encrypted fields
2015-07-01 Eric D. Helms <[email protected]>
* Fixes #10802: Fix error that appears in migrations related to users.
2015-07-01 Stephen Benjamin <[email protected]>
* fixes #10959 - gravatar should be opt-in not opt-out
2015-06-30 Shlomi Zadok <[email protected]>
* fixes #10868 - use classify for a Symbol instead of humanize
* fixes #10952 - remove empty test files
2015-06-29 alongoldboim <[email protected]>
* Fixes #10729 - clear notifications on login
2015-06-29 Pavel Moravec <[email protected]>
* Fixes #10945 - foreman-debug to collect foreman http request log
2015-06-29 Shlomi Zadok <[email protected]>
* fixes #10933 - in api/v1 templates should be name as config_templates
* fixes #10876 - Search for compute / arch /os by name and not by id
2015-06-29 Marek Hulan <[email protected]>
* Fixes #10607 - match bonds based on identifier only
* Fixes #10888 - skip attached_to updates if identifier was blank
2015-06-26 Dominic Cleal <[email protected]>
* Bump version to 1.10-develop
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
2015-06-26 Martin Bačovský <[email protected]>
* Fixes #10917 - Update API docs for template combinations
2015-06-26 Marek Hulan <[email protected]>
* Fixes #10740 - ignore auditing of all models in migrations
2015-06-26 untsakas <[email protected]>
* Fixes #10683 - Permission to view individual compute resource VMs is incorrect
2015-06-25 Shlomi Zadok <[email protected]>
* fixes #10910 - initiate select2 separately on interfaces selects
2015-06-25 Martin Bačovský <[email protected]>
* Fixes #10916 - convert config_template_ids in operatingsystems
2015-06-25 Dominic Cleal <[email protected]>
* refs #10072 - derestrict fog-libvirt per semver
2015-06-25 Marek Hulan <[email protected]>
* Fixes #10911 - reinitialize select2 on templated forms
2015-06-25 Lukas Zapletal <[email protected]>
* Fixes #10879 - reported_at column is NOT NULL
2015-06-25 Daniel Lobato <[email protected]>
* Fixes #7574 - Rails 4 :data attributes substitute deprecated HTML options
* Fixes #10909 - Clear value on select2 dropdown
* Fixes #10090 - Minimised dashboard widget names are translated
2015-06-24 David O'Brien <[email protected]>
* Fixes #10921 - Rephrase foreman-rake manpage
2015-06-24 Marek Hulan <[email protected]>
* Fixes #10899 - removes deprecated smart proxies scopes code
2015-06-24 Shimon Shtein <[email protected]>
* Fixes #10727 - Added validation to require BMC Smart proxy in order to add BMC nic
2015-06-24 alongoldboim <[email protected]>
* Fixes #10633 - Associate architechture to OS during fact import
2015-06-23 Marek Hulan <[email protected]>
* Fixes #10849 - remove hidden template fields on submit
2015-06-23 Dominic Cleal <[email protected]>
* refs #10701 - fix spelling mistakes
2015-06-22 Fernando Carolo <[email protected]>
* Fixes #10526 - Support for Cisco POAP
2015-06-22 Martin Bačovský <[email protected]>
* Fixes #10853 - add config_template_ids back to organization
2015-06-19 Walter Huf <[email protected]>
* Refs #10720 - Use API v2 response for vm_compute_attributes
2015-06-19 Dmitri Dolguikh <[email protected]>
* Fixes #10072: Support for user-data during image-based provisioning with libvirt (used for creating of Atomic libvirt VM)
2015-06-19 Lukas Zapletal <[email protected]>
* Fixes #10887 - Removed debug statement from clear_cache
2015-06-18 Shlomi Zadok <[email protected]>
* fixes #10641 - Introduce select2.js for searching in select lists and apply to CR select
2015-06-18 Lukas Zapletal <[email protected]>
* Fixes #10701 - foreman-debug config file support
2015-06-18 Ohad Levy <[email protected]>
* fixes #10861 - Remove unused columns from the hosts table
2015-06-18 Martin Bačovský <[email protected]>
* Fixes #10854 - config_templates missing from show in taxonomies and os
2015-06-17 Lukas Zapletal <[email protected]>
* Fixes #10780 - factory girl examples for provisioning
2015-06-17 Daniel Lobato <[email protected]>
* Fixes #9793 - API v2 fact_values index works for non-admins
2015-06-16 Shlomi Zadok <[email protected]>
* fixes #10829 - non-admin user cannot update admin password
2015-06-16 Daniel Lobato <[email protected]>
* Fixes #10409 - Rails 4 compatible changes with Rails 3
* Fixes #4551 - GCE provisioning support
2015-06-16 Marek Hulan <[email protected]>
* Fixes #10817 - Initialize all autocomplete fields that needs it
2015-06-16 Lukas Zapletal <[email protected]>
* Fixes #10815 - introduced FOREMAN_APIPIE_LANGS env variable
2015-06-16 Shimon Shtein <[email protected]>
* Fixes #10738 - Added javascript to focus on alert in puppetclasses tab
2015-06-15 Dominic Cleal <[email protected]>
* fixes #10787 - load fog extensions based on available CRs
* refs #10703 - use N_() for exception messages
2015-06-12 Marek Hulan <[email protected]>
* Fixes #10793 - rename old class name in taxonomy ignore_types
2015-06-12 Lukas Zapletal <[email protected]>
* Fixes #10703 - websockify is now randomly selected
2015-06-11 Tomer Brisker <[email protected]>
* Fixes #10656 - Prevent audits on counter cache update
2015-06-11 Dominic Cleal <[email protected]>
* fixes #10627 - apply host taxonomy scope to facts/report joins
2015-06-10 Tomas Strachota <[email protected]>
* Fixes #6976 - Build default PXE menu should be POST request
2015-06-10 Marek Hulan <[email protected]>
* Fixes #10736 - Add permission specific logger
2015-06-09 Ivan Nečas <[email protected]>
* Fixes #10713 - improved backtrace logging
2015-06-09 Marek Hulan <[email protected]>
* Fixes #7096 - Adds STI to templates
2015-06-08 Walter Huf <[email protected]>
* fixes #10720 - Adds API to get host vm attributes
2015-06-08 Marek Hulan <[email protected]>
* Fixes #10260 - allow NIC management in attended mode and for unmanage hosts
* Fixes #10642 - save the interface regardless of validation errors
2015-06-08 Tomas Strachota <[email protected]>
* Fixes #10715 - api build_pxe_default returns non-JSON message
2015-06-08 Justin Sherrill <[email protected]>
* fixes #9301 - make puppet environment optional for hosts
2015-06-05 Dominic Cleal <[email protected]>
* fixes #10711 - move LDAP logging to a separate logger
2015-06-05 Stephen Benjamin <[email protected]>
* fixes #10695 - don't seed initial taxonomies if there are any already
2015-06-04 Marek Hulan <[email protected]>
* Fixes #10566 - allow identifier modifications that do not change interface type
2015-06-04 Lukas Zapletal <[email protected]>
* Fixes #10699 - foreman debug options -au are exclusive
2015-06-04 Tomer Brisker <[email protected]>
* Fixes #3856 - Make parameter value fields expandable
2015-06-04 Ori Rabin <[email protected]>
* Fixes #9187 - Overrideable empty class parameters don't validate default value
2015-06-04 Eric D. Helms <[email protected]>
* Fixes #10487: Add custom logging support
2015-06-03 Dmitry Kireev <[email protected]>
* Fixes #9299 - Windows installation media works without bcd patching
2015-06-03 Marek Hulan <[email protected]>
* Fixes #3711 - usergroup name can't be null
* Fixes #10684 - re-adding missing code
2015-06-02 Dominic Cleal <[email protected]>
* fixes #10646 - disable NIC subnet taxonomy checks when feature's disabled
* fixes #6332 - skip taxonomy queries when features are disabled
* fixes #10397 - parse Windows Local_Area_Connection interface name
* fixes #10613 - restore VMware SCSI controller field
2015-06-02 Marek Hulan <[email protected]>
* Fixes #10664 - map only physical interfaces in compute orchestration
2015-06-02 Tom Caspy <[email protected]>
* fixes #10660 - taxonomies are able to have the same name for different classes
2015-06-01 Aaron Stone <[email protected]>
* Refs #6518 - Use #find instead of #select #first to choose a BMC proxy for the subnet
2015-06-01 Shlomi Zadok <[email protected]>
* fixes #9031 - Add routes to view template_combinations per hostgroup / environment
2015-05-28 Tomer Brisker <[email protected]>
* Fixes #10638 - decouple full screen button from template editor
2015-05-28 Francois Herbert <[email protected]>
* fixes #10151 - Unable to get resourcePool
2015-05-27 alongoldboim <[email protected]>
* fixes #9632 - updated compute resource names to follow brand names
2015-05-27 Tomer Brisker <[email protected]>
* Fixes #10584 - Replace sort.uniq with uniq.sort
2015-05-22 Walden Raines <[email protected]>
* Fixes #10542: correct path for auto complete search on filters page.
2015-05-22 Adam Price <[email protected]>
* fixes #10284 - improves foreman-debug usage for consumption from other tools
2015-05-22 Jan Pazdziora <[email protected]>
* fixes #10586 - make the 401 status comparison actually match.
2015-05-22 Stephen Benjamin <[email protected]>
* fixes #1510 - notification when host finishes building
2015-05-22 Ori Rabin <[email protected]>
* Fixes #9424 - orchestration progress no longer triggers twice
2015-05-22 Tomer Brisker <[email protected]>
* Fixes #10583 - perform uniq in database instead of in memory when possible
2015-05-22 Tom Caspy <[email protected]>
* fixes #8597 - escape slashes for ptable URL parameters
2015-05-21 Daniel Lobato <[email protected]>
* Fixes #10568 - Show release field when OS family is CoreOS
* Fixes #10513 - Substitute reports:summarize docs for reports:daily
2015-05-21 Dominic Cleal <[email protected]>
* fixes #9873 - generate unique alert mails for each user group member
2015-05-21 Tomer Brisker <[email protected]>
* Fixes #7337 - Only list authorized items on multiple select
2015-05-20 Tomer Brisker <[email protected]>
* Fixes #7533 - auto resize pie chart labels to prevent overflow
* Fixes #10288 - prevent audits on update of puppetclass total hosts counter
2015-05-20 Shimon Shtein <[email protected]>
* Fixes #9594 - adds admin field to the hostgroup rabl
2015-05-19 Ori Rabin <[email protected]>
* Fixes #10535 - building a token instead of creating it until host is saved
2015-05-19 Shimon Shtein <[email protected]>
* Fixes #10439 - add tests for trends:reduce task to deal with additions
2015-05-19 Walden Raines <[email protected]>
* Fixes #10402: add to_bool function for converting to boolean.
2015-05-19 Tom Caspy <[email protected]>
* fixes #10528 - lookup value should allow false and 0 values
2015-05-19 Dominic Cleal <[email protected]>
* fixes #10482 - get external user group members only once during refresh
2015-05-18 Tomer Brisker <[email protected]>
* Fixes #10355 - Prevent turbolinks loading puppetclass import
2015-05-18 Shlomi Zadok <[email protected]>
* fixes #1213 - Get email reports of audit changes
2015-05-18 Dominic Cleal <[email protected]>
* fixes #10509 - add toggle for LDAP usergroup updating
* fixes #10493 - disable usergroup sync on login when $login is used
* fixes #10510 - move secure flag to existing session configuration
2015-05-18 John McCabe <[email protected]>
* fixes #10518 - Broken quickstart section URL
2015-05-14 Dominic Cleal <[email protected]>
* fixes #10507 - wait for completion of update env request
* fixes #4769 - fix deprecation warning while syncing LDAP attrs
* fixes #10336 - move rbvmomi CR loading before our CR loading
2015-05-14 Eric-Olivier Lamey <[email protected]>
* Fixes #9170 - wrong nic order in libvirt domain
2015-05-14 Marek Hulan <[email protected]>
* Fixes #10442 - dry up host managed logic
2015-05-14 Ori Rabin <[email protected]>
* Fixes #9634 - creating a host with an interface and without os returns a validation message
2015-05-14 Shlomi Zadok <[email protected]>
* Fixes #9613 - foreman_url can't be blank
2015-05-14 Joseph Magen <[email protected]>
* fixes #10492 - permission name should be unique and not scoped by resource_type
2015-05-13 Dominic Cleal <[email protected]>
* fixes #10406 - add LDAP instrumentation and extra logging
2015-05-13 Marek Hulan <[email protected]>
* Fixes #10379 - disables cloning if unattended mode is disabled
* Fixes #10212 - validate DNS name uniqueness of interfaces
2015-05-13 Tomas Strachota <[email protected]>
* Fixes #9966 - More debug messages for matching nics from fog
2015-05-13 Jon McKenzie <[email protected]>
* Fixes #5568 - Improves performance of trends:clean rake task
2015-05-12 Shlomi Zadok <[email protected]>
* Fixes #9194 - displays full fact value
* fixes #10471 - use Rails' force_ssl
* fixes #10275 - Add secure cookie when in ssl (CVE-2015-3155)
2015-05-12 Tomer Brisker <[email protected]>
* Fixes #7532 - prevent wrapping of host parameter table headers in ja_jp
2015-05-11 Shimon Shtein <[email protected]>
* Fixes #8525 - Rename "Mail" to "Email" in user preferences
2015-05-11 Dominic Cleal <[email protected]>
* fixes #10403 - resync names of unmanaged hosts to their primary NIC
* fixes #10261 - update fog to 1.30.0
* fixes #10298 - handle destroyed but present interfaces
2015-05-11 Ondrej Prazak <[email protected]>
* Fixes #10307 - editing host with 'unattended: false' no longer results in error
2015-05-11 Ohad Levy <[email protected]>
* fixes #10437 - remove incorrect/duplicate hash statements
2015-05-11 Stephen Benjamin <[email protected]>
* fixes #10441 - sort time and count-based columns in descending order
2015-05-09 Ori Rabin <[email protected]>
* Fixes #8333 - correct matcher values with multi-key matchers
2015-05-09 Dominic Cleal <[email protected]>
* fixes #8502 - update scoped_search to 3.x
2015-05-08 Marek Hulan <[email protected]>
* Fixes #10412 - display interface tooltip after type change
2015-05-07 Daniel Lobato <[email protected]>
* Refs #10337 - Update Host searches to use outofsync_interval
* Refs #3809 - Remove nested ternary and nil checking
2015-05-06 Marek Hulan <[email protected]>
* Fixes #7458 - allow searching hosts by their ip and mac addresses
2015-05-06 Daniel Lobato <[email protected]>
* Fixes #10382 - Allow lowercase IPMI provider
* Fixes #10263 - Encrypt LDAP password in db
2015-05-06 Tomer Brisker <[email protected]>
* Fixes #7454 - extract period for l10n on taxonomy help pages.
2015-05-06 Ondrej Prazak <[email protected]>
* Fixes #9879 - improve wording of host delete dialog
* Fixes #5649 - unattended_url validation fix
2015-05-06 Craig Parker <[email protected]>
* Fixes #10337 - Added setting out of sync duration
2015-05-05 Dominic Cleal <[email protected]>