forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
8093 lines (5938 loc) · 330 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2015-03-02 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #5701 - removed extra id/name HTML attributes
2015-03-02 Shimon Shtein <sshtein@redhat.com>
* Fixes #9548 - Changed the behavior of size selector in compute profile editor to match radio buttons
* Fixes #9339 - Changed the OS sorting to title
2015-03-02 Johan Swensson <jswensso@redhat.com>
* fixes #6044 - production.log should have timestamps in it
2015-03-02 Marek Hulan <mhulan@redhat.com>
* Fixes #9547 - DHCP is default subnet boot mode
2015-03-01 Marek Hulan <mhulan@redhat.com>
* Fixes #9592 - unfold external user groups on error
* Fixes #9590 - make info test less fragile
2015-03-01 Tomer Brisker <tbrisker@gmail.com>
* Fixes #3016 - Sort accesible hostgroups by db instead of in memory
2015-02-26 Daniel Lobato García <elobatocs@gmail.com>
* Refs #9500 - revert normalize_name tests
2015-02-26 Tom Caspy <tcaspy@gmail.com>
* fixes #9118 - host mailer should not fail if no owner set for host
* fixes #9551 - checking the encryption format so osx doesn't fail
2015-02-26 Marek Hulan <mhulan@redhat.com>
* Fixes #9495 - Require identifier for managed bonds
* Fixes #9497 - Require MAC for managed BMC
2015-02-26 Shimon Shtein <sshtein@redhat.com>
* Fixes #9427 - Return meaningful errors from subnets/freeip and parse the error response to the UI
2015-02-26 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #9147 - move managed checks to the start of the DHCP/DNS/TFTP orchestration checks
2015-02-26 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #7764 - add quirks mode to JSON.dump
2015-02-25 Daniel Lobato García <elobatocs@gmail.com>
* Add issue stats badge
2015-02-25 Dominic Cleal <dcleal@redhat.com>
* refs #8331 - fix rubocop empty line warning
2015-02-25 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8331 - provide some tools for filtering mail
2015-02-25 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #9334 - reverse the order of 'hosts/provisioning setup' sub-menu
2015-02-25 johscheuer <joh.scheuer@gmail.com>
* fixes #9397 - Make usage of @host.operatingsystem in UnattendedController consistent
2015-02-24 Tomas Strachota <tstrachota@redhat.com>
* Fixes #8736 - confirmation before host delete for freshly created hosts
2015-02-24 Marek Hulan <mhulan@redhat.com>
* Fixes #9500 - matching uses the whole domain name
2015-02-24 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
* templates - sync from community-templates
2015-02-24 Tomer Brisker <tbrisker@gmail.com>
* Fixes #9461 - Update subnets on domain change in hostgroup
2015-02-23 Tomer Brisker <tbrisker@gmail.com>
* Fixes #3278 - Correctly extract "New %s" strings
* Fixes #9452 - correct capitalization of VMware
2015-02-23 Tomas Strachota <tstrachota@redhat.com>
* Fixes #9325 - preserve compute resource attrs after NIC modal is closed
2015-02-23 Dominic Cleal <dcleal@redhat.com>
* fixes #9107 - update to fog 1.28.0, fog-aws 0.1+
2015-02-22 Tomer Brisker <tbrisker@gmail.com>
* Fixes #5998 - add taxonomy tabs to config_template#edit
2015-02-22 Marek Hulan <mhulan@redhat.com>
* Fixes #9496 - Adds popover help to IPAM field in Subnet form
2015-02-22 Tom Caspy <tcaspy@gmail.com>
* Refs #4478 - Remove empty line in apipie.rake
2015-02-20 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #9458 - process only executable debug extensions
2015-02-20 Martin Bačovský <martin.bacovsky@gmail.com>
* Refs #4478 - copy in pre-built plugin caches on rake apipie:cache index
2015-02-19 Marek Hulan <mhulan@redhat.com>
* Fixes #9429 - identifier is required for Alias and VLAN
2015-02-18 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #6655 - remove _ForemanSelectedhosts cookie on action submit
* fixes #8581 - [vmware] use cluster full path to create vm
2015-02-18 Dominic Cleal <dcleal@redhat.com>
* refs #3809 - exclude auto-generated schema.rb from rubocop checks
* fixes #9358 - match unattended template requests against provision interface
2015-02-18 Daniel Lobato <elobatocs@gmail.com>
* Refs #3809 - Remove cop emptyliteral
* Refs #3809 - Remove classcheck cop
* Refs #3809 - Remove various small cops
* Refs #3809 - Remove cop IndentationConsistency
* Refs #3809 - Remove cops for empty lines
2015-02-17 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8953 - update IPA userclass param on realm update
2015-02-17 Josh Baird <jbaird@follett.com>
* fixes #8953 - update IPA userclass param on realm update
2015-02-17 David Davis <daviddavis@redhat.com>
* Fixes #9231 - Require English lib and fix ENC failure
2015-02-16 Marek Hulan <mhulan@redhat.com>
* Fixes #9351 - use correct interfaces url for AJAX calls
* Fixes #2749 - power status helper can handle unknown states
2015-02-16 David Davis <daviddavis@redhat.com>
* Fixes #9357 - Making description db types consistent across Foreman
2015-02-16 Stephen Benjamin <stbenjam@redhat.com>
* fixes #9369 - tftp should send host, not self to get the boot files uri
2015-02-16 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #9335 - adds toggle to puppet classes list & better ui
2015-02-16 johannes <joh.scheuer@gmail.com>
* fixes #9362 - Add mediapath support to CoreOS
2015-02-16 Dominic Cleal <dcleal@redhat.com>
* refs #9138 - skip all interfaces UI tests, which fail randomly
* templates - sync from community-templates
2015-02-12 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8641 - Update fog to 1.27
2015-02-12 Dominic Cleal <dcleal@redhat.com>
* i18n - pulling formatting fixes from tx
* i18n - extracting new, updating rails, pulling from tx
2015-02-11 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #9006 - Add header to facts chart
2015-02-11 Tom Caspy <tcaspy@gmail.com>
* fixes #9212 - using headless browser in order to run Capybara tests
* fixes #9274 - hostgroup#clone clones config groups
* fixes #9249 - associated_host fixed for all compute resources
2015-02-11 Dominic Cleal <dcleal@redhat.com>
* refs #6371 - fix unclosed HTML tag
2015-02-10 Dominic Cleal <dcleal@redhat.com>
* refs #6371 - extract VNC password text
2015-02-10 Marek Hulan <mhulan@redhat.com>
* Fixes #9186 - build interface if needed during facts import
2015-02-10 Tommy McNeely <tommy@lark-it.com>
* fixes #9124 - fixes detection of hashed root passwords
2015-02-10 Tom Caspy <tcaspy@gmail.com>
* fixes #6371 - showing the vnc password
2015-02-09 Marek Hulan <mhulan@redhat.com>
* Fixes #9195 - register MAC validation errors properly
* Fixes #9104 - allow disabling of interface updates
2015-02-09 Lukas Zapletal <lzap+git@redhat.com>
* Refs #8710 - moved proxy related info from foreman-debug
2015-02-08 Dominic Cleal <dcleal@redhat.com>
* fixes #8565 - only get unique, unused message/source IDs to speed up expiry
2015-02-08 Tom Caspy <tcaspy@gmail.com>
* fixes #5812 - url parameter in compute_resource#create is not required for EC2, removing the required flag
* fixes #6774 - in case of parsing of non json or broken json, return 400
* fixes #3008 - allowing large ptables
2015-02-08 Daniel Lobato <elobatocs@gmail.com>
* Fixes #6884 - Installation media without $minor generate broken $version
* Fixes #9225 - private is defined twice in hosts controller
2015-02-08 Tomas Strachota <tstrachota@redhat.com>
* Fixes #9113 - api docs for users miss locale and timestamp params
2015-02-08 Marek Hulan <mhulan@redhat.com>
* Fixes #9160 - use provision interface for image based provisioning
* Fixes #9198 - migration sets type explicitly
2015-02-08 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #9030 - Adds support to clone config template via api
2015-02-02 William Hutson <wilrnh@msn.com>
* Fixes #9193 - broken rake-config command
2015-01-30 Daniel Lobato <elobatocs@gmail.com>
* Refs #3809 - Enable cop StringConversionInInterpolation
2015-01-29 Tomas Strachota <tstrachota@redhat.com>
* Refs #9138 - temporarily disable affected intermittent tests
2015-01-28 Marek Hulan <mhulan@redhat.com>
* Fixes #8052 - allows erb in array and hash params
2015-01-28 Tomer Brisker <tbrisker@redhat.com>
* fixes #8469 - css cleanup, whitespaces and remove dead code
2015-01-27 Marek Hulan <mhulan@redhat.com>
* Fixes #7456 - Extract primary interface from host
2015-01-27 David Davis <daviddavis@redhat.com>
* Fixes #9097 - Fix typo in value_to_sql method
2015-01-26 Tommy McNeely <tommy@lark-it.com>
* fixes #8498 - Allows root password to be set in finish scripts
2015-01-26 Jiri Stransky <jistr@redhat.com>
* Refs #9049 - fix log message formatting
2015-01-26 David Davis <daviddavis@redhat.com>
* Fixes #9099 - Upgrade rubocop to 0.28.0
2015-01-24 Stephen Benjamin <stbenjam@redhat.com>
* fixes #6362 - correct menu dividers if user isn't auth for some actions
2015-01-24 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #2948 - added sp_* host attributes to safe mode
2015-01-24 stocky <stocky@gorgon.home>
* Fixes #9059 - adds puppetssldir setting
2015-01-23 Ori Rabin <orabin@redhat.com>
* Fixes #8970 - fixed second click on two-pane link
* Fixes #8963 - Rename trunc helper to trunc_with_tooltip
2015-01-23 Marek Hulan <mhulan@redhat.com>
* Fixes #9044 - fixes invalid mac in tests
2015-01-23 Jiri Stransky <jistr@redhat.com>
* Fixes #9049 - Log exceptions when triggering a Puppet run
2015-01-23 Dominic Cleal <dcleal@redhat.com>
* fixes #9084 - catch net-ldap 0.11's specific invalid filter exception
2015-01-22 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8821 - Handle unnamed OpenStack images in images form
2015-01-21 Stephen Benjamin <stbenjam@redhat.com>
* fixes #9025 - reflect on association for _name(s) methods
2015-01-20 Tom Caspy <tcaspy@gmail.com>
* fixes #6098 - ec2 compute resources now check image validity.
2015-01-20 Michael Moll <kvedulv@kvedulv.de>
* fixes #8993 - handle FreeBSD patch releases better
2015-01-20 David LeVene <david.levene@netspot.com.au>
* fixes #8402 - Reports from the last xx Days not displaying day filter option
2015-01-20 Dominic Cleal <dcleal@redhat.com>
* templates - sync from community-templates
2015-01-19 Tom Caspy <tcaspy@gmail.com>
* fixes #6369 - allow to override puppet ca/master to nil
2015-01-15 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8922 - authorized_smart_proxy_features should not fail if not implemented
* Refs #3809 - Enable cop BarePercentLiterals
2015-01-15 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8949 - fix noop migration for smart proxy auth settings
2015-01-15 Ori Rabin <orabin@redhat.com>
* Fixes #8830 - Allow two-pane to work on show
2015-01-14 Eric D. Helms <ericdhelms@gmail.com>
* Fixes #8934: Allow plugin menu items to disable turbolinks for their links.
2015-01-14 Dominic Cleal <dcleal@redhat.com>
* fixes #8925 - support plugin asset manifests beneath app root
2015-01-13 Bryan Kearney <bkearney@redhat.com>
* Fixes #8930 - Incorrect html caused a typo on the trends page
2015-01-13 Daniel Lobato <elobatocs@gmail.com>
* Refs #8857 - Styling fixes for coreOS boot_files_uri
2015-01-13 Johannes Scheuermann <johannes.scheuermann@inovex.de>
* fixes #8857 - refactor Debian boot_files_uri into parent class to match CoreOS
2015-01-13 Tomer Brisker <tbrisker@gmail.com>
* Fixes #8838 - Replace HTTP error codes with human-readable symbols
2015-01-13 Dominic Cleal <dcleal@redhat.com>
* refs #6832 - prevent extraction of string interpolation
* fixes #8855 - remove unused oj gem
2015-01-13 Ori Rabin <orabin@redhat.com>
* Fixes #8764 - adds description to taxonomies
2015-01-13 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8484 - make SmartProxyAuth concern more useful to plugins
2015-01-12 Dominic Cleal <dcleal@redhat.com>
* refs #8879 - revert "Pin fast_gettext to get tests to run"
2015-01-09 Dominic Cleal <dcleal@redhat.com>
* fixes #8885 - pin google-api-client to retain Ruby 1.9 support
2015-01-09 Joseph Magen <jmagen@redhat.com>
* fixes #8802 - add Turbolinks support
2015-01-09 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8879 - Pin fast_gettext to get tests to run
2015-01-09 Stephen Benjamin <stbenjam@redhat.com>
* refs #8747 - undo pinning google_api_client gem to 0.7.1
2015-01-07 Tomer Brisker <tbrisker@gmail.com>
* Fixes #8837 - Return correctly formatted response on ajax_error
2015-01-07 Marek Hulan <mhulan@redhat.com>
* Fixes #8851 - support seed files of plugin with dash in name
2015-01-05 Tomer Brisker <tbrisker@gmail.com>
* Fixes #6832 - Don't show location/organization on host edit page if host has none
2015-01-05 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8822 - append target=_blank to all links with rel-external
2015-01-05 ripcurld00d <ripcurld.github@gmail.com>
* Fixes #8786 - Show override button after removing overridden parameter
2015-01-02 Tom Caspy <tcaspy@gmail.com>
* Fixes #8661 - Refactor compute resource vm partials
2014-12-30 Johannes Scheuermann <johannes.scheuermann@inovex.de>
* fixes #7652 - Implements CoreOS OS support
2014-12-30 Shimon Shtein <sshtein@redhat.com>
* Fixes #8804 - Align the dashboard to bootstrap columns
2014-12-29 Michael Moll <kvedulv@kvedulv.de>
* fixes #8791 - pin i18n gem
2014-12-28 Shlomi Zadok <shlomi@ben-hanna.com>
* refs #8428 - fix typo in audit's belongs_to user
* fixes #6540, #8335 - Add error to vmware when no datacenter, save password when testing connection
* fixes #8049 - Add timezone to user
2014-12-28 Tomer Brisker <tbrisker@gmail.com>
* Fixes #8796 - Fix to_gb size calculation and constentize
2014-12-28 Joseph Magen <jmagen@redhat.com>
* fixes #8442 - add eager loading of users on audit show page for history tab
2014-12-28 Shimon Shtein <sshtein@redhat.com>
* Fixes #8785 - HTML syntax fixes - add thead/tbody, fix formatting
2014-12-25 Tomer Brisker <tbrisker@gmail.com>
* Fixes #8417 - Correctly focus on errors in puppet form
2014-12-25 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8638 - ensure that a redirect to hosts index after host destroy
2014-12-24 Tomer Brisker <tbrisker@gmail.com>
* Fixes #7523 - Removed autocomplete search from id fields
* Fixes #8790 - Fix N+1 query on user list page
2014-12-23 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8233 - better HTML formatting for summary email
2014-12-23 Tomer Brisker <tbrisker@gmail.com>
* Fixes #8721 - Replaced jQuery.attr('id') with .id
* Fixes #8704 - Replace jQuery.size() with jQuery.length
* Fixes #7165 - Correct cursor behaviour on delete links for firefox
2014-12-23 Dominic Cleal <dcleal@redhat.com>
* fixes #8722 - quote dpkg wildcard argument to avoid matching files
* fixes #8503 - remove ruby_parser pin to allow safemode update
2014-12-18 Ori Rabin <orabin@redhat.com>
* Fixes #8747 - Temporary pin for google_api_client gem
2014-12-18 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8676 - tar foreman-debug results including the parent directory
2014-12-18 Dominic Cleal <dcleal@redhat.com>
* fixes #8739 - use global setting when hostgroup root_pass is blank
2014-12-17 Dominic Cleal <dcleal@redhat.com>
* fixes #8735 - enable config drive on Rackspace servers
2014-12-15 Dominic Cleal <dcleal@redhat.com>
* fixes #8685 - include netmask in ENC output
2014-12-11 Lukas Zapletal <lzap+git@redhat.com>
* Refs #8364 - removed javascript N+1 alerts
2014-12-11 ripcurld00d <ripcurld.github@gmail.com>
* Fixes #2592 - No indication when waiting for host dashboard button action to complete
2014-12-11 Dominic Cleal <dcleal@redhat.com>
* fixes #8627 - add host comment field to API documentation
2014-12-10 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8620 - Remove useless back to host index link in multiple hosts action
2014-12-09 Dominic Cleal <dcleal@redhat.com>
* refs #8477 - fix string interpolation and spelling
* fixes #8590 - handle missing 'config' when listing vSphere VMs
2014-12-09 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8477 - usability improvements to template locking/defaults
2014-12-09 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8591 - explicitly set where to subnets.id
2014-12-09 Šimon Lukašík <slukasik@redhat.com>
* fixes #8592 - allow plug-ins to modify multiple hosts actions
2014-12-09 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8416 - Fix Puppet classes form n+1 queries
2014-12-08 Ori Rabin <orabin@redhat.com>
* Fixes #8551 - use most specific matcher for inherited hostgroups
2014-12-05 Dominic Cleal <dcleal@redhat.com>
* refs #7032 - fix documented backup filename
2014-12-05 Daniel Lobato <elobatocs@gmail.com>
* Fixes #7032 - Rake backup accepts destination file
* Fixes #8401: n+1 query on group parameters host edit
* Fixes #8400: Remove eager loading of puppetclass in lookup_keys index
2014-12-04 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8228 - add a config_templates concern to serve config_templates controllers
2014-12-04 Dominic Cleal <dcleal@redhat.com>
* fixes #5841 - use inner query when retrieving reports for subset of authorised hosts
2014-12-03 Henrik Feldt <henrik@haf.se>
* Fixes #5999 - vpc + pub ip -> attach pub ip
2014-12-03 Tom Caspy <tcaspy@gmail.com>
* fixes #8539 - refactoring a test to work for both GNU libc and Darwin libc
* fixes #8513 - removing n+1 query from images#index
2014-12-03 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #8546 - Namespace interfaces and subnets to avoid a facts clash
2014-12-03 Ohad Levy <ohadlevy@gmail.com>
* fixes #8526 - file uploads are now possible via two_pane.
2014-12-03 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8221 - search for subnet with taxonomy scope
2014-12-03 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8348 - expose user variable to templates in group mail
2014-12-02 Tomas Strachota <tstrachota@redhat.com>
* Fixes #8284 - missing params in OS api docs
2014-12-02 Ori Rabin <orabin@redhat.com>
* Fixes #8536 - can update and delete media with dot in name
2014-12-02 Ohad Levy <ohadlevy@gmail.com>
* fixes #8471 - adds a number field input support
2014-12-02 Dominic Cleal <dcleal@redhat.com>
* templates - sync from community-templates
2014-12-02 Marek Hulan <mhulan@redhat.com>
* Fixes #8433 - Fix type transformation for all ENC-able NICs
2014-12-01 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8421 - Host group search by OS attributes
2014-12-01 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #8267 - accept template_url in call to foreman from proxy
2014-11-28 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8499 - Link LICENSE from README
2014-11-28 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8356 - refactor reset method for libvirt
* fixes #8459 - remove sp_subnet_id from api/hosts
2014-11-28 Ori Rabin <orabin@redhat.com>
* Fixes #8428 - Connecting audits to existing users
2014-11-28 Ohad Levy <ohadlevy@gmail.com>
* fixes #8467 - trends range selector is now visible
2014-11-28 Dominic Cleal <dcleal@redhat.com>
* fixes #7487 - remove unused background-image containing UTF-8 character
2014-11-27 Dominic Cleal <dcleal@redhat.com>
* fixes #8527 - pin rest-client to version compatible with current rbovirt
2014-11-27 Tomer Brisker <tbrisker@gmail.com>
* Fixes #5723 - Show host groups inherited via config groups in puppetclass index
2014-11-26 Dominic Cleal <dcleal@redhat.com>
* fixes #8463 - remove i18n bundler group as it isn't optional
* fixes #8510 - ignore gettext load failures in production without it
2014-11-26 Tomer Brisker <tbrisker@gmail.com>
* Fixes #8414 - extracts validators from models
2014-11-26 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8367 - Eager load classes under /lib
* fixes #8357 - Set fog gem to version 1.25.0
2014-11-25 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #7525 - don't fail on structured facts
2014-11-25 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #7233 - Drop Ruby 1.8.7 and revert Ruby 1.8.7 specifics
2014-11-25 Tomer Brisker <tbrisker@gmail.com>
* Fixes #6872 - Add title to new compute resource page
2014-11-24 Joseph Magen <jmagen@redhat.com>
* fixes #8445 - upgrade rails to 3.2.21
2014-11-24 Tomer Brisker <tbrisker@gmail.com>
* Fixes #7440 - correctly autocomplete current_user
* Fixes #6765 - correct wrong validation on media name
2014-11-24 Ohad Levy <ohadlevy@gmail.com>
* fixes #8457 - auto complete search clear btn is now positioned correctly
2014-11-24 Marek Hulan <mhulan@redhat.com>
* Fixes #8456 - normalize addresses only if mac is being set
2014-11-20 Marek Hulan <mhulan@redhat.com>
* Fixes #7908 - normalize mac before host get saved
2014-11-20 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #8405 - Filter :interfaces_attributes when calculating templates_used
2014-11-19 Daniel Lobato <elobatocs@gmail.com>
* Refs #3809 - Remove useless assignments
2014-11-18 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8425 - n+1 query on audits index
* Fixes #4613 - Remove duplicate scoped search from taxonomies
2014-11-17 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8424 - Controller concerns are loaded twice
2014-11-17 Ori Rabin <orabin@redhat.com>
* Fixes #5573 - os search definitions for host available in unattended=false mode
* Fixes #8418 - Add 'facts' feature to features
* Fixes #5169 - Error in smart class param or value cause tab header to turn red in Puppet Class edit form
2014-11-17 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8363 - Sort VMware attributes alphabetically
2014-11-17 Tomer Brisker <tbrisker@gmail.com>
* Fixes #3288 - i18n extract heading on new host view
2014-11-17 Stephen Benjamin <stephen@bitbin.de>
* fixes #5634 - save sso_method on session expiry
2014-11-14 Scott Seago <sseago@redhat.com>
* fixes #8377 - fixes uniq validation for nics without a host
2014-11-14 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #5018 - pin rbvmomi gem to the rbvmomi version in fog gem
2014-11-13 Dominic Cleal <dcleal@redhat.com>
* fixes #8366 - add parameter type to unique index
2014-11-13 Ohad Levy <ohadlevy@gmail.com>
* fixes #8364 - Adds SQL N+1 Query detection using bullet.
2014-11-12 Jiayi Ye <yejiayily@gmail.com>
* Bug #7547 - Cannot log out of WebUI from mobile device
2014-11-12 Bryan Kearney <bkearney@redhat.com>
* Fixes #8325 : Enhance the plugin object to use the gem path to understand where the plugin is installed
2014-11-12 Tomer Brisker <tbrisker@gmail.com>
* Fixes #1448 - correctly display puppetclass statistics
* Fixes #844 #5725 - correct hosts count in puppetclass
* Fixes #7488 - correctly display hostgroups with / in their names
2014-11-12 Joseph Magen <jmagen@redhat.com>
* fixes #5773 - redirect to referrer URL that includes page and search
2014-11-12 ripcurld00d <ripcurld.github@gmail.com>
* Fixes #7590 - OS Family web UI is handled uniquely in three different places
2014-11-12 Martin Bačovský <martin.bacovsky@gmail.com>
* Fixes #4478 - API documentation localized
2014-11-12 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #8321 - correctly pull Compute Resource image method from compute attributes
2014-11-11 ripcurld00d <ripcurld.github@gmail.com>
* Fixes #6974 - Hitting Cancel button on New Org > Manually Assign goes to 404
2014-11-11 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #8281 - remove id-name parameterization from puppetca
2014-11-11 Jiayi Ye <yejiayily@gmail.com>
* Bug #7619 - [zh_CN] Localized string broken for Loading page
2014-11-11 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #8337 - reworded oVirt template help text
2014-11-10 Daniel Lobato <elobatocs@gmail.com>
* Fixes #7369 - External user groups update on login
2014-11-10 Tomas Strachota <tstrachota@redhat.com>
* Fixes #7462 - new UI for network interfaces
2014-11-07 Stephen Benjamin <stbenjam@redhat.com>
* fixes #8302 - only return active images for openstack compute resources
2014-11-06 Joseph Magen <jmagen@redhat.com>
* fixes #8277 - upgrade rails to 3.2.20
2014-11-05 Daniel Lobato García <elobatocs@gmail.com>
* Fixes #8285 - Update README.md
2014-11-05 Tom McKay <thomasmckay@redhat.com>
* fixes #6408 - dismiss org/loc context menu when mouse leaves it
2014-11-05 Daniel Lobato <elobatocs@gmail.com>
* Refs #3809 - fix shadowing outer local variables
2014-11-05 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #7971 - DHCP hostname commutative conflict fix
* Fixes #8258 - CR provider errors with correct log level
2014-11-04 Greg Sutcliffe <gsutclif@redhat.com>
* Refs #969 - Foreman-side changes for serving templates from the proxy
2014-11-04 Dominic Cleal <dcleal@redhat.com>
* refs #746 - hosts stylesheet is part of app.css, not standalone
2014-11-04 Jiayi Ye <yejiayily@gmail.com>
* Fixes #7954 - When creating a host cant is spelled wrong under partition table side note
2014-10-31 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8091: connect-src accepts WSS
2014-10-31 Stephen Benjamin <stbenjam@redhat.com>
* fixes #7586, #7734, #7172 - user preferences for receiving mail notifications
* fixes #4463 - use unattended URL for hostgroup provisioning
2014-10-31 Dominic Cleal <dcleal@redhat.com>
* refs #3260 - add label for default value tickbox to match overrides
2014-10-30 Dominic Cleal <dcleal@redhat.com>
* refs #3260 - extract string, fix inconsistent capitalisation
* fixes #8133 - update audit diff view to match changes in cafa947
2014-10-30 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #7982 - Parameterize Operatingsystem.title to avoid non-alphanumeric characters in title (and friendly_id)
2014-10-30 Ori Rabin <orabin@redhat.com>
* Fixes #3260- Allows puppet to manage value of smart class parameter that can be overrided
2014-10-29 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #7975 - Subnet names should be unique
* ref #8056 - Unit tests for to_param
* fixes #8056 - replaces . (dot) in params with - (hyphen)
2014-10-29 Ivan Nečas <inecas@redhat.com>
* Fixes #8009 - Make sure the final version of helpers is in the controller
2014-10-29 Dominic Cleal <dcleal@redhat.com>
* refs #746 - fix string interpolation ordering
2014-10-28 Dominic Cleal <dcleal@redhat.com>
* Bump version to 1.8-develop
2014-10-27 Dominic Cleal <dcleal@redhat.com>
* templates - sync from community-templates
2014-10-26 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #746 - Generate all the Host template when click on Build to avoid errors during installation
2014-10-26 Daniel Lobato <elobatocs@gmail.com>
* Fixes #8043 - Statistic links to OS
* Fixes #8048: n+1 query selecting multiple hosts
2014-10-24 Marek Hulan <mhulan@redhat.com>
* Fixes #2089 - Add network configuration to ENC
2014-10-24 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #7994 - increased default token_duration setting
2014-10-24 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2014-10-24 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #7657 - remove default OAuth credentials
2014-10-24 Tomer Brisker <tbrisker@gmail.com>
* Fixes #7519 - i18n extract ajax error message
2014-10-23 Tomas Strachota <tstrachota@redhat.com>
* Fixes #8005 - Convert allowed NIC types to strings
2014-10-23 ripcurld00d <boazyko1@gmail.com>
* Fixes #7561 - 'No. of CPU' search URL is incorrect
2014-10-22 Dominic Cleal <dcleal@redhat.com>
* refs #7587 - pwstrength stylesheet is part of app.css, not standalone
* fixes #8019 - convert po to JSON before refreshing pot/po files
2014-10-22 Tomas Strachota <tstrachota@redhat.com>
* Fixes #6710 - unicode characters in url parameters
2014-10-22 Ori Rabin <orabin@redhat.com>
* Fixes #7562- reducing number of reports created by test to stop sigkill during test
* Fixes #3309 - Support deep merging of hash and array structures in smart class parameters
2014-10-21 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #7733 - Remove hosts.yml fixtures and use FactoryGirl instead
2014-10-21 Lukas Zapletal <lzap+git@redhat.com>
* Refs #7719 - explicitly create .ssh dir in home
2014-10-20 Eric D. Helms <ericdhelms@gmail.com>
* Refs #6549: Ensure tests to skip exist to avoid too deep stack.
2014-10-20 Dominic Cleal <dcleal@redhat.com>
* i18n - extracting new, updating rails, pulling from tx
2014-10-20 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #7331 - delete unassigned os default templates
* fixes #7985 - add support for ws:// in secure headers
* fixes #7898 - ensure that format can respond to json / yaml
2014-10-20 Tomas Strachota <tstrachota@redhat.com>
* Fixes #7830 - interfaces api output is class specific
2014-10-17 Stephen Benjamin <stephen@bitbin.de>
* fixes #4439 - ensure user logins are handled case insensitively
2014-10-15 Tomas Strachota <tstrachota@redhat.com>
* Fixes #7933 - OS api responses miss field title
2014-10-14 Joseph Magen <jmagen@redhat.com>
* fixes #7372 - API v2 - accept PUT/POST requests with wrapped root node to add/remove has_many associations of child nodes
* fixes #7584 - add Authorizable module to class AuthSource
* fixes #3492 - API v2 nested routes for each controller
* fixes #7332 - Host Create API documentation missing required parameters
2014-10-14 Marek Hulan <mhulan@redhat.com>
* Fixes #7934 - Set correct order of require_dependency
2014-10-13 Thomas Kuther <tom@kuther.net>
* Fixes #2283 , #3135 - add config option for proxy_request_timeout
2014-10-13 Daniel Lobato <elobatocs@gmail.com>
* Fixes #7879 - Update fog to 1.24.0
2014-10-13 Ohad Levy <ohadlevy@gmail.com>
* Refs #7587 - Refactor password confirmation
2014-10-13 Shlomi Zadok <shlomi@ben-hanna.com>
* fixes #7907 - Allow images from gravatar on secure headers
2014-10-12 Ohad Levy <ohadlevy@gmail.com>
* refs #7861 - remove trailing whitespace
2014-10-11 Robert Birnie <rbirnie@threatmetrix.com>
* Fixes #6214 - Alphabetical menu sorting in the UI
2014-10-11 Jan Rusnacko <jrusnack@redhat.com>
* fixes #7805 - Add several security related HTTP headers - security hardening.
2014-10-10 David Davis <daviddavis@redhat.com>
* Fixes #7861 - Update rubocop version
2014-10-10 Dominic Cleal <dcleal@redhat.com>
* refs #7876 - my_organizations/locations tests
* refs #7587 - precompile pwstrength JS, move gem from runtime deps
* i18n - extracting new, updating rails, pulling from tx
2014-10-10 Vanya Jauhal <vanyajauhal1995@gmail.com>
* Fixes #7587 - Adds client-side password validation
2014-10-09 Robert Birnie <rbirnie@threatmetrix.com>
* Fixes #7886 - Compute Resources should be ordered by name
2014-10-09 Daniel Lobato <elobatocs@gmail.com>
* Fixes #7884 - Display Fog errors on vm operation
2014-10-09 Tom McKay <thomasmckay@redhat.com>
* fixes #7876 - filter Organization.my_organizations by org, not locaion
2014-10-08 Dominic Cleal <dcleal@redhat.com>
* refs #7401 - fix markdown syntax in API doc
2014-10-07 Daniel Lobato <elobatocs@gmail.com>
* Fixes #5139 - leftovers subscribe_to_all_hostgroups
* Fixes #4369 - Added link to filters page on RBAC form
* Refs #3809 - Use parentheses in method definitions
2014-10-07 Marek Hulan <mhulan@redhat.com>
* Fixes #7401 - Add support for bonds
2014-10-07 Daniel Lobato García <elobatocs@gmail.com>
* Refs #7639 - i18n fixes
2014-10-07 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #5468 - prevent Chrome from autofilling passwords
2014-10-06 David Davis <daviddavis@redhat.com>
* Refs #3809 - Fix a few rubocop TODOs
2014-10-06 Daniel Lobato <elobatocs@gmail.com>
* Refs #3809 - Remove rubocop TODOs
2014-10-06 Ohad Levy <ohadlevy@gmail.com>
* fixes #7772 - avoids multiple ajax requests
* fixes #2321 - remove new puppet creation option
2014-10-06 Joseph Magen <jmagen@redhat.com>
* fixes #5922 - compute resource #random_password to use SecureRandom()
2014-10-06 Ivan Nečas <inecas@redhat.com>
* Refs #4611 - rake-ify foreman-config and db_pending_migration/seed in settings
2014-10-06 Ori Rabin <orabin@redhat.com>
* Fixes #7624: validation for location and organization long names instead of an error
2014-10-06 Lukas Zapletal <lzap+git@redhat.com>
* fixes #5130 - Added warning when apipie cache is missing or outdated
* Fixes #7098 - better selinux reporting in foreman-debug
2014-10-06 Dmitry Kireev <dkireev@stg3.docstoc.corp>
* Fixes #7819 - Windows facts returned from kernelrelease
2014-10-06 Dominic Cleal <dcleal@redhat.com>
* refs #7608 - i18n fixes, tests, use POST for action + only display link if authed
* fixes #7818 - explicitly render role permissions to fix oj 2.10.3 error
2014-10-06 Tiffany <tcheng@marketo.com>
* fixes #7163 - on host's edit page, show the source for the value of puppet class parameters.
2014-10-02 Joseph Magen <jmagen@redhat.com>
* fixes #5833 - suggested command do not work when created new trend counter
* fixes #7569 - add lambda to scopes that are missing callable object (lambda or Proc)
* fixes #7756 - render not_found.json.rabl for API errors rather than expose too much internal information
2014-10-02 karmab <karimboumedhel@gmail.com>
* fixes #7608 - Override all puppetclass parameters in one click
2014-10-02 Marek Hulan <mhulan@redhat.com>
* Fixes #7738 - logout_url is nil by default for all SSO backends
2014-10-02 ripcurld00d <boazyko1@gmail.com>
* Fixes #7588 - pagination info not a button and aligned
2014-10-02 Lukas Zapletal <lzap+git@redhat.com>
* Fixes #7522 - made CA textarea editable for oVirt/RHEV
2014-10-02 Ohad Levy <ohadlevy@gmail.com>
* fixes #809 - remove out of date ssh using foreman script
2014-10-02 Ori Rabin <orabin@redhat.com>
* Fixes #7620: When cloning a host show old host name
2014-10-02 Dennis Kliban <dkliban@redhat.com>
* fixes #7613 - make search bar route lookup usable from isolated engine
2014-10-02 Michael Moll <kvedulv@kvedulv.de>
* fixes #7477 - new fog prop for IP address in vSphere
2014-10-02 Imre Farkas <ifarkas@redhat.com>
* Fixes #7757 - Fix link_to to call super with block
2014-10-01 Lukas Zapletal <lzap+git@redhat.com>
* fixes #4672 - added template_name template variable
2014-10-01 Jan Pazdziora <jpazdziora@redhat.com>
* fixes #7737 - no specific logout URL needed, will go directly back to login.
2014-10-01 Marek Hulan <mhulan@redhat.com>
* Fixes #7750 - hidden required fields do not prevent submit
2014-10-01 Ohad Levy <ohadlevy@gmail.com>
* fixes #3902 - [Openstack] allow selection of internal networks
2014-09-30 Joseph Magen <jmagen@redhat.com>
* fixes #6856 - API v2 - more efficient import puppetclasses for single environment
2014-09-30 Greg Sutcliffe <gsutclif@redhat.com>
* Fixes #6549 - Add :tests_to_skip to plugin registration block
2014-09-30 Dominic Cleal <dcleal@redhat.com>
* refs #2127 - add password_hash to API
2014-09-29 Dominic Cleal <dcleal@redhat.com>
* fixes #7732 - specify join models as Rails 3.2.8 can't reset through associations
2014-09-29 Ori Rabin <orabin@redhat.com>
* Fixes #7572 - remove rundeck from core
2014-09-29 Joseph Magen <jmagen@redhat.com>
* fixes #7560 - add :required => true on host fields that have conditional validation if host.managed?
* fixes #4386 - gem friendly_id to simplify find by id, name, label, etc
2014-09-29 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #7393 - searching users by role_id not supported
2014-09-29 ripcurld00d <boazyko1@gmail.com>
* Fixes #7591 - changed Sign out to Log out to fix inconsistent terminology around Login vs Sign Out
2014-09-28 Dominic Cleal <dcleal@redhat.com>
* refs #2127 - instantiate exception and pass i18n arg correctly
2014-09-26 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #7491 - moved default org and default location to same tab as org/loc selection
* Fixes #7592 - flipped the order of logged-in user menu
2014-09-26 Dmitri Dolguikh <dmitri@appliedlogic.ca>
* fixes #2127: added support for root password hashing other than MD5
2014-09-25 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #7639 - Remove tooltip for storage/network sections in Edit Compute Profile
2014-09-25 Christine Fouant <cfouant@redhat.com>
* fixes #5811 - Validates emails to RFC 5322 specification
2014-09-24 Aaron Stone <aaron@serendipity.cx>
* Fixes #7483 - Use hidden input value to hold raw template contents (CVE-2014-3653)
2014-09-24 Daniel Lobato <elobatocs@gmail.com>
* Fixes #6999 - protect user logout against CSRF requests (CVE-2014-3590)
2014-09-24 Tomas Strachota <tstrachota@redhat.com>
* Fixes #2524 - adding taxonomy scope parameters
* Fixes #5088 - adding location_ids and organizations_ids to apidocs of taxable resources
2014-09-23 Ori Rabin <orabin@redhat.com>
* Fixes #6695: Adding two OS parameters with same name should raise an error
2014-09-23 Joseph Magen <jmagen@redhat.com>
* fixes #7257 - all facts returned if host has no facts
* fixes #5896 - Set Compute Resource's 'Console passwords' option in API
2014-09-22 Tomer Brisker <tbrisker@gmail.com>
* Fixes #7571 - prevent ContentLoad from firing twice on document.ready
* Fixes #2232 - speed up Host view via AJAX
2014-09-21 Tomas Strachota <tstrachota@redhat.com>
* Fixes #6864 - adding api messages for extraction
2014-09-21 Marek Hulan <mhulan@redhat.com>
* Fixes #7450 - do not mark non-required fields
2014-09-21 Ori Rabin <orabin@redhat.com>
* Fixes #7164: Cannot create a domain that starts or ends with '.'
2014-09-18 Dominic Cleal <dcleal@redhat.com>
* refs #7038 - use n_() for plural support, use Rails style length message
2014-09-18 Ori Rabin <orabin@redhat.com>
* Fixes #7437: validation instead of PGError when host group title is exactly 256 characters
2014-09-18 Shlomi Zadok <shlomi@ben-hanna.com>
* Fixes #7489 - changed root password label to 'must' instead of 'should'
2014-09-17 Joseph Magen <jmagen@redhat.com>
* fixes #3544 - Editing an oVirt compute resource allows changing the type, which is unsupported
2014-09-16 Joseph Magen <jmagen@redhat.com>
* fixes #7409 - API v2 - add host attribute to GET response for auth source ldap
2014-09-16 Dominic Cleal <dcleal@redhat.com>
* i18n - add it, ko, ru, zh_TW languages
2014-09-16 Ohad Levy <ohadlevy@gmail.com>
* fixes #7434 - Setting descriptions are shown without wrapping
2014-09-15 Tomer Brisker <tbrisker@gmail.com>
* Fixes #6468 - Allow filtering/searching by active user
* Fixes #7329 - Correctly validate HostConfigGroup
2014-09-15 Marek Hulan <mhulan@redhat.com>
* Fixes #5541 - disallow taxonomy assignment
2014-09-15 Lukas Zapletal <lzap+git@redhat.com>