forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
11717 lines (8441 loc) · 465 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
2016-09-06 Marek Hulan <[email protected]>
* Fixes #2314 - fine grain for RAM selectors
2016-09-06 Tomer Brisker <[email protected]>
* Fixes #16290 - Move ipaddr.js from bundle to npm
2016-09-06 Timo Goebel <[email protected]>
* fixes #15590 - ipv6 tftp orchestration
2016-09-05 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2016-09-05 Tomer Brisker <[email protected]>
* Fixes #16358 - Load dashboard on puppet proxy view
2016-09-02 Marek Hulan <[email protected]>
* Fixes #16389 - enable taxable object creation in specific context
* Fixes #16405 - Allow roles search by builtin flag
2016-09-02 Tomer Brisker <[email protected]>
* Fixes #13047, #16291 - Upgrade datatables and move it to npm
2016-09-02 Sean O'Keeffe <[email protected]>
* Fixes #16416 - Enable reterive password_hash from templates
2016-09-01 Lukáš Zapletal <[email protected]>
* Fixes #16318 - PXE templates now work in safemode (#3783)
2016-09-01 Tomas Strachota <[email protected]>
* Fixes #16164 - False positives on testing CR connection
* Fixes #16144 - vmWare datacenter error in connection test
2016-09-01 Jon de la Vega <[email protected]>
* Fixes #16357 - Losslessly optimized assets
2016-09-01 Ori Rabin <[email protected]>
* Refs #15814 - Reset override params only for PuppetclassLookupKey
2016-09-01 Tomer Brisker <[email protected]>
* Fixes #16379 - Improve layout of hostname randomize button
2016-09-01 Bryan Kearney <[email protected]>
* Fixes #16371 - Add support for login page dynamic text
* Fixes #16384 - Localize the names for email prefs
2016-08-31 Dominic Cleal <[email protected]>
* fixes #16376 - use correct params filter for nested Puppet LKs
2016-08-31 Ohad Levy <[email protected]>
* Refs #16222 - remove no-global-assign rule from eslint (#3787)
2016-08-30 Ondrej Prazak <[email protected]>
* Fixes #16163 - Hide spinner for vmware cluster
2016-08-28 Tomer Brisker <[email protected]>
* Refs #16222 - remove no-global-assign rule from eslint
2016-08-26 Ondrej Prazak <[email protected]>
* Fixes #14771 - Show corresponding os list for arch
2016-08-26 amirfefer <[email protected]>
* Fixes #16211 - show host autocomplete in audit search
2016-08-26 Ori Rabin <[email protected]>
* Fixes #14468 - fix db:migrate when unattended false on empty db
2016-08-26 Dominic Cleal <[email protected]>
* refs #16260 - wait for AJAX on main dashboard page test
* i18n - extracting new, pulling from tx
2016-08-26 Marek Hulan <[email protected]>
* Fixes #7806 - allow taxonomy association on role level
2016-08-26 Lukas Zapletal <[email protected]>
* Fixes #16057 - added dns_lookup template helper
2016-08-26 Daniel Lobato <[email protected]>
* Fixes #16264 - Template combinations cannot be created
2016-08-25 Dominic Cleal <[email protected]>
* refs #1170 - capitalize statistics heading (#3780)
* refs #12634 - remove blank i18n string, match capitalisation
2016-08-25 Ohad Levy <[email protected]>
* fixes #1170 - adds additional charts to statistics page
2016-08-24 Tomer Brisker <[email protected]>
* Refs #16222 - Increase scope of eslint ignore
* Fixes #16260 - Wait for dashboard to fully load in test
2016-08-24 Dominic Cleal <[email protected]>
* refs #12544 - replace ordered interpolation with named variables
2016-08-24 Lukas Zapletal <[email protected]>
* Fixes #12634 - New HW Model flag pxe_loader
2016-08-24 Shimon Shtein <[email protected]>
* Fixes #12544 - added errors from host to cancelBuild Now the flash will contain detailed error messages.
2016-08-24 David Davis <[email protected]>
* Fixes #15814 - Reset override params when override is off
2016-08-23 Tomer Brisker <[email protected]>
* Fixes #16044 - Load dashboard widgets via ajax
2016-08-23 Dominic Cleal <[email protected]>
* templates - sync from community-templates
* i18n - extracting new, pulling from tx
* fixes #16243 - make Host
* fixes #16220 - replace skip_callback class changes with stubs
* fixes #16221 - replace private AS timezone listing method
2016-08-23 Ohad Levy <[email protected]>
* Fixes #16238 - Speed up dashboard loading time.
2016-08-23 Daniel Lobato García <[email protected]>
* Fixes #16239 - Enable rubocop checks on HoundCI (#3767)
2016-08-23 Daniel Lobato <[email protected]>
* Fixes #16197 - Host#smart_proxies returns only the host proxies
2016-08-22 Gail Steiger <[email protected]>
* Fixes #15806 - add babel-eslint dependency to package.json
* fixes #15806 - Add linting to webpack
2016-08-22 Daniel Lobato <[email protected]>
* Fixes #16222 - Make HoundCI round ESLint on new JS
2016-08-22 Timo Goebel <[email protected]>
* fixes #16199 - always run build related callbacks
2016-08-22 Klaas Demter <[email protected]>
* Fixes #16061 - auto ip assignment for non-primary interfaces
2016-08-22 Tomer Brisker <[email protected]>
* Fixes #16120 - Allow including css in webpack assets
2016-08-22 Dominic Cleal <[email protected]>
* fixes #16172 - remove base_class override in template subclasses
* fixes #16193 - change templates.type default to known STI class
* fixes #16198 - remove therubyracer Bundler group
2016-08-22 David Davis <[email protected]>
* Fixes #16212 - Fix test filenames
2016-08-21 Martin Ducar <[email protected]>
* fixes #16196 - fix typo in image scoped search
2016-08-19 Dominic Cleal <[email protected]>
* fixes #16194 - correct table name in remove_foreign_key call
2016-08-18 Dominic Cleal <[email protected]>
* fixes #16166 - exclude node_modules/ directory from rubocop
2016-08-17 Tomer Brisker <[email protected]>
* Fixes #16104 - Use parameterizable for HW models
2016-08-17 Justin Sherrill <[email protected]>
* Fixes #16073 - match up nic identifiers for unmanaged hosts
2016-08-17 Klaas Demter <[email protected]>
* Fixes #16139 - Add link to code contribution in CONTRIBUTING.md
2016-08-17 Daniel Lobato <[email protected]>
* Fixes #16025 - Fix ERB & params to import subnets from proxy
2016-08-17 Dominic Cleal <[email protected]>
* fixes #16142 - replace Unicode copyright with HTML encoded symbol
2016-08-17 Marek Hulan <[email protected]>
* Refs #12364 - webpack server can serve assets on https
2016-08-16 amirfefer <[email protected]>
* Fixes #16075 - add authenticity token in setting params
2016-08-16 Dominic Cleal <[email protected]>
* fixes #16085 - update Rails to 4.2.7.1
2016-08-15 Tomer Brisker <[email protected]>
* Refs #12364 - Only load the dev server js if it's enabled
2016-08-15 Marek Hulan <[email protected]>
* Fixes #15364 - disable Style/ClassCheck cop
2016-08-15 Dominic Cleal <[email protected]>
* fixes #16089 - replace flot-rails with npm jquery-flot
2016-08-12 Dominic Cleal <[email protected]>
* fixes #16083 - pin gettext_i18n_rails for Ruby 2.0.0
2016-08-11 Tomer Brisker <[email protected]>
* Refs #12364 - Allow running webpack dev server on any hostname
* Fixes #16020 - Prevent reflective XSS on form validation
2016-08-10 Dominic Cleal <[email protected]>
* fixes #15787 - update shoulda-matchers to 3.x
* fixes #16046 - run webpack:compile as pre-req to test rake tasks
* fixes #16039 - update fog-openstack paths to load extensions
2016-08-10 Marek Hulan <[email protected]>
* Fixes #16024 - escape labels of form fields
2016-08-10 Tomer Brisker <[email protected]>
* Fixes #12364 - Use NPM+Webpack to handle external assets
2016-08-10 Martin Bačovský <[email protected]>
* Fixes #12488 - Add admin flag to usergroup param description
2016-08-10 Tomer Brisker <[email protected]>
* Fixes #16022 - Prevent stored XSS in host interface form
2016-08-09 Dominic Cleal <[email protected]>
* refs #13768 - add random_name call to create_hosts permission
2016-08-09 Shimon Shtein <[email protected]>
* Fixes #13813 - Removed "\ " so ruby 1.8 could read the ENC
2016-08-09 Chris Roberts <[email protected]>
* Fixes #15921 - add host command to foreman-debug
2016-08-08 elad <[email protected]>
* Fixes #15924 - Implement server groups and scheduler hints
2016-08-08 Lukas Zapletal <[email protected]>
* Fixes #13768 - random and MAC-based name generator
2016-08-08 aagrawal <[email protected]>
* Fixes #15996 - Multiple nav bars
2016-08-05 Timo Goebel <[email protected]>
* fixes #15977 - change enc output in a compatible way
* fixes #15989 - add clone host button to host view
2016-08-04 Ohad Levy <[email protected]>
* fixes #15919 - statistics page is loaded via AJAX
2016-08-04 Dominic Cleal <[email protected]>
* fixes #15975 - replace instance variable ref in subnet partial
2016-08-04 Timo Goebel <[email protected]>
* fixes #15951 - pass interface compute_attributes
2016-08-03 Ori Rabin <[email protected]>
* Fixes #15953 - pin fast_gettext gem
2016-08-03 Martin Bačovský <[email protected]>
* Fixes #15833 - remove duplicities in smart params listings
2016-08-02 dhlavac <[email protected]>
* Fixes #14301 - Grant access to help pages for view permissions
2016-08-02 Ranjan Kumar <[email protected]>
* Fixes #7955 - /apidoc should point to v2 documentation by default
2016-08-02 Tomer Brisker <[email protected]>
* Refs #15925 - unpin audited gem
2016-08-01 Tomer Brisker <[email protected]>
* Fixes #15925 - pin audited gem to allow tests to pass
2016-07-29 Dominic Cleal <[email protected]>
* fixes #15894 - retry intermittently failing integration tests
* fixes #3917 - replace protected_attrs with strong parameters
2016-07-28 Dominic Cleal <[email protected]>
* fixes #15863 - add short session or request ID to logs
2016-07-27 Dominic Cleal <[email protected]>
* fixes #15847 - change mailer helpers from paths to URLs
2016-07-27 Marek Hulan <[email protected]>
* Fixes #14518, #14516 - status change ignores validations
2016-07-27 Vincent Lequertier <[email protected]>
* Fixes #15771 - add :token to the values returned by the API
2016-07-25 Dominic Cleal <[email protected]>
* fixes #15829 - remove ace-rails-ap file modes from app.js
2016-07-25 David Davis <[email protected]>
* Refs #3809 - Using defaults for AndOr cop
2016-07-22 Brandon Weeks <[email protected]>
* Fixes #15773 - disambiguate table name
2016-07-21 amirfefer <[email protected]>
* Fixes #15037 - Improves editable elements in settings
2016-07-21 Ranjan Kumar <[email protected]>
* Fixes #15684 - foreman-rake without options raise an error
2016-07-21 Dominic Cleal <[email protected]>
* fixes #15762 - move flash testing out of integration test
* fixes #15761 - wait for domain and unused_ip AJAX calls
* fixes #15753 - unpin pg gem, match Rails requirement
* fixes #15751 - replace spork with spring in development
2016-07-21 Michael Moll <[email protected]>
* fixes #15709 - fix SuSE mediapath in PXELinux templates
2016-07-21 Tomer Brisker <[email protected]>
* Fixes #15675 - Improve report expiry performance
2016-07-20 Dominic Cleal <[email protected]>
* fixes #15682 - don't save invalid attributes at login from LDAP
2016-07-20 Tomer Brisker <[email protected]>
* Fixes #15718 - Correctly display hash parameters
2016-07-19 Tomer Brisker <[email protected]>
* Refs #12193 - Remove remaining cached counters
* Fixes #12193 - Stop using counter_cache for host[group] counts
2016-07-19 Daniel Lobato <[email protected]>
* Fixes #15653 - CVE-2016-5390 fix permissions for host API
2016-07-19 Dominic Cleal <[email protected]>
* fixes #15720 - rename *_filter to *_action
2016-07-18 Imri Zvik <[email protected]>
* Fixes #15681 - Upgrade Fog Openstack to at least version 0.1.7
2016-07-18 Shlomi Zadok <[email protected]>
* Fixes #13529 - Remove duplicate permissions A migration which adds unique constraint and removes duplicate permissions
2016-07-18 Stephen Benjamin <[email protected]>
* fixes #15704 - use sendmail for email.yaml
2016-07-18 Dominic Cleal <[email protected]>
* fixes #15699 - set a default FQDN/domain in test environment
2016-07-18 Daniel Lobato <[email protected]>
* Fixes #15527 - api/v2/hosts is slow loading permissions
2016-07-18 David Davis <[email protected]>
* Fixes #15712 - Pinning rabl to less than 0.13
2016-07-14 Justin Sherrill <[email protected]>
* Fixes #11749 - puppet env jquery selector more restrictive
2016-07-13 Ashish Humbe <[email protected]>
* Fixes #14720 - Handling invalid email from auth source
2016-07-13 Timo Goebel <[email protected]>
* fixes #14666 - support IPv6 in UI
2016-07-13 Ivan Nečas <[email protected]>
* Fixes #15134 - wait for ajax in interface test
2016-07-13 Shlomi Zadok <[email protected]>
* Fixes #15655 - Improve ptable migration
2016-07-13 Lukas Zapletal <[email protected]>
* Fixes #15490 - adding view_host filter and better msg
2016-07-12 Ori Rabin <[email protected]>
* Fixes #15629 - parameters form shows new parameters after error
2016-07-12 Dominic Cleal <[email protected]>
* fixes #15659 - replace deprecated Object#timeout call
2016-07-12 Tomer Brisker <[email protected]>
* Fixes #15657 - Correct import button styling
2016-07-12 Ondrej Prazak <[email protected]>
* Fixes #15464 - support partials in pagelet keys
2016-07-12 Daniel Lobato <[email protected]>
* Fixes #15644 - Move enable/skip_orchestration to Host
2016-07-12 David Davis <[email protected]>
* Refs #3809 - Turning on the AndOr cop
2016-07-11 Timo Goebel <[email protected]>
* fixes #15635 - tests for dns orchestration
2016-07-11 orrabin <[email protected]>
* Fixes #15599 - Unattended controller can access host params (#3629)
2016-07-11 Timo Goebel <[email protected]>
* fixes #15625 - vmware: add cdrom only when selected
2016-07-11 aagrawal <[email protected]>
* fixes #15622 - add about link for non-admin user
2016-07-08 David Davis <[email protected]>
* Refs #3809 - Turning on some Lint cops
2016-07-08 Daniel Lobato <[email protected]>
* Fixes #15601 - to_ip_address cannot retrieve PTR4 record
2016-07-07 Tomer Brisker <[email protected]>
* Fixes #14817 - load JS only in relevant pages
2016-07-06 Dominic Cleal <[email protected]>
* fixes #4528 - import structured Puppet facts
* fixes #13845 - remove 1.13 deprecations
2016-07-06 Ori Rabin <[email protected]>
* Refs #13164 - Consistent parameters authorization in api
2016-07-05 Dominic Cleal <[email protected]>
* fixes #15575 - add factories and functional trend tests
2016-07-05 Daniel Lobato <[email protected]>
* Fixes #15576 - Pin GCE-client to < 0.9
2016-07-04 Dominic Cleal <[email protected]>
* fixes #15573 - support rest-client 2.x
2016-07-04 Klaas Demter <[email protected]>
* Fixes #15570 - Fixed query syntax in ForemanTrend#find_hosts
2016-07-01 Ivan Nečas <[email protected]>
* Fixes #14410 - respond 503 when pending migration
2016-07-01 Ondrej Prazak <[email protected]>
* Fixes #15370 - Validate settings values
2016-07-01 Dominic Cleal <[email protected]>
* refs #15336 - use i18n variable names and plural form
2016-06-30 Tomer Brisker <[email protected]>
* Fixes #15471 - Find CA expiry even if some dates are missing
2016-06-30 Stephen Benjamin <[email protected]>
* fixes #15525 - always update facts
2016-06-30 Partha Aji <[email protected]>
* Fixes #15336 - Enables proper deletion of Orgs
2016-06-30 amirfefer <[email protected]>
* Fixes #15140 - Correctly handle failed setting change
2016-06-30 Ori Rabin <[email protected]>
* Fixes #15308 - Override validation doesn't run without changes
2016-06-29 Shimon Shtein <[email protected]>
* Fixes #15306 - Catches exceptions in the orchestration
2016-06-29 Tomer Brisker <[email protected]>
* Fixes #15534 - Stop stripping whitespace in parameter values
2016-06-27 Timo Goebel <[email protected]>
* fixes #15508 - allow duplicate networks
* fixes #14665 - support IPv6 via API
2016-06-27 Tomer Brisker <[email protected]>
* Fixes #4477 - Host[group] form only show authorized resources
2016-06-24 Timo Goebel <[email protected]>
* fixes #14663 - support IPv6 DNS orchestration
2016-06-24 Ori Rabin <[email protected]>
* Fixes #15234 - search usergroup by role
2016-06-23 Lukas Zapletal <[email protected]>
* Fixes #15439 - improved error reporting for media
2016-06-23 Ori Rabin <[email protected]>
* Fixes #13164 - Add view_params permission
2016-06-23 Timo Goebel <[email protected]>
* fixes #15466 - require e-mail for current user
* fixes #9110 - add freeip route to API
2016-06-23 Marek Hulan <[email protected]>
* Fixes #15268 - limit user taxonomies using my scopes
2016-06-22 Ori Rabin <[email protected]>
* Fixes #5785 - override class parameter by subnet name
2016-06-21 Tomer Brisker <[email protected]>
* Fixes #14953 - update LICENSE file
2016-06-20 Dominic Cleal <[email protected]>
* fixes #15431 - apply btn CSS to action selects with one item
2016-06-15 Timo Goebel <[email protected]>
* fixes #15355 - close interface modal at cr change
2016-06-15 karimb <[email protected]>
* Fixes #8289 - handle user data in ovirt
2016-06-15 Shimon Shtein <[email protected]>
* Fixes #15333 - Moved puppet environment field to helper
2016-06-15 Stephen Benjamin <[email protected]>
* fixes #15416 - update untouched templates during seed
2016-06-14 Mac Reid <[email protected]>
* fixes #15391 - quote host group search links
2016-06-14 Dominic Cleal <[email protected]>
* fixes #15363 - construct correct templates query for new hosts
2016-06-13 Marek Hulan <[email protected]>
* Fixes #15362 - improve global status audit logs
* Fixes #15345 - allow changing oVirt CA certificate
2016-06-13 Dominic Cleal <[email protected]>
* fixes #14913 - configure Hirb/Wirb via irbrc
2016-06-13 Daniel Lobato <[email protected]>
* Fixes #14783 - Limit OS description to 255
2016-06-10 Guido Günther <[email protected]>
* Fixes #15372 - Merge the correct hash when adding new volumes
2016-06-09 Marek Hulan <[email protected]>
* Fixes #15344 - recover from fingerprint error on validation
2016-06-07 Ondrej Prazak <[email protected]>
* Fixes #14955 - Show nice message for invalid mac, ip
2016-06-07 Marek Hulan <[email protected]>
* Fixes #14481 - make bootable radio button checkable
2016-06-03 Marek Hulan <[email protected]>
* Fixes #15278 - taxonomies support granular filters
2016-06-03 Zach Huntington-Meath <[email protected]>
* Fixes #15276 - view permissions start with view
2016-06-02 Dominic Cleal <[email protected]>
* fixes #15250 - ignore current controller from link_to/hash_for
2016-06-02 Lukas Zapletal <[email protected]>
* Fixes #15092 - CSV exporter rake task
2016-06-02 Timo Goebel <[email protected]>
* fixes #14664 - support IPv6 in Nic, Hosts and Hostgroups models
2016-06-02 Tomer Brisker <[email protected]>
* Fixes #15225 - correct permission mapping for api puppet import
2016-06-02 Ori Rabin <[email protected]>
* Fixes #15246 - correctly override array params
2016-06-02 amirfefer <[email protected]>
* Fixes #8797 - Separate style from the HTML in emails
2016-06-02 Marek Hulan <[email protected]>
* Fixes #15238 - ignore empty NIC identifiers
2016-06-01 Dominic Cleal <[email protected]>
* fixes #15247 - reference PuppetError class correctly
2016-05-31 Dominic Cleal <[email protected]>
* Bump version to 1.13-develop
2016-05-31 Ivan Nečas <[email protected]>
* Fixes #15066 - operating systems and ovirt < 3.6
2016-05-31 Marek Hulan <[email protected]>
* Fixes #15213 - handle host update when proxy is unreachable
2016-05-31 Tomer Brisker <[email protected]>
* Fixes #15166 - correct layout of dashboard when zoomed
2016-05-31 Lukas Zapletal <[email protected]>
* Fixes #6539 - missing templates error is now descriptive
2016-05-30 Ohad Levy <[email protected]>
* fixes #15223 - query parameters are now correct.
2016-05-29 Ondrej Prazak <[email protected]>
* Fixes #15137 - Find correct jnotify container
2016-05-29 Ori Rabin <[email protected]>
* Fixes #15155 - skip single validation when importing puppetclass
2016-05-27 Marek Hulan <[email protected]>
* Fixes #15182 - limit user taxonomies in API (CVE-2016-4451)
2016-05-27 Ori Rabin <[email protected]>
* Fixes #14546 - ability to restrict *_external_variables Fixes #14535 - corrects permissions for smart class parameters
2016-05-27 Shimon Shtein <[email protected]>
* Fixes #14879 - Fixed query syntax in FactTrend#find_hosts
2016-05-26 Dominic Cleal <[email protected]>
* fixes #14905 - enable DHCP orchestration with any boot mode
* fixes #15176 - match fog's pin of fog-google
2016-05-26 Lukas Zapletal <[email protected]>
* Fixes #15163 - use new oVirt CA cert endpoint
2016-05-26 John Mitsch <[email protected]>
* Fixes #15050 - Scoped search hostname w/o field no longer ISEs
2016-05-25 Ivan Nečas <[email protected]>
* Fixes #15174 - make sure to return 404 when taxonomy not found
2016-05-25 Michael Moll <[email protected]>
* fixes #13698 - update rest-client and rbovirt gems
2016-05-25 Stephen Benjamin <[email protected]>
* fixes #14509 - refactor enc_output to be a generic exporter
2016-05-25 Dominic Cleal <[email protected]>
* fixes #8884 - drop Gemfile support for Ruby 1.9.3
* templates - sync from community-templates
* i18n - extracting new, pulling from tx
* i18n - add pl (Polish)
2016-05-24 Timo Goebel <[email protected]>
* fixes #10956 - add annotation support for vmware
* fixes #3910 - add cdrom drive support for vmware
2016-05-24 Stijn Tintel <[email protected]>
* Fixes #14541 - foreman-rake must preserve environment variables
2016-05-24 Shimon Shtein <[email protected]>
* Fixes #15154 - Added more safety measures to libvirt
2016-05-24 Dominic Cleal <[email protected]>
* fixes #15054 - stub calls to CR in ComputeAttribute factory
2016-05-24 Ivan Nečas <[email protected]>
* Fixes #15151 - properly convert Fog VMs to_s
2016-05-23 Tomer Brisker <[email protected]>
* Refs #13741 - Hidden values use masked input for default value
2016-05-19 Dominic Cleal <[email protected]>
* fixes #14865 - use waiting selector to search for checked boxes
2016-05-19 Daniel Lobato <[email protected]>
* Fixes #15077 - Error HTML tags are shown
2016-05-19 Tomer Brisker <[email protected]>
* Fixes #15090 - Add scrolling to taxonomy selection
2016-05-19 Marek Hulan <[email protected]>
* Fixes #14962 - support wildcard certs for proxy authentication
2016-05-17 Baptiste Agasse <[email protected]>
* Fixes #15046 - Add bmc_nic related attributes to jail
2016-05-17 Timo Goebel <[email protected]>
* fixes #12425 - do not trigger orchestration during fact import
* fixes #14642 - support AAAA and PTR-Records in dns lib
2016-05-17 Marek Hulan <[email protected]>
* Fixes #14969 - correctly reload custom statuses
2016-05-17 Dominic Cleal <[email protected]>
* fixes #15060 - permit activerecord-session_store 1.x
2016-05-16 Brad Buckingham <[email protected]>
* Fixes #15038 - reset User cache during migration
2016-05-16 Ivan Nečas <[email protected]>
* Fixes #15011 - don't expect the facet tables in migration
2016-05-16 Gail Steiger <[email protected]>
* fixes #14892 - some plugins break javascript topbar behavior
2016-05-15 Trey Dockendorf <[email protected]>
* Fixes #15047 - Improve audit email details
2016-05-13 Dominic Cleal <[email protected]>
* fixes #15040 - remove user fragment cache initializer
2016-05-13 Adam Ruzicka <[email protected]>
* Fixes #12339 - Reuse to-be-deleted matchers while creating new
2016-05-13 Lukas Zapletal <[email protected]>
* Fixes #12225 - invalidate topbar cache after restart
2016-05-12 Marek Hulan <[email protected]>
* Fixes #14313 - improve facts navigation and URL
* Fixes #15020 - display only selected oVirt network
2016-05-12 David Davis <[email protected]>
* Refs #3809 - Turning on some rubocop cops
2016-05-12 Greg Sutcliffe <[email protected]>
* Fixes #14957 - Use a temporary status file to store exit status
2016-05-12 Vincent Lequertier <[email protected]>
* Fixes #15009 - Make the method boot_files_uris public
2016-05-12 Timo Goebel <[email protected]>
* fixes #14874 - do not run path replace during vmware clone
2016-05-11 Lukas Zapletal <[email protected]>
* Fixes #14981 - use root_object for host RABL
2016-05-10 Lukas Zapletal <[email protected]>
* Fixes #14980 - fixed unused_ip API subnet param
2016-05-10 amirfefer <[email protected]>
* Fixes #14963 - supports dynamic content in setting select box
2016-05-10 Roman Plevka <[email protected]>
* fixes #13437 - Bookmarks public attribute set to required
2016-05-10 Ondrej Prazak <[email protected]>
* Fixes #14977 - Report show toolbar has buttons instead of links
* Fixes #12945 - use helper for table css classes
2016-05-10 Shlomi Zadok <[email protected]>
* Fixes #14869 - Adds import button to environments welcome page
2016-05-09 Martin Bačovský <[email protected]>
* Fixes #14965 - turn off auditing during DB migrations
2016-05-09 Tomer Brisker <[email protected]>
* Fixes #14960 - Improve settings helper for collections
2016-05-09 Shlomi Zadok <[email protected]>
* Fixes #14877 - Adds glossary to dashboard API
2016-05-06 amirfefer <[email protected]>
* Fixes #6958 - supports in nested hostgroup in default PXE menu
* Fixes #3200 - Add select boxes to settings
2016-05-06 Dominic Cleal <[email protected]>
* fixes #14133 - update to rubocop 0.39.0
2016-05-06 Tomer Brisker <[email protected]>
* Fixes #13741 - Prevent hidden parameters from erasing newline
* Fixes #14924 - Improve performance of taxonomy edit page
2016-05-06 Timo Goebel <[email protected]>
* fixes #14661 - support IPv6 subnets
2016-05-05 Guido Günther <[email protected]>
* Fixes #14701: Mention image password in API docs and tests
2016-05-05 Ori Rabin <[email protected]>
* Fixes #14927 - correct override value requirment
2016-05-05 Dominic Cleal <[email protected]>
* fixes #14912 - setup console gems under bundler_ext
2016-05-05 Tomer Brisker <[email protected]>
* Fixes #14934 - Remove rails 3.2 workaround from parameter model
2016-05-05 Ondrej Prazak <[email protected]>
* Fixes #14746 - Template kinds translated in provisioning template form dropdown
2016-05-04 Ondrej Prazak <[email protected]>
* Fixes #14898 - Fix for config task Removing undefined variable took care of it.
2016-05-03 Tomer Brisker <[email protected]>
* Fixes #14795 - User w/o edit_params permission can save host
2016-05-03 Ondrej Prazak <[email protected]>
* Fixes #14079 - display_link_if_authorized not hidden when disabled
2016-05-02 amirfefer <[email protected]>
* Fixes #6977 - default PXE menu's labels are sorted
2016-05-01 Dominic Cleal <[email protected]>
* fixes #14887 - remove unused test-unit dep
2016-04-29 Daniel Lobato <[email protected]>
* Fixes #14843 - Improve rake config error handling
2016-04-29 Dominic Cleal <[email protected]>
* fixes #14876 - permit wirb 2.x on Ruby 2.x
* fixes #14866 - prod2dev Rails 4 compatibility
* fixes #14855 - hide template type dropdown when snippet checked
2016-04-28 Tomer Brisker <[email protected]>
* Fixes #11079 - Handle oVirt with missing template version name
* Fixes #14679 - Fix tabbing of puppet CA in proxy
2016-04-28 Dominic Cleal <[email protected]>
* fixes #14820 - override Rails log level with Foreman
2016-04-28 Ori Rabin <[email protected]>
* Fixes #14726 - disabled delete button in interfaces doesn't delete
2016-04-28 Timo Goebel <[email protected]>
* fixes #14864 - show link to subnet in host nic info
2016-04-27 Marek Hulan <[email protected]>
* Fixes #13819 - avoid facts mismatches on import
* Fixes #14735 - avoid double sweeping of User topbar cache
2016-04-27 Tomer Brisker <[email protected]>
* Fixes #14730 - Only search host proxies explicitly
2016-04-27 Ori Rabin <[email protected]>
* Fixes #14790 - reloads puppetclass parameters when choosing os and domain
2016-04-27 Luis Fernandez Alvarez <[email protected]>
* Fixes #14778 - Ensure parsing complex types keep target type
2016-04-26 Dominic Cleal <[email protected]>
* fixes #14810 - change duplicate test class name
* refs #14072 - fix test to check correct login return path
2016-04-25 Stephen Benjamin <[email protected]>
* fixes #14765 - exclude job templates from template sync
2016-04-22 Dominic Cleal <[email protected]>
* fixes #14742 - retrieve template kind labels from plugin regs
2016-04-22 Timo Goebel <[email protected]>
* fixes #14781 - stub network calls for host_build_status_test
2016-04-22 Ondrej Prazak <[email protected]>
* Fixes #14768 - Ellipsis for smart proxy name in table on index page
2016-04-22 Marek Hulan <[email protected]>
* Fixes #14769 - avoid template comments because of deface
2016-04-21 Shlomi Zadok <[email protected]>
* Fixes #14748 - latest_events should use filters
* Fixes #14744 - Adds auto_complete_search route to compute_profiles
* Fixes #14072 - Use to_hash when requesting session original_uri
2016-04-21 Dominic Cleal <[email protected]>
* fixes #14741 - translate template kind string, not object
* refs #14395 - change user-friendly template kind names
2016-04-20 Dominic Cleal <[email protected]>
* fixes #13244 - update Rails to 4.2.6
* refs #14691 - user editing self should not change User.current
2016-04-20 Ondrej Prazak <[email protected]>
* Fixes #14395 - Label for provision template capitalized in os details page
2016-04-19 Timo Goebel <[email protected]>
* fixes #14638 - Refactor Subnet into STI to allow different subnet types
2016-04-19 Shlomi Zadok <[email protected]>
* Fixes #14376 - Cut long bookmark names
* Fixes #14691 - User #to_label should show persisted name
2016-04-19 Dominic Cleal <[email protected]>
* templates - sync from community-templates
2016-04-18 Tomer Brisker <[email protected]>
* Fixes #14456 - Cleanup navbar handling code and style
2016-04-18 Andrew Kofink <[email protected]>
* Fixes #14686 - Allow scoped search on ID for organizations
2016-04-18 Ivan Nečas <[email protected]>
* Fixes #14635 - bump safemode version to fix the unwanted inspect issue
2016-04-18 Daniel Lobato <[email protected]>
* Fixes #9584 - User email address length can be longer than 60
2016-04-15 Walden Raines <[email protected]>
* Fixes #14645: fix production images for plugins.
2016-04-14 Tomer Brisker <[email protected]>
* Fixes #14636 - correctly search puppet class on host form
2016-04-14 Ondrej Prazak <[email protected]>
* Fixes #6167 - 'Deployed on' dropdown in hosts/new form disabled until ajax on hostgroup_changed is resolved
2016-04-14 Timo Goebel <[email protected]>
* fixes #14639 - add stubbing for template proxy with no templateServer test
2016-04-14 Marek Hulan <[email protected]>
* Fixes #10605 - handle logout accessed by GET
* Fixes #11434 - vdsmdummy interfaces are ignored
2016-04-14 Ohad Levy <[email protected]>
* fixes #14640 - add missing whitespace to template text
2016-04-13 Marek Hulan <[email protected]>
* Fixes #14588 - introduce plugin API for extending template helpers
* Fixes #14586 - Associate default templates to Orgs and Locs during seed
* Fixes #12318 - support preview for deb-based distros
2016-04-13 Tomer Brisker <[email protected]>
* Fixes #14563 - Improve dashboard layout
2016-04-12 Ori Rabin <[email protected]>
* Fixes #14190 - consistent api output and search options
2016-04-12 Lukas Zapletal <[email protected]>
* Fixes #14521 - better error on missing PXELinux template
2016-04-12 Tomer Brisker <[email protected]>
* Fixes #14566 - remove show_console_action function
2016-04-12 Shimon Shtein <[email protected]>
* Fixes #14559 - Added support for overriding base url for documentation
* Fixes #14369 - Removed default scope from host counter in taxonomies
2016-04-12 Ivan Nečas <[email protected]>
* Fixes #10278 - don't replace . with - for oVirt VM anymore
* Fixes #6959 - set operating system for RHEV/ovirt VMs
* Fixes #14572 - fix updating storage in compute profiles based on template
2016-04-11 Ivan Nečas <[email protected]>
* Fixes #13986 - don't use image unless in image provisioning method
* Fixes #10978 - fix possibility to assign networks in compute profile for ovirt
2016-04-11 Marek Hulan <[email protected]>
* Fixes #14575 - fix domain ENC info
2016-04-11 Tomer Brisker <[email protected]>
* Fixes #14564 - correct button styling
2016-04-11 Ranjan Kumar <[email protected]>
* Fixes #14261 - User API should return correct admin status
2016-04-11 Dominic Cleal <[email protected]>
* fixes #14567 - permit fast_gettext 1.x
2016-04-11 Dominique Quatravaux <[email protected]>
* Fixes #14508 - foreman-rake console can take arguments
2016-04-10 Stephen Benjamin <[email protected]>
* fixes #14555 - use new_link on hostgroups welcome page
2016-04-08 Evgeni Golov <[email protected]>
* fixes #14502 - fix documentation of the hosts controller for puppetclass_ids
2016-04-08 Ranjan Kumar <[email protected]>
* Fixes #14173 - Puppet Summary Report host listing should be alphabetically sorted.
2016-04-08 Lukas Zapletal <[email protected]>
* Fixes #14479 - removed unwanted check for token param
2016-04-08 Tomer Brisker <[email protected]>
* Fixes #14476 - Correctly handle casting of invalid real param values
2016-04-07 Marek Hulan <[email protected]>
* Fixes #10053 - search in logs must be explicit
2016-04-07 Ohad Levy <[email protected]>
* fixes #14511 - bookmark editing ensures the query field is populated
2016-04-07 amirfefer <[email protected]>
* Fixes #1329 - encrypt BMC password in DB
2016-04-07 Ori Rabin <[email protected]>
* Fixes #14432 - Removing scoped search on value for smart class parameter
2016-04-07 Tomer Brisker <[email protected]>
* Refs #12979 - fix proxy button styling
2016-04-07 Ivan Nečas <[email protected]>
* Fixes #14503 - don't join reports with the logs and resources explicitly in API
2016-04-06 Dominic Cleal <[email protected]>
* fixes #14482 - close two-pane when saving compute profile attributes
2016-04-06 Tomer Brisker <[email protected]>
* Fixes #14505 - Correct authorization of broken smart proxy actions
2016-04-06 Shlomi Zadok <[email protected]>
* Fixes #14504 - Moves Report scoped search into inherited method
2016-04-06 imriz <[email protected]>
* Fixes #10592 - Add tests to validate the allowed_helpers passed into the renderer in ProvisioningTemplate.build_pxe_default contains the generic list
2016-04-05 Tomer Brisker <[email protected]>
* Fixes #14451 - Allow plugins to add menus to top menu without breaking the second menu
2016-04-05 Ori Rabin <[email protected]>
* Refs #12979 - adding btn-default class to leftover buttons
2016-04-05 Dominic Cleal <[email protected]>
* fixes #14202 - enable select2 in interfaces modal
* fixes #14415 - check CR availability with Fog, not SETTINGS
2016-04-05 Marek Hulan <[email protected]>
* Fixes #14458 - use a base class for STI taxable objects
2016-04-05 Adam Ruzicka <[email protected]>
* Fixes #14330 - Provide option in hammer to change display type for libvirt compute resource
2016-04-04 John Mitsch <[email protected]>
* Fixes #14401 - Refreshing Host's global status not persisting to the database
2016-04-04 Tomer Brisker <[email protected]>
* Fixes #14341 - List all images for compute resource
2016-04-04 Marek Hulan <[email protected]>
* Fixes #5816 - allow editing and displaying self via API
2016-04-04 Dominic Cleal <[email protected]>
* fixes #14434 - refactor tokens into concern from observer
2016-04-03 Sean O'Keeffe <[email protected]>
* Fixes #14417 - Update Doc link
2016-03-31 Dominic Cleal <[email protected]>
* fixes #14368 - update fog to 1.38.0
* fixes #12746 - list compute resources from plugin definitions
2016-03-31 Ondrej Prazak <[email protected]>
* Fixes #14393 - Using patternfly icons instead of glyphicons
2016-03-30 Ivan Nečas <[email protected]>
* Fixes #14038 - pass corespersocket in VMWare image-based provisioning