forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
5787 lines (4340 loc) · 240 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
2014-01-16 David Davis <[email protected]>
* fixes #3992 - Removing unused coffeescript gem
2014-01-16 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
2014-01-16 Marek Hulan <[email protected]>
* Fixes #4031 - change TFTP record on build flag change
2014-01-16 Sam Kottler <[email protected]>
* fixes #4001: remove unused comps
* Fixes #4024: Virtual machine state indicator is not correctly positioned for rackspace CR's
2014-01-16 Amos Benari <[email protected]>
* fixes #4019 Compute Resource -> New Image renders on Compute Profiles tab
2014-01-16 Greg Sutcliffe <[email protected]>
* Fixes #4020 - enable @static to work on all OS template types
* Fixes #4014 - Correctly use to_label when showing OSs
2014-01-16 Joseph Magen <[email protected]>
* fixes #4021 - upgrade to Rails 3.2.16
2014-01-16 Frank Wall <[email protected]>
* fixes #3906 - Support for Junos ZTP
2014-01-15 Ohad Levy <[email protected]>
* fixes #3099 - Adding parameters to locations and organizations
2014-01-15 Joseph Magen <[email protected]>
* fixes #3937 - correct title wording Editing to Edit
2014-01-15 Greg Sutcliffe <[email protected]>
* Fixes #3927 - Allow VMs to provision via user-data
2014-01-15 Walden Raines <[email protected]>
* fixes #3984 - use __ instead of _ for i18n to avoid conflict with underscore.js
2014-01-14 Ohad Levy <[email protected]>
* refs #3811 alerts messages cleanup and minor refactoring
2014-01-14 Lukas Zapletal <[email protected]>
* fixes #3973 - foreman-debug can now upload tarballs
2014-01-14 Joseph Magen <[email protected]>
* fixes #3911 - jquery.multi-select.js should disable selected ids that are passed to :disabled =>
2014-01-12 Marek Hulan <[email protected]>
* Fixes wrong os family caused by 'becomes' refs #3962
2014-01-11 Joseph Magen <[email protected]>
* fixes #3975 - add audit to classes Domain, Subnet, SmartProxy, Role, Usergroup, AuthSource, Image, Bookmark that were not audited
2014-01-11 Lukas Zapletal <[email protected]>
* fixes #2613 - foreman-debug tarball directories stripped
* fixes #3958 - added more logs reported with foreman-debug
2014-01-11 Ohad Levy <[email protected]>
* fixes #3709 - explicitly say puppet environments vs just 'environments'
2014-01-10 Dominic Cleal <[email protected]>
* fixes #3989 - add BR and explicit dependency on Ruby binary, for ruby193-ruby-wrapper
2014-01-09 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
* i18n - add sv_SE language
2014-01-09 Marek Hulan <[email protected]>
* Fixes #3962 - Refactor class overwriting
2014-01-09 Lukas Zapletal <[email protected]>
* fixes #3967 - reworded message for OpenStack form
2014-01-09 Greg Sutcliffe <[email protected]>
* Fixes #3974 - Drop leftover Api
2014-01-09 Joseph Magen <[email protected]>
* fixes #3178 - add feature for compute profiles for hostgroups and hosts
2014-01-07 Amos Benari <[email protected]>
* fixes #3821 Plugin menus are lost after page refresh in development
2014-01-07 Sam Kottler <[email protected]>
* Fixes #3945: pin fog to 1.19.x to fix VMware provisioning bug
2014-01-07 Jan Pazdziora <[email protected]>
* fixes #3528 - Populate first name, last name, and email, if available.
2014-01-07 Romain Vrignaud <[email protected]>
* fixes #3658 - support smart proxy's chef proxy feature
2014-01-06 Sam Kottler <[email protected]>
* fixes #3261 - use the action the host is about to perform for power action notifications
2014-01-06 Joseph Magen <[email protected]>
* fixes #3937 - correct title wording for Compute Resources and Smart Proxies
2014-01-03 Walden Raines <[email protected]>
* fixes #3942 - restoring multiple="true" in org edit form
2014-01-03 Ruediger Mueck <[email protected]>
* fixes #1489 - add AIX family and facts importer support
2014-01-01 Ohad Levy <[email protected]>
* refs #3935 - fixes hash style to support ruby 1.87
2014-01-01 Amos Benari <[email protected]>
* fixes #3935 new login page RCUE style
2013-12-31 Jimmi Dyson <[email protected]>
* fixes #3896 Retrieve OVirt CA certificate via same URL scheme as API URL by disabling SSL verification
2013-12-31 Amos Benari <[email protected]>
* refs #3811 - additional bootstrap 3 updates/fixes
2013-12-31 Robert Birnie <[email protected]>
* fixes #3932 incorrect volume delete label
2013-12-30 Ohad Levy <[email protected]>
* refs #3928 - use updated test fixture
* refs #3930 - ensure a user can actually update itself.
* fixes #3930 - refactoring of edit_self implementation.
2013-12-30 Tom McKay <[email protected]>
* fixes #3853 - allow rabl template override to be specified
2013-12-30 Joseph Magen <[email protected]>
* fixes #2794 - set api_version and app_info in v1 and v2 base_controllers
* fixes #3928 - API v2 - update os_default_templates for operating system
2013-12-30 Amos Benari <[email protected]>
* fixes #3858 No menus shown for non-admin users
* refs #3811 - additional bootstrap 3 updates/fixes * provisioning template "resolve" button ui fixes * form inline help and button lacation fix * host ip address help link fixed * fixes libvirt allocation buttons * host global parameters columns fixed * fix multi-select width
2013-12-29 Dominic Cleal <[email protected]>
* refs #3811 - foreman.spec: change twitter-bootstrap-rails to bootstrap-sass
2013-12-29 Amos Benari <[email protected]>
* fixes #3811 - merge with new layout
2013-12-29 Walden Raines <[email protected]>
* Fixes #3811 updating to bootstrap 3
2013-12-25 Dominic Cleal <[email protected]>
* fixes #3752 - move data population from migrations into seed script
* fixes #3889 - don't reload nested lookup keys during render, so validation errors aren't lost
2013-12-19 Amos Benari <[email protected]>
* Merge branch 'fixes-3872' of git://github.com/ehelms/foreman into ehelms-fixes-3872
2013-12-18 Eric D. Helms <[email protected]>
* Fixes 3872: Provides a better customizable application layout that conforms to HTML5 best practices.
2013-12-18 Martin Bačovský <[email protected]>
* fixed #3905 - wrong route in apidoc for reports delete (API v2)
2013-12-18 Lukas Zapletal <[email protected]>
* fixes #2374 - added allocation option to libvirt VM
2013-12-18 Daniel Lobato <[email protected]>
* fixes #3280 - authenticate returns true for API requests when login:false
2013-12-18 Michael Moll <[email protected]>
* fixes #1431 - use boardproductname as model fallback if productname or model fact don't exist
* refs #3571 - add filter for notice level in report
2013-12-16 Marek Hulan <[email protected]>
* fixes #3339 - nested fact support, allow fact importers to be registered by plugins
2013-12-16 Joseph Magen <[email protected]>
* fixes #3693 - API v2 - accept GET json format of object in PUT/POST requests to add/remove has_many associations
2013-12-16 Dominic Cleal <[email protected]>
* fixes #3885 - sort IDs in test to prevent random failures
* fixes #3882 - Revert "fixes #3855 - pin ruby-libvirt to 0.4 for Ruby 1.8 workaround"
2013-12-16 Sam Kottler <[email protected]>
* Fixes #3881: pin locale to 2.0.9 or lower
2013-12-13 Greg Sutcliffe <[email protected]>
* Fixes #3721 - Map OS family to a display variant
* Fixes #3720 - Add description field to operatingsystem
2013-12-12 dima <[email protected]>
* refs #3067 - domain stripped from installation media hostname for Solaris
2013-12-12 Lukas Zapletal <[email protected]>
* fixes #3539 - removed legacy mysql adapter
2013-12-12 Eric D. Helms <[email protected]>
* Fixes #3753 - always use main_app to determine paths for running an isolated namespace plugin
2013-12-12 Amos Benari <[email protected]>
* fixes #3790 - Added support for isolated engine to foreman menu
2013-12-11 Eric D. Helms <[email protected]>
* Fixes #3838: Adds ability to define a divider when declaring a menu item from a plugin.
2013-12-11 Dominic Cleal <[email protected]>
* fixes #3855 - pin ruby-libvirt to 0.4 for Ruby 1.8 workaround
2013-12-09 Joseph Magen <[email protected]>
* fixes #3491 - API v2 rabl templates base, main, show for each controller
2013-12-09 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2013-12-09 Lukas Zapletal <[email protected]>
* fixes #2600 - fixed gettext extraction on vms forms
2013-12-09 odgrim <[email protected]>
* fixes #3832 - foreman supplies user for GCE images, fog expects username
2013-12-05 Eric D. Helms <[email protected]>
* fixes #3820 - adds exception output to menu item authorization check
2013-12-05 Lukas Zapletal <[email protected]>
* fixes #3822 - updated Rackspace datacenter list
2013-12-05 Joseph Magen <[email protected]>
* fixes #3524 - api cannot reference smart proxies by name when they contain a "."
* fixes #2983 - Add autosign#index to API v1 and v2 and remove from UI controller
2013-12-03 Dominic Cleal <[email protected]>
* fixes #3794 - don't validate IP address that's later provided by a CR
2013-12-02 Lukas Zapletal <[email protected]>
* fixes #3769 - added foreman-rake and debug man pages
2013-11-28 Nils Domrose <[email protected]>
* fixes #2572 - FreeBSD unattended installation support via mfsbsd
2013-11-28 Stephen Benjamin <[email protected]>
* fixes #3776 - change NAME_MAP to be a method
2013-11-28 Joseph Magen <[email protected]>
* fixes #3020 - API v2 - option to specify version in URL as well as in header
2013-11-28 Greg Sutcliffe <[email protected]>
* Fixes #3777 - typo in Settings cleanup message
2013-11-28 Dmitri Dolguikh <[email protected]>
* fixes #3772: a block is now optional when defining sub menus from foreman plugins
2013-11-27 Joseph Magen <[email protected]>
* fixes #3646 - API v2 change default root name for api json single object response to no root node but make it configurable
* fixes #3137 - API v2 - show error if optional nested object does not exist for nested route
* fixes #3768 - API v2 child nodes should not have an object root for each object
* fixes #2931 - API v2 hosts JSON response, add *_name for each *_id
2013-11-26 Dmitri Dolguikh <[email protected]>
* fixes #3762: menu urls defined using hashes should prefix controller name with a '/' (use absolute controller names)
2013-11-26 Joseph Magen <[email protected]>
* fixes #3018 - API v2 metadata for pagination, search, order in index collection json response
2013-11-25 Joseph Mitchell Magen <[email protected]>
* fixes #3011 - default root node name for api collections json response to :results but make it configurable
2013-11-25 Povilas Daukintis <[email protected]>
* fixes #3737 - added PXEGrub specific PXE localboot template
2013-11-25 Ohad Levy <[email protected]>
* refs #3510 - ensure rescue statement works
2013-11-25 Lukas Zapletal <[email protected]>
* refs #3712 - write VERSION file to /usr/share/foreman/VERSION
* fixes #3724 - correcting Red Hat names in some UI texts
* fixes #3722 - changed partition tables default names
2013-11-23 Dominic Cleal <[email protected]>
* fixes #3736 - users API uses login name as an identifying attribute
* fixes #3684 - add IDs to top level dropdown menus
* fixes #3717 - pin fog to 1.18.x
2013-11-22 Adam Price <[email protected]>
* routes - small script to strip out the whitespace from 'rake routes'
2013-11-22 Tom McKay <[email protected]>
* fixes #3673 - auditing added to ptable w/ test
2013-11-22 Martin Matuska <[email protected]>
* fixes #3683 - display free and available space in vSphere datastore selection
2013-11-22 Amos Benari <[email protected]>
* fixes #3510 - plugin interface for registering a plugin, updated menu system
2013-11-22 Lukas Zapletal <[email protected]>
* fixes #2763 - correcting doco links
2013-11-21 Dominic Cleal <[email protected]>
* fixes #3712 - change develop versioning scheme to indicate next version
2013-11-20 Dominic Cleal <[email protected]>
* fixes #2680 - ensure RbVmomi
* fixes #3659 - use URL host for hostname, not URL itself
2013-11-20 odgrim <[email protected]>
* fixes #3698 - add image_id alias to server resource as form uses it
2013-11-20 Stephen Benjamin <[email protected]>
* fixes #3661 - mis-redirection from /hosts/fqdn/edit to /hosts
* fixes #3493 - check if auto user reg is allowed for auth source
2013-11-19 Bryan Kearney <[email protected]>
* fixes #3672: Add in the zanata.xml file for pushing strings to zanata.
2013-11-19 Brad Buckingham <[email protected]>
* fixes #3669 - migration: minimize amount of User model exposed to migration
2013-11-19 Greg Sutcliffe <[email protected]>
* Fixes #3468 - Move token expiry to scope to avoid FK issues
2013-11-18 Sam Kottler <[email protected]>
* Fix #3682: pin rabl to be less than or equal to 0.9.0
2013-11-15 Beat Gätzi <[email protected]>
* fixes #3645 - fix total value in summary mail subject
2013-11-14 Dmitri Dolguikh <[email protected]>
* fixes #3603 - replaced a relation with a collection in 'where' conditions
2013-11-14 Greg Sutcliffe <[email protected]>
* fixes #3268, #2783 - Update prod2dev to handle fkeys in psql
2013-11-13 Stephen Benjamin <[email protected]>
* fixes #3107 - enable sorting of hostgroups by label, sort by default
2013-11-13 Dmitri Dolguikh <[email protected]>
* fixes #3516 - resource names (inc. domains) are now being parametrized when used to construct urls
* fixes #3622 - smart proxy features are now being loaded dynamically
2013-11-13 Lukas Zapletal <[email protected]>
* fixes #3637 - refactor exception rake task
2013-11-13 Joseph Magen <[email protected]>
* fixes #3017 - split APIv2 controllers from v1 parents
2013-11-13 Sam Kottler <[email protected]>
* fixes #3626 - add unf to the bundler configuration for proper encoding for fog
2013-11-12 Jan Pazdziora <[email protected]>
* fixes #3312 - support /users/extlogin as a login page based on REMOTE_USER
2013-11-12 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2013-11-11 Dominic Cleal <[email protected]>
* fixes #3050 - add foreman-gce subpackage
2013-11-08 Dominic Cleal <[email protected]>
* refs #3569 - fix URL validation test error on merge
2013-11-08 Greg Sutcliffe <[email protected]>
* Fixes #3569, #3210 - Use port from foreman_url for templates
2013-11-07 Ohad Levy <[email protected]>
* fixes #3587, #2855 - print an error on invalid json vs 500 error
2013-11-06 David Davis <[email protected]>
* Adding more files (log, reports) to gitignore
* fixes #3597 - removing rr gem, make tests consistent by using just mocha
2013-11-05 Andreas Ntaflos <[email protected]>
* fixes #3581 - link to reports search for failed hosts should use "host = foo.example"
2013-11-05 Ohad Levy <[email protected]>
* fixes #3578 - minor SQL and whitespaces updates to the smart proxy class
* fixes #3566 - exposes orchestration tasks via the API(v2) at /api/orchestration/id/tasks
2013-11-05 Petr Chalupa <[email protected]>
* fixes #3577 - do not treat `params[:dryrun]` with value `false` as true
2013-11-04 Amos Benari <[email protected]>
* Merge branch '959' into develop
* fixes #3338 - grey out VM form when editing is not supported
2013-11-04 Dolf Schimmel (Freeaqingme) <[email protected]>
* fixes #3568 - adding Facter gem to bundler config
2013-11-01 Greg Sutcliffe <[email protected]>
* Fixes #3196 - Switch tokens to default to on
* Fixes #3182 - Make IP optional in some circumstances
2013-10-31 David Davis <[email protected]>
* Tweaks to gitignore
2013-10-31 Martin Bačovský <[email protected]>
* fixes #2951 - Host API documentation lacks compute_resource_id
2013-10-31 Dominic Cleal <[email protected]>
* fixes #3550 - correct HTTP method for puppet class import API
2013-10-30 Ohad Levy <[email protected]>
* fixes #3205 - Extract and refactor report importing logic
2013-10-29 Ohad Levy <[email protected]>
* fixes #1830 - auto assign puppet proxy if its not defined upon facts/reports event
2013-10-29 Petr Chalupa <[email protected]>
* fixes #3538 - workaround for broken #pluck on lower Rails versions
2013-10-29 Martin Bačovský <[email protected]>
* Fixes #3495 - foreman-cli meta-package should install hammer
2013-10-25 Joseph Magen <[email protected]>
* fixes #3498 - update to Rails 3.2.15
2013-10-25 Ohad Levy <[email protected]>
* fixes #3486 - Make sure loading text is removed when chart data appears.
2013-10-24 Aaron Stone <[email protected]>
* Fixes #3481 - Don't have to set a hostname for each interface, but it must be unique if it is set.
2013-10-24 Jan Orel <[email protected]>
* fixes #3256 - include members in usergroup show
2013-10-24 Lukas Zapletal <[email protected]>
* refs #2792 - Adding comments to pxe templates
2013-10-24 Joseph Magen <[email protected]>
* fixes #3267 - API v1 compatibility for /api/hosts
* fixes #3140 continue - apipie params fix
2013-10-24 Marek Hulan <[email protected]>
* Fixes #3350 - Adds title on login page
2013-10-24 Amos Benari <[email protected]>
* fixes #3279 roles edit page is long and missing a filter
2013-10-24 Ohad Levy <[email protected]>
* refs #2967 fact deleted counters did not propagate correctly.
* [REFACTOR] fixes #2967 - refactored Fact Importer
2013-10-24 Martin Matuska <[email protected]>
* fixes #3364 Add option to disable automatc host creation when a report is received
2013-10-22 Ohad Levy <[email protected]>
* fixes #3266 - ensures there are no duplicate notifications
2013-10-22 Lukas Zapletal <[email protected]>
* fixes #3138 - move CR library loading into initializers, only show available providers
2013-10-21 Joseph Magen <[email protected]>
* fixes #3140 - API to allow importing of puppet classes
2013-10-21 Amos Benari <[email protected]>
* fixes #3274 moved config template to the new two-pane and add full screen editing
2013-10-21 Ohad Levy <[email protected]>
* Changed the on content load direct method call to event
2013-10-18 Dominic Cleal <[email protected]>
* fixes #3369 - pin rubyzip to < 1.0.0 for Ruby 1.8
* fixes #2895 - apply updates to environments on puppet class import
2013-10-18 Greg Sutcliffe <[email protected]>
* Fixes #3293 add FactoryGirl to tests
2013-10-18 Lukas Zapletal <[email protected]>
* fixes #3239 - pxelinux spoofing on postgres now works
2013-10-18 Tomas Strachota <[email protected]>
* fixes #2818 - validation of OS families in ptables
2013-10-17 Dominic Cleal <[email protected]>
* rake console
2013-10-17 Dmitri Dolguikh <[email protected]>
* Fixes #3122: 'column reference id is ambiguous' no longer appears on dashboard and report screens
2013-10-16 hhenkel <[email protected]>
* fixes #3277 - host search link now quotes taxonomy name
2013-10-16 Martin Matuska <[email protected]>
* fixes #2093 - list VMs in every VMware folder
2013-10-16 Jan Pazdziora <[email protected]>
* The form-vertical class is not defined nor styled anywhere.
2013-10-16 Dominic Cleal <[email protected]>
* fixes #3270 - load subnets for the domain associated with each NIC
2013-10-15 Dmitri Dolguikh <[email protected]>
* fixes #3269 - fact import rake task fails with arity error
* fixes #3250: cron tasks in rpm install of foreman use foreman-rake
2013-10-15 hhenkel <[email protected]>
* fixes #3212 - disable constraint checks for mysql databases during db:prod2dev
2013-10-15 Ohad Levy <[email protected]>
* fixes #3243 non-required/Slow SQL queries on host show page
2013-10-15 Joseph Magen <[email protected]>
* fixes #3249 - change regex syntax from start/end of line to start/end of string
* fixes #3248 - missing N_() on validation messages
* fixes #2741 - rails 3 syntax
* fixes #2741 - remove dash from -%> to %>
2013-10-15 Amos Benari <[email protected]>
* refs #3254 - Using the two-pane layout in some pages.
* fixes #3254 - Added support for unobtrusive two pane control
2013-10-14 Lukas Zapletal <[email protected]>
* fixes #3241 - default password is now MD5
2013-10-10 Martin Matuska <[email protected]>
* fixes #3136 - host cloning should auto-suggest a new IP address
2013-10-10 Tomas Strachota <[email protected]>
* fixes #3170 - dash separated mac address notation
2013-10-09 Aaron Stone <[email protected]>
* fixes #3222 - nil the certname when handling certs if UUID certs have now been disabled
2013-10-08 Sam Kottler <[email protected]>
* Fixes #2875: only show URL and description for a CR if they exist
2013-10-08 Joseph Magen <[email protected]>
* fixes #3111 - v2 API calls to /api/[class]/[object]/parameters/[parameter] return wrong object
* fixes #3206 - prevent any user including admin from creating lookup_value with fdqn= or hostgroup= if host/hostgroup does not exist
2013-10-08 Ohad Levy <[email protected]>
* fixes #3218 - Remove Double calls to CR provider when creating a new host.
2013-10-08 Martin Matuska <[email protected]>
* fixes #3134 - disable vSphere fields on host edit, fix clone behavior
2013-10-07 Joseph Magen <[email protected]>
* fixes #3190 - Fix STI auditable_type - Audit should say updated Location/Organization rather than updated Taxonomy and ComputeResource should not use STI class
2013-10-07 Ohad Levy <[email protected]>
* fixes #3207 avoid extra validation calls when importing a report
2013-10-07 Joseph Mitchell Magen <[email protected]>
* fixes #3048 - Non Admin user fails to override parameters when creating new host
2013-10-07 Dominic Cleal <[email protected]>
* fixes #3160 - sanitize host/host group names in lookup_value associations (CVE-2013-4386)
2013-10-04 Joseph Mitchell Magen <[email protected]>
* fixes #3202 - PG constraints deferred and change destroy_all to delete_all
2013-10-03 Dominic Cleal <[email protected]>
* fixes #2756 - update setting descriptions at startup
* fixes #3133 - fix security group filtering when no groups need filtering
2013-10-02 Tomas Strachota <[email protected]>
* fixes #3180 - displaying array values in settings ui correctly
2013-10-02 Dmitri Dolguikh <[email protected]>
* Fixes #3177: a 'G' suffix is automatically appended to libvirt volume capacity value if none was specified
2013-10-01 Joseph Mitchell Magen <[email protected]>
* fixes #2986 - remove #show method from controllers and routes.rb when not used
2013-09-30 Luke Alford <[email protected]>
* fixes #3106 - consistent sorting of common parameters by name
2013-09-30 Lukas Zapletal <[email protected]>
* fixes #2981 - adding plugins repo to foreman-release
* fixes #3147 - added httpd logs into foreman-debug
* fixes #3142 - update ancestry due to dependency issue in f19
* fixes #3167 - downgrade gettext_i18n_rails for gettext / 1.8 compat
2013-09-30 Dominic Cleal <[email protected]>
* Bump release, part of 18722e769927f406d813fec1aed1b2d7c7f3b6a1
2013-09-30 Hannes Schaller <[email protected]>
* fixes #2975 added setting for using the shortname instead of FQDN for new virtual machines
2013-09-30 Romain Vrignaud <[email protected]>
* Fixes #3168 Add FreeBSD logo in host list
2013-09-30 Joseph Mitchell Magen <[email protected]>
* fixes #3165 - /api/fact_values route missing from v2 API
2013-09-27 Florian Ernst <[email protected]>
* Fixes #2244: avoid constantly changing os.release_name
2013-09-27 Dmitri Dolguikh <[email protected]>
* refs #3141 - added tests around Foreman
* fixes #3129: NoMethodError is no longer being raised when determining the value of a property
2013-09-27 Daniel Lobato <[email protected]>
* Fixes #3144 Remove user_id and inherited_from
2013-09-27 Greg Sutcliffe <[email protected]>
* Fixes #3128 - add json format back to images_controller
2013-09-25 Joseph Mitchell Magen <[email protected]>
* fixes #3139 - duplicate Organization tabs for Organization#edit
* fixes #3091 - strip leading and trailing whitespace before_save on names of all objects
2013-09-25 Dominic Cleal <[email protected]>
* fixes #1244 - add smart proxy feature refresh link + API call
2013-09-25 Dmitri Dolguikh <[email protected]>
* fixes #3141: SmartPrpxyAuth no longer calls #render_403 method defined in ApplicationController
2013-09-23 Joseph Mitchell Magen <[email protected]>
* fixes #2810 - more restful API v2 JSON responses in puppetclasses
2013-09-20 Tomas Strachota <[email protected]>
* fixes #3120 - bumped version of apipie-rails
* fixes #3101 - list available images for CRs, add iam_role field to images API
2013-09-20 Greg Sutcliffe <[email protected]>
* Fixes #3130 - Use the standard CentOS mirror
2013-09-20 Lukas Zapletal <[email protected]>
* fixes #3077 - locale was set to last language by default
2013-09-20 Martin Matuska <[email protected]>
* fixes #3123 vSphere VM info misses MAC address and displays memory in bytes
2013-09-19 Joseph Mitchell Magen <[email protected]>
* Fixes #2984 - API v1/v2 StatisticsController and remove JSON from UI controller
2013-09-19 Martin Matuska <[email protected]>
* fixes #3116 - add NIC selection for vSphere: E1000 and VMXNET 3
2013-09-18 Joseph Mitchell Magen <[email protected]>
* fixes #3089 - Updating settings causes settings page to load again within the page
* fixes #3095 - for new trend, disable input of trend_name if not FactTrend
2013-09-18 Martin Matuska <[email protected]>
* fixes #3110 Association of vSphere VMs fails
* fixes #3072 Vmware: error listing VMs
2013-09-17 Daniel Lobato <[email protected]>
* fixes #3094 - reports search includes hostgroup and hostgroup_fullname
2013-09-17 Dominic Cleal <[email protected]>
* fixes #2764 - settings defined in settings.yaml file are now read-only
2013-09-17 Joseph Mitchell Magen <[email protected]>
* fixes #3093 - invalid data for a subnet address or mask returns "is invalid and is invalid"
* fixes #3097 - foreign key error on deleting trend
2013-09-17 Marek Hulan <[email protected]>
* Fixes #2586 - Revert "Refs #2002 - Fog quick hack"
2013-09-16 Joseph Mitchell Magen <[email protected]>
* fixes #3090 - new puppetclass creation fails when adding smart variable
* fixes #3071 - OS edit failed on foreign keys since config_template_id was '0' on blank
2013-09-16 Martin Matuska <[email protected]>
* fixes #3088 - Add checkbox to select thin or thick provision for vSphere volumes
2013-09-14 snobear <[email protected]>
* fixes #3087 - fix space before parenthesis warning
2013-09-12 Lukas Zapletal <[email protected]>
* Bump version to 1.3-develop
* removing PO merge from commit when doing locale:find
2013-09-12 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2013-09-12 Daniel Lobato <[email protected]>
* fixes #3064 - links to nested hostgroups use hostgroup_fullname
2013-09-11 Marek Hulan <[email protected]>
* Fixes #3043 - Support Signo on API level using BasicAuth
2013-09-11 Dominic Cleal <[email protected]>
* refs #2400 - add foreigner/immigrant dependencies to spec file
2013-09-11 Joseph Mitchell Magen <[email protected]>
* fixes #2272 continuation - NameError: undefined local variable or method postgresql_version for ConnectionAdapters
* fixes #2400 continuation - match all host STI classes when finding orphaned records
* Fixes #2272 - added Capybara integration tests, but without javascripts tests
2013-09-10 Joseph Mitchell Magen <[email protected]>
* fixes #2400 migration to remove orphaned records and add foreign keys constraints to database tables
* fixes #3052 - reports#show json rabl template to match as_json output that was removed
* fixes #2985 - remove #as_json method from AR models since rabl views used for API
* fixes #2969 - remove all legacy api code in UI controllers, add deprecation response
2013-09-10 Lukas Zapletal <[email protected]>
* fixing transifex domain in .tx/config and scripts
* i18n - fixing malformed strings
2013-09-10 Daniel Lobato <[email protected]>
* fixes #2179 - validate the owner type, preventing the API returning errors for a wrong owner_type
2013-09-09 Lukas Zapletal <[email protected]>
* fixes #2942 - plugin i18n support
2013-09-09 Daniel Lobato <[email protected]>
* fixes #3059 - new mail rake task sends foreman reports to each user
* fixes #3051 - Adds rake task to import puppet environments
2013-09-09 Joseph Mitchell Magen <[email protected]>
* fixes #2989 - missing fields in host API output (API v1 and v2)
2013-09-09 Greg Sutcliffe <[email protected]>
* fixes #2260 Allow ERB in ENC global / class parameters
* Fixes #1848 - Link non-zero report summaries to the equivalent report search
2013-09-09 Jeremy Kitchen <[email protected]>
* fixes #2944 - nic type selection for libvirt
2013-09-09 Dominic Cleal <[email protected]>
* fixes #2996 - VM show screen syntax error on ruby 1.8
2013-09-08 Romain Vrignaud <[email protected]>
* fixes #1719 - Add support for GCE(Google Compute Engine)
2013-09-08 Daniel Lobato <[email protected]>
* fixes #1853 - Users now have a new filter to subscribe to new hostgroups
2013-09-07 Daniel Lobato <[email protected]>
* fixes #3046 - add NIC CRUD, power and boot operations API
2013-09-07 Jason Montleon <[email protected]>
* fixes #2288 - Add oVirt/RHEV Quota Support
2013-09-07 Mark O'Shea <[email protected]>
* fixes #1871, #1879 - add VPC support to EC2 compute resource
2013-09-06 Greg Sutcliffe <[email protected]>
* Fixes #3045 - Skip empty log arrays
2013-09-06 Jason Montleon <[email protected]>
* fixes #1923 - matches vms on a compute resource to hosts
2013-09-05 Greg Sutcliffe <[email protected]>
* Fixes #3030 - require facter where necessary
* Fixes #2414 - Move puppet report processing code to the report processor
2013-09-05 Lukas Zapletal <[email protected]>
* syncing with upstream community-templates
2013-09-03 Marek Hulan <[email protected]>
* fixes #2863 - restrict APIs to resources that a user is permitted to manage (CVE-2013-4182)
* fixes #2860 - don't convert arbitrary input into symbols (CVE-2013-4180)
2013-09-02 Ewoud Kohl van Wijngaarden <[email protected]>
* fixes #3010 - use the correct helper function name
2013-09-02 Andy Bohne <[email protected]>
* Fixes #2758 - Reset key_type when importing parameter defaults
2013-09-02 Jeremy Kitchen <[email protected]>
* fixes #1745 - make puppetmaster hostname/domain stripping behaviour configurable
2013-09-01 Dominic Cleal <[email protected]>
* fixes #3005 - restrict gettext to Ruby 1.8 compatible version
2013-08-29 Greg Sutcliffe <[email protected]>
* Refs #2414 - Remove Puppet from facts API and Settings
2013-08-29 Joseph Mitchell Magen <[email protected]>
* fixes #2932 - add find_by_fullname for Operatingsystem
* fixes #2945 correction - has_and_belongs_to_many defined twice
* fixed #2970 - modified inflections.rb to handle 'Puppetclass'.singularize and classify
2013-08-29 Daniel Lobato <[email protected]>
* fixes #2988 - merge authentication code, enables REMOTE_USER auth on new API controllers
* fixes #2891 Openstack power control operations support
2013-08-23 Dmitri Dolguikh <[email protected]>
* fixes #2877: deletion of the organization or location in the context no longer breaks the session
2013-08-23 Joseph Mitchell Magen <[email protected]>
* fixes #2945 - extend AR to add getter/setters *_name(s) for has_many/belongs_to associations
2013-08-21 Ash Caire <[email protected]>
* fixes #2431 - handle fact uploads where host is missing $fqdn
2013-08-19 Tomas Strachota <[email protected]>
* fixes #2933 - add missing fields to installation media API
2013-08-19 Sam Kottler <[email protected]>
* Fixes #2540: bump fog version to 1.15.0
2013-08-15 Joseph Mitchell Magen <[email protected]>
* fixes #2910 - renamed *.erb extensions to *.html.erb
2013-08-15 Nils Domrose <[email protected]>
* fixes #863 - added ldap_filter to LDAP auth sources to filter lookups using RFC 2254 filters
2013-08-15 Dominic Cleal <[email protected]>
* refresh locales
* i18n - add zh_CN language
2013-08-13 Daniel Lobato <[email protected]>
* Fixes #2169 Openstack uses tenants
2013-08-13 Greg Sutcliffe <[email protected]>
* Fixes #2721 - Allow use of spice for libvirt via checkbox per-CR Fixes #1711 - Add a per-CR checkbox for console passwords
2013-08-13 Sam Kottler <[email protected]>
* Fixes #2833: remove direct endpoints from Rackspace compute resource
* Fixes #2832: remove deprecated fog API and rackspace endpoint
2013-08-13 Joseph Mitchell Magen <[email protected]>
* fixes #2869 - refactor method find_nested_obj into API
* fixes #2424 - encrypts compute resource password
* fixes #2424 - add Encryptable module and encryption_key generation
* fixes #2898 - missing API v2 nested routes for config_templates/:id/locations & organizations
2013-08-12 Bernard McKeever <[email protected]>
* Fixes #2909: improve language on the welcome page around facts
2013-08-07 Daniel Lobato <[email protected]>
* fixes #2871 - params search works with nested hostgroups
2013-08-06 Joseph Mitchell Magen <[email protected]>
* fixes #2829 - remove environment field from hosts table
2013-08-06 Greg Sutcliffe <[email protected]>
* Fixes #2501 - Allow my_hosts scope to include all subclasses of Host
2013-08-05 Sam Kottler <[email protected]>
* Fixes #2867: use the future relative tense for the orchestration process during provisioning
2013-08-04 Amos Benari <[email protected]>
* fixes #2766 Setting categories not consistently loaded and shown in dev
2013-08-02 Lukas Zapletal <[email protected]>
* fixes #2872 - default password not listed in debug script
2013-08-02 Joseph Mitchell Magen <[email protected]>
* fixes #2830 - upgrade rails version to 3.2.14
2013-07-30 Tomas Strachota <[email protected]>
* fixes #2838 - taxonomies controller - fix in params and finder
2013-07-30 Amos Benari <[email protected]>
* added a HTML id to the operating system ui tab
2013-07-29 Dominic Cleal <[email protected]>
* fixes #2851 - refresh puppet classes on environment change
2013-07-29 Joseph Mitchell Magen <[email protected]>
* fixes #2788 - changes to fixtures and tests in preparation for testing adding/removing puppetclasses
* fixes #2788 - adding / removing puppet classes updates the change even if the form is not submitted
2013-07-29 Amos Benari <[email protected]>
* fixes #2837 add an interface to add repositories to kickstart, cleanup similar methods
2013-07-26 Greg Sutcliffe <[email protected]>
* Fixes #2576 - Add optional update of Host.ip from built request
2013-07-26 Ian Mordey <[email protected]>
* Fixes #2839 - retry SSH authentication issues with cloud-init
2013-07-26 Marek Hulan <[email protected]>
* Fixes #2821 - Autoload paths, PowerManager children must be in namespace in order to autoload
2013-07-25 Dominic Cleal <[email protected]>
* fixes #2693 - don't cause handle_ca error when no Puppet CA associated with host
2013-07-24 Jason Montleon <[email protected]>
* fixes #2809 - send host subject as xpi opt to prevent ssl connect errors
2013-07-24 Joseph Mitchell Magen <[email protected]>
* fixes #2813 - move Foreman
* fixes #2801 - remove LOWER() in default_scope of models that could cause PG error
2013-07-24 Sam Kottler <[email protected]>
* Fixes #2826: only run set_code() on submit if the config template editor is already in diff mode
2013-07-24 Gavin McCance <[email protected]>
* fixes #2825 - Gravatar URL for email addresses with uppercases
2013-07-23 Tomas Strachota <[email protected]>
* fixes #2757 - show model validation errors in production.log
* Fixes #2817 - wrong param types in lookup keys API documentation
2013-07-22 Joseph Mitchell Magen <[email protected]>
* fixes #2812 - method lookup_values_attributes= not defined in Host
2013-07-22 Lukas Zapletal <[email protected]>
* fixes #2814 - fixing foreman-debug warning message
2013-07-22 Dominic Cleal <[email protected]>
* fixes #2684 - add foreman-rake script to /usr/sbin
2013-07-21 Dominic Cleal <[email protected]>
* fixes #2373 - only reference unattended subnet path when in unattended mode
2013-07-20 Dominic Cleal <[email protected]>
* fixes #2808 - pin nokogiri to 1.5.x for Ruby 1.8
2013-07-19 Joseph Mitchell Magen <[email protected]>
* fixes #2741 - remove unnecessary require statements
* fixes #2741 - Minitest refactoring
* fixes #2740 - copy code from lib/foreman.rb to initializers/foreman.rb
* fixes #2739 - add ActiveSupport
* fixes #2411 - move lib/audit_extensions lib/fog_extensions lib/foreman to models/concerns
* fixes #2411 - move files to /app/services
* fixes #2411 - move to controller/concerns
* fixes #2411 - move STI models in /models and /lib/foreman/models to sub-folders
* fixes #2411 - move files in /models to /concerns, /services, /mailers, /observers
* fixes #2411 - add autoload_paths in application.rb in preparation for file location changes
* fixes #2779 - permission problem with non-admin adding puppetclasses to hosts and hostgroups
2013-07-19 Lukas Zapletal <[email protected]>
* fixes #2795 - adding thread dump via -TTIN signal
2013-07-19 Sam Kottler <[email protected]>
* fixes #2797 - Submit the final code, not the diff in the config template editor
2013-07-18 Andy Bohne <[email protected]>
* fixes #1770 - Refactored rdeckfacts definition to use facts_hash
2013-07-18 Tomas Strachota <[email protected]>
* fixes #2803 - apipie docs, rabl definition matches conventions
2013-07-17 Joseph Mitchell Magen <[email protected]>
* fixes #2142 add Smart Parameters and Smart Class Parameters to API v2
* remove incorrect documentation in API v1 lookup_keys_controller
* fixes #2791 - ptable api was missing :layout and :os_family
2013-07-17 Dominic Cleal <[email protected]>
* refresh locales
2013-07-17 Michael Moll <[email protected]>
* minor correction after d47dfa9c35
2013-07-17 Amos Benari <[email protected]>
* fixes #2802 controller methods fail for name-spaced controllers
2013-07-17 Sam Kottler <[email protected]>
* Make the language in the LDAP auth edit more generic
2013-07-15 Joseph Mitchell Magen <[email protected]>
* fixes #2782 - LDAP password overwritten as blank
2013-07-14 Marek Hulan <[email protected]>
* Fixes #2780 - Enhance puppet classes assignment
2013-07-14 Amos Benari <[email protected]>
* fixes #2772 cloning locations and organizations is broken
2013-07-14 Joseph Mitchell Magen <[email protected]>
* fixes #2784 - missing </tr> causing verbose test output
2013-07-06 Dominic Cleal <[email protected]>
* fixes #2747 - scoped search lambda takes one argument
2013-07-05 Sam Kottler <[email protected]>
* Remove some unnecessary variables from the hostgroups functional test
2013-07-05 Nacho Barrientos <[email protected]>
* fixes #1963 - prevent host creation when facts are uploaded via new setting
2013-07-05 Daniel Lobato <[email protected]>
* fixes #2751 - Remote addr can support several load balancers
2013-07-03 Lukas Zapletal <[email protected]>
* fixes #2743 - adding foreman_api to non-scl comps
2013-07-02 Dominic Cleal <[email protected]>
* refresh locales
* i18n - adding gl language
2013-07-02 Joseph Mitchell Magen <[email protected]>
* fixes #2733 - typo Host group instead of Host Group
* fixes #2734 - wrong taxonomy scope on hostgroup and host form
* fixes #2732 - 404 error Location Not Found on Mismatches Report if a location is selected
2013-07-01 Amos Benari <[email protected]>
* fixes #2665 - search on click in dashboard pie chart
* fixes #2731 - add color legend to the dashboard
2013-07-01 Joseph Mitchell Magen <[email protected]>
* fixes #2707 - host save fails for non-admin if host has a BMC interface
* fixes #2713 - do not update nics table on every host update as a workaround to bug #2489
* fixes #2728 - POST /api/hostgroups does not accept ancestry
2013-07-01 Dominic Cleal <[email protected]>
* fixes #2727 - fix oVirt test connection method definition
2013-06-28 Amos Benari <[email protected]>
* part of a fix to #2716 error in discovery plugin menu and user without provisioning permissions the other part is a fix to the discovery plugin.
2013-06-28 Greg Sutcliffe <[email protected]>
* Fixes #2712 - Handle Net
2013-06-28 Joseph Mitchell Magen <[email protected]>
* fixes #2645 - non-admin users can now create smart variables
2013-06-28 Sam Kottler <[email protected]>
* fixes #2724 - use __method__ instead of static method names in SSO
2013-06-28 Marek Hulan <[email protected]>
* Fixes #2722 - Support for crossdomain auth
2013-06-26 Dmitri Dolguikh <[email protected]>
* fixes #2710 - removed a superfluous os name check that was tripping up safemode.
2013-06-25 Joseph Mitchell Magen <[email protected]>
* fixes #2317 - VM's with the name foreman_########