forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
8781 lines (6412 loc) · 355 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-06-26 Dominic Cleal <[email protected]>
* 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]>
* fixes #10343 - only log cache deletion failures when saving settings
2015-05-05 Tomer Brisker <[email protected]>
* Fixes #7515 - Prevent label line breaks in add bookmark modal
2015-05-05 karmab <[email protected]>
* Fixes #10305 - complete handling for cloudinit-like in vsphere feature
2015-05-05 Shlomi Zadok <[email protected]>
* fixes #10030 - use override method to display templates in folders
2015-05-05 Daniel Lobato <[email protected]>
* Fixes #10230 - Host clone uses create_hosts permission
2015-05-05 Ondrej Prazak <[email protected]>
* Fixes #8566 - reorganized settings categories
2015-05-04 Shlomi Zadok <[email protected]>
* fixes #9812 - Adds validation on override value, ensure match returns error if blank
2015-05-01 Ondrej Prazak <[email protected]>
* Fixes #10194 - help text for token_duration setting
* Fixes #10228 - adding index to source_id in logs table
2015-05-01 Marek Hulan <[email protected]>
* Fixes #9506 - Add granular permissions to config groups
* Fixes #9687 - respect custom controller permissions
2015-05-01 Avi Tal <[email protected]>
* fixes #10342 - adding :host_parameters_attributes to except list in template_used()
2015-05-01 Daniel Lobato <[email protected]>
* Fixes #9674 - Handle ProxyAPI exceptions on PuppetCA controller
2015-04-30 Stephen Benjamin <[email protected]>
* fixes #10287 - provide helper methods for proxy features
2015-04-29 Dmitri Dolguikh <[email protected]>
* Fixes #10289: default root password hash is SHA256 now
2015-04-29 Tomer Brisker <[email protected]>
* Fixes #7335 - Refactor taxonomy form, display "select all" checkbox only if permitted
2015-04-28 Shlomi Zadok <[email protected]>
* fixes #7743 - ensure name is unique in scope of major and minor
2015-04-28 Dominic Cleal <[email protected]>
* refs #5554 - revert string change, save unnecessary retranslation
* fixes #8817 - look up reports with all joins from host scoped_search
2015-04-28 Tom Caspy <[email protected]>
* fixes #9240 - in case of hash with indifferent access, serialize as hash
2015-04-28 Ori Rabin <[email protected]>
* Fixes #5554 - fixed hostgroup and fqdn validations in multiple matchers
2015-04-28 Daniel Lobato <[email protected]>
* Refs #3809 - Remove semicolon cop
2015-04-28 Stephen Benjamin <[email protected]>
* fixes #9773 - correctly render template URL
2015-04-28 Ohad Levy <[email protected]>
* fixes #10269 - host template preview now opens in a new tab
2015-04-27 Francois Herbert <[email protected]>
* Fixes #10186 - find host NICs on vsphere using Network Distributed PortGroup
2015-04-24 Dominic Cleal <[email protected]>
* refs #10168 - fix test that created a duplicate primary interface
* fixes #9982 - update fog to 1.29.0
* fixes #10168 - delegate fqdn/shortname to primary interface
2015-04-24 Tomer Brisker <[email protected]>
* Fixes #9454 - Add axis labels and reposition legend in charts
2015-04-24 Ori Rabin <[email protected]>
* Fixes #8861 - Lengthy organization or location names showed in tooltip
2015-04-24 Daniel Lobato <[email protected]>
* Fixes #10111 - Use a dummy primary interface for unmanaged hosts
2015-04-22 Daniel Lobato <[email protected]>
* fixes #10234 - Fix NIC taxonomies validation tests
2015-04-22 Shimon Shtein <[email protected]>
* Fixes #9391 - Added validation code to NIC, so it validates that host's location/org is compatible with the one set on NIC's subnet
2015-04-22 Dominic Cleal <[email protected]>
* fixes #10158 - use full column name to avoid ambiguity on Rails 3.2.8
2015-04-21 Shlomi Zadok <[email protected]>
* fixes #9998 - Add styling to error reporting
2015-04-20 Michael Moll <[email protected]>
* Fixes #10153 - pull in host_edit_interfaces.js also in hostgroups
2015-04-20 Tomer Brisker <[email protected]>
* Refs #8106 - Add helper for add to dashboard button
2015-04-20 Joseph Magen <[email protected]>
* fixes #10167 - change default API from v1 to v2
2015-04-17 Ori Rabin <[email protected]>
* Fixes #8217, #8214 - Rearranging override section in smart class parameter page and host page
2015-04-17 Dominic Cleal <[email protected]>
* fixes #10020 - add next-server/filename attrs to provision NIC DHCP record
2015-04-14 Michael Moll <[email protected]>
* Fixes #10124 - collect /var/log/syslog in foreman-debug
2015-04-13 Daniel Lobato <[email protected]>
* Fixes #10123 - Tests API v2 external user groups
2015-04-13 Shlomi Zadok <[email protected]>
* fixes #9617 - rescue from empty vmware clusters
2015-04-13 Chad Walstrom <[email protected]>
* Fixes #10093 - VMware#create_vm calls clone_vm
2015-04-13 Christine Fouant <[email protected]>
* fixes #9993 - Removes root password and partition table reqs unless build mode selected
2015-04-13 Marek Hulan <[email protected]>
* Fixes #9884 - refresh deleted external usergroups
* Fixes #9878 - refresh external usergroup on API manipulation
* Fixes #10025 - move generic taxonomies code to base class
2015-04-13 Francois Herbert <[email protected]>
* fixes #10087 - Pass nic_type to vm_clone
2015-04-10 Daniel Lobato <[email protected]>
* Fixes #10100 - License file is outdated
2015-04-10 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2015-04-09 Marek Hulan <[email protected]>
* Fixes #9947 - restrict user taxonomies if none is set
* Fixes #7615 - filter ignore current context
2015-04-09 Dominic Cleal <[email protected]>
* refs #4521 - extract string, fix capitalisation
2015-04-09 Tomer Brisker <[email protected]>
* Fixes #4787 - prevent unneeded AJAX requests on popover clicks
2015-04-09 Michael Moll <[email protected]>
* fixes #10099 - pin execjs gem for Ruby 1.9
2015-04-09 jslatten <[email protected]>
* refs #4521 - Openstack Compute Resource: Boot from Volume on new Host
2015-04-08 johscheuer <[email protected]>
* Fixes #9362 - Corrected CoreOS mediapath
2015-04-08 Ondrej Prazak <[email protected]>
* Fixes #9439 - 'white spaces' changed to 'spaces' in validation error message
2015-04-08 Tomer Brisker <[email protected]>
* Fixes #9969 - remove N+1 queries on host edit page
2015-04-07 Julien Pivotto <[email protected]>
* Fixes #8812 - Pass model type so search_for is called on Host
2015-04-07 Dominic Cleal <[email protected]>
* fixes #9973 - API doc keyword substitution with sprintf needs symbols
* fixes #5909 - return r/w resources from authorized scope
2015-04-07 Keenan Brock <[email protected]>
* Fixes #10002 - Add attribute ancestry to taxonomies API v2
2015-04-03 Marek Hulan <[email protected]>
* Fixes #9957 - rename and fix auth source tests
2015-04-02 Tomer Brisker <[email protected]>
* Fixes #8106 - Dashboard rewrite to allow better customization
* Fixes #8593 - remove N+1 queries on puppetclass index page
2015-04-02 Dominic Cleal <[email protected]>
* fixes #9778 - return r/w host when finding and associating to CRs
2015-04-02 Tomas Strachota <[email protected]>
* Fixes #9921 - specify requirements on apidoc params for NICs
2015-04-02 Marek Hulan <[email protected]>
* Fixes #9967 - make sure User.current is isolated
2015-04-01 Marek Hulan <[email protected]>
* Fixes #9926 - do not always set LDAP encryption method
2015-03-26 William Hefter <[email protected]>
* Fixes #8890 - Allow selection of plaintext "encryption" method for root password
2015-03-26 Marek Hulan <[email protected]>
* Fixes #9618 - make identifier uniq per host
2015-03-26 Lukas Zapletal <[email protected]>
* Fixes #8727 - DHCP validation does not fail on discovered leases
2015-03-25 Daniel Lobato <[email protected]>
* Fixes #9886 - Caps on password warning is not html safe
2015-03-25 Martin Bačovský <[email protected]>
* Fixes #7378 - fixed API lookup keys filters
2015-03-25 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2015-03-25 Tom Caspy <[email protected]>
* fixes #8516 - removing the require 'fog' from the project, requiring only what we use
* fixes #6568 - showing ovirt template version if applicable
2015-03-25 Shlomi Zadok <[email protected]>
* refs #9877 - s/variable/class parameter/ on param :override
2015-03-24 Marek Hulan <[email protected]>
* Fixes #9885 - pass verify_mode to net/ldap
* Fixes #9869 - propagate LDAP errors
2015-03-24 karmab <[email protected]>
* Fixes #8601 - Cloudinit userdata in VMware
2015-03-24 Tom Caspy <[email protected]>
* fixes #7407 - puppet class parameters should be cloned in #clone
2015-03-24 Shlomi Zadok <[email protected]>
* fixes #9877 - Add descriptions to smart_class_parameters in api/v2
2015-03-24 Tomas Strachota <[email protected]>
* Fixes #9836 - use provider type in host helpers
2015-03-24 Tomer Brisker <[email protected]>
* Fixes #9444 - prevent 404 error on current_parameters and domain_selected
2015-03-24 Dominic Cleal <[email protected]>
* fixes #9775 - always load Encryptable when key's missing, log runtime warning
2015-03-23 Shlomi Zadok <[email protected]>
* fixes #9823 - Add description to smart variables
* fixes #9469 - redirect to reports#index on destroy
2015-03-23 Daniel Lobato García <[email protected]>
* Add web IRC channel link to README
2015-03-22 Marek Hulan <[email protected]>
* Fixes #9434 - managed alias accepts only static boot mode subnet
* Fixes #8779 - add vlanid to subnet ENC
* Fixes #9842 - rename the register method which deprecates the old one
* Fixes #9787 - correctly typecast default values
2015-03-22 Stephen Benjamin <[email protected]>
* fixes #9795 - check if mail is enabled before sending a notification
2015-03-22 Tom McKay <[email protected]>
* fixes #9856 - include locations and organizations in user output
2015-03-22 Tomas Strachota <[email protected]>
* Fixes #9824 - missing compute resource assets
* Fixes #9827 - compute resource info in API doesn't send provider type
2015-03-19 Daniel Lobato <[email protected]>
* Fixes #9806 - Minor typo when building PXE default
* Fixes #9589 - Add documentation button to various models
* Fixes #6454 - Display error message when user_data is needed but not set
* Fixes #8898 - Caps lock warning in password fields
2015-03-19 Tom Caspy <[email protected]>
* fixes #4424 - overriden attributes get overridden in the UI
2015-03-15 Marek Hulan <[email protected]>
* Fixes #9631 - adds missing bond test
* Fixes #9673 - treat YAML and JSON lookup keys as strings
* Fixes #9693 - Clarify bond identifier BSD info
2015-03-15 Eric D. Helms <[email protected]>
* Fixes #9751: Correct examples for rake config usage.
2015-03-15 Tomas Strachota <[email protected]>
* Fixes #9723 - missing owner_type in host api docs
2015-03-12 Tomas Strachota <[email protected]>
* Fixes #9657 - merge NICs from compute profile in host create API
2015-03-11 Ori Rabin <[email protected]>
* Fixes #9606 - ANSI color codes should not be used in production log
2015-03-11 Shimon Shtein <[email protected]>
* Fixes #7505 - Changed the way trends are stored in the DB. Now they are stored as intervals
2015-03-10 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2015-03-10 Tomas Strachota <[email protected]>
* Fixes #9678 - Can't update admin flag for users via API
2015-03-09 Shlomi Zadok <[email protected]>
* fixes #8358 - validate domain on host update
2015-03-08 Marek Hulan <[email protected]>
* Fixes #9650 - use textarea for global parameters
2015-03-08 Baptiste AGASSE <[email protected]>
* Fixes #1536 - Foreman should check DHCP entries on build.
2015-03-05 Marek Hulan <[email protected]>
* Fixes #9435 - adds tooltip for interface identifier
2015-03-05 Tomas Strachota <[email protected]>
* Fixes #9480 - multiple NICs integration with compute profiles
2015-03-05 Daniel Lobato <[email protected]>
* Fixes #8316: Removing a host can create a huge transaction
2015-03-04 Marek Hulan <[email protected]>
* Fixes #9615 - Adds inheriting_mac method
2015-03-04 ripcurld00d <[email protected]>
* Fixes #2135 - During puppet class import, puppet class description box should close itself
2015-03-04 Tomer Brisker <[email protected]>
* Fixes #9593 - replace .all.map(&:<attr>) with .pluck(:attr)
2015-03-04 Joey D <[email protected]>
* fixes #8878 - ensure domain fact is downcased prior to import
2015-03-04 Tomas Strachota <[email protected]>
* Fixes #9430 - provisioning on VMWare fails with invalid MAC address
2015-03-03 Dominic Cleal <[email protected]>
* Bump version to 1.9-develop
2015-03-02 Lukas Zapletal <[email protected]>
* Fixes #5701 - removed extra id/name HTML attributes
2015-03-02 Shimon Shtein <[email protected]>
* Fixes #9548 - Changed the behavior of size selector in compute profile editor to match radio buttons
* Fixes #9339 - Changed the OS sorting to title
2015-03-02 Johan Swensson <[email protected]>
* fixes #6044 - production.log should have timestamps in it
2015-03-02 Marek Hulan <[email protected]>
* Fixes #9547 - DHCP is default subnet boot mode
2015-03-01 Marek Hulan <[email protected]>
* Fixes #9592 - unfold external user groups on error
* Fixes #9590 - make info test less fragile
2015-03-01 Tomer Brisker <[email protected]>
* Fixes #3016 - Sort accesible hostgroups by db instead of in memory
2015-02-26 Daniel Lobato García <[email protected]>
* Refs #9500 - revert normalize_name tests
2015-02-26 Tom Caspy <[email protected]>
* fixes #9118 - host mailer should not fail if no owner set for host
* fixes #9551 - checking the encryption format so osx doesn't fail
2015-02-26 Marek Hulan <[email protected]>
* Fixes #9495 - Require identifier for managed bonds
* Fixes #9497 - Require MAC for managed BMC
2015-02-26 Shimon Shtein <[email protected]>
* Fixes #9427 - Return meaningful errors from subnets/freeip and parse the error response to the UI
2015-02-26 Greg Sutcliffe <[email protected]>
* Fixes #9147 - move managed checks to the start of the DHCP/DNS/TFTP orchestration checks
2015-02-26 Shlomi Zadok <[email protected]>
* fixes #7764 - add quirks mode to JSON.dump
2015-02-25 Daniel Lobato García <[email protected]>
* Add issue stats badge
2015-02-25 Dominic Cleal <[email protected]>
* refs #8331 - fix rubocop empty line warning
2015-02-25 Stephen Benjamin <[email protected]>
* fixes #8331 - provide some tools for filtering mail
2015-02-25 Shlomi Zadok <[email protected]>
* fixes #9334 - reverse the order of 'hosts/provisioning setup' sub-menu
2015-02-25 johscheuer <[email protected]>
* fixes #9397 - Make usage of @host.operatingsystem in UnattendedController consistent
2015-02-24 Tomas Strachota <[email protected]>
* Fixes #8736 - confirmation before host delete for freshly created hosts
2015-02-24 Marek Hulan <[email protected]>
* Fixes #9500 - matching uses the whole domain name
2015-02-24 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
2015-02-24 Tomer Brisker <[email protected]>
* Fixes #9461 - Update subnets on domain change in hostgroup
2015-02-23 Tomer Brisker <[email protected]>
* Fixes #3278 - Correctly extract "New %s" strings
* Fixes #9452 - correct capitalization of VMware
2015-02-23 Tomas Strachota <[email protected]>
* Fixes #9325 - preserve compute resource attrs after NIC modal is closed
2015-02-23 Dominic Cleal <[email protected]>
* fixes #9107 - update to fog 1.28.0, fog-aws 0.1+
2015-02-22 Tomer Brisker <[email protected]>
* Fixes #5998 - add taxonomy tabs to config_template#edit
2015-02-22 Marek Hulan <[email protected]>
* Fixes #9496 - Adds popover help to IPAM field in Subnet form
2015-02-22 Tom Caspy <[email protected]>
* Refs #4478 - Remove empty line in apipie.rake
2015-02-20 Lukas Zapletal <[email protected]>
* Fixes #9458 - process only executable debug extensions
2015-02-20 Martin Bačovský <[email protected]>
* Refs #4478 - copy in pre-built plugin caches on rake apipie:cache index
2015-02-19 Marek Hulan <[email protected]>
* Fixes #9429 - identifier is required for Alias and VLAN
2015-02-18 Shlomi Zadok <[email protected]>
* fixes #6655 - remove _ForemanSelectedhosts cookie on action submit
* fixes #8581 - [vmware] use cluster full path to create vm
2015-02-18 Dominic Cleal <[email protected]>
* refs #3809 - exclude auto-generated schema.rb from rubocop checks
* fixes #9358 - match unattended template requests against provision interface
2015-02-18 Daniel Lobato <[email protected]>
* Refs #3809 - Remove cop emptyliteral
* Refs #3809 - Remove classcheck cop
* Refs #3809 - Remove various small cops
* Refs #3809 - Remove cop IndentationConsistency
* Refs #3809 - Remove cops for empty lines
2015-02-17 Stephen Benjamin <[email protected]>
* fixes #8953 - update IPA userclass param on realm update
2015-02-17 Josh Baird <[email protected]>
* fixes #8953 - update IPA userclass param on realm update
2015-02-17 David Davis <[email protected]>
* Fixes #9231 - Require English lib and fix ENC failure
2015-02-16 Marek Hulan <[email protected]>
* Fixes #9351 - use correct interfaces url for AJAX calls
* Fixes #2749 - power status helper can handle unknown states
2015-02-16 David Davis <[email protected]>
* Fixes #9357 - Making description db types consistent across Foreman
2015-02-16 Stephen Benjamin <[email protected]>
* fixes #9369 - tftp should send host, not self to get the boot files uri
2015-02-16 Shlomi Zadok <[email protected]>
* fixes #9335 - adds toggle to puppet classes list & better ui
2015-02-16 johannes <[email protected]>
* fixes #9362 - Add mediapath support to CoreOS
2015-02-16 Dominic Cleal <[email protected]>
* refs #9138 - skip all interfaces UI tests, which fail randomly
* templates - sync from community-templates
2015-02-12 Daniel Lobato <[email protected]>
* Fixes #8641 - Update fog to 1.27
2015-02-12 Dominic Cleal <[email protected]>
* i18n - pulling formatting fixes from tx
* i18n - extracting new, updating rails, pulling from tx
2015-02-11 Shlomi Zadok <[email protected]>
* Fixes #9006 - Add header to facts chart
2015-02-11 Tom Caspy <[email protected]>
* fixes #9212 - using headless browser in order to run Capybara tests
* fixes #9274 - hostgroup#clone clones config groups
* fixes #9249 - associated_host fixed for all compute resources
2015-02-11 Dominic Cleal <[email protected]>
* refs #6371 - fix unclosed HTML tag
2015-02-10 Dominic Cleal <[email protected]>
* refs #6371 - extract VNC password text
2015-02-10 Marek Hulan <[email protected]>
* Fixes #9186 - build interface if needed during facts import
2015-02-10 Tommy McNeely <[email protected]>
* fixes #9124 - fixes detection of hashed root passwords
2015-02-10 Tom Caspy <[email protected]>
* fixes #6371 - showing the vnc password
2015-02-09 Marek Hulan <[email protected]>
* Fixes #9195 - register MAC validation errors properly
* Fixes #9104 - allow disabling of interface updates
2015-02-09 Lukas Zapletal <[email protected]>
* Refs #8710 - moved proxy related info from foreman-debug
2015-02-08 Dominic Cleal <[email protected]>
* fixes #8565 - only get unique, unused message/source IDs to speed up expiry
2015-02-08 Tom Caspy <[email protected]>
* fixes #5812 - url parameter in compute_resource#create is not required for EC2, removing the required flag
* fixes #6774 - in case of parsing of non json or broken json, return 400
* fixes #3008 - allowing large ptables
2015-02-08 Daniel Lobato <[email protected]>
* Fixes #6884 - Installation media without $minor generate broken $version
* Fixes #9225 - private is defined twice in hosts controller
2015-02-08 Tomas Strachota <[email protected]>
* Fixes #9113 - api docs for users miss locale and timestamp params
2015-02-08 Marek Hulan <[email protected]>
* Fixes #9160 - use provision interface for image based provisioning
* Fixes #9198 - migration sets type explicitly
2015-02-08 Shlomi Zadok <[email protected]>
* fixes #9030 - Adds support to clone config template via api
2015-02-02 William Hutson <[email protected]>
* Fixes #9193 - broken rake-config command
2015-01-30 Daniel Lobato <[email protected]>
* Refs #3809 - Enable cop StringConversionInInterpolation
2015-01-29 Tomas Strachota <[email protected]>
* Refs #9138 - temporarily disable affected intermittent tests
2015-01-28 Marek Hulan <[email protected]>
* Fixes #8052 - allows erb in array and hash params
2015-01-28 Tomer Brisker <[email protected]>
* fixes #8469 - css cleanup, whitespaces and remove dead code
2015-01-27 Marek Hulan <[email protected]>
* Fixes #7456 - Extract primary interface from host
2015-01-27 David Davis <[email protected]>
* Fixes #9097 - Fix typo in value_to_sql method
2015-01-26 Tommy McNeely <[email protected]>
* fixes #8498 - Allows root password to be set in finish scripts
2015-01-26 Jiri Stransky <[email protected]>
* Refs #9049 - fix log message formatting
2015-01-26 David Davis <[email protected]>
* Fixes #9099 - Upgrade rubocop to 0.28.0
2015-01-24 Stephen Benjamin <[email protected]>
* fixes #6362 - correct menu dividers if user isn't auth for some actions
2015-01-24 Lukas Zapletal <[email protected]>
* Fixes #2948 - added sp_* host attributes to safe mode
2015-01-24 stocky <[email protected]>
* Fixes #9059 - adds puppetssldir setting
2015-01-23 Ori Rabin <[email protected]>
* Fixes #8970 - fixed second click on two-pane link
* Fixes #8963 - Rename trunc helper to trunc_with_tooltip
2015-01-23 Marek Hulan <[email protected]>
* Fixes #9044 - fixes invalid mac in tests
2015-01-23 Jiri Stransky <[email protected]>
* Fixes #9049 - Log exceptions when triggering a Puppet run
2015-01-23 Dominic Cleal <[email protected]>
* fixes #9084 - catch net-ldap 0.11's specific invalid filter exception
2015-01-22 Daniel Lobato <[email protected]>
* Fixes #8821 - Handle unnamed OpenStack images in images form
2015-01-21 Stephen Benjamin <[email protected]>
* fixes #9025 - reflect on association for _name(s) methods
2015-01-20 Tom Caspy <[email protected]>
* fixes #6098 - ec2 compute resources now check image validity.
2015-01-20 Michael Moll <[email protected]>
* fixes #8993 - handle FreeBSD patch releases better
2015-01-20 David LeVene <[email protected]>
* fixes #8402 - Reports from the last xx Days not displaying day filter option
2015-01-20 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2015-01-19 Tom Caspy <[email protected]>
* fixes #6369 - allow to override puppet ca/master to nil
2015-01-15 Daniel Lobato <[email protected]>
* Fixes #8922 - authorized_smart_proxy_features should not fail if not implemented
* Refs #3809 - Enable cop BarePercentLiterals
2015-01-15 Stephen Benjamin <[email protected]>
* fixes #8949 - fix noop migration for smart proxy auth settings
2015-01-15 Ori Rabin <[email protected]>
* Fixes #8830 - Allow two-pane to work on show
2015-01-14 Eric D. Helms <[email protected]>
* Fixes #8934: Allow plugin menu items to disable turbolinks for their links.
2015-01-14 Dominic Cleal <[email protected]>
* fixes #8925 - support plugin asset manifests beneath app root
2015-01-13 Bryan Kearney <[email protected]>
* Fixes #8930 - Incorrect html caused a typo on the trends page
2015-01-13 Daniel Lobato <[email protected]>
* Refs #8857 - Styling fixes for coreOS boot_files_uri
2015-01-13 Johannes Scheuermann <[email protected]>
* fixes #8857 - refactor Debian boot_files_uri into parent class to match CoreOS
2015-01-13 Tomer Brisker <[email protected]>
* Fixes #8838 - Replace HTTP error codes with human-readable symbols
2015-01-13 Dominic Cleal <[email protected]>
* refs #6832 - prevent extraction of string interpolation
* fixes #8855 - remove unused oj gem
2015-01-13 Ori Rabin <[email protected]>
* Fixes #8764 - adds description to taxonomies
2015-01-13 Stephen Benjamin <[email protected]>
* fixes #8484 - make SmartProxyAuth concern more useful to plugins
2015-01-12 Dominic Cleal <[email protected]>
* refs #8879 - revert "Pin fast_gettext to get tests to run"