forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
6310 lines (4700 loc) · 261 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-04-16 Joseph Magen <jmagen@redhat.com>
* fixes #5172 - typo SETTINGS[:location_enabled] instead of :locations_enabled causes default location select box not to be visible
2014-04-16 Dominic Cleal <dcleal@redhat.com>
* fixes #5200 - set config group counters to zero by default
2014-04-14 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2014-04-14 Daniel Lobato <elobatocs@gmail.com>
* Fixes #5180 - in_taxonomy clears out Taxonomy.current
2014-04-14 Joseph Magen <jmagen@redhat.com>
* fixes #5141 - User unable to access children taxonomies on switcher
* fixes #5173 - sortable counters on list of config_groups for number of hosts, hostgroups and puppetclasses
* fixes #4204 - add config groups feature - assign multiple config groups to a host or hostgroup
2014-04-13 Joseph Magen <jmagen@redhat.com>
* fixes #5137 - audited :associated_with labels are 'N/A' for models that have a hyphen
* fixes #5083 - refactor host_edit.js - remove puppetclass specific functions to class_edit.js
* fixes #5105 - remove Setting['remove_classes_not_in_environment']
2014-04-13 Amos Benari <abenari@redhat.com>
* fixes #4122 and new charts design
2014-04-11 Sean Handley <sean.handley@gmail.com>
* fixes #5157 - allowed to suggest new IP on the new host form
2014-04-11 Daniel Lobato <elobatocs@gmail.com>
* fixes #3914 - set current taxonomies on login from user defaults
2014-04-10 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #4710, #2270 - Wait for VM to become ready before looking for IPs
2014-04-09 Dominic Cleal <dcleal@redhat.com>
* templates - sync from community-templates
* fixes #4895 - Adds CSRF protection check to the API if a session user is present
* i18n - extracting new, updating rails, pulling from tx
2014-04-09 Tomas Strachota <tstrachota@redhat.com>
* Fixes #4960 - undefined method when editing filter without a UI controller
2014-04-09 Lukas Zapletal <lzap+git@redhat.com>
* fixed #5120 - fixed migration for discovered hosts
2014-04-09 Rufus Post <rufuspost@gmail.com>
* fixes #2438 - Add image build capability to vsphere using templates
2014-04-09 Stephen Benjamin <stephen@bitbin.de>
* fixes #5113 - sort realms by host count
2014-04-08 Eric D. Helms <ericdhelms@gmail.com>
* Refs #2942: Added plugin rake task to extract translations
2014-04-08 Amos Benari <abenari@redhat.com>
* fixes #4806 add support to register compute resource provider from a plugin
2014-04-07 Michael Moll <kvedulv@kvedulv.de>
* fixes #4670: switch search to id on OS page
2014-04-07 Martin Milata <mmilata@srck.net>
* fixes #5090 - typo in bookmarks
2014-04-04 Ivan Nečas <inecas@redhat.com>
* fixes #5077 - refactor safemode rendering to allow helpers and variables from plugins
2014-04-04 Michael Moll <kvedulv@kvedulv.de>
* fixes #5072 - x86_86 -> amd64 for FreeBSD media
2014-04-04 Stephen Benjamin <stephen@bitbin.de>
* fixes #5053 - minor bug fixes to realm integration
2014-04-04 Dominic Cleal <dcleal@redhat.com>
* fixes #2929 - generate encryption key and encrypt data in postinstall
2014-04-04 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #4381: dns records are being update after changes to host when dhcp is also present
* refs #4851: replaced deprecated SmartProxy feature scope with SmartProxy.with_features scope
2014-04-04 Lukas Zapletal <lzap+git@redhat.com>
* fixes #5071 - foreman-tail stderr is muted
2014-04-04 Amos Benari <abenari@redhat.com>
* fixes #3592 lazy load vm with ajax in host show page.
2014-04-04 Martin Bačovský <mbacovsk@redhat.com>
* Fixes #4755 - use_cache in development
2014-04-03 Michael Moll <kvedulv@kvedulv.de>
* refs #4305 - add support for OracleLinux
2014-04-03 Joseph Magen <jmagen@redhat.com>
* fixes #4863 - API V2 - add puppetclasses format style=list and module_name to base.json.rabl
2014-04-03 Jan Pazdziora <jpazdziora@redhat.com>
* fixes #4462 - extending the /users/login handling to process REMOTE_USER through intercept
2014-04-02 Joseph Magen <jmagen@redhat.com>
* fixes #4995 - editing location with 'all users' checked fails on edit page in postgres
2014-04-02 Ivan Nečas <inecas@redhat.com>
* Fixes #4976 - ensure the process is really running inside a rake task
2014-04-02 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2014-04-02 Stephen Benjamin <stephen@bitbin.de>
* fixes #1809 - foreman realm integration
2014-04-01 Lukas Zapletal <lzap+git@redhat.com>
* fixes #1966 - improved UI errors for proxy
2014-04-01 marianitadn <maria.nita.dn@gmail.com>
* fixes #3946 Set host URLs from local settings file, if no Facter configuration exists. Add default values for settings example.
2014-04-01 Joseph Magen <jmagen@redhat.com>
* fixes #4712 - editing organization gives undefined method parent_taxonomy_selected_location_path
2014-03-31 Stephen Benjamin <stephen@bitbin.de>
* fixes #4673 - make default sort order descending on count columns
2014-03-31 Michael Moll <kvedulv@kvedulv.de>
* fixes #4691 - add search for hosts' managed status
* fixes #4800 SLES special handling in facts parser
2014-03-31 Lukas Zapletal <lzap+git@redhat.com>
* fixes #4659 - added foreman-tail tool
2014-03-31 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* Fixes #4851: a SmartProxy.with_features scope replaces feature-specific scopes generated during class loading
2014-03-31 Joseph Magen <jmagen@redhat.com>
* fixes #4731 - Rails 3.2.8 causing _pkey constraint errors
2014-03-31 Bryan Kearney <bkearney@redhat.com>
* Fixes #4927 - Extend foreman-debug to look for extensions provided by plugins.
2014-03-30 Dominic Cleal <dcleal@redhat.com>
* refs #2189 - update host group parameter search tests
* fixes #1804 - find hosts through nested hostgroups on puppet class search
2014-03-27 Anya Marshall <anya.elise.marshall@gmail.com>
* Fixes #4679 - Downcase fqdn to match Puppet SSL certs casing
2014-03-27 Bryan Kearney <bkearney@redhat.com>
* Fixes #4884 : remove duplicate slashes from the gravatar url
2014-03-26 Brad Buckingham <bbuckingham@redhat.com>
* fixes #4776 - support session[:expires_at] for api requests
2014-03-26 Dominic Cleal <dcleal@redhat.com>
* fixes #4794 - precompile filters.js and taxonomy_edit.js files
2014-03-25 Justin Sherrill <jsherril@redhat.com>
* fixes #4804 - sort organizations by title
2014-03-25 Lukas Zapletal <lzap+git@redhat.com>
* fixes #2954 - string extraction fixed on welcome page
2014-03-25 Daniel Lobato <elobatocs@gmail.com>
* fixes #3214 - set taxonomy for hosts created via Puppet from facts or a default setting
2014-03-25 Dominic Cleal <dcleal@redhat.com>
* fixes #4828 - pin rake for Ruby 1.8 compatibility
2014-03-24 Amos Benari <abenari@redhat.com>
* fixes #4733 lookup keys in puppet class form visual changes
* fixes #4555 add ca certificate to ovirt
2014-03-24 Dominic Cleal <dcleal@redhat.com>
* fixes #4457 - Session fixation, new session IDs are not generated on login (CVE-2014-0090)
2014-03-24 Joseph Magen <jmagen@redhat.com>
* fixes #4456 - XSS on 500 error page and bookmark name causing render error (CVE-2014-0089)
2014-03-21 Greg Sutcliffe <greg.sutcliffe@gmail.com>
* Fixes #4680 - Don't append periods to unqualified unmanaged hosts
2014-03-19 Stephen Benjamin <stephen@bitbin.de>
* fixes #4703 - reset_counters doesn't work for has_many :through relationships on rails 3.2.8
* fixes #4682 - smart variable for a puppet class not showing in UI
2014-03-18 Amos Benari <abenari@redhat.com>
* fixes #4138 orgs list when the number of orgs is huge
* fixes #4683 multi select filter and select/deselect all are not working
2014-03-18 Stephen Benjamin <stephen@bitbin.de>
* fixes #4639 - array in lookup_value incorrectly displayed in form
2014-03-17 Stephen Benjamin <stephen@bitbin.de>
* fixes #4669 - HostMailer summary method refers to undefined variable
* fixes #4256 - makes columns sortable in the UI
2014-03-17 Michael Moll <kvedulv@kvedulv.de>
* fixes #4664 - shorten OS description for SUSE
2014-03-17 Martin Bačovský <mbacovsk@redhat.com>
* Fixes #4515 - Add support for dynamic bindings
2014-03-17 Ivan Nečas <inecas@redhat.com>
* Fixes #3988 - use require instead of autoload_once_paths
2014-03-14 Joseph Magen <jmagen@redhat.com>
* fixes #4617 - add feature to change parent of location or organization
* fixes #4605 - users should not be able to de-select disabled items in multi-select widget
2014-03-14 Amos Benari <abenari@redhat.com>
* fixes #4607 error when running test from ide
2014-03-13 Dominic Cleal <dcleal@redhat.com>
* fixes #4314 - ignore default scope ordering on host search by puppet class
2014-03-13 Stephen Benjamin <stephen@bitbin.de>
* fixes #4643 - Retrieving Optional LDAP attributes fails on 1.8.7
2014-03-12 Dominic Cleal <dcleal@redhat.com>
* fixes #4626 - update Facter calls for 2.0 compatibility
2014-03-12 Jason Montleon <jmontleo@redhat.com>
* Fixes #4465: remove pretrans section of foreman.spec
2014-03-12 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #4616 - Add a Fog mixin for looking up EC2 IP addresses
2014-03-12 Alissa Bonas <abonas@redhat.com>
* refs #4167 - Added inline info regarding root password length policy
2014-03-12 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #4557: namespaced and mounted plugins no longer cause crash on the filter screen
2014-03-12 Tomas Strachota <tstrachota@redhat.com>
* Fixes #4486 - organization not searchable by name
2014-03-12 Ohad Levy <ohadlevy@gmail.com>
* fixes #4637 - remove search by label from all ancestry objects besides hostgroups
2014-03-11 Dominic Cleal <dcleal@redhat.com>
* fixes #4123 - libvirt imaging support using backing volumes
2014-03-11 Ohad Levy <ohadlevy@gmail.com>
* fixes #4625 - ensures alerts can have close opt disabled
2014-03-11 Stephen Benjamin <stephen@bitbin.de>
* fixes #3827 - adds ldap avatar support
2014-03-11 Jan Pazdziora <jpazdziora@redhat.com>
* fixes #3475 - make it possible to force the 401 status.
2014-03-11 Lukas Zapletal <lzap+git@redhat.com>
* fixes #4565 - puppet class free-text search is now significantly faster
2014-03-07 Greg Petras <greg.petras@nwea.org>
* fixes #4581 Implement available_networks API for VMware
2014-03-07 James Jenkins <James@nostrand.local>
* fixes #4485 prevents undefined method when cloning a host
2014-03-07 Stephan Dollberg <stephan.dollberg@gmail.com>
* fixes #3221 - add missing attributes to hostgroup show response
2014-03-07 Andy Bohne <bohne.andrew@pennmutual.com>
* fixes #4583 - Added Environment name to rundeck output
2014-03-07 Tom McKay <thomasmckay@redhat.com>
* fixes #4194, #4459 - add main_app to root_path references for isolated engines
2014-03-07 Jan Pazdziora <jpazdziora@redhat.com>
* fixes #4442 - returning nil plays nice with try_to_login.
2014-03-07 Martin Matuska <martin@matuska.org>
* fixes #3996 Support to assign both cores and CPUs to VMWare guests
2014-03-07 Alissa Bonas <abonas@redhat.com>
* fixes #4290 add validation for user group max name length of 255
2014-03-06 Marek Hulan <mhulan@redhat.com>
* Fixes #4537 - user can set empty roles array via API
* Fixes #4553 - miscellaneous filters editing
2014-03-06 Martin Ducar <martin.ducar@gooddata.com>
* fixes #4524 - The logged in user should be the default one in create new hosts
2014-03-06 Joseph Magen <jmagen@redhat.com>
* fixes #4201 - update operating system by label, use description or fallname otherwise
2014-03-06 Josh Baird <jbaird@follett.com>
* fixes #3163 - add link to first use instructions
2014-03-04 Daniel Lobato <elobatocs@gmail.com>
* fixes #3001 - Facts searchable by both host id and name
2014-03-04 Marek Hulan <mhulan@redhat.com>
* Fixes #4353 - plugins don't create permissions until DB is migrated
* Fixes #4536 - store fix_db_cache setting values correctly as YAML
2014-03-04 Stephan Dollberg <stephan.dollberg@gmail.com>
* fixes #4539 - changed os minor attribute to not required
2014-03-04 Josh Baird <jbaird@follett.com>
* fixes #3767 - add new host to hosts menu
2014-03-04 Jason Montleon <jmontleo@redhat.com>
* fixes #4245 - return HTTP body for oVirt SSL CA certificate
2014-03-04 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #4226: add a Rake task for plugins that compiles their assets into core assets pipeline
2014-03-03 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2014-03-03 Marek Hulan <mhulan@redhat.com>
* fixes #812 - new permissions model, user group role and nest support, role filters for better granularity
2014-02-25 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #4441 - Overriden link_to method should be public, not protected
2014-02-24 Joseph Magen <jmagen@redhat.com>
* fixes #4393 - rename ancestry label to title
2014-02-24 Neil Miao <nmiao@redhat.com>
* fixes #4423 - allow puppet classes to be imported by environment
2014-02-24 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3751 - new/edit submit buttons now have id
2014-02-24 Jimmi Dyson <jimmi.dyson@specsavers.com>
* fixes #4015 - support oVirt using templates like images
2014-02-21 Joseph Magen <jmagen@redhat.com>
* fixes #3876 - API find_resource by name even if name starts with integer
* fixes #4349 - API v2 - add location and organization child nodes to user, domain, subnet, etc show json templates
* fixes #4198 - API v2 - add child nodes to show responses. Ex. architecture should show operating systems node
2014-02-19 Joseph Magen <jmagen@redhat.com>
* fixes #4388 - upgrade to Rails 3.2.17
* fixes #3912 - add inheritance for locations / organizations
2014-02-19 James Netherton <james.netherton@specsavers.com>
* fixes #4222 Add capability to compute resource API to retrieve cluster,network,storage info on oVirt
2014-02-19 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #2270 - Detect all OpenStack IPs and test which allows SSH
2014-02-18 jan kaufman <jan.kaufman@gooddata.com>
* fixes #4125 [Openstack] - host with auto assigned IPs can't be deleted
2014-02-18 Amos Benari <abenari@redhat.com>
* fixes #3567 Editing an oVirt compute resource can throw errors loading quotas while loading page
2014-02-18 Stephen Benjamin <stephen@bitbin.de>
* fixes #3307 - add troubleshooting to console page
2014-02-18 Joseph Magen <jmagen@redhat.com>
* fixes #4333 - added multi-select-rails gem
2014-02-17 Joseph Magen <jmagen@redhat.com>
* fixes #3939 - add option to 'inherit from parent' for hostgroup attributes
2014-02-17 Dominic Cleal <dcleal@redhat.com>
* fixes #4268 - don't search for host with nil IP on hostname spoofing
2014-02-14 Sam Kottler <shk@redhat.com>
* Fixes #4221: add :dependent => :destroy for compute profiles on compute resource
2014-02-14 Joseph Magen <jmagen@redhat.com>
* refs #4289 - tests for adding, deleting and updating lookup_values on host
2014-02-14 Stephen Benjamin <stephen@bitbin.de>
* fixes #3845 - user login session ending clears chosen organization
2014-02-14 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3903 - fixed menu links when relative URLs are set
2014-02-14 Neil Miao <nmiao@redhat.com>
* fixes #3596 - validation error when user with hostgroup subscription creates a new hostgroup
2014-02-14 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #4197: Adds 'plugins' directory to /var/log/foreman, /etc/foreman, and /usr/share/foreman to allow plugins to install their own log, config and other files.
2014-02-14 Martin Matuska <martin@matuska.org>
* fixes #4159 Thin provisioning for VMware disks in compute profiles can't be saved
* fixes #4307 New VMware VM creation does not respect NIC type selection
* fixes #3496 vSphere: add support for selectable SCSI controller
2014-02-13 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #4341: Adds a new organization taxonomy that is labeled empty.
2014-02-13 Joseph Magen <joseph@isratrade.co.il>
* fixes #3980 - Compute profiles not rendering Openstack attributes correctly
2014-02-11 lphiri <lphiri@redhat.com>
* Add header menu navigation
2014-02-10 Martin Matuska <martin@matuska.org>
* Fixes #4276 display provisioned space in vSphere datastore selection
2014-02-10 Daniel Lobato <elobatocs@gmail.com>
* fixes #3519 - taxonomies include authorization module
2014-02-10 Stephen Benjamin <stephen@bitbin.de>
* fixes #4298 - ldap auth should accept parens in firstname or surname
2014-02-10 karl-ravn <karl.ravn@deltaprojects.se>
* fixes #4304 - corrected strange search for host_id parameter
2014-02-07 Stephen Benjamin <stephen@bitbin.de>
* fixes #2726 - smart class parameter override fails validation
2014-02-06 Stephen Benjamin <stephen@bitbin.de>
* fixes #4234 - cannot edit host's puppet parameters
2014-02-05 Daniel Lobato <elobatocs@gmail.com>
* fixes #4270 - setting descriptions updated for consistency
2014-02-05 Amos Benari <abenari@redhat.com>
* fixes #4220 dashboard and report-show pages chart-frame is not in place.
2014-02-05 Stephen Benjamin <stephen@bitbin.de>
* fixes #3725, #4167 - root password validations, remove default password
2014-02-05 Robert Birnie <rbirnie@gmail.com>
* refs #2314 - more choices in memory drop down
2014-02-05 Sam Kottler <shk@redhat.com>
* refs #2816: Prevent diff viewer on report page from overflowing to be outside the parent modal
2014-02-05 Joseph Magen <jmagen@redhat.com>
* fixes #3999 - refactor DRY implementation of "nested label" for objects with ancestry
2014-01-29 Dominic Cleal <dcleal@redhat.com>
* templates - sync from community-templates
2014-01-28 Michael Moll <kvedulv@kvedulv.de>
* fixes #4173 - don't update CR attrs when none available, taken from GH-1184
2014-01-28 Lukas Zapletal <lzap+git@redhat.com>
* fixes #4200 - fixed sosreport integration
2014-01-28 Daniel Lobato <elobatocs@gmail.com>
* fixes #4120 - fix border-collapse:collapse tables in Firefox with disappearing lines
2014-01-27 Martin Matuska <martin@matuska.org>
* Fixes #4196 "Power ON this machine" disappeared for new VMWare hosts
2014-01-27 Joseph Magen <jmagen@redhat.com>
* fixes #3553 - add "except" option to prevent puppet class import to select types of import
* fixes #4188 - api/v2/status incorrectly shows api_version: 1
* fixes #2866 - Changing a hostgroup name doesn't update associated Smart Variable matchers
2014-01-27 Lukas Zapletal <lzap+git@redhat.com>
* fixes #4178 - updating i18n extracting rake task and makefile
2014-01-27 Dominic Cleal <dcleal@redhat.com>
* fixes #4005 - ensure standalone Rabl.render works outside of a controller
2014-01-27 Amos Benari <abenari@redhat.com>
* fixes #4189 - Facts charts are not rendered
2014-01-27 Stephen Hoekstra <stephenhoekstra@gmail.com>
* fixes #4186 - db:seed fails when install media exists with same URL
2014-01-27 Daniel Lobato <elobatocs@gmail.com>
* fixes #3960 - wrap APIv2 errors in an "error" node
2014-01-22 Dominic Cleal <dcleal@redhat.com>
* refs #3697, #3701 - fix test with multiple validation failures
2014-01-22 Stephen Benjamin <stephen@bitbin.de>
* fixes #3697, #3701 - more comprehensive field validations
2014-01-22 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #4032 - Use object.id for comparisons
2014-01-22 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #4161: plugin ActiveRecord models that do no define 'name' method no longer throw NoMethodError when to_s is called
* fixes #3931: rbvmomi gem has been pinned to ~> 1.6.0
2014-01-21 Brad Buckingham <bbuckingham@redhat.com>
* fixes #4152 - fix syntax error in _form.html.erb for hosts and hostgroups
2014-01-21 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3955 - added param_true? and snippet_if_exist template methods
* fixes #4115 - added missing LICENSE file
2014-01-21 Jason Montleon <jmontleo@redhat.com>
* fixes #3909 - add disassociate and bulk action disassociate to interface
2014-01-21 Joseph Magen <joseph@isratrade.co.il>
* fixes #3828 - set language locale for API messages and error responses
* fixes #3925 - create apipie param_groups for API v2 to DRY documentation
2014-01-21 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #3826: no more sql errors when trying to search for environments (also domains, operatingsystems, and models)
2014-01-21 Daniel Lobato <elobatocs@gmail.com>
* fixes #3920 - prevent 500 ScopedSearch errors on the API, raise UI errors correctly
* fixes #359 - hostname spoofing for unattended installation templates
2014-01-20 Joseph Magen <joseph@isratrade.co.il>
* fixes #3760 - API v2 define metadata @total for each controller
* fixes #4023 - API v2 - compute resources partials should should attribute alias names and not database column names
* fixes #3998 - API v2 error on /api/compute_resources, missing gce.json.rabl
* fixes #4132 - helper select_f missing option for :multiple => true to increase width
* fixes #3867 - Wrong Compute Resource type shown on overview
2014-01-20 Lukas Zapletal <lzap+git@redhat.com>
* fixes #4139 - fixed quiet flag in foreman-debug
2014-01-17 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3940 - extlogout page layout fixed
* fixes #3983 - added trends:clean to cron
2014-01-17 Dominic Cleal <dcleal@redhat.com>
* Bump copyright, remove spurious file
2014-01-17 Daniel Lobato <elobatocs@gmail.com>
* fixes #2231 - hostgroup deletion is restricted to hostgroups without children
* fixes #3515 - API handles not found objects with 404
2014-01-17 Ewoud Kohl van Wijngaarden <e.kohlvanwijngaarden@oxilion.nl>
* Fixes #4022: Make api puppetrun a PUT for REST standards
2014-01-16 Dominic Cleal <dcleal@redhat.com>
* Bump version to 1.5-develop
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
2014-01-16 David Davis <daviddavis@redhat.com>
* fixes #3992 - Removing unused coffeescript gem
2014-01-16 Marek Hulan <mhulan@redhat.com>
* Fixes #4031 - change TFTP record on build flag change
2014-01-16 Sam Kottler <shk@redhat.com>
* fixes #4001: remove unused comps
* Fixes #4024: Virtual machine state indicator is not correctly positioned for rackspace CR's
2014-01-16 Amos Benari <abenari@redhat.com>
* fixes #4019 Compute Resource -> New Image renders on Compute Profiles tab
2014-01-16 Greg Sutcliffe <gsutclif@redhat.com>
* 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 <joseph@isratrade.co.il>
* fixes #4021 - upgrade to Rails 3.2.16
2014-01-16 Frank Wall <fw@moov.de>
* fixes #3906 - Support for Junos ZTP
2014-01-15 Ohad Levy <ohadlevy@gmail.com>
* fixes #3099 - Adding parameters to locations and organizations
2014-01-15 Joseph Magen <joseph@isratrade.co.il>
* fixes #3937 - correct title wording Editing to Edit
2014-01-15 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3927 - Allow VMs to provision via user-data
2014-01-15 Walden Raines <walden@redhat.com>
* fixes #3984 - use __ instead of _ for i18n to avoid conflict with underscore.js
2014-01-14 Ohad Levy <ohadlevy@gmail.com>
* refs #3811 alerts messages cleanup and minor refactoring
2014-01-14 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3973 - foreman-debug can now upload tarballs
2014-01-14 Joseph Magen <joseph@isratrade.co.il>
* fixes #3911 - jquery.multi-select.js should disable selected ids that are passed to :disabled =>
2014-01-12 Marek Hulan <mhulan@redhat.com>
* Fixes wrong os family caused by 'becomes' refs #3962
2014-01-11 Joseph Magen <joseph@isratrade.co.il>
* fixes #3975 - add audit to classes Domain, Subnet, SmartProxy, Role, Usergroup, AuthSource, Image, Bookmark that were not audited
2014-01-11 Lukas Zapletal <lzap+git@redhat.com>
* fixes #2613 - foreman-debug tarball directories stripped
* fixes #3958 - added more logs reported with foreman-debug
2014-01-11 Ohad Levy <ohadlevy@gmail.com>
* fixes #3709 - explicitly say puppet environments vs just 'environments'
2014-01-10 Dominic Cleal <dcleal@redhat.com>
* fixes #3989 - add BR and explicit dependency on Ruby binary, for ruby193-ruby-wrapper
2014-01-09 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
* i18n - add sv_SE language
2014-01-09 Marek Hulan <mhulan@redhat.com>
* Fixes #3962 - Refactor class overwriting
2014-01-09 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3967 - reworded message for OpenStack form
2014-01-09 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3974 - Drop leftover Api
2014-01-09 Joseph Magen <joseph@isratrade.co.il>
* fixes #3178 - add feature for compute profiles for hostgroups and hosts
2014-01-07 Amos Benari <abenari@redhat.com>
* fixes #3821 Plugin menus are lost after page refresh in development
2014-01-07 Sam Kottler <shk@redhat.com>
* Fixes #3945: pin fog to 1.19.x to fix VMware provisioning bug
2014-01-07 Jan Pazdziora <jpazdziora@redhat.com>
* fixes #3528 - Populate first name, last name, and email, if available.
2014-01-07 Romain Vrignaud <rvrignaud@gmail.com>
* fixes #3658 - support smart proxy's chef proxy feature
2014-01-06 Sam Kottler <shk@redhat.com>
* fixes #3261 - use the action the host is about to perform for power action notifications
2014-01-06 Joseph Magen <joseph@isratrade.co.il>
* fixes #3937 - correct title wording for Compute Resources and Smart Proxies
2014-01-03 Walden Raines <walden@redhat.com>
* fixes #3942 - restoring multiple="true" in org edit form
2014-01-03 Ruediger Mueck <ruediger.mueck@gmail.com>
* fixes #1489 - add AIX family and facts importer support
2014-01-01 Ohad Levy <ohadlevy@redhat.com>
* refs #3935 - fixes hash style to support ruby 1.87
2014-01-01 Amos Benari <abenari@redhat.com>
* fixes #3935 new login page RCUE style
2013-12-31 Jimmi Dyson <jimmi.dyson@specsavers.com>
* fixes #3896 Retrieve OVirt CA certificate via same URL scheme as API URL by disabling SSL verification
2013-12-31 Amos Benari <abenari@redhat.com>
* refs #3811 - additional bootstrap 3 updates/fixes
2013-12-31 Robert Birnie <rbirnie@gmail.com>
* fixes #3932 incorrect volume delete label
2013-12-30 Ohad Levy <ohadlevy@gmail.com>
* 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 <thomasmckay@redhat.com>
* fixes #3853 - allow rabl template override to be specified
2013-12-30 Joseph Magen <joseph@isratrade.co.il>
* 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 <abenari@redhat.com>
* 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 <dcleal@redhat.com>
* refs #3811 - foreman.spec: change twitter-bootstrap-rails to bootstrap-sass
2013-12-29 Amos Benari <abenari@redhat.com>
* fixes #3811 - merge with new layout
2013-12-29 Walden Raines <walden@redhat.com>
* Fixes #3811 updating to bootstrap 3
2013-12-25 Dominic Cleal <dcleal@redhat.com>
* 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 <abenari@redhat.com>
* Merge branch 'fixes-3872' of git://github.com/ehelms/foreman into ehelms-fixes-3872
2013-12-18 Eric D. Helms <ericdhelms@gmail.com>
* Fixes 3872: Provides a better customizable application layout that conforms to HTML5 best practices.
2013-12-18 Martin Bačovský <mbacovsk@redhat.com>
* fixed #3905 - wrong route in apidoc for reports delete (API v2)
2013-12-18 Lukas Zapletal <lzap+git@redhat.com>
* fixes #2374 - added allocation option to libvirt VM
2013-12-18 Daniel Lobato <elobatocs@gmail.com>
* fixes #3280 - authenticate returns true for API requests when login:false
2013-12-18 Michael Moll <kvedulv@kvedulv.de>
* 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 <mhulan@redhat.com>
* fixes #3339 - nested fact support, allow fact importers to be registered by plugins
2013-12-16 Joseph Magen <joseph@isratrade.co.il>
* 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 <dcleal@redhat.com>
* 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 <shk@redhat.com>
* Fixes #3881: pin locale to 2.0.9 or lower
2013-12-13 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3721 - Map OS family to a display variant
* Fixes #3720 - Add description field to operatingsystem
2013-12-12 dima <pronix.service@gmail.com>
* refs #3067 - domain stripped from installation media hostname for Solaris
2013-12-12 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3539 - removed legacy mysql adapter
2013-12-12 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #3753 - always use main_app to determine paths for running an isolated namespace plugin
2013-12-12 Amos Benari <abenari@redhat.com>
* fixes #3790 - Added support for isolated engine to foreman menu
2013-12-11 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #3838: Adds ability to define a divider when declaring a menu item from a plugin.
2013-12-11 Dominic Cleal <dcleal@redhat.com>
* fixes #3855 - pin ruby-libvirt to 0.4 for Ruby 1.8 workaround
2013-12-09 Joseph Magen <joseph@isratrade.co.il>
* fixes #3491 - API v2 rabl templates base, main, show for each controller
2013-12-09 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2013-12-09 Lukas Zapletal <lzap+git@redhat.com>
* fixes #2600 - fixed gettext extraction on vms forms
2013-12-09 odgrim <odgrim.post@gmail.com>
* fixes #3832 - foreman supplies user for GCE images, fog expects username
2013-12-05 Eric D. Helms <ericdhelms@gmail.com>
* fixes #3820 - adds exception output to menu item authorization check
2013-12-05 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3822 - updated Rackspace datacenter list
2013-12-05 Joseph Magen <joseph@isratrade.co.il>
* 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 <dcleal@redhat.com>
* fixes #3794 - don't validate IP address that's later provided by a CR
2013-12-02 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3769 - added foreman-rake and debug man pages
2013-11-28 Nils Domrose <github@domrose.net>
* fixes #2572 - FreeBSD unattended installation support via mfsbsd
2013-11-28 Stephen Benjamin <stephen@bitbin.de>
* fixes #3776 - change NAME_MAP to be a method
2013-11-28 Joseph Magen <joseph@isratrade.co.il>
* fixes #3020 - API v2 - option to specify version in URL as well as in header
2013-11-28 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3777 - typo in Settings cleanup message
2013-11-28 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #3772: a block is now optional when defining sub menus from foreman plugins
2013-11-27 Joseph Magen <joseph@isratrade.co.il>
* 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 <dmitri@appliedlogic.ca>
* fixes #3762: menu urls defined using hashes should prefix controller name with a '/' (use absolute controller names)
2013-11-26 Joseph Magen <joseph@isratrade.co.il>
* fixes #3018 - API v2 metadata for pagination, search, order in index collection json response
2013-11-25 Joseph Mitchell Magen <jmagen@redhat.com>
* fixes #3011 - default root node name for api collections json response to :results but make it configurable
2013-11-25 Povilas Daukintis <povilas@daukintis.lt>
* fixes #3737 - added PXEGrub specific PXE localboot template
2013-11-25 Ohad Levy <ohadlevy@gmail.com>
* refs #3510 - ensure rescue statement works
2013-11-25 Lukas Zapletal <lzap+git@redhat.com>
* 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 <dcleal@redhat.com>
* 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 <komidore64@gmail.com>
* routes - small script to strip out the whitespace from 'rake routes'
2013-11-22 Tom McKay <thomasmckay@redhat.com>
* fixes #3673 - auditing added to ptable w/ test
2013-11-22 Martin Matuska <martin@matuska.org>
* fixes #3683 - display free and available space in vSphere datastore selection
2013-11-22 Amos Benari <abenari@redhat.com>
* fixes #3510 - plugin interface for registering a plugin, updated menu system
2013-11-22 Lukas Zapletal <lzap+git@redhat.com>
* fixes #2763 - correcting doco links
2013-11-21 Dominic Cleal <dcleal@redhat.com>
* fixes #3712 - change develop versioning scheme to indicate next version
2013-11-20 Dominic Cleal <dcleal@redhat.com>
* fixes #2680 - ensure RbVmomi
* fixes #3659 - use URL host for hostname, not URL itself
2013-11-20 odgrim <odgrim.post@gmail.com>
* fixes #3698 - add image_id alias to server resource as form uses it
2013-11-20 Stephen Benjamin <stephen@bitbin.de>
* 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 <bkearney@redhat.com>
* fixes #3672: Add in the zanata.xml file for pushing strings to zanata.
2013-11-19 Brad Buckingham <bbuckingham@redhat.com>
* fixes #3669 - migration: minimize amount of User model exposed to migration
2013-11-19 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3468 - Move token expiry to scope to avoid FK issues
2013-11-18 Sam Kottler <shk@redhat.com>
* Fix #3682: pin rabl to be less than or equal to 0.9.0
2013-11-15 Beat Gätzi <beat@chruetertee.ch>
* fixes #3645 - fix total value in summary mail subject
2013-11-14 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #3603 - replaced a relation with a collection in 'where' conditions
2013-11-14 Greg Sutcliffe <gsutclif@redhat.com>
* fixes #3268, #2783 - Update prod2dev to handle fkeys in psql
2013-11-13 Stephen Benjamin <stephen@bitbin.de>
* fixes #3107 - enable sorting of hostgroups by label, sort by default
2013-11-13 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* 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 <lzap+git@redhat.com>
* fixes #3637 - refactor exception rake task
2013-11-13 Joseph Magen <joseph@isratrade.co.il>
* fixes #3017 - split APIv2 controllers from v1 parents
2013-11-13 Sam Kottler <shk@redhat.com>
* fixes #3626 - add unf to the bundler configuration for proper encoding for fog
2013-11-12 Jan Pazdziora <jpazdziora@redhat.com>
* fixes #3312 - support /users/extlogin as a login page based on REMOTE_USER
2013-11-12 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2013-11-11 Dominic Cleal <dcleal@redhat.com>
* fixes #3050 - add foreman-gce subpackage
2013-11-08 Dominic Cleal <dcleal@redhat.com>
* refs #3569 - fix URL validation test error on merge
2013-11-08 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3569, #3210 - Use port from foreman_url for templates
2013-11-07 Ohad Levy <ohadlevy@gmail.com>
* fixes #3587, #2855 - print an error on invalid json vs 500 error
2013-11-06 David Davis <daviddavis@redhat.com>
* Adding more files (log, reports) to gitignore
* fixes #3597 - removing rr gem, make tests consistent by using just mocha
2013-11-05 Andreas Ntaflos <daff@pseudoterminal.org>
* fixes #3581 - link to reports search for failed hosts should use "host = foo.example"
2013-11-05 Ohad Levy <ohadlevy@gmail.com>
* 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 <pchalupa@redhat.com>
* fixes #3577 - do not treat `params[:dryrun]` with value `false` as true
2013-11-04 Amos Benari <abenari@redhat.com>
* Merge branch '959' into develop
* fixes #3338 - grey out VM form when editing is not supported
2013-11-04 Dolf Schimmel (Freeaqingme) <dolf@dolfschimmel.nl>
* fixes #3568 - adding Facter gem to bundler config
2013-11-01 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #3196 - Switch tokens to default to on
* Fixes #3182 - Make IP optional in some circumstances
2013-10-31 David Davis <daviddavis@redhat.com>
* Tweaks to gitignore
2013-10-31 Martin Bačovský <mbacovsk@redhat.com>
* fixes #2951 - Host API documentation lacks compute_resource_id
2013-10-31 Dominic Cleal <dcleal@redhat.com>
* fixes #3550 - correct HTTP method for puppet class import API
2013-10-30 Ohad Levy <ohadlevy@gmail.com>
* fixes #3205 - Extract and refactor report importing logic
2013-10-29 Ohad Levy <ohadlevy@gmail.com>
* fixes #1830 - auto assign puppet proxy if its not defined upon facts/reports event
2013-10-29 Petr Chalupa <pchalupa@redhat.com>
* fixes #3538 - workaround for broken #pluck on lower Rails versions
2013-10-29 Martin Bačovský <mbacovsk@redhat.com>
* Fixes #3495 - foreman-cli meta-package should install hammer
2013-10-25 Joseph Magen <joseph@isratrade.co.il>
* fixes #3498 - update to Rails 3.2.15
2013-10-25 Ohad Levy <ohadlevy@gmail.com>
* fixes #3486 - Make sure loading text is removed when chart data appears.
2013-10-24 Aaron Stone <aaron@serendipity.cx>
* 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 <jan.orel@gooddata.com>
* fixes #3256 - include members in usergroup show
2013-10-24 Lukas Zapletal <lzap+git@redhat.com>
* refs #2792 - Adding comments to pxe templates
2013-10-24 Joseph Magen <joseph@isratrade.co.il>
* fixes #3267 - API v1 compatibility for /api/hosts
* fixes #3140 continue - apipie params fix
2013-10-24 Marek Hulan <mhulan@redhat.com>
* Fixes #3350 - Adds title on login page
2013-10-24 Amos Benari <abenari@redhat.com>
* fixes #3279 roles edit page is long and missing a filter
2013-10-24 Ohad Levy <ohadlevy@gmail.com>
* refs #2967 fact deleted counters did not propagate correctly.
* [REFACTOR] fixes #2967 - refactored Fact Importer
2013-10-24 Martin Matuska <martin@matuska.org>
* fixes #3364 Add option to disable automatc host creation when a report is received
2013-10-22 Ohad Levy <ohadlevy@gmail.com>
* fixes #3266 - ensures there are no duplicate notifications
2013-10-22 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3138 - move CR library loading into initializers, only show available providers
2013-10-21 Joseph Magen <joseph@isratrade.co.il>
* fixes #3140 - API to allow importing of puppet classes
2013-10-21 Amos Benari <abenari@redhat.com>
* fixes #3274 moved config template to the new two-pane and add full screen editing
2013-10-21 Ohad Levy <ohadlevy@gmail.com>
* Changed the on content load direct method call to event
2013-10-18 Dominic Cleal <dcleal@redhat.com>
* 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 <gsutclif@redhat.com>
* Fixes #3293 add FactoryGirl to tests
2013-10-18 Lukas Zapletal <lzap+git@redhat.com>
* fixes #3239 - pxelinux spoofing on postgres now works
2013-10-18 Tomas Strachota <tstrachota@redhat.com>
* fixes #2818 - validation of OS families in ptables
2013-10-17 Dominic Cleal <dcleal@redhat.com>
* rake console
2013-10-17 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* Fixes #3122: 'column reference id is ambiguous' no longer appears on dashboard and report screens
2013-10-16 hhenkel <henning@henkel.cx>
* fixes #3277 - host search link now quotes taxonomy name
2013-10-16 Martin Matuska <martin@matuska.org>
* fixes #2093 - list VMs in every VMware folder