forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
5133 lines (3888 loc) · 214 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
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_########
2013-06-25 Dominic Cleal <[email protected]>
* fixes #2701 - require correct minitest file
2013-06-24 Joseph Mitchell Magen <[email protected]>
* fixes #2404 - prevents 404 when updating invalid name used as id
* fixes #2690 - undefined method gsub! for nil:NilClass on fact import
* fixes #2697 again - HostMailer typo and .deliver
2013-06-24 Dmitri Dolguikh <[email protected]>
* fixes #2695: Updated fedora and ubuntu mirror urls
2013-06-23 Joseph Mitchell Magen <[email protected]>
* fixes #2697 - HostMailer summary is broken (cherry picked from commit 8e851ef524a3348c1587e53e3c2da616fdbe1fdc)
2013-06-21 Greg Sutcliffe <[email protected]>
* Fixes #2655 - Display Host buttons on unmanaged hosts if a puppet proxy exists
2013-06-20 Dominic Cleal <[email protected]>
* fixes #2686 - use setting model's string parser to update values (cherry picked from commit 5d9073bba52b502b08b8b67b7f546eb4d481e5c1)
2013-06-20 Joseph Mitchell Magen <[email protected]>
* fixes #2489 - fixes BMC password caused by rails bug accepts_nested_attributes_for and serialized child field
* fixes #2484 - host, hostgroup, and BMC passwords were overwritten as blank
2013-06-20 Ivan Necas <[email protected]>
* fixes #2685 incorrect and inefficient regexp checking medium name format
2013-06-19 Amos Benari <[email protected]>
* fixes #2679 pie get error when the label is too long
* fixes #2669 username first name and last name doesn't accept i18n characters
* fixes #2639 After creating user with empty e-mail it becomes impossible to add it.
* fixes #2656 error connecting to vsphere after upgrade to ruby 1.9.3
2013-06-19 Dmitri Dolguikh <[email protected]>
* fixes #2610 - fixed the boot device order for oVirt VMs created in Foreman
2013-06-19 Greg Sutcliffe <[email protected]>
* Fixes #2674 - Add tmpdfiles.d configuration for systemd to rpm spec
2013-06-19 Dominic Cleal <[email protected]>
* fixes #2612 - move Task into Orchestration namespace due to RbVmomi conflict
2013-06-18 Amos Benari <[email protected]>
* fixes #2646 Asset icon URLs are incorrect when under a different base URL
2013-06-18 Lukas Zapletal <[email protected]>
* helper script to show dependencies nicely
2013-06-17 Dominic Cleal <[email protected]>
* fixes #2670 - fix apostrophe quoting issue (cherry picked from commit 4298bd841c3fb2b3f639f06d4cbbb3901f56ec06)
* refs #2650 - fix minitest version
* fixes #2649 - asset dependency versions, missing test dependencies
2013-06-17 Lukas Zapletal <[email protected]>
* fixes #2650 - adding minitest dependency for console
* fixes #2649 - adding missing devel deps
2013-06-17 Greg Sutcliffe <[email protected]>
* Fixes #2667 - Don't save during process_hostgroup
2013-06-14 Dmitri Dolguikh <[email protected]>
* fixes #2583 - error message is now properly i18n-ed
2013-06-14 Amos Benari <[email protected]>
* fixes #2663 javascript errors on the host form
2013-06-14 Marek Hulan <[email protected]>
* Fixes #2640 - use relative user logout path
2013-06-13 Marek Hulan <[email protected]>
* Fixes #2619 - don't display full output from proxy
2013-06-13 Greg Sutcliffe <[email protected]>
* Fixes #2657 - Use twitter-bootstrap-rails version 2.2.6
2013-06-12 Lukas Zapletal <[email protected]>
* fixes #2564, #2658 - apipie requirement bumped
2013-06-12 Joseph Mitchell Magen <[email protected]>
* fixes #2334 - location matcher doesn't match on smart parameters
2013-06-12 Tomas Strachota <[email protected]>
* fixes #2660 - settings, improve tests and fixes
* fixes #2343 - override default settings with custom values
2013-06-12 Greg Sutcliffe <[email protected]>
* Fixes #2644 - Refactor Host find_by_name to use several ways to find a host, and refactor my_hosts scope to Host
* Fixes #2643 - Check for operatingsystem before orchestrating TFTP
* Fixes #2642 - Display build button if host type has changed
* Fixes #2641 - Add type_changed check to JS to allow form to refresh when provisioning a discovered host
2013-06-11 Amos Benari <[email protected]>
* fixes #2636 host submit missing progress-bar when installed at sub-domain
2013-06-11 Dmitri Dolguikh <[email protected]>
* fixes #2596 - bumping up gettext-i18n-rails gem version to 0.10.0
2013-06-11 Dominic Cleal <[email protected]>
* fixes #2633 - enable generate_token rake task to run from elsewhere
2013-06-10 Antony Perigault <[email protected]>
* Use facts[:operatingsystemrelease] to determined gentoo release
2013-06-10 Lukas Zapletal <[email protected]>
* fixes #2622 - error messages with HTML properly escaped
2013-06-10 Amos Benari <[email protected]>
* fixes #1938 Foreman shouldn't use the FQDN fact to identify the node when facts are uploaded
2013-06-07 Marek Hulan <[email protected]>
* Fixes #2632 - extract strings from validation errors
* fixes #2630 - restrict assignment of roles to those a user has (CVE-2013-2113)
2013-06-07 Joseph Mitchell Magen <[email protected]>
* fixes #2631 - fix remote code execution via controller name (CVE-2013-2121)
2013-06-07 Dominic Cleal <[email protected]>
* fixes #2627 - depend on libvirt, not virt, add missing comps entries
2013-06-07 Dmitri Dolguikh <[email protected]>
* Fixes #2038 - updated config and partition table templates using ones from the community repository
2013-06-06 Amos Benari <[email protected]>
* reload multy-select js
* fixes #2296 Hostgroup subnet field was not enabled after selecting domain
* fixes #2621 search box and search button alignment on firefox.
2013-06-06 Joseph Mitchell Magen <[email protected]>
* fixes #2625 - hostgroup nest and clone methods
* fixes #2616 - Hostgroup fields not populating when parent fields are selected
* re-fixes #2549 - default location bug was introduced in commit 66afbc33 that is fixed
* fixes #2386 - permission failure on create_lookup_value
* fixes #2623 - trends link was broken
2013-06-06 Sam Kottler <[email protected]>
* Merge remote-tracking branch 'domcleal/2608-comps-passenger' into develop
2013-06-06 Dominic Cleal <[email protected]>
* i18n - adding fr, en_GB languages
* fixes #2608 - add passenger, selinux to comps
2013-06-06 Marek Hulan <[email protected]>
* Fixes #2615 - failed to save host group
2013-06-05 Amos Benari <[email protected]>
* fixes #2617 Can't edit a host once it's created
2013-06-05 Mikael Fridh <[email protected]>
* fixes #2599 - Bulk-selectable environments & puppet classes import
2013-06-05 Lukas Zapletal <[email protected]>
* fixes #2558 - foreman-debug script in /usr/sbin
2013-06-05 Libor Zoubek <[email protected]>
* fixes #2607 - add autocomplete=false attribute to root_host_pass input x
2013-06-05 Joseph Mitchell Magen <[email protected]>
* fixes #2285 - subnet validation - length of addresses, strip whitespace and fix common typos
2013-06-04 Amos Benari <[email protected]>
* fixes #2570 'New Window' button on HTML5 spice client page does not work
* fixes #2594 missing progress indicator on compute resource selection
* fixes #2606 fix display of compute resource errors
* fixed #2534 fixes #2495 paginator has i18n issues
* fixes #2604 searching for hosts with digits can lead to unexpected results
2013-06-04 Ohad Levy <[email protected]>
* fixes #2565 - new / edit host ajax call create nested forms
2013-06-03 Joseph Mitchell Magen <[email protected]>
* fixes #2602 - scoped_search error when using postgresql
2013-06-03 Dominic Cleal <[email protected]>
* fixes #2603 - handle missing compute_resources param loading VM tab
2013-06-03 Ohad Levy <[email protected]>
* fixes #2541 - multiple host checkbox selections clears when moving to next page
* fixes #2545 - EC2 instance does not show EC2 related options in Edit page.
2013-06-01 Joseph Mitchell Magen <[email protected]>
* fixes #2590 - bookmarks modal form is now working
2013-06-01 Ohad Levy <[email protected]>
* fixes #1951 - support for libvirt named networks
2013-05-31 Dmitri Dolguikh <[email protected]>
* fixes #2588 - fixed regression introduced earlier: localization works for non-AR classes too now
2013-05-30 Dmitri Dolguikh <[email protected]>
* fixes #2588 - table name used for localization is being determined correctly now for sti classes.
2013-05-30 Joseph Mitchell Magen <[email protected]>
* fixes #2587 - migration to increase varchar length of media.name and other string fields
* fixes #2549, fixes #2544 - new host organization and location should default to current context if it exists
2013-05-30 Ryan Davies <[email protected]>
* fixes #2562 libvirt domain listen address, add libvirt_default_console_address setting
2013-05-29 Joseph Mitchell Magen <[email protected]>
* fixes #2538 - hostgroup provisioning falls back to root_pass setting
* fixes #2493 Unable to load audit, underlying cause No such file to load -- audit
* fixes #2539 - added API puppetrun access permission and test
* fixes #2335 - update puppetclass redirects to referrer page
2013-05-29 Arnoud de Jonge <[email protected]>
* fixes #2539 - puppetrun API added.
2013-05-29 Daniel Lobato <[email protected]>
* Avoid inheriting from Puppet
2013-05-29 Dominic Cleal <[email protected]>
* fixes #2579 - explicitly list field name, workaround rails #5990
2013-05-29 Marek Hulan <[email protected]>
* Refs #2002 - Fog quick hack
2013-05-29 Sam Kottler <[email protected]>
* Fixes #2584: Remove rubygem-virt from comps
* Merge remote-tracking branch 'domcleal/rpms' into develop
2013-05-29 Amos Benari <[email protected]>
* fixes #2582 indicators for all.
2013-05-29 Tomas Strachota <[email protected]>
* Fixes #2581 - missing buildrequire gettext
2013-05-28 Greg Sutcliffe <[email protected]>
* Fixes #2519 - Protect locale changes from validation failure so that password validation can be run
2013-05-28 Joseph Mitchell Magen <[email protected]>
* fixes #2542 - sort image listing with datatables
2013-05-28 Tomas Strachota <[email protected]>
* fixes #2536 - loading locale .mo files in production mode
2013-05-28 Ohad Levy <[email protected]>
* fixes #2563 - fallback user image has wrong path
2013-05-28 Dominic Cleal <[email protected]>
* fixes #2567 - handle backtraces correctly in compute orchestration errors
* fixes #2555, #2560 - add foreman-release and MySQL gems to comps
* fixes #2106, #2123, #2561 - sign RPMs, rename -ec2 to -compute, fix foreman.repo URLs
* fixes #2573 - refresh Fedora 18 comps, don't force SCL
2013-05-28 Marek Hulan <[email protected]>
* Fixes #2571 - Deleted admin is recreated
2013-05-24 Ivan Necas <[email protected]>
* fixes #2553 let setting admin attribute on user creation
2013-05-23 Ohad Levy <[email protected]>
* fixes #2325 No A record created in domain when provisioning image based vm
* fixes #2551 new host image not always visible under openstack
2013-05-23 Ivan Necas <[email protected]>
* fixes #2525 - apipie documentation of actions defined in a concern
2013-05-23 Marek Hulan <[email protected]>
* Fixes #2502 - session expiration updates
2013-05-23 Joseph Mitchell Magen <[email protected]>
* fixes #2546 - audit details error - undefined method 'map' for string
* fixes #2537 - audit details on deleted host fail
2013-05-23 Greg Sutcliffe <[email protected]>
* Fixes #2372 - Strip non-digit characters from non-numeric OS versions
2013-05-23 Daniel Lobato <[email protected]>
* fixes #2550 Puppetclass search_by_host doesn't return all classes for an unknown host
2013-05-23 Dominic Cleal <[email protected]>
* fixes #2548 - add non-SCL dependencies to comps for publishing
2013-05-22 Dmitri Dolguikh <[email protected]>
* fixes #2509, fixes #2507: few issues around Host
2013-05-22 Mikael Fridh <[email protected]>
* fixes #2130 - normalize_hostname appends domainname to fqdn
2013-05-22 Joseph Mitchell Magen <[email protected]>
* fixes #2440 remove unused files, code, unnecessary require statements
* fixes #2197 - form fields for new host are scoped by location and organization on load
* fixes #2484 - host and hostgroup root passwords are not saving
* fixes #2485 - updated_at = NULL
2013-05-22 Daniel Lobato <[email protected]>
* fixes #2499 Add os_minor and os_major autocomplete
2013-05-22 Greg Sutcliffe <[email protected]>
* Fixes #2497 - Join to the fact_values table when a user fact-filter is applied
2013-05-22 Tomas Strachota <[email protected]>
* Fixes #2513 - orgs created in katello do not appear in org filtering
2013-05-22 Ohad Levy <[email protected]>
* Revert "fixes #2484 - host and hostgroup root passwords are not saving"
2013-05-22 Amos Benari <[email protected]>
* fixes #2522 dashboard events table should not have a border and is too long
* fixes #2316 Adding a disk to an existing RHEV 3.1 VM via Foreman results in an error
2013-05-22 Marek Hulan <[email protected]>
* Fixes #2458 - Directory structure precreated
2013-05-21 Lukas Zapletal <[email protected]>
* fixes #2516 - dbmigrate changes for SCL
2013-05-21 Amos Benari <[email protected]>
* fixes #2526 Favicon only shows up if foreman is deployed in the root context
* fixes #2511 Footer should be replaced with an about page
2013-05-21 Dominic Cleal <[email protected]>
* refresh locales
* Bump version to 1.2-develop
* fixes #2491, fixes #2487 - i18n issues
2013-05-19 Dominic Cleal <[email protected]>
* RPM packaging fixes
2013-05-17 Daniel Lobato <[email protected]>
* fixes #2498 FactNames are not precreated
2013-05-14 Sam Kottler <[email protected]>
* Updated the spec for packaging Foreman on top of a Ruby 1.9.3 software collection
2013-05-13 Ivan Necas <[email protected]>
* fixes #2492 Fallback to assets pipeline if a precompiled asset is missed in production
2013-05-13 Stef Telford <[email protected]>
* fixes #2490 - filter empty EC2 security groups
2013-05-13 Ohad Levy <[email protected]>
* fixes #2481 - invalid state in BMC power dropdown
2013-05-12 Amos Benari <[email protected]>
* fixes #2488 - hosts/<fqdn>/lookupkeys/<key-id> api is broken
* fixes #2396 Popups show escaped HTML
* fixes #2478 - smart-variable in ENC stopped working
2013-05-12 Dominic Cleal <[email protected]>
* fixes #2453 - fix aggressive truncation of hostgroups < 26 chars
* fixes #2486 - ensure facts import is idempotent when values are unchanged
2013-05-12 Ohad Levy <[email protected]>
* fixes #2480 - undefined method `html_raw'
2013-05-12 Tomas Strachota <[email protected]>
* fixes #2246 deleting an environment also deletes associated templates
2013-05-12 Marek Hulan <[email protected]>
* Fixes #2476 - precompile and include textmate theme
2013-05-09 Antony Perigault <[email protected]>
* Add Gentoo operating system
2013-05-09 Marek Hulan <[email protected]>
* Fixes #2460 - session expiration fix for SSO
2013-05-09 Dominic Cleal <[email protected]>
* fixes #2281 - don't allow admin flag to be removed from admin account
* refresh locales
* remove test translations
* gettext_i18n_rails_js shouldn't be required in prod setups to run rake tasks
* fixes #2420 - extract strings for i18n from JavaScript, various i18n fixes
* fixes #2426 - translate model and column names to English
2013-05-09 Lukas Zapletal <[email protected]>
* fixes #2444 - locale selector in user account
* fixes #2401 - cannot create new admin user
2013-05-09 Amos Benari <[email protected]>
* refs #2132 - fixes ajax on puppetclass update, and some typos.
* fixes #2220 - Suport hostgroup puppet classes parameters inheritance.
* fixes #2132 Smart Variables in hostgroup. 1. Show smart variables in hostgroup view. 2. Added the GUI to override smart variables values in host group.
2013-05-09 Og B. Maciel <[email protected]>
* Changed validation text s/must be downcase/must be lowercase.
2013-05-09 Ohad Levy <[email protected]>
* fixed #2474 - Foreman Exceptions are not initalized correctly
2013-05-09 Daniel Lobato <[email protected]>
* fixes #426 expose BMC information in foreman UI
2013-05-09 Joseph Mitchell Magen <[email protected]>
* refs #2400 clean up tests so there are no orphaned foreign keys
* fixes #2422 Rails 3.2: before_destroy / dependent => :destroy ordering
* fixes #2421 added missing has_many :hostgroups and missing :dependent => destroy
2013-05-09 Greg Sutcliffe <[email protected]>
* Fixes #2461 - Allow user to not have a puppet proxy
* Fixes #2459 - Create ProxyFeature methods from symbol name, lookup on real text
2013-05-08 Ohad Levy <[email protected]>
* fixes #2475 - search hosts based on comments
2013-05-08 Dominic Cleal <[email protected]>
* fixes translator comment
2013-05-08 Greg Sutcliffe <[email protected]>
* Fixes #2406 - add recent report summary to dashboard latest events box
2013-05-07 Daniel Lobato <[email protected]>
* fixes #2472 - prevent duplicate users from hostgroup ancestors
2013-05-07 Sam Kottler <[email protected]>
* Added core runtime packages to the RHEL6 comp
2013-05-07 Dominic Cleal <[email protected]>
* fixes #2463 - update permissions to follow controller move
* fixes #2432 - use absolute controller path for navbar links
2013-05-07 Ewoud Kohl van Wijngaarden <[email protected]>
* Typo fix
2013-05-07 Lukas Zapletal <[email protected]>
* fixing transifex parse error
* fixes #2434 - foreman-debug script
* removing ruby-debug from development group
2013-05-07 Andy Taylor <[email protected]>
* Fixes #2265 - Broken hosts_and_facts detection
2013-05-07 Ivan Necas <[email protected]>
* Fixes #2454 - Fix loading settings in production
2013-05-06 Dominic Cleal <[email protected]>
* fixes #2463 - move test files to follow controller move
2013-05-06 Sam Kottler <[email protected]>
* Added additional DB packages
2013-05-06 Ohad Levy <[email protected]>
* fixes #2463 fixed nested puppetca and autosign controllers
* fixes #2393 - Couple of models broken with audited 3.0.0
2013-05-06 Joseph Mitchell Magen <[email protected]>
* fixes #2455 hostgroup not saving
2013-05-05 Dominic Cleal <[email protected]>
* fixes #2452 - allow nil form, used for checkboxes in taxonomies wizard
2013-05-03 Michael Moll <[email protected]>
* add SLES and SLED to Suse family
2013-05-03 Dominic Cleal <[email protected]>
* Fix tests misusing assert and assignment vs. comparison
2013-05-03 Amos Benari <[email protected]>
* intruducing color variable and mixin in the scss files
2013-05-03 Greg Sutcliffe <[email protected]>
* Fix finder_needs_type check in sti mixin
2013-05-01 Amos Benari <[email protected]>
* fixes #2450 - cookie name based on pathname to be able to reuse the js in other pages
* fixes #2361 do not reset password on test connection.
2013-05-01 Joseph Mitchell Magen <[email protected]>
* fixes #2361 empty password does not invalidate compute resource
2013-05-01 Ohad Levy <[email protected]>
* fixes UI errors in trend pages
2013-04-30 Joseph Mitchell Magen <[email protected]>
* fixes #2378 - added Minitest and other code cleanups
2013-04-30 Sam Kottler <[email protected]>
* Added even more dependencies to the RHEL6 comp
2013-04-30 Greg Sutcliffe <[email protected]>
* Fixes #2439 - Add true to respond_to? calls for initialize_puppetca
2013-04-30 Amos Benari <[email protected]>
* fixes #2441
2013-04-29 Amos Benari <[email protected]>
* new top-bar navigation design and a new login page
2013-04-29 Sam Kottler <[email protected]>
* Added a lot more dependencies to the RHEL6 comp
2013-04-29 Marek Hulan <[email protected]>
* fixes #2429 - change OpenID storage to be permanent
2013-04-26 Greg Sutcliffe <[email protected]>
* fixes #2433 - fix orchestration respond_to? test to work on ruby 2.0
2013-04-26 Dmitri Dolguikh <[email protected]>
* fixes #2428 - a workaround for an issue with SETTINGS[:libvirt] not being properly initialized in rpm environments
2013-04-26 Sam Kottler <[email protected]>
* Added rails and dependencies to comp
2013-04-26 Marc Grimme <[email protected]>
* fixes #2430 - undefined method gettext_translation_for_attribute_name
2013-04-25 Greg Sutcliffe <[email protected]>
* fixes #2407 - Add STI to settings model
2013-04-25 Ivan Necas <[email protected]>
* Always use multi-select widget for taxonomies in host group
2013-04-24 Joseph Mitchell Magen <[email protected]>
* fixes #2248 adds api controllers and actions to access_permissions.rb
2013-04-24 Amos Benari <[email protected]>
* fixes #2425 Allow find_multiple to work on all Host types
2013-04-24 Dominic Cleal <[email protected]>
* fixes #2427 - use RUBY_VERSION for pre-Bundler 1.3 compatibility
* fixes #2367 - Ruby 2.0 support
* fixes #2359 - update EPEL release number
* Feature #2368 - host list popups and various fixes
* Feature #2368 - i18n extracting strings
* Feature #2368 - use N_ for model validators
* fixes #2419 - disable DNS orchestration during host mailer tests
2013-04-24 Lukas Zapletal <[email protected]>
* fixes #2368 - finishing transifex.com integration
* Feature #2368 - form helpers, exceptions and fixes
* Feature #2368 - merging new strings
* Feature #2368 - i18n extracting and locale rake task
* Feature #2368 - adding Rails i18n yml files
* Feature #2368 - i18n extracting strings
* Feature #2368 - i18n extracting strings
* Feature #2368 - i18n integrating Transifex
* Feature #2368 - renaming i18n domain to 'foreman.pot'
2013-04-24 Sébastien Bernard <[email protected]>
* fixes #2416 - use relative URL prefix for environment import buttons
2013-04-24 Sam Kottler <[email protected]>
* Fixes #2408: don't try to reset the password in rake permissions:reset if Facter.domain is nil
2013-04-24 Greg Sutcliffe <[email protected]>
* fixes #2410 - Set auditable type to 'Host'
2013-04-24 Daniel Lobato Garcia <[email protected]>
* Feature #2368 - adding Spanish translation
2013-04-24 Bryan Kearney <[email protected]>
* Feature #2368 - i18n extracting strings
2013-04-24 Thomas Bendler <[email protected]>
* Feature #2368 - adding German translation file
2013-04-24 Daniel Lobato <[email protected]>
* Adds an id primary key field to the user_hostgroup relationship
2013-04-23 Joseph Mitchell Magen <[email protected]>
* fixes #2263 continuation - turn off auditing for migration of adding Hostgroup label
2013-04-22 Marek Hulan <[email protected]>
* fixes #2417 - SSO abstractioning
2013-04-22 Joseph Mitchell Magen <[email protected]>
* fixes #2360 loading parameters on host edit form when hostgroup or environment is changed
2013-04-22 Bryan Kearney <[email protected]>
* fixes #2247 Provides an option to disable the use of gravatara
2013-04-21 Joseph Mitchell Magen <[email protected]>
* fixes #2263 search Hostgroup by label
* refs #2254 - STI Host relationships
2013-04-21 Dominic Cleal <[email protected]>
* fixes #2405 - disable DNS orchestration during TFTP tests, causing timeouts
2013-04-17 Sam Kottler <[email protected]>
* Use https when accessing Rubygems.org
* Added f18 releases to tito and fixed some typos
* Added RHEL6 and F18 comps
* Bumped the Rails version to match what's in the nightly tag
2013-04-14 Ivan Necas <[email protected]>
* fixes #2398 - fix ruby 1.9 issue when loading free ip, causing {} in URL
2013-04-12 Daniel Lobato <[email protected]>
* Enforce hostgroup/role uniqueness on User relation
2013-04-11 Ohad Levy <[email protected]>
* [refactor] breakdown of proxy api classes
2013-04-11 Greg Sutcliffe <[email protected]>
* fixes #2390 - Add :host_id to BMC options hash
2013-04-11 Dominic Cleal <[email protected]>
* fixes #2327 - add simplecov code coverage reports
2013-04-10 Amos Benari <[email protected]>
* flot charts
2013-04-10 Ohad Levy <[email protected]>
* fixes failing test/fixture introduced in 7ff39bfa
2013-04-10 Daniel Lobato <[email protected]>
* Added link to host on some audit entries
2013-04-10 Greg Sutcliffe <[email protected]>
* fixes #2389 - Add basic support for plugin config to live in separate files
2013-04-10 Dominic Cleal <[email protected]>
* fixes #2385 - use Capybara 2.0.x for Ruby 1.8 compatibility
* fixes #2153 - add trusted_puppetmaster_hosts setting to permit puppetmaster access
2013-04-09 Dominic Cleal <[email protected]>
* fixes #2377 - refresh column info after editing Medium
2013-04-08 Greg Sutcliffe <[email protected]>
* fixes #2376 Update migrations to match new rails3.2 paths
2013-04-08 David Schmitt <[email protected]>
* Small typo in foreman-config output
2013-04-08 Ohad Levy <[email protected]>
* addes missing taxonomy asset
2013-04-04 Joseph Mitchell Magen <[email protected]>
* fixes #2371 - removed iconv - causing deprecation notice - block in require: iconv will be deprecated in the future, use String#encode instead
2013-04-04 Ohad Levy <[email protected]>
* more minor fixes around asset pipeline changes
2013-04-03 Ohad Levy <[email protected]>
* fixes missing assets files
2013-04-03 Sam Kottler <[email protected]>
* Removed unnecessary script related to SElinux
2013-04-03 Ewoud Kohl van Wijngaarden <[email protected]>
* Remove .DS_Store file
2013-04-03 Amos Benari <[email protected]>
* fixes wrong spice JS referenec
2013-04-02 Greg Sutcliffe <[email protected]>
* fixes #2351 Downcase fqdn when importing facts, for hostname validation consistency
2013-04-02 Joseph Mitchell Magen <[email protected]>
* fixes #2365 added quiet assets gem
* fixes #2362 ImagesHelper - not showing field if no images
* fixes #2366 removes duplicate gems in bundler/test.rb
2013-04-02 Amos Benari <[email protected]>
* moved spice console to spice-html5-rails gem
* upgrade foreman to rails 3.2.13
2013-04-02 Dominic Cleal <[email protected]>
* fixes #2358 - remove duplicate epel/HTTP proxy snippets
2013-03-28 Sam Kottler <[email protected]>
* Added files for building via Tito