forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
6905 lines (5115 loc) · 285 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-08-11 Daniel Lobato <[email protected]>
* Fixes #7013 - pin apipie-rails to < 0.2.3
2014-08-11 Tomer Brisker <[email protected]>
* Fixes #3285 - extract 'Host' on reports page for trans.
2014-08-10 Joseph Magen <[email protected]>
* Fixes #6400 - Show * next to required form fields
2014-08-10 Dominic Cleal <[email protected]>
* fixes #6964 - replace default scope that hides users with explicit scope
2014-08-08 Dominic Cleal <[email protected]>
* Fixes #6830 - Add host search on compute_resource_id used in 1.5 auth migrations
2014-08-07 Marek Hulan <[email protected]>
* Fixes #6560 - Extract puppet parsing logic
2014-08-07 Daniel Lobato <[email protected]>
* Revert "Fixes #1592: making report
* Fixes #5734 - API for external groups management
2014-08-07 Ori Rabin <[email protected]>
* Fixes #1592: making report
2014-08-07 Tomer Brisker <[email protected]>
* Fixes #3300 - extract translations on new smart variable page
2014-08-07 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-08-07 Bryan Kearney <[email protected]>
* Fixes #6969: Add wildcards to the end of the log files to collect the rotated files
2014-08-07 Greg Sutcliffe <[email protected]>
* Fixes #6962 - Use as_admin instead of find_by_login for usergroup tests
2014-08-07 David Davis <[email protected]>
* Fixes #6953 - Fixing N_() calls in the User model
2014-08-07 Eric D. Helms <[email protected]>
* Fixes #6891: Taxonomies couldn't be seeded after initial run of seeds.
2014-08-06 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
* fixes #6873 - ensure hidden 'owner' is populated on user role
2014-08-05 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-08-05 Tomer Brisker <[email protected]>
* Fixes #3303 - extract confirmation text on architecture deletion for translation
* Fixes #5442 - extract suggest IP string for translation
2014-08-05 Ori Rabin <[email protected]>
* Fixes #6794: Adds search parameter for template kinds
2014-08-05 Dustin Tsang <[email protected]>
* Fixes #6844 - display v2 resources rather than v1 resources in /api/v2
2014-08-05 Stephen Benjamin <[email protected]>
* fixes #6861 - provide a way to detect host group provisioning
2014-08-05 Ohad Levy <[email protected]>
* fixes #6857 improve two-pane load times
2014-08-04 Dominic Cleal <[email protected]>
* fixes #6888 - remove duplicate presence validator causing two errors
2014-08-01 Stephen Benjamin <[email protected]>
* fixes #6881 - check if in rake when validating template changes
* fixes #6855 - bump safemode gem version
2014-08-01 Joseph Magen <[email protected]>
* fixes #6825 - refactor api/v2/filters_controller.rb to use find_optional_nested_object and add Authorizable to class Role
2014-07-31 Martin Ducar <[email protected]>
* fixes #6852 - `rake log` added to log ActiveRecord changes to stdout
2014-07-31 David Davis <[email protected]>
* Fixes #6446 - Forbidding non-json POST/PUT requests in v2
* Fixes #6786 - Handle error when no taxonomy params get sent
2014-07-31 Aaron Stone <[email protected]>
* Fixes #6566 - renaming a node now resets the certname on provision
2014-07-31 Eric D. Helms <[email protected]>
* Fixes #6620: Allow plugins to define a file to be included in test_helper.
2014-07-31 Daniel Lobato <[email protected]>
* Fixes #813 - External usergroups can be linked to an LDAP auth source
2014-07-31 Ivan Nečas <[email protected]>
* Fixes #6816 - pass oVirt quota as nil instead of "" to prevent server error
2014-07-31 Ori Rabin <[email protected]>
* Fixes #215: Parameters can be saved without a value
* fixes #6636, #6657, #6694 - add field length validations, extend audit field length
* Fixes #2940: Unable to remove smart parameter with long name
2014-07-31 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-07-31 Martin Bačovský <[email protected]>
* Refs #4478 - API doc strings marked for translation
2014-07-30 Ori Rabin <[email protected]>
* Fixes #6693 - set parameters tab to error state and focus when validation fails
2014-07-30 Ohad Levy <[email protected]>
* fixes #6529 allow to define IP suggestion per subnet
2014-07-30 Joseph Magen <[email protected]>
* fixes #6432 - add validation for attributes missing :presence => true and remove duplicate validation messages 'can't be blank'
2014-07-29 Martin Bačovský <[email protected]>
* Fixes #6768 - Hammer set-parameter does not work
2014-07-28 Eric D. Helms <[email protected]>
* Fixes #5029: Create organization and location during seed if specified.
2014-07-28 Joseph Magen <[email protected]>
* fixes #6430 - validate presence of location and organization for managed host if Settings are turned on
* Fixes #6236 - add taxonomy parameters to host API v2 create/update documentation
2014-07-28 Stephen Benjamin <[email protected]>
* fixes #6618 - provide an indentation helper for provisioning templates
2014-07-28 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
* i18n - add pt_BR language
* fixes #6717 - remove interpolation from message for i18n extraction
2014-07-25 Eric D. Helms <[email protected]>
* Fixes #6779: Restrict ci_reporter gem to less than 2.0.0 to fix CI.
2014-07-24 Maria Nita <[email protected]>
* refs #4641 - update to functional test
* fixes #4641 - Ensure default role only after save/update. Change default role permissions
2014-07-24 Joseph Magen <[email protected]>
* fixes #6750 - change constraint on apipie-rails gem so it can be updated to 0.2.x
2014-07-23 Joseph Magen <[email protected]>
* fixes #6753 - fix API v1 examples in docs that show error messages by re-ordering functional tests
* fixes #6749 - fix API v2 examples in docs that show error messages by re-ordering functional tests
2014-07-23 Daniel Lobato <[email protected]>
* Fixes #6518 - look up the BMC proxy via any subnet proxies, if present
2014-07-23 Ori Rabin <[email protected]>
* Fixes #6633: Smart variables and smart class parameters can have the same parameter name
2014-07-23 Michael Moll <[email protected]>
* fixes #5760 - selectable VMware virtual HW version
2014-07-23 sidkhemka <[email protected]>
* Fixes #6747 - Add textarea automatic resizing
2014-07-23 Greg Sutcliffe <[email protected]>
* Fixes #6065 - Update TopbarSweeper to clear cache for other users than User.current
2014-07-23 Dominic Cleal <[email protected]>
* fixes #6402 - use standard success/error handlers in UI controllers
2014-07-22 Daniel Lobato <[email protected]>
* Fixes #6670 - Update fog to 1.23
2014-07-22 Neil Miao <[email protected]>
* Fixes #6483 - oVirt network is properly populated for multiple datacenters
2014-07-22 Joseph Magen <[email protected]>
* fixes #5140 - User children taxonomies did not show tooltip 'Parent is already selected'
* fixes #6375 - fix needed for Rails 3.2.8 only that ensures reference_id on parameter.rb matches the nested object id
2014-07-21 Lukas Zapletal <[email protected]>
* i18n - updated readme instructions
2014-07-21 David Davis <[email protected]>
* Fixes #6606 - Allow deletion of non-admin users if 1 admin
2014-07-18 Eric D. Helms <[email protected]>
* Fixes #6650: Friendlier message when attempting to delete oneself.
2014-07-18 Greg Sutcliffe <[email protected]>
* Refs #6641 - Revert "Explcitly add fog-json and fog-brightbox for jenkins"
2014-07-18 Kot <[email protected]>
* Fixes #3377 - Add altlinux support
2014-07-17 Stephen Benjamin <[email protected]>
* fixes #1646, #3103 - enable cloning and locking of templates
2014-07-16 Greg Sutcliffe <[email protected]>
* Fixes #6641 - Explcitly add fog-json and fog-brightbox for jenkins
2014-07-16 Ewoud Kohl van Wijngaarden <[email protected]>
* fixes #3601: Use secure websockets if available
2014-07-16 Dominic Cleal <[email protected]>
* fixes #6562 - APIv2 is declared stable as of the next release
2014-07-15 Joseph Magen <[email protected]>
* fixes #5178 - unify API parameters and return values. User creation should not require payload wrapped with 'user' root
* fixes #3664 - support deletion of installation media that's in use
2014-07-15 Ori Rabin <[email protected]>
* Fixes #6582: Change position of buttons when editing a location
2014-07-15 Lukas Zapletal <[email protected]>
* fixes #6487 - use consistent icon set
2014-07-15 Walden Raines <[email protected]>
* Fixes #6057: highlight active tab based on current URL.
2014-07-15 Stephen Benjamin <[email protected]>
* fixes #6586 - allow user customizable password in rake permissions:reset
2014-07-15 Daniel Lobato <[email protected]>
* Fixes #6580 - XSS in operating system name/description (CVE-2014-3531)
2014-07-14 Ori Rabin <[email protected]>
* Fixes #6537: Entering a very large number for idle_timeout is unchecked, crashes UI
2014-07-13 Ori Rabin <[email protected]>
* fixes #6497: New Organization: Focus should exist in Name field
2014-07-11 Dustin Tsang <[email protected]>
* fixes #6441 - allows filtering of parameters per controller
2014-07-10 Leon Strong <[email protected]>
* fixes #5197 - Preallocated disk support for oVirt
2014-07-10 Greg Sutcliffe <[email protected]>
* Fixes #6528 - Silence seeds.rb when in test env
2014-07-10 Jason Montleon <[email protected]>
* fixes #4155 - enable host/CR (dis)association via api
2014-07-09 Tomas Strachota <[email protected]>
* Fixes #6532 - permission related api extensions
2014-07-09 Joseph Magen <[email protected]>
* fixes #5969 - improve message when deleting virtual machines to indicate delay
* fixes #6506 - remove x86_64 default for new architecture
2014-07-09 Daniel Lobato <[email protected]>
* Fixes #6357 - ensure JS is loaded so taxonomy_added is defined on user form
* Fixes #6533 - rest-client 1.7.0 dropped Ruby 1.8 support
2014-07-07 Dmitri Dolguikh <[email protected]>
* fixes #5235: it's impossible to create filters with invaid searches
2014-07-07 Greg Sutcliffe <[email protected]>
* Fixes #6099 - Bubble Fog
2014-07-07 Ori Rabin <[email protected]>
* fixes #5414: LDAP + TLS is not LDAP + TLS but LDAP + SSL and changed port automatically on check
2014-07-07 Michael Moll <[email protected]>
* fixes #6501: pin jquery-ui-rails
2014-07-06 Ohad Levy <[email protected]>
* fixes #6498 simplified eval statement
2014-07-05 starless72 <[email protected]>
* fixes #6496 - Added :match helper method to saferender
2014-07-03 Ori Rabin <[email protected]>
* fixes #4564 - has_ancestry definition should be removed from hostgroup.
2014-07-02 Tomas Strachota <[email protected]>
* Fixes #6285 - Settings API does not parse incoming values to correct data type
2014-07-02 Dmitri Dolguikh <[email protected]>
* fixes #5753: Engines can now override autocomplete path used in FiltersHelper
2014-07-02 Trey Dockendorf <[email protected]>
* fixes #6358 - Update LookupValue fqdn matchers when a host is renamed
2014-07-01 Dominic Cleal <[email protected]>
* fixes #5679 - change CR identifier to name to fix has_many association lookup
2014-06-30 Dominic Cleal <[email protected]>
* fixes #3272 - allow 'admin' account to be removed and replaced
* fixes #2972 - load jsonp on bundler_ext installations
* fixes #6331 - use view permission to authorize individual VM show pages
* fixes #6177 - clear host facts/reports when build=true set over API
2014-06-26 Dominic Cleal <[email protected]>
* fixes #6410 - update to deep_cloneable 2.0
2014-06-26 Justin Sherrill <[email protected]>
* fixes #6382 - revert name change of 48bit mac address regex to fix discovery
2014-06-25 Dominic Cleal <[email protected]>
* fixes #6319 - precompile dashboard.js
2014-06-25 Joseph Magen <[email protected]>
* [REFACTOR] refs #6229 - extract validation to a method
* fixes #6355 - OS free text search shouldn't search associations
2014-06-25 Daniel Lobato <[email protected]>
* Fixes #6337 - ensure VM tab is still visible when we deselect profile
2014-06-25 David Swift <[email protected]>
* fixes #6374 - NIC hostname now blank when domain is present, but no hostname is given
2014-06-25 Dmitri Dolguikh <[email protected]>
* fixes #5939: it's no longer possible to switch tabs when compute profile is being edited.
2014-06-24 Trey Dockendorf <[email protected]>
* fixes #5915 - Add support for Infiniband 64-bit MAC addresses
2014-06-24 Joseph Magen <[email protected]>
* fixes #6267 - singularize of HostClass and HostgroupClass is wrong
* fixes #6248 - API V2 return object for POST/PUT/DELETE should *not* include root node
* fixes #6216, #4416 - avoid foreign key errors when deleting some objects in use
2014-06-23 Eric D. Helms <[email protected]>
* Fixes #6308: Load plugin seeds from seeds.d directory of each plugin
2014-06-23 Dmitri Dolguikh <[email protected]>
* fixes #5994: Power and Console buttons are available to non-admin users with appropriate permissions
2014-06-23 Joseph Magen <[email protected]>
* refs #6067 - tests for UI inconsistency around root password limit 8 characters
2014-06-20 Joseph Magen <[email protected]>
* fixes #6229 - validate installation media exists for new host if pxe_build
* fixes #5854 - org creation by non-admin normal user now associates themselves
2014-06-19 Lukas Zapletal <[email protected]>
* fixes #5928 - added selinux info to foreman-debug
2014-06-19 Joseph Magen <[email protected]>
* fixes #6067 - UI inconsistency around root password limit 8 characters
* fixes #5777 - search on filters returns error
* fixes #6228 - disable provisioning method radio boxes after host is provisioned
* fixes #5566 - free text fact values query produces invalid SQL error
2014-06-19 Tom McKay <[email protected]>
* fixes #6003 - don't render user default loc/org object directly
2014-06-19 Ivan Nečas <[email protected]>
* Fixes #6160 - don't validate images for network based provisioning
2014-06-18 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-06-18 Lukas Zapletal <[email protected]>
* fixes #6149 - fixed XSS in host YAML view (CVE-2014-3492)
2014-06-18 Joseph Magen <[email protected]>
* fixes #5881 - XSS from create/update/destroy notification boxes (CVE-2014-3491)
2014-06-17 Joseph Magen <[email protected]>
* fixes #5923 - ptable validation trailing spaces incorrectly allows one space
* fixes #5848 - can't search for host with class inherited from config group
* fixes #5809 - don't show parent location/organization/hostgroup select box if zero or one location/organization/hostgroup
* fixes #5832 - org switcher does not collapse when moving mouse diagnally to submenu
* fixes #5129 - Host Group creation may fail if parameter is same name
2014-06-17 Stephen Benjamin <[email protected]>
* fixes #6234 - fixes sorting on compute resources and subnets
2014-06-17 Dmitri Dolguikh <[email protected]>
* fixes #5722: VM-based host cloning picks up existing compute attributes
2014-06-15 Amos Benari <[email protected]>
* fixes #5345 - customizable dashboard
2014-06-13 Dominic Cleal <[email protected]>
* fixes #5879 - minimum of scoped_search 2.7.0 required
2014-06-12 Lukas Zapletal <[email protected]>
* fixes #6121 - made copyright section defaceable
2014-06-12 Greg Sutcliffe <[email protected]>
* Fixes #6191 - pin pry for ruby 1.8 compat
2014-06-12 Joseph Magen <[email protected]>
* fixes #4736 - organization edit ui has unselectable environment
2014-06-11 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2014-06-10 Dmitri Dolguikh <[email protected]>
* fixes #5708: #nil? is now an allowed method inside of Host and Token jails
2014-06-10 Dominic Cleal <[email protected]>
* fixes #5652 - run parse_args when calling new_vm for compute profiles
2014-06-09 Scott Seago <[email protected]>
* fixes #6091 - menu removal wasn't traversing menu hierarchy
2014-06-09 Joseph Magen <[email protected]>
* fixes #6112 - log/test.log disappears when running under spork
* fixes #6116 - search hosts by parent host group and its decendants
2014-06-09 Marek Hulan <[email protected]>
* Fixes #6117 - clean usergroup cache
2014-06-06 Greg Sutcliffe <[email protected]>
* Fixes #5941 - Handle nil comparison object in DHCP
2014-06-06 Christine Fouant <[email protected]>
* Fixes #5810 - fixes issue with incorrect page titles
2014-06-06 Joseph Magen <[email protected]>
* fixes #5826 - Using dots in kickstart template names or hostgroups causes routing errors
* fixes #5834 - Hosts: . in the name is invalid - user is told this but the UI adds one anyway
2014-06-03 Michael Moll <[email protected]>
* fixes #6030 - update list of VMware guest types
2014-06-03 Martin Ducar <[email protected]>
* fixes #5963 - fix Role has_permission? function
2014-06-02 Dominic Cleal <[email protected]>
* fixes #5869 - permit accents in user names on Ruby 1.8
* fixes #5987 - remove unused packaging files
2014-06-02 Dmitri Dolguikh <[email protected]>
* fixes #5965: removed 8443 port from the suggested ovirt url
2014-05-29 Dominic Cleal <[email protected]>
* fixes #5793 - add pkg:generate_source rake task to create tar.bz2
2014-05-28 Dominic Cleal <[email protected]>
* fixes #5966 - pin execjs for Ruby 1.8 compatibility
2014-05-27 Marek Hulan <[email protected]>
* Fixes #5696 - Allow taxonomy and roles display
2014-05-27 Nacho Barrientos <[email protected]>
* Fixes #5946 - Only call fact_name_class.maximum if necessary.
2014-05-22 Joseph Magen <[email protected]>
* fixes #5836 - Welcome page - missing rel attribute
* fixes #5685 - add :path_ids to with_taxonomy_scope instead of subtree_ids for SmartProxy select dropdowns
* fixes #5631 - API v2 - host and hostgroups show.json.rabl should show all puppetclasses in child node
2014-05-22 Eric D. Helms <[email protected]>
* Fixes #5645: Fixes session undefined error when user has a default taxonomy set.
2014-05-22 Dominic Cleal <[email protected]>
* fixes #5671 - LookupValue name should be matcher, value is too long
2014-05-20 Joseph Magen <[email protected]>
* fixes #5788 - before_destroy missing from EnsureNotUsedBy.new in SmartProxy model
* fixes #5726 - parameter values missing from host#show API call
2014-05-19 Marek Hulan <[email protected]>
* Fixes #5689 - Plugin permissions are migrated too
* Fixes #5664 - Host filters can use taxonomies
2014-05-19 Stephen Benjamin <[email protected]>
* fixes #5690 - determine host taxonomy fact based on setting value
2014-05-19 Eric D. Helms <[email protected]>
* Fixes #5221: Adds a helper method to allow a model instance to inquire if the instance is authorized for a particular permission.
2014-05-18 Stephen Benjamin <[email protected]>
* fixes #5660 - use with_taxonomy_scope for OS media selection
2014-05-16 Greg Sutcliffe <[email protected]>
* Fixes #5637 - Don't raise lease conflicts when reading ad-hoc DHCP leases
2014-05-16 Dmitri Dolguikh <[email protected]>
* fixes #5553: FiltersHelper#search_path returns an empty string for unrecognized resources
2014-05-13 Dominic Cleal <[email protected]>
* fixes #5680 - quote searches for config groups containing spaces
2014-05-12 Joseph Magen <[email protected]>
* fixes #4250 - API v2 - add compute profiles
2014-05-08 Dominic Cleal <[email protected]>
* templates - sync from community-templates
* fixes #5612 - use correct permissions for authz in parameters API
* fixes #5610 - upgrade to Rails 3.2.18
2014-05-08 Amos Benari <[email protected]>
* fixes #5471 html escape auto-completer values (CVE-2014-0208)
2014-05-07 Amos Benari <[email protected]>
* refs #5188 - prepare place holder for host details
2014-05-07 Dominic Cleal <[email protected]>
* fixes #4590 - convert VMware SCSI controller type during creation
* fixes #5580 - pin scoped_search for Ruby 1.8 compatibility
2014-05-07 Dmitri Dolguikh <[email protected]>
* fixes #5537: it's possible to specify menu item url directly now
2014-05-07 Jan Pazdziora <[email protected]>
* fixes #5242 - Update external user attributes and group membership on every logon
2014-05-06 Jan Pazdziora <[email protected]>
* fixes #3892 - process REMOTE_USER_GROUP_N and REMOTE_USER_GROUP_#, add user to groups based on external user groups.
2014-05-05 Dominic Cleal <[email protected]>
* fixes #5489 - don't generate empty search () filters on permissions migration
* fixes #5540 - also clone builtin roles during migration
2014-05-02 Joseph Magen <[email protected]>
* fixes #5506 - added scoped search to SmartProxy for UI and API v2
2014-05-01 Daniel Lobato <[email protected]>
* Fixes #4370 - Filters list show permissions
2014-05-01 Greg Sutcliffe <[email protected]>
* Fixes #4287 - Join directly to template_combinations when resolving templates
2014-05-01 Stephen Benjamin <[email protected]>
* fixes #5520 - proper capitalization in orchestration header
2014-05-01 Joseph Magen <[email protected]>
* fixes #2785 - host model clone method also copies relationships using deep_cloneable gem
2014-04-30 Dominic Cleal <[email protected]>
* fixes #5427 - skip user roles FK removal if it's missing
* fixes #5038 - remove empty label causing template edit box indentation
* fixes #5490 - ambiguous column in taxonomix pluck on Rails 3.2.8
2014-04-30 Amos Benari <[email protected]>
* fixes #4612 show friendly CR names, fix typo in oVirt name
* fixes #5132 URL doesn't update correctly after creating a new host
2014-04-30 Jan Pazdziora <[email protected]>
* fixes #5241 - Add support for external user groups.
2014-04-28 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
* fixes #5453 - ensure all VMware compute attribute keys are symbolized
* fixes #5248 - restrict fog-core to compatible version (fog#2873)
2014-04-28 Stephen Benjamin <[email protected]>
* fixes #5450 - add realm to params for 1.4-compatible use in templates
* fixes #5444 - add param_false? host method and allow in templates
2014-04-28 Amos Benari <[email protected]>
* fixes #5132 hang when provisioning on ovirt 3.4
* fixes #5470 vm state doesn't load on show page after redirect from new host
2014-04-28 Ohad Levy <[email protected]>
* fixes #5436 - provisioning templates are world accessible
2014-04-28 Trey Dockendorf <[email protected]>
* fixes #4599 - DNS and DHCP records for BMC and managed interfaces not using FQDN
2014-04-25 Lukas Zapletal <[email protected]>
* fixes #5443 - cron.log is now appended to
* fixes #5401 - fixed foreman-debug tarball creation including '.'
* fixes #5205 - fixed all authorized links with given action
2014-04-25 Dmitri Dolguikh <[email protected]>
* fixes #5106: only puppet and puppet-ca proxies are now being shown on the 'new host' page
* fixes #5398: replaces calls to deprecated SmartProxy.*_proxies scope with SmartProxy.with_features scope
2014-04-25 Marek Hulan <[email protected]>
* Fixes #5391 - Authorizer test should use testing permission
2014-04-25 Martin Matuska <[email protected]>
* fixes #4380 [vSphere] allow selection of guest OS
2014-04-25 Joseph Magen <[email protected]>
* fixes #5258 - Can't edit a host due to IPMC/BMC interface form error
2014-04-25 Amos Benari <[email protected]>
* fixes #4422 Implement available_images for oVirt to populate new image form
2014-04-22 Dominic Cleal <[email protected]>
* fixes #5246 - remove second host/class lookup impl so config groups are included in ENC output
2014-04-21 Dominic Cleal <[email protected]>
* fixes #5247 - overridable keys displayed on host group when env is inherited
* fixes #4597 - map host disassociate actions to permission
2014-04-19 Stephen Benjamin <[email protected]>
* fixes #5224 - Don't update a user with blank LDAP attribute values
2014-04-18 Dominic Cleal <[email protected]>
* fixes #1902 - audit changes to lookup keys and values/overrides
2014-04-18 Stephen Benjamin <[email protected]>
* fixes #5222 - Log ldap attributes in debug-level logging
2014-04-17 Dominic Cleal <[email protected]>
* fixes #5214 - pin ancestry for Ruby 1.8 compatibility
2014-04-16 Dominic Cleal <[email protected]>
* Bump version to 1.6-develop
* fixes #5200 - set config group counters to zero by default
2014-04-16 Joseph Magen <[email protected]>
* fixes #5172 - typo SETTINGS[:location_enabled] instead of :locations_enabled causes default location select box not to be visible
2014-04-14 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-04-14 Daniel Lobato <[email protected]>
* Fixes #5180 - in_taxonomy clears out Taxonomy.current
2014-04-14 Joseph Magen <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* fixes #4122 and new charts design
2014-04-11 Sean Handley <[email protected]>
* fixes #5157 - allowed to suggest new IP on the new host form
2014-04-11 Daniel Lobato <[email protected]>
* fixes #3914 - set current taxonomies on login from user defaults
2014-04-10 Greg Sutcliffe <[email protected]>
* Fixes #4710, #2270 - Wait for VM to become ready before looking for IPs
2014-04-09 Dominic Cleal <[email protected]>
* 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 <[email protected]>
* Fixes #4960 - undefined method when editing filter without a UI controller
2014-04-09 Lukas Zapletal <[email protected]>
* fixed #5120 - fixed migration for discovered hosts
2014-04-09 Rufus Post <[email protected]>
* fixes #2438 - Add image build capability to vsphere using templates
2014-04-09 Stephen Benjamin <[email protected]>
* fixes #5113 - sort realms by host count
2014-04-08 Eric D. Helms <[email protected]>
* Refs #2942: Added plugin rake task to extract translations
2014-04-08 Amos Benari <[email protected]>
* fixes #4806 add support to register compute resource provider from a plugin
2014-04-07 Michael Moll <[email protected]>
* fixes #4670: switch search to id on OS page
2014-04-07 Martin Milata <[email protected]>
* fixes #5090 - typo in bookmarks
2014-04-04 Ivan Nečas <[email protected]>
* fixes #5077 - refactor safemode rendering to allow helpers and variables from plugins
2014-04-04 Michael Moll <[email protected]>
* fixes #5072 - x86_86 -> amd64 for FreeBSD media
2014-04-04 Stephen Benjamin <[email protected]>
* fixes #5053 - minor bug fixes to realm integration
2014-04-04 Dominic Cleal <[email protected]>
* fixes #2929 - generate encryption key and encrypt data in postinstall
2014-04-04 Dmitri Dolguikh <[email protected]>
* 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 <[email protected]>
* fixes #5071 - foreman-tail stderr is muted
2014-04-04 Amos Benari <[email protected]>
* fixes #3592 lazy load vm with ajax in host show page.
2014-04-04 Martin Bačovský <[email protected]>
* Fixes #4755 - use_cache in development
2014-04-03 Michael Moll <[email protected]>
* refs #4305 - add support for OracleLinux
2014-04-03 Joseph Magen <[email protected]>
* fixes #4863 - API V2 - add puppetclasses format style=list and module_name to base.json.rabl
2014-04-03 Jan Pazdziora <[email protected]>
* fixes #4462 - extending the /users/login handling to process REMOTE_USER through intercept
2014-04-02 Joseph Magen <[email protected]>
* fixes #4995 - editing location with 'all users' checked fails on edit page in postgres
2014-04-02 Ivan Nečas <[email protected]>
* Fixes #4976 - ensure the process is really running inside a rake task
2014-04-02 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-04-02 Stephen Benjamin <[email protected]>
* fixes #1809 - foreman realm integration
2014-04-01 Lukas Zapletal <[email protected]>
* fixes #1966 - improved UI errors for proxy
2014-04-01 marianitadn <[email protected]>
* 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 <[email protected]>
* fixes #4712 - editing organization gives undefined method parent_taxonomy_selected_location_path
2014-03-31 Stephen Benjamin <[email protected]>
* fixes #4673 - make default sort order descending on count columns
2014-03-31 Michael Moll <[email protected]>
* fixes #4691 - add search for hosts' managed status
* fixes #4800 SLES special handling in facts parser
2014-03-31 Lukas Zapletal <[email protected]>
* fixes #4659 - added foreman-tail tool
2014-03-31 Dmitri Dolguikh <[email protected]>
* Fixes #4851: a SmartProxy.with_features scope replaces feature-specific scopes generated during class loading
2014-03-31 Joseph Magen <[email protected]>
* fixes #4731 - Rails 3.2.8 causing _pkey constraint errors
2014-03-31 Bryan Kearney <[email protected]>
* Fixes #4927 - Extend foreman-debug to look for extensions provided by plugins.
2014-03-30 Dominic Cleal <[email protected]>
* refs #2189 - update host group parameter search tests
* fixes #1804 - find hosts through nested hostgroups on puppet class search
2014-03-27 Anya Marshall <[email protected]>
* Fixes #4679 - Downcase fqdn to match Puppet SSL certs casing
2014-03-27 Bryan Kearney <[email protected]>
* Fixes #4884 : remove duplicate slashes from the gravatar url
2014-03-26 Brad Buckingham <[email protected]>
* fixes #4776 - support session[:expires_at] for api requests
2014-03-26 Dominic Cleal <[email protected]>
* fixes #4794 - precompile filters.js and taxonomy_edit.js files
2014-03-25 Justin Sherrill <[email protected]>
* fixes #4804 - sort organizations by title
2014-03-25 Lukas Zapletal <[email protected]>
* fixes #2954 - string extraction fixed on welcome page
2014-03-25 Daniel Lobato <[email protected]>
* fixes #3214 - set taxonomy for hosts created via Puppet from facts or a default setting
2014-03-25 Dominic Cleal <[email protected]>
* fixes #4828 - pin rake for Ruby 1.8 compatibility
2014-03-24 Amos Benari <[email protected]>
* fixes #4733 lookup keys in puppet class form visual changes
* fixes #4555 add ca certificate to ovirt
2014-03-24 Dominic Cleal <[email protected]>
* fixes #4457 - Session fixation, new session IDs are not generated on login (CVE-2014-0090)
2014-03-24 Joseph Magen <[email protected]>
* fixes #4456 - XSS on 500 error page and bookmark name causing render error (CVE-2014-0089)
2014-03-21 Greg Sutcliffe <[email protected]>
* Fixes #4680 - Don't append periods to unqualified unmanaged hosts
2014-03-19 Stephen Benjamin <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* fixes #4639 - array in lookup_value incorrectly displayed in form
2014-03-17 Stephen Benjamin <[email protected]>
* fixes #4669 - HostMailer summary method refers to undefined variable
* fixes #4256 - makes columns sortable in the UI
2014-03-17 Michael Moll <[email protected]>
* fixes #4664 - shorten OS description for SUSE
2014-03-17 Martin Bačovský <[email protected]>
* Fixes #4515 - Add support for dynamic bindings
2014-03-17 Ivan Nečas <[email protected]>
* Fixes #3988 - use require instead of autoload_once_paths
2014-03-14 Joseph Magen <[email protected]>
* 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 <[email protected]>
* fixes #4607 error when running test from ide
2014-03-13 Dominic Cleal <[email protected]>
* fixes #4314 - ignore default scope ordering on host search by puppet class
2014-03-13 Stephen Benjamin <[email protected]>
* fixes #4643 - Retrieving Optional LDAP attributes fails on 1.8.7
2014-03-12 Dominic Cleal <[email protected]>
* fixes #4626 - update Facter calls for 2.0 compatibility
2014-03-12 Jason Montleon <[email protected]>
* Fixes #4465: remove pretrans section of foreman.spec
2014-03-12 Greg Sutcliffe <[email protected]>
* Fixes #4616 - Add a Fog mixin for looking up EC2 IP addresses
2014-03-12 Alissa Bonas <[email protected]>
* refs #4167 - Added inline info regarding root password length policy
2014-03-12 Dmitri Dolguikh <[email protected]>
* fixes #4557: namespaced and mounted plugins no longer cause crash on the filter screen
2014-03-12 Tomas Strachota <[email protected]>
* Fixes #4486 - organization not searchable by name
2014-03-12 Ohad Levy <[email protected]>
* fixes #4637 - remove search by label from all ancestry objects besides hostgroups
2014-03-11 Dominic Cleal <[email protected]>
* fixes #4123 - libvirt imaging support using backing volumes
2014-03-11 Ohad Levy <[email protected]>
* fixes #4625 - ensures alerts can have close opt disabled
2014-03-11 Stephen Benjamin <[email protected]>
* fixes #3827 - adds ldap avatar support
2014-03-11 Jan Pazdziora <[email protected]>
* fixes #3475 - make it possible to force the 401 status.
2014-03-11 Lukas Zapletal <[email protected]>
* fixes #4565 - puppet class free-text search is now significantly faster
2014-03-07 Greg Petras <[email protected]>
* fixes #4581 Implement available_networks API for VMware
2014-03-07 James Jenkins <[email protected]>
* fixes #4485 prevents undefined method when cloning a host
2014-03-07 Stephan Dollberg <[email protected]>
* fixes #3221 - add missing attributes to hostgroup show response
2014-03-07 Andy Bohne <[email protected]>
* fixes #4583 - Added Environment name to rundeck output
2014-03-07 Tom McKay <[email protected]>
* fixes #4194, #4459 - add main_app to root_path references for isolated engines
2014-03-07 Jan Pazdziora <[email protected]>
* fixes #4442 - returning nil plays nice with try_to_login.
2014-03-07 Martin Matuska <[email protected]>
* fixes #3996 Support to assign both cores and CPUs to VMWare guests
2014-03-07 Alissa Bonas <[email protected]>
* fixes #4290 add validation for user group max name length of 255
2014-03-06 Marek Hulan <[email protected]>
* Fixes #4537 - user can set empty roles array via API
* Fixes #4553 - miscellaneous filters editing
2014-03-06 Martin Ducar <[email protected]>
* fixes #4524 - The logged in user should be the default one in create new hosts
2014-03-06 Joseph Magen <[email protected]>
* fixes #4201 - update operating system by label, use description or fallname otherwise
2014-03-06 Josh Baird <[email protected]>
* fixes #3163 - add link to first use instructions
2014-03-04 Daniel Lobato <[email protected]>
* fixes #3001 - Facts searchable by both host id and name
2014-03-04 Marek Hulan <[email protected]>
* 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 <[email protected]>
* fixes #4539 - changed os minor attribute to not required
2014-03-04 Josh Baird <[email protected]>
* fixes #3767 - add new host to hosts menu
2014-03-04 Jason Montleon <[email protected]>
* fixes #4245 - return HTTP body for oVirt SSL CA certificate
2014-03-04 Eric D. Helms <[email protected]>
* Fixes #4226: add a Rake task for plugins that compiles their assets into core assets pipeline
2014-03-03 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-03-03 Marek Hulan <[email protected]>
* fixes #812 - new permissions model, user group role and nest support, role filters for better granularity
2014-02-25 Eric D. Helms <[email protected]>
* Fixes #4441 - Overriden link_to method should be public, not protected
2014-02-24 Joseph Magen <[email protected]>
* fixes #4393 - rename ancestry label to title
2014-02-24 Neil Miao <[email protected]>
* fixes #4423 - allow puppet classes to be imported by environment
2014-02-24 Lukas Zapletal <[email protected]>
* fixes #3751 - new/edit submit buttons now have id
2014-02-24 Jimmi Dyson <[email protected]>
* fixes #4015 - support oVirt using templates like images
2014-02-21 Joseph Magen <[email protected]>
* 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 <[email protected]>
* fixes #4388 - upgrade to Rails 3.2.17
* fixes #3912 - add inheritance for locations / organizations
2014-02-19 James Netherton <[email protected]>
* fixes #4222 Add capability to compute resource API to retrieve cluster,network,storage info on oVirt
2014-02-19 Greg Sutcliffe <[email protected]>
* Fixes #2270 - Detect all OpenStack IPs and test which allows SSH
2014-02-18 jan kaufman <[email protected]>
* fixes #4125 [Openstack] - host with auto assigned IPs can't be deleted
2014-02-18 Amos Benari <[email protected]>
* fixes #3567 Editing an oVirt compute resource can throw errors loading quotas while loading page
2014-02-18 Stephen Benjamin <[email protected]>
* fixes #3307 - add troubleshooting to console page
2014-02-18 Joseph Magen <[email protected]>
* fixes #4333 - added multi-select-rails gem
2014-02-17 Joseph Magen <[email protected]>
* fixes #3939 - add option to 'inherit from parent' for hostgroup attributes
2014-02-17 Dominic Cleal <[email protected]>
* fixes #4268 - don't search for host with nil IP on hostname spoofing
2014-02-14 Sam Kottler <[email protected]>
* Fixes #4221: add :dependent => :destroy for compute profiles on compute resource
2014-02-14 Joseph Magen <[email protected]>
* refs #4289 - tests for adding, deleting and updating lookup_values on host
2014-02-14 Stephen Benjamin <[email protected]>
* fixes #3845 - user login session ending clears chosen organization
2014-02-14 Lukas Zapletal <[email protected]>
* fixes #3903 - fixed menu links when relative URLs are set
2014-02-14 Neil Miao <[email protected]>
* fixes #3596 - validation error when user with hostgroup subscription creates a new hostgroup
2014-02-14 Eric D. Helms <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Fixes #4341: Adds a new organization taxonomy that is labeled empty.
2014-02-13 Joseph Magen <[email protected]>
* fixes #3980 - Compute profiles not rendering Openstack attributes correctly
2014-02-11 lphiri <[email protected]>
* Add header menu navigation
2014-02-10 Martin Matuska <[email protected]>
* Fixes #4276 display provisioned space in vSphere datastore selection
2014-02-10 Daniel Lobato <[email protected]>
* fixes #3519 - taxonomies include authorization module
2014-02-10 Stephen Benjamin <[email protected]>
* fixes #4298 - ldap auth should accept parens in firstname or surname
2014-02-10 karl-ravn <[email protected]>
* fixes #4304 - corrected strange search for host_id parameter