forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
7405 lines (5463 loc) · 304 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-10-27 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2014-10-26 Shlomi Zadok <[email protected]>
* Fixes #746 - Generate all the Host template when click on Build to avoid errors during installation
2014-10-26 Daniel Lobato <[email protected]>
* Fixes #8043 - Statistic links to OS
* Fixes #8048: n+1 query selecting multiple hosts
2014-10-24 Marek Hulan <[email protected]>
* Fixes #2089 - Add network configuration to ENC
2014-10-24 Lukas Zapletal <[email protected]>
* Fixes #7994 - increased default token_duration setting
2014-10-24 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-10-24 Shlomi Zadok <[email protected]>
* fixes #7657 - remove default OAuth credentials
2014-10-24 Tomer Brisker <[email protected]>
* Fixes #7519 - i18n extract ajax error message
2014-10-23 Tomas Strachota <[email protected]>
* Fixes #8005 - Convert allowed NIC types to strings
2014-10-23 ripcurld00d <[email protected]>
* Fixes #7561 - 'No. of CPU' search URL is incorrect
2014-10-22 Dominic Cleal <[email protected]>
* 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 <[email protected]>
* Fixes #6710 - unicode characters in url parameters
2014-10-22 Ori Rabin <[email protected]>
* 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 <[email protected]>
* Fixes #7733 - Remove hosts.yml fixtures and use FactoryGirl instead
2014-10-21 Lukas Zapletal <[email protected]>
* Refs #7719 - explicitly create .ssh dir in home
2014-10-20 Eric D. Helms <[email protected]>
* Refs #6549: Ensure tests to skip exist to avoid too deep stack.
2014-10-20 Dominic Cleal <[email protected]>
* i18n - extracting new, updating rails, pulling from tx
2014-10-20 Shlomi Zadok <[email protected]>
* 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 <[email protected]>
* Fixes #7830 - interfaces api output is class specific
2014-10-17 Stephen Benjamin <[email protected]>
* fixes #4439 - ensure user logins are handled case insensitively
2014-10-15 Tomas Strachota <[email protected]>
* Fixes #7933 - OS api responses miss field title
2014-10-14 Joseph Magen <[email protected]>
* 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 <[email protected]>
* Fixes #7934 - Set correct order of require_dependency
2014-10-13 Thomas Kuther <[email protected]>
* Fixes #2283 , #3135 - add config option for proxy_request_timeout
2014-10-13 Daniel Lobato <[email protected]>
* Fixes #7879 - Update fog to 1.24.0
2014-10-13 Ohad Levy <[email protected]>
* Refs #7587 - Refactor password confirmation
2014-10-13 Shlomi Zadok <[email protected]>
* fixes #7907 - Allow images from gravatar on secure headers
2014-10-12 Ohad Levy <[email protected]>
* refs #7861 - remove trailing whitespace
2014-10-11 Robert Birnie <[email protected]>
* Fixes #6214 - Alphabetical menu sorting in the UI
2014-10-11 Jan Rusnacko <[email protected]>
* fixes #7805 - Add several security related HTTP headers - security hardening.
2014-10-10 David Davis <[email protected]>
* Fixes #7861 - Update rubocop version
2014-10-10 Dominic Cleal <[email protected]>
* 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 <[email protected]>
* Fixes #7587 - Adds client-side password validation
2014-10-09 Robert Birnie <[email protected]>
* Fixes #7886 - Compute Resources should be ordered by name
2014-10-09 Daniel Lobato <[email protected]>
* Fixes #7884 - Display Fog errors on vm operation
2014-10-09 Tom McKay <[email protected]>
* fixes #7876 - filter Organization.my_organizations by org, not locaion
2014-10-08 Dominic Cleal <[email protected]>
* refs #7401 - fix markdown syntax in API doc
2014-10-07 Daniel Lobato <[email protected]>
* 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 <[email protected]>
* Fixes #7401 - Add support for bonds
2014-10-07 Daniel Lobato García <[email protected]>
* Refs #7639 - i18n fixes
2014-10-07 Shlomi Zadok <[email protected]>
* Fixes #5468 - prevent Chrome from autofilling passwords
2014-10-06 David Davis <[email protected]>
* Refs #3809 - Fix a few rubocop TODOs
2014-10-06 Daniel Lobato <[email protected]>
* Refs #3809 - Remove rubocop TODOs
2014-10-06 Ohad Levy <[email protected]>
* fixes #7772 - avoids multiple ajax requests
* fixes #2321 - remove new puppet creation option
2014-10-06 Joseph Magen <[email protected]>
* fixes #5922 - compute resource #random_password to use SecureRandom()
2014-10-06 Ivan Nečas <[email protected]>
* Refs #4611 - rake-ify foreman-config and db_pending_migration/seed in settings
2014-10-06 Ori Rabin <[email protected]>
* Fixes #7624: validation for location and organization long names instead of an error
2014-10-06 Lukas Zapletal <[email protected]>
* fixes #5130 - Added warning when apipie cache is missing or outdated
* Fixes #7098 - better selinux reporting in foreman-debug
2014-10-06 Dmitry Kireev <[email protected]>
* Fixes #7819 - Windows facts returned from kernelrelease
2014-10-06 Dominic Cleal <[email protected]>
* 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 <[email protected]>
* fixes #7163 - on host's edit page, show the source for the value of puppet class parameters.
2014-10-02 Joseph Magen <[email protected]>
* 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 <[email protected]>
* fixes #7608 - Override all puppetclass parameters in one click
2014-10-02 Marek Hulan <[email protected]>
* Fixes #7738 - logout_url is nil by default for all SSO backends
2014-10-02 ripcurld00d <[email protected]>
* Fixes #7588 - pagination info not a button and aligned
2014-10-02 Lukas Zapletal <[email protected]>
* Fixes #7522 - made CA textarea editable for oVirt/RHEV
2014-10-02 Ohad Levy <[email protected]>
* fixes #809 - remove out of date ssh using foreman script
2014-10-02 Ori Rabin <[email protected]>
* Fixes #7620: When cloning a host show old host name
2014-10-02 Dennis Kliban <[email protected]>
* fixes #7613 - make search bar route lookup usable from isolated engine
2014-10-02 Michael Moll <[email protected]>
* fixes #7477 - new fog prop for IP address in vSphere
2014-10-02 Imre Farkas <[email protected]>
* Fixes #7757 - Fix link_to to call super with block
2014-10-01 Lukas Zapletal <[email protected]>
* fixes #4672 - added template_name template variable
2014-10-01 Jan Pazdziora <[email protected]>
* fixes #7737 - no specific logout URL needed, will go directly back to login.
2014-10-01 Marek Hulan <[email protected]>
* Fixes #7750 - hidden required fields do not prevent submit
2014-10-01 Ohad Levy <[email protected]>
* fixes #3902 - [Openstack] allow selection of internal networks
2014-09-30 Joseph Magen <[email protected]>
* fixes #6856 - API v2 - more efficient import puppetclasses for single environment
2014-09-30 Greg Sutcliffe <[email protected]>
* Fixes #6549 - Add :tests_to_skip to plugin registration block
2014-09-30 Dominic Cleal <[email protected]>
* refs #2127 - add password_hash to API
2014-09-29 Dominic Cleal <[email protected]>
* fixes #7732 - specify join models as Rails 3.2.8 can't reset through associations
2014-09-29 Ori Rabin <[email protected]>
* Fixes #7572 - remove rundeck from core
2014-09-29 Joseph Magen <[email protected]>
* 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 <[email protected]>
* Fixes #7393 - searching users by role_id not supported
2014-09-29 ripcurld00d <[email protected]>
* Fixes #7591 - changed Sign out to Log out to fix inconsistent terminology around Login vs Sign Out
2014-09-28 Dominic Cleal <[email protected]>
* refs #2127 - instantiate exception and pass i18n arg correctly
2014-09-26 Shlomi Zadok <[email protected]>
* 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 <[email protected]>
* fixes #2127: added support for root password hashing other than MD5
2014-09-25 Shlomi Zadok <[email protected]>
* Fixes #7639 - Remove tooltip for storage/network sections in Edit Compute Profile
2014-09-25 Christine Fouant <[email protected]>
* fixes #5811 - Validates emails to RFC 5322 specification
2014-09-24 Aaron Stone <[email protected]>
* Fixes #7483 - Use hidden input value to hold raw template contents (CVE-2014-3653)
2014-09-24 Daniel Lobato <[email protected]>
* Fixes #6999 - protect user logout against CSRF requests (CVE-2014-3590)
2014-09-24 Tomas Strachota <[email protected]>
* Fixes #2524 - adding taxonomy scope parameters
* Fixes #5088 - adding location_ids and organizations_ids to apidocs of taxable resources
2014-09-23 Ori Rabin <[email protected]>
* Fixes #6695: Adding two OS parameters with same name should raise an error
2014-09-23 Joseph Magen <[email protected]>
* 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 <[email protected]>
* Fixes #7571 - prevent ContentLoad from firing twice on document.ready
* Fixes #2232 - speed up Host view via AJAX
2014-09-21 Tomas Strachota <[email protected]>
* Fixes #6864 - adding api messages for extraction
2014-09-21 Marek Hulan <[email protected]>
* Fixes #7450 - do not mark non-required fields
2014-09-21 Ori Rabin <[email protected]>
* Fixes #7164: Cannot create a domain that starts or ends with '.'
2014-09-18 Dominic Cleal <[email protected]>
* refs #7038 - use n_() for plural support, use Rails style length message
2014-09-18 Ori Rabin <[email protected]>
* Fixes #7437: validation instead of PGError when host group title is exactly 256 characters
2014-09-18 Shlomi Zadok <[email protected]>
* Fixes #7489 - changed root password label to 'must' instead of 'should'
2014-09-17 Joseph Magen <[email protected]>
* fixes #3544 - Editing an oVirt compute resource allows changing the type, which is unsupported
2014-09-16 Joseph Magen <[email protected]>
* fixes #7409 - API v2 - add host attribute to GET response for auth source ldap
2014-09-16 Dominic Cleal <[email protected]>
* i18n - add it, ko, ru, zh_TW languages
2014-09-16 Ohad Levy <[email protected]>
* fixes #7434 - Setting descriptions are shown without wrapping
2014-09-15 Tomer Brisker <[email protected]>
* Fixes #6468 - Allow filtering/searching by active user
* Fixes #7329 - Correctly validate HostConfigGroup
2014-09-15 Marek Hulan <[email protected]>
* Fixes #5541 - disallow taxonomy assignment
2014-09-15 Lukas Zapletal <[email protected]>
* Fixes #7418 - fixed capitalization for some AR errors
2014-09-15 Ori Rabin <[email protected]>
* Fixes #1592: making report
* Fixes #6874: Integers in settings can be up to 8 digits to avoid bigint out of range error
* Fixes 4642: Fix intermittent test failures on rundeck functional tests
* Fixes #3085: Request to be able to clone host groups via API
* Fixes #7139: Subnet name is limited to 255 chars
* Fixes #7038: No error when hostgroup name exceeds 245 characters
* Fixed #7020: Validation instead or error when comments in 'audit comment' exceeds 255 characters
* Fixes #6713: Long names needs to be truncated while listing
2014-09-15 Christine Fouant <[email protected]>
* fixes #7430 - Adds subnet mask validation
2014-09-15 Dominic Cleal <[email protected]>
* fixes #7436 - extract nested host group error message
* refs #3085 - missing API i18n string extraction
2014-09-15 Joseph Magen <[email protected]>
* fixes #7299 - do not display 'Mismatches Report' button when no view-host
2014-09-15 Ohad Levy <[email protected]>
* fixes #7432 - ensure btn with dropdowns do not span across lines.
2014-09-15 ripcurld00d <[email protected]>
* Fixes #6903 - html tags in the message when deleting multiple hosts
2014-09-15 Stephen Benjamin <[email protected]>
* fixes #7213 - exclude plugin permissions from seeds test
* fixes #7314 - Set settings explicitly instead of stubbing Settings
2014-09-15 Tom McKay <[email protected]>
* fixes #7221 - do not display areas of the org/loc UI unless view rbac
2014-09-12 Tomer Brisker <[email protected]>
* Fixes #7247 - Add migration and rake task to correct corrupted cached counters
2014-09-11 Tomer Brisker <[email protected]>
* Fixes #5692 - correct counts in cached_counters
2014-09-10 Joseph Magen <[email protected]>
* fixes #7336 - editing compute resource should not clear existing attributes from the form
2014-09-10 Tomer Brisker <[email protected]>
* refs #6161 - Add test to make sure override is marked on create
2014-09-10 Dmitri Dolguikh <[email protected]>
* Fixes #7041: fixed incorrect belongs_to mappings
2014-09-09 Daniel Lobato <[email protected]>
* Fixes #4596 - Change parent of host group via AJAX
2014-09-09 Dmitri Dolguikh <[email protected]>
* fixes #4375: provisioning no longer loops when using oVirt + compute profile
2014-09-09 Dominic Cleal <[email protected]>
* fixes #3105 - use untranslated string for PuppetCA state filter
* fixes #7253 - change nil admin field on users to false, matches usergroups
2014-09-08 Marek Hulan <[email protected]>
* Fixes #3840 - Removes unused Signo related code
* Fixes #7344 - ignore saving errors during fact parsing
2014-09-08 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2014-09-04 Tomer Brisker <[email protected]>
* Fixes #6763 - Correctly choose autocomplete search scope for taxonomies depenant on controller
2014-09-03 Marek Hulan <[email protected]>
* Fixes #6444 - add support for virtual NICs
* Fixes #5926 - hide sensitive parameter values
2014-09-03 Ori Rabin <[email protected]>
* Fixes #7286: Can not create a compute resource without selecting a provider
2014-09-03 Dustin Tsang <[email protected]>
* fixes #7054 - list all routes for each resource in /v2/api
2014-09-03 Shlomi Zadok <[email protected]>
* fixes #4111 - Add image user data flag to API
2014-09-03 Imre Farkas <[email protected]>
* refs #3809 - Fix "`ruby_20` is not a valid platform"
2014-09-03 Joseph Magen <[email protected]>
* Fixes #7261 - API v2 - mark wrapped params hash for POST/PUT as required instead of optional
2014-09-02 Dmitri Dolguikh <[email protected]>
* Fixes #7079: foreman-debug archive now includes contents of /etc/foreman-proxy/settings.d directory
2014-09-02 Dominic Cleal <[email protected]>
* fixes #7191 - move API response logger to named filter so it can be skipped
2014-09-02 Tom McKay <[email protected]>
* fixes #7218 - authorize hosts welcome page
2014-09-02 ripcurld00d <[email protected]>
* Fixes #6538 - User group vs usergroup name consistency
* Fixes #7157 - Combo box style in reports
2014-09-02 Marek Hulan <[email protected]>
* Fixes #5929 - Taxonomy filter obey permissions
2014-09-01 Dominic Cleal <[email protected]>
* fixes #7317 - skip rubocop rake tasks if library isn't installed
* fixes #7035 - expand column name for Rails 3.2.8 compat in Puppet class search
2014-09-01 Tomer Brisker <[email protected]>
* Fixes #6161 - Mark override on adding smart variable override via api
2014-08-29 David Davis <[email protected]>
* Fixes #3809 - Add rubocop to check Ruby code
2014-08-28 Stephen Benjamin <[email protected]>
* fixes #7121 - move smart proxy action buttons to helper
2014-08-28 Dominic Cleal <[email protected]>
* refs #7066 - fix syntax error in expression
* fixes #7066 - add back $login interpolation for LDAP service account usernames
2014-08-27 Tomas Strachota <[email protected]>
* Fixes #7028 - completing api docs for taxonomies
2014-08-27 Tomer Brisker <[email protected]>
* Fixes #7056 - only resize textarea in params tab.
* Fixes #7174 - add delay on autocomplete
2014-08-27 Michael Moll <[email protected]>
* fixes #5240 - expose eager-zeroing for vSphere
2014-08-27 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2014-08-20 Bryan Kearney <[email protected]>
* Fixes #7105: Modify the mapping file for zanata. Server should be specific languages, but stored as the generic
2014-08-18 Tomer Brisker <[email protected]>
* Fixes #6831 - expire topbar cache for admin on taxonomy updates
2014-08-18 Ohad Levy <[email protected]>
* fixes #5119 - ensure GCE can list images.
* fixes #7009, N+1 (actually 6+1) queries in dashboard page
2014-08-15 Tomer Brisker <[email protected]>
* Fixes #6232 - link from chart on overview page to relevent search
* Fixes #6982 - make tooltips appear above charts
* Fixes #4350 - Allow any format for role name
* Fixes #6929 - Rephrase description string for api import_puppetclasses
2014-08-15 Daniel Lobato <[email protected]>
* Fixes #3976 - Add all view_ permissions to viewer user role
2014-08-15 red-tux <[email protected]>
* fixes #6205 Changed regex to parse CNs from SSL DNs on separator chars
2014-08-15 ripcurld00d <[email protected]>
* fixes #7082 - combo box style in host multi-select popup windows
2014-08-15 Aaron Stone <[email protected]>
* Fixes #6998 - Accept native true for overwrite parameter to host API.
2014-08-15 Stephen Benjamin <[email protected]>
* fixes #6860 - add missing attributes to hostgroup jail
2014-08-15 Greg Petras <[email protected]>
* Fixes #6756 - exposes vmware resource pools and folders through the API
* Fixes #6608 - expose disk usage info through available_storage_domains API
2014-08-15 Trey Dockendorf <[email protected]>
* Fixes #6476 - oVirt VM association with multiple interfaces
2014-08-13 Stephen Benjamin <[email protected]>
* fixes #7061 - show file upload when template is not locked
2014-08-13 Daniel Lobato <[email protected]>
* Fixes #7003 - Revert LDAP to simple_tls
2014-08-11 Adam Price <[email protected]>
* refs #5190 - updating dependency on apipie-rails
2014-08-11 Joseph Magen <[email protected]>
* fixes #6696 - API v2 - specify 'host' as the key in which parameters will be wrapped rather than Host
2014-08-11 Dominic Cleal <[email protected]>
* Bump version to 1.7-develop
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