forked from ATIX-AG/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
13186 lines (9446 loc) · 517 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
2017-03-29 Daniel Lobato Garcia <[email protected]>
* templates - sync from community-templates
* Revert "fixes #18691 - add as_deprecation_tracker to test environment"
2017-03-29 Tomer Brisker <[email protected]>
* Fixes #18954 - Add CSV export to facts table
2017-03-28 matanwerbner <[email protected]>
* Fixes #18957,#18193,#18678,#18853 - notifications redux
2017-03-28 Tomer Brisker <[email protected]>
* Fixes #18762 - Add csv export to reports table
2017-03-28 Dominic Cleal <[email protected]>
* fixes #19035 - rewrite TopbarSweeper without rails-observers
2017-03-28 Marek Hulán <[email protected]>
* Fixes #18640 - realign templates structure
* Fixes #18639 - lock all templates we seed
2017-03-28 Lukas Zapletal <[email protected]>
* Fixes #15374 - move progress_report_id to Host
2017-03-28 Ohad Levy <[email protected]>
* fixes #18940 - adds caching to notification api calls.
2017-03-27 Marek Hulan <[email protected]>
* Refs #18001 - Avoid role extending from rake tasks permission
2017-03-27 Ivan Necas <[email protected]>
* Fixes #19017 - prefer request id over session id in logging
2017-03-27 Bryan Kearney <[email protected]>
* Fixes #19036 - Add the hiera.yaml file from to foreman-debug
2017-03-27 Ondrej Prazak <[email protected]>
* Fixes #19030 - Uncomment plugin tests
2017-03-27 Ori Rabin <[email protected]>
* Fixes #12272 - Support multiple certificates in ovirt resource
2017-03-26 Dominic Cleal <[email protected]>
* fixes #18719 - replace usage of deprecated Fixnum constant
2017-03-24 Ondrej Prazak <[email protected]>
* Fixes #18001 - Add plugin permissions to core's roles
2017-03-24 adamruzicka <[email protected]>
* Fixes #18977 - Do not raise on creating a role in plugin when in Rake
2017-03-23 Tomer Brisker <[email protected]>
* Fixes #18893 - Improve latest events widget performance
2017-03-23 Timo Goebel <[email protected]>
* fixes #12419 - template preview host has typeahead
* fixes #18980 - ssh keys new page has breadcrumbs
2017-03-23 lizagilman <[email protected]>
* Fixes #18467, #18737 - search input is not layed on top of notification drawer
2017-03-23 Dominic Cleal <[email protected]>
* refs #18264 - remove text order assumption in response body test
2017-03-23 Walden Raines <[email protected]>
* Fixes #18986: upgrade patternfly-sass to 3.23.0.
2017-03-23 Tomas Strachota <[email protected]>
* Fixes #18065 - make API v1 deprecation warning more apparent
2017-03-22 Timo Goebel <[email protected]>
* fixes #18064 - import host from compute resource
2017-03-22 Dominic Cleal <[email protected]>
* refs #18950 - wait for CR test connection to complete
* fixes #18976 - separate tests with different request formats
2017-03-22 Amir Fefer <[email protected]>
* Fixes #18264 - change select multiple host actions to POST
2017-03-21 Marek Hulán <[email protected]>
* Fixes #18948 - correctly relogin user with SSO sessions
2017-03-21 Ivan Necas <[email protected]>
* Fixes #18949 - info message about current user
2017-03-21 Ohad Levy <[email protected]>
* fixes #16288 - moves ace editor to webpack.
2017-03-21 Dominic Cleal <[email protected]>
* refs #18760 - exclude test routes from permission checks
2017-03-20 Dominic Cleal <[email protected]>
* fixes #18958 - correct format of multiple REMOTE_ADDR addresses
2017-03-20 matan <[email protected]>
* Fixes #18906 - empty tooltip on notification
2017-03-19 Ivan Nečas <[email protected]>
* Fixes #18952 - fix destroy of host without owner
2017-03-19 Dominic Cleal <[email protected]>
* fixes #18950 - enable password field in CR form test
* fixes #18929 - add rails-observers dep for TopbarSweeper
2017-03-15 matanwerbner <[email protected]>
* Fixes #18901 - fix bottom notification dropdown
2017-03-15 Timo Goebel <[email protected]>
* fixes #18476 - users have ssh keys
2017-03-15 Sean O\'Keeffe <[email protected]>
* Fixes #18898 - "Host" prefix isnt required on Host show page
2017-03-14 matan <[email protected]>
* Fixes #18728 - notifications scroll
* Fixes #18888 - refactor powerStatus
2017-03-14 Dominic Cleal <[email protected]>
* refs #18760 - only build CSV URL from permitted params
* refs #17463 - require test helper for smart proxy mixin
2017-03-14 lizagilman <[email protected]>
* Fixes #18234 - display correct icon when no unread notifications
2017-03-14 Tomer Brisker <[email protected]>
* Fixes #18760 - Allow export to CSV
2017-03-14 Shimon Shtein <[email protected]>
* Fixes #18843 - Changed from eager_load to includes in #index
2017-03-14 Ondřej Pražák <[email protected]>
* Fixes #17463 - Detect user's orgs when importing from puppet
2017-03-13 Michael Moll <[email protected]>
* Fixes #18868 - add Parallels PSBM version handling
2017-03-12 Ori Rabin <[email protected]>
* Fixes #18718 - Empty boolean matcher should not turn into false
2017-03-10 Swapnil Abnave <[email protected]>
* Fixes #6817 - AWS VPC groups - show after saving
2017-03-10 Dominik Hlavac <[email protected]>
* Fixes #18764 - Hammer-cli current user password update
2017-03-10 Marek Hulán <[email protected]>
* Fixes #18722 - fix host parameters in host form
2017-03-10 Lukas Zapletal <[email protected]>
* Fixes #18800 - strong params no longer breaks inherited attrs
2017-03-09 Tomer Brisker <[email protected]>
* Fixes #18813 - Sort matchers by priority
2017-03-09 Marek Hulán <[email protected]>
* Refs #18804 - move spinner help icons
2017-03-09 Ohad Levy <[email protected]>
* fixes #18681 - moves polymorphic subject into notification object
* fixes #18796 - do not flot charts by default
2017-03-09 Marek Hulan <[email protected]>
* Fixes #12163 - add a rake task to clean up orphaned facts
2017-03-08 Marek Hulán <[email protected]>
* Fixes #18767 - keep cloning info
2017-03-08 Tomas Strachota <[email protected]>
* Fixes #18690 - add missing auditable types into scoped search
2017-03-08 Evgeni Golov <[email protected]>
* Fixes #18587, #18588 - Fix 'multipart form data' IE bug
2017-03-08 Amir Fefer <[email protected]>
* Fixes #14013 - add a setting for default owner of new hosts
2017-03-08 Alexander "Ace" Olofsson <[email protected]>
* Fixes #18830 - PXE Loaders for Windows
2017-03-08 BernhardAtix <[email protected]>
* fixes #18815 - VMware vSphere Disk Mode support
2017-03-08 Marek Hulan <[email protected]>
* Fixes #18783,#18804 - replace inline helps with label helps
2017-03-07 matan <[email protected]>
* Fixes #18591 - powerStatus in redux
2017-03-07 Ondrej Prazak <[email protected]>
* Fixes #18317 - Clone user role via API
2017-03-06 Lukas Zapletal <[email protected]>
* Fixes #18788 - log protected attributes in prod
2017-03-05 Tomer Brisker <[email protected]>
* Fixes #14492 - Unify delete and minimize for dashboard widgets
2017-03-03 Marek Hulan <[email protected]>
* Fixes #18345 - Improve templates error handling
2017-03-02 Eric D Helms <[email protected]>
* Fixes #18657 - Allow ERB in settings files
2017-03-02 Marek Hulan <[email protected]>
* Fixes #18768 - remove generic inline helps
2017-03-02 June Zhang <[email protected]>
* Fixes #18763 - Change delete button to standard style
2017-03-01 amirfefer <[email protected]>
* Fixes #18740 - remove erb extension from host_checkbox.js
2017-03-01 Chris Roberts <[email protected]>
* Fixes #18514 - switch prefix/mask fields
2017-03-01 Dominic Cleal <[email protected]>
* fixes #18735 - truncate encryption key to match preferred length (#4350)
2017-03-01 Sean O'Keeffe <[email protected]>
* Fixes #18726 - Set null to true on migrations for Rails 5
2017-02-28 Dominic Cleal <[email protected]>
* fixes #18662 - stop default scope being overridden by association
2017-02-28 Ohad Levy <[email protected]>
* fixes #18676 - don't ignore notification expiry
2017-02-28 Tomer Brisker <[email protected]>
* Fixes #18688 - pin sass-loader to version supporting webpack 1
2017-02-28 matanwerbner <[email protected]>
* fixes #18716 - make storybook work with scss
2017-02-27 Dominic Cleal <[email protected]>
* refs #16982 - check _ids getters as admin user in taxonomy tests
* fixes #18695 - create test/functional/ for test:functionals task
* fixes #18691 - add as_deprecation_tracker to test environment
* fixes #18477 - update Rails to 4.2.8
* fixes #18665 - call #to_h before comparing AC
2017-02-27 Ohad Levy <[email protected]>
* refs #17545 - notifications should be deleted with blueprint
2017-02-26 matan <[email protected]>
* Fixes #18638 - add sass support to webpack
2017-02-26 Jo Vandeginste <[email protected]>
* Add pxe_loader to host REST
2017-02-26 Dominic Cleal <[email protected]>
* refs #16982 - remove User.current deassignment (no such user)
2017-02-24 Dominic Cleal <[email protected]>
* fixes #18664 - ignore missing callbacks in SmartProxyAuth concern
* refs #16982 - pass ID, not models into model.find
* refs #17228 - modify, don't re-define existing constant
2017-02-23 Ivan Nečas <[email protected]>
* Refs #17272 - fix sql condition
2017-02-23 Tomas Strachota <[email protected]>
* Fixes #18582 - add missing id params to taxonomy apidoc
2017-02-23 Dominik Hlavac <[email protected]>
* Fixes #17272 - Fixed Searches on parameters with !=
2017-02-23 Daniel Lobato Garcia <[email protected]>
* Fixes #18426 - Add actions to notification entries
2017-02-23 Ondřej Pražák <[email protected]>
* Fixes #17228 - Select templates as global defaults (#4283)
2017-02-23 Daniel Augustin <[email protected]>
* fixes #17866 - Remove PXE Properties from Gentoo Operatingsystem
2017-02-22 Michael Moll <[email protected]>
* Refs #18576 - update OpenSUSE mirror url
* Fixes #18581 - conditionalize SUSE mediapath
2017-02-22 Daniel Lobato Garcia <[email protected]>
* Fixes #16982 - Scope properly when no taxonomies are set
2017-02-21 Marek Hulan <[email protected]>
* Refs #18554 - Revert cache removal
2017-02-21 Chris Duryee <[email protected]>
* Fixes #18554 - skip collection_cache_lookup on authorized_for
2017-02-21 Dominic Cleal <[email protected]>
* fixes #18551 - skip table_exists? error when the DB doesn't exist
* fixes #18565 - move constantize inside access permission tests
2017-02-21 Timo Goebel <[email protected]>
* fixes #17533 - provision dhcp for bond child macs
2017-02-21 Ondřej Pražák <[email protected]>
* Fixes #16204 - Singularize ExternalUsergroups for permissions
2017-02-21 Jo Vandeginste <[email protected]>
* fixes #18574 - add ip6 address to the REST api results
2017-02-20 Ondřej Pražák <[email protected]>
* Fixes #12294 - Update existing params using API
2017-02-20 Shlomi Zadok <[email protected]>
* Fixes #18560 - Remove searchbar from 403, change 403 style
2017-02-20 Dominic Cleal <[email protected]>
* fixes #18566 - permit apipie-rails 0.4.x
* fixes #18568 - replace deprecated AC
* refs #7495 - correct syntax in API error handler
2017-02-19 Shlomi Zadok <[email protected]>
* Fixes #18559 - Order mail notifications by name
2017-02-17 Ondřej Pražák <[email protected]>
* Fixes #7495 - Create/delete autosign entries via API
2017-02-17 Dominic Cleal <[email protected]>
* fixes #18540 - update domain on primary in hosts_count tests
2017-02-16 Tomer Brisker <[email protected]>
* refs #18464 - rename *.spec.js to *.test.js
* Fixes #18491 - Fix failing users js test
2017-02-16 Dominic Cleal <[email protected]>
* refs #18530 - move redux-mock-store to dev/test deps
* fixes #18534 - configure rubocop for Ruby 2.0 compatibility
2017-02-16 [email protected] <[email protected]>
* Fixes #18530 - fix package.json dependencies
2017-02-16 Ohad Levy <[email protected]>
* fixes #18466 - change getHostsData function name to be singular
2017-02-15 Timo Goebel <[email protected]>
* fixes #18511 - plugin authors shown nicely
2017-02-15 matan <[email protected]>
* fixes #18464 - Add Redux to statistics page
2017-02-15 Marek Hulan <[email protected]>
* Fixes #18227 - clean up variables after rendering
2017-02-15 Marek Hulán <[email protected]>
* Refs #18469 - align subnet button label with the rest
* Refs #18473 - align CR button label with the rest
2017-02-14 Tomer Brisker <[email protected]>
* Fixes #18490 - run eslint on all files in webpack
2017-02-14 Dominic Cleal <[email protected]>
* fixes #18489 - test AuthSourceLdap missing and blank passwords
* refs #18468 - move compute_resources JS to compute profile index
2017-02-14 Sebastian Gräßl <[email protected]>
* Fixes #18468 - Include JS in libvirt compute profile form
2017-02-14 Timo Goebel <[email protected]>
* fixes #18373 - vmware: do not pass automatic firmware to vm
2017-02-13 Ondřej Pražák <[email protected]>
* Fixes #18469 - Add Patternfly empty page for subnets
* Fixes #18473 - Add Patternfly empty page for compute resources
* Fixes #18474 - Add Patternfly empty page for OSs
2017-02-13 Timo Goebel <[email protected]>
* fixes #18481 - host index page loads faster
2017-02-13 matan <[email protected]>
* Fixes #18364 - disable hide of dropdown + tooltip
2017-02-12 Shlomi Zadok <[email protected]>
* Fixes #18462 - Change LDAP filter field to text area
* Fixes #18461 - reword 'External groups'
2017-02-10 Gail Steiger <[email protected]>
* fixes #18248 - dashboard auto refresh mounts duplicate components
2017-02-10 Ivan Nečas <[email protected]>
* Fixes #3541,#13769 - return true on success of ssh orchestration
2017-02-10 Daniel Lobato Garcia <[email protected]>
* Fixes #18425 - Update README screenshots and links
2017-02-09 Marek Hulán <[email protected]>
* Fixes #18440 - removes dead code and obsolete permission
2017-02-09 Amit Karsale <[email protected]>
* Fixes #16846 - Org create failure with specific msg
2017-02-09 Shimon Shtein <[email protected]>
* Fixes #14716 - Added option to transform thin template to thick
2017-02-09 Daniel Lobato Garcia <[email protected]>
* Fixes #18412 - Alert styling for adrift host time
2017-02-09 Lukáš Zapletal <[email protected]>
* Fixes #18348 - foreman-debug compress faster
2017-02-09 Timo Goebel <[email protected]>
* fixes #18366 - vmware: delete vm only if created with errors
2017-02-09 Shlomi Zadok <[email protected]>
* Fixes #18367 - Add patternfly welcome to user groups index
2017-02-09 Ivan Necas <[email protected]>
* Fixes #18410 - log permission denials
2017-02-09 Bryan Kearney <[email protected]>
* Fixes #18433 - Remove the Data not available message
2017-02-07 Chris Roberts <[email protected]>
* Fixes #12652 - VMware Volume name is readonly
2017-02-02 Lukas Zapletal <[email protected]>
* Fixes #17005 - more strict debug password filter
2017-02-02 Tomer Brisker <[email protected]>
* Fixes #18343 - add method for deprecation of JS functions
2017-02-01 Gail Steiger <[email protected]>
* Fixes #18194, #18326 - minor UI bugs Notifications
2017-02-01 Lukas Zapletal <[email protected]>
* Fixes #18321 - added migration for builtin roles
2017-01-31 Adam, Till - D0249540 <[email protected]>
* fixes #18216 - volume size editable for existing VMs one
2017-01-31 Timo Goebel <[email protected]>
* fixes #13618 - cache expensive vmware api calls
2017-01-31 Dominic Cleal <[email protected]>
* fixes #18233, #18235 - isolate pagelets state between tests
2017-01-31 Daniel Lobato Garcia <[email protected]>
* Fixes #18040 - URL escape PuppetCA CN on proxy view
2017-01-30 Ondřej Pražák <[email protected]>
* Fixes #18126 - Fix security groups select for EC2 form
2017-01-30 Daniel Lobato Garcia <[email protected]>
* Fixes #18260 - Display proper organizations count on table
2017-01-30 Dominic Cleal <[email protected]>
* refs #17526 - reset taxonomy.current after each test
* refs #18232 - make phantomjs optional, not available on all archs
2017-01-29 Gail Steiger <[email protected]>
* fixes #18191,#18192 - monitor notification request
2017-01-27 Shlomi Zadok <[email protected]>
* Fixes #18280 - Adds compute resource provider name
2017-01-26 Ondřej Pražák <[email protected]>
* Fixes #12599 - Add config groups related apipie doc
2017-01-26 thomasmckay <[email protected]>
* fixes #18252 - added docker* to ignore
2017-01-26 Timo Goebel <[email protected]>
* fixes #18102 - a host cannot be backed by the same vm
* fixes #18250 - show compute resource xhr errors
2017-01-26 Daniel Lobato Garcia <[email protected]>
* Fixes #17526 - Taxonomy.ignore? does not work with "any context"
2017-01-26 Ivan Necas <[email protected]>
* Refs #15779 - make background processing unavailable for now (#4217)
2017-01-26 Dominic Cleal <[email protected]>
* fixes #18239 - wait for AJAX spinners removal on about page test
2017-01-25 Dominic Cleal <[email protected]>
* fixes #18238 - use fixed model name in test expectation
* fixes #18232 - install phantomjs via npm
2017-01-25 Ondřej Pražák <[email protected]>
* Fixes #17681 - Switch to newly created taxonomy
2017-01-25 Marek Hulan <[email protected]>
* Fixes #18205 - Add save_to_file macro
2017-01-25 Shimon Shtein <[email protected]>
* Fixes #18213 - Added webpack folder to string extraction
2017-01-24 June Zhang <[email protected]>
* Fixes #17872 - Update button label from New to Create
2017-01-24 Dominic Cleal <[email protected]>
* fixes #18214 - accept `params` as AC
* fixes #18208 - replace audited-activerecord with audited (#4218)
2017-01-24 orrabin <[email protected]>
* Refs #17653 - fix typo in show_hidden_parameters and add tests
2017-01-24 Daniel Lobato Garcia <[email protected]>
* Fixes #16752 - Extract template code from Host
2017-01-23 kgaikwad <[email protected]>
* Fixes #12649 - Index search not retained on cancel click
2017-01-23 Dominic Cleal <[email protected]>
* fixes #18176 - replace clear_association_cache with reload
* fixes #18199 - empty parameter value is an empty string, not nil
2017-01-20 Ori Rabin <[email protected]>
* Refs #17653 - add show_hidden to apidoc
2017-01-20 Marek Hulán <[email protected]>
* Refs #18143 - extend snippet_if_exists too
2017-01-20 Dominic Cleal <[email protected]>
* fixes #18159 - change incorrect clearing of test request session
* fixes #18155 - add string to empty form-encoded arrays in test
* fixes #18157 - use AS
2017-01-20 Gail Steiger <[email protected]>
* fixes #18010 - UI Notifications front-end implementation
2017-01-19 Ohad Levy <[email protected]>
* fixes #17545 - adds UI notification support
2017-01-19 Marek Hulán <[email protected]>
* Fixes #18143 - enable variables for snippets (#4205)
2017-01-19 Timo Goebel <[email protected]>
* fixes #18130 - add autoincrement for bigint id columns
2017-01-18 Timo Goebel <[email protected]>
* fixes #18136 - add indices for reports type column
2017-01-18 lizagilman <[email protected]>
* Fixes #18127 - Correcting length of group base field
2017-01-18 Daniel Lobato Garcia <[email protected]>
* Fixes #18045 - Puppet classes show up choosing only env.
2017-01-18 Tomer Brisker <[email protected]>
* Fixes #17844 - unify test mail js code
2017-01-17 Amir Fefer <[email protected]>
* Fixes #17898 - update rackspace to 0.1.4
2017-01-17 June Zhang <[email protected]>
* Fixes #18099 - Update the close button style
2017-01-17 Sebastian Gräßl <[email protected]>
* Fixes #6502 - List ignored classes and environments on import
2017-01-16 Baptiste <[email protected]>
* Fixes #10539 - Add default names for ifaces for oVirt CR VMs
2017-01-16 kgaikwad <[email protected]>
* Fixes #12547 - Added validators to interger fields
2017-01-16 June Zhang <[email protected]>
* Fixes #18085 - Update 'Build PXE Default' to secondary style
2017-01-15 Ori Rabin <[email protected]>
* Fixes #17653 - Allow all parameters api to unhide values
* fixes #17899 - Delete instead of destroy orphaned records
2017-01-15 Shimon Shtein <[email protected]>
* Fixes #15405 - Moved puppet UI to helpers
2017-01-13 Timo Goebel <[email protected]>
* fixes #13810 - increase value range for id columns
2017-01-13 Bryan Kearney <[email protected]>
* Fixes #18061 - Use the term 'Actions' consistently in smart proxy
2017-01-12 Tomer Brisker <[email protected]>
* Refs #17972 - remove trends.js from assets initializer
* Fixes #17971 - move user taxonomyAdded js to webpack
* Fixes #4519, #9531 - Correctly handle invalid host name changes
2017-01-12 Sebastian Gräßl <[email protected]>
* Fixes #14714 - Make inherited Puppet Classes more apparent
2017-01-12 Dominic Cleal <[email protected]>
* refs #18031 - change Admin field string in PO, remove new string
2017-01-12 June Zhang <[email protected]>
* Fixes #18039 - Update documentation buttons style
2017-01-11 Marek Hulán <[email protected]>
* Fixes #18025 - make user groups sortable
* Fixes #18031 - unify admin flag label
2017-01-11 Sebastian Gräßl <[email protected]>
* Fixes #3551 - Show unavailable Puppet Classes in Host Group edit
2017-01-11 Dominic Cleal <[email protected]>
* fixes #18024 - add 'image' search field to hosts
2017-01-11 amirfefer <[email protected]>
* Fixes #6952 - Set hostgroup after provisioning from pxe
2017-01-11 Tomer Brisker <[email protected]>
* Fixes #17972 - Simplify new trend form js and helpers
2017-01-11 Marek Hulan <[email protected]>
* Fixes #17330 - skip admin email if it's unknown
2017-01-11 Daniel Lobato Garcia <[email protected]>
* Fixes #18017 - Allow single/double quotes for HoundCI
2017-01-10 Daniel Lobato Garcia <[email protected]>
* Fixes #17998 - Only print LDAP bind status if available
2017-01-09 Shlomi Zadok <[email protected]>
* Fixes #17438 - Disable selecting IPv6 on import
2017-01-09 Tomer Brisker <[email protected]>
* Fixes #17977 - remove ES6-promise polyfill
2017-01-09 Marek Hulan <[email protected]>
* Fixes #16782 - reset dhcp record cache after mac change
2017-01-09 Tomer Brisker <[email protected]>
* Fixes #17979 - Pin nokogiri to last version supporting ruby 2.0
2017-01-05 Daniel Lobato Garcia <[email protected]>
* Fixes #17864 - Show smart proxy errors on unattended fail
2017-01-04 Daniel Lobato Garcia <[email protected]>
* Fixes #17904 - Show tooltips for long proxy log messages
* Fixes #17680 - templates_used host helper
2017-01-04 Shimon Shtein <[email protected]>
* Fixes #15403 - moved puppet to a concern in hosts UI controller
2017-01-04 Dominic Cleal <[email protected]>
* fixes #17657 - permit fog-aws 1.x
2017-01-04 Tomer Brisker <[email protected]>
* Fixes #17913 - Remove deprecation message when loading ACE editor
2017-01-04 Sebastian Gräßl <[email protected]>
* Fixes #17910 - Quote strings for JQuery href attribute selector
2017-01-03 Shimon Shtein <[email protected]>
* Fixes #17855 - reflect changes to template on image selection
2017-01-03 Daniel Lobato Garcia <[email protected]>
* Fixes #17457 - multiple_checkboxes doesn't work with orgs/locs
2017-01-03 Ondrej Prazak <[email protected]>
* Fixes #16740 - Access host params through macro
2017-01-02 Justin Sherrill <[email protected]>
* Fixes #17894 - load needed dependent api param group
2017-01-02 Daniel Lobato Garcia <[email protected]>
* Fixes #17837 - Fix hosts:scan_out_of_sync task
* Fixes #17850 - Prevent 414 on architecture/usergroup
2017-01-02 Timo Goebel <[email protected]>
* fixes #4166 - vmware: update cpus, memory for vms
* fixes #8290 - remove foreman_url redundancy
2017-01-02 Marek Hulán <[email protected]>
* Fixes #17886 - move config groups under parameters
2017-01-02 Tomer Brisker <[email protected]>
* Fixes #17874 - Extract contains_erb? from lookup key
2016-12-29 Tomer Brisker <[email protected]>
* Fixes #16682 - Compress webpack compiled assets
2016-12-29 Amit Karsale <[email protected]>
* Fixes #13775 - merge if data set is present
2016-12-29 orrabin <[email protected]>
* Fixes #17870 - Empty boolean matcher should not turn into false
* Fixes #17810 - Deleting smart class parameters with puppetclass
2016-12-29 Timo Goebel <[email protected]>
* fixes #17853 - resolve ips in interface scope
2016-12-28 Daniel Lobato Garcia <[email protected]>
* Fixes #17858 - OpenStack scheduler doesn't show spinner
2016-12-28 Tomer Brisker <[email protected]>
* Fixes #10957 - Correctly handle to_gb when no unit given
2016-12-28 Gail Steiger <[email protected]>
* fixes #17600 - Storybook does not draw chart
2016-12-27 Daniel Lobato Garcia <[email protected]>
* Fixes #17852 - Pin concurrent-ruby-edge to 0.2.3
2016-12-27 Tomer Brisker <[email protected]>
* Refs #17602 - correct typo in mention-bot config
2016-12-27 Nagoor Shaik <[email protected]>
* Fixes #17846 - auth_source_ldaps API now displays taxonomies
2016-12-26 Shlomi Zadok <[email protected]>
* Fixes #17842 - Adds 'type = compute_resource' to Audit search
2016-12-25 Shlomi Zadok <[email protected]>
* Fixes #17015 - Adds Key pairs controller
2016-12-23 Dominic Cleal <[email protected]>
* fixes #17838 - translate New Hosts title string
2016-12-23 Amir Fefer <[email protected]>
* Fixes #17808 - fix 'multipart form data' IE bug
2016-12-22 Sean O\'Keeffe <[email protected]>
* Fixes #17683 - Wrong resource type in HG AJAX permission check
2016-12-22 dhlavac <[email protected]>
* Fixes #16850 - Added record of password change to audit log
2016-12-21 Shlomi Zadok <[email protected]>
* Fixes #17813 - Add type=LookupValue to Audit search
2016-12-21 Dominic Cleal <[email protected]>
* fixes #16792 - don't modify AR record attributes in-place
2016-12-21 Daniel Lobato García <[email protected]>
* Fixes #17516 - Update jquery to 2.2.4 to fix XSS
2016-12-21 Guido Günther <[email protected]>
* Fixes #17641 - Use force when destroying VMs
2016-12-20 Swapnil Abnave <[email protected]>
* Fixes #17678 - APIdoc - URL desc add missing CR types
2016-12-20 orrabin <[email protected]>
* Fixes #16440 - Creating smart variable from index page
2016-12-20 kgaikwad <[email protected]>
* fixes #17630 - show tooltips after deselecting selected item
2016-12-20 Tomer Brisker <[email protected]>
* Fixes #17587 - remove autoprefixer gem
2016-12-20 June Zhang <[email protected]>
* Fixes #17679 - Fixing the style issues in Login Page
2016-12-20 Shlomi Zadok <[email protected]>
* Fixes #17525 - Add a friendly error message to invalid dns_id
* Fixes #17796 - bump to rubocop 0.46
2016-12-19 Tomer Brisker <[email protected]>
* Fixes #17602 - mention-bot won't ping inactive past contributers
2016-12-18 Dominic Cleal <[email protected]>
* fixes #17574, #17364 - update scoped_search to 4.x
2016-12-14 Ivan Necas <[email protected]>
* Fixes #5483,#11106 - pass the virtualswitch value to fog
2016-12-14 Tomer Brisker <[email protected]>
* Fixes #17632 - Reports widget will not fail on ambiguous filter
* Fixes #17666 - prevent migration failures on counter cache
2016-12-13 Tomer Brisker <[email protected]>
* Fixes #17627 - remove tooltips after clicking back
2016-12-13 Lukáš Zapletal <[email protected]>
* Fixes #17636 - token no longer needed for proxied preview
2016-12-13 David Davis <[email protected]>
* Fixes #17654 - Add a mention bot config
2016-12-13 Dominic Cleal <[email protected]>
* refs #17257 - remove interpolation from extracted string
* refs #17485 - use IP within host's primary subnet
2016-12-13 Tomer Brisker <[email protected]>
* Fixes #17570 - Only execute `onContentLoad` once per page
2016-12-13 Trey Dockendorf <[email protected]>
* Fixes #17257 - Allow specific configs to be recreated
2016-12-13 Marek Hulan <[email protected]>
* Fixes #17623 - include model in metadata
2016-12-13 Timo Goebel <[email protected]>
* fixes #17485 - provision tftp for bond children
2016-12-12 Daniel Lobato García <[email protected]>
* Fixes #17599 - Smart vars allow you to select 'none' class
2016-12-12 Daniel Lobato Garcia <[email protected]>
* Fixes #17611 - Localize smart variables strings
2016-12-09 Timo Goebel <[email protected]>
* fixes #15610 - choose firmware for vsphere vms
2016-12-09 Trey Dockendorf <[email protected]>
* Fixes #6006 - Add options to disable updates from facts
2016-12-09 Dominic Cleal <[email protected]>
* fixes #16459 - remove 1.15 deprecations
2016-12-08 Dominic Cleal <[email protected]>
* fixes #17395 - use admin user for load_template_vars
2016-12-07 Lukáš Zapletal <[email protected]>
* Fixes #17042 - add logging of task statuses after orchestration
2016-12-07 Sean O'Keeffe <[email protected]>
* Fixes #17592 - dont truncate on audit details page
2016-12-07 Tomer Brisker <[email protected]>
* Fixes #17597 - Prevent error on saving empty dashboard
2016-12-07 Ohad Levy <[email protected]>
* fixes #17287 - add storybook support
2016-12-07 Tomer Brisker <[email protected]>
* Fixes #17503 - Only trigger PXELoader suggestion when needed
2016-12-06 Gail Steiger <[email protected]>
* Fixes #17580 - React Chart Component has unsafe function
2016-12-06 Dominic Cleal <[email protected]>
* Bump version to 1.15-develop
2016-12-06 kgaikwad <[email protected]>
* fixes #3158 - Remove rescues from try calls in helper file
2016-12-05 Ori Rabin <[email protected]>
* Fixes #17548 - Orphaned smart class parameters are hidden
2016-12-05 Dominic Cleal <[email protected]>
* templates - sync from community-templates
* i18n - extracting new, pulling from tx
2016-12-05 Amir Fefer <[email protected]>
* Fixes #12156 - Adds email configuration into Foreman settings
2016-12-04 Ivan Necas <[email protected]>
* Refs #15779 - move the foreman-tasks to own bundle group
2016-12-04 Tomer Brisker <[email protected]>
* Fixes #17571 - Refactor tfm.tools to use ES6 syntax
2016-12-04 Gail Steiger <[email protected]>
* Fixes #17569 - prevent error on chart component unmount
2016-12-02 Daniel Kimsey <[email protected]>
* Fixes #16907 - Sort proxy features on smart proxy display
2016-12-02 Klaas Demter <[email protected]>
* Fixes #17561 - Allow Dynamic keyword in autoyast files
2016-12-02 Timo Goebel <[email protected]>
* fixes #17095 - ensure subnet belongs to ip from facts
2016-12-01 Marek Hulan <[email protected]>
* Fixes #17495 - align default task and report expiration
2016-12-01 Tomer Brisker <[email protected]>
* Fixes #15287 - Correct link from puppet proxy dashboard chart
2016-12-01 Shimon Shtein <[email protected]>
* Fixes #16987 - Added ability to apply facet attributes
2016-11-30 kgaikwad <[email protected]>
* fixes #17157 - inconsistent mapping of host owner
2016-11-30 treydock <[email protected]>
* Fixes #17535 - Associate host with multiple NICs to VMWare VM
2016-11-30 Tomas Strachota <[email protected]>
* Fixes #17487 - support sessions for api calls
2016-11-30 Tomer Brisker <[email protected]>
* Fixes #17501 - Display tooltips on dashboard widgets (#4067)
2016-11-30 Gail Steiger <[email protected]>
* Fixes #17035 - removes webpack provider plugin
2016-11-30 Michael Moll <[email protected]>
* Refs #17491 - Revert "polyfill Map for ARMv8 node"
2016-11-29 Tomer Brisker <[email protected]>
* Refs #1556 - Remove puppet docroot setting from db and tests
2016-11-28 Timo Goebel <[email protected]>
* fixes #17407 - add a new hosts dashboard widget
2016-11-28 Tomer Brisker <[email protected]>
* Fixes #1556, #11615 - Remove puppet rdoc support
2016-11-28 Daniel Lobato Garcia <[email protected]>
* Fixes #17488 - Add confirmation to import db task
2016-11-28 Shimon Shtein <[email protected]>
* Fixes #17439 - Moved facet base to a concern
2016-11-28 Jan-Otto Kröpke <[email protected]>
* Fixes #16422 - Foreman API throws ruby exception with ovirt network API
2016-11-27 Tomer Brisker <[email protected]>
* Fixes #17491 - polyfill Map for ARMv8 node (#4059)
2016-11-27 Abhay Kadam <[email protected]>
* Fixes #17494 - Remove stray end statement
2016-11-25 Timo Goebel <[email protected]>
* fixes #11127 - show error when rebuild reboot fails
* fixes #17476 - bmc power actions have correct status
2016-11-25 Dominic Cleal <[email protected]>
* fixes #17484 - remove reported_at sequence from report factory
2016-11-25 Marek Hulán <[email protected]>
* Fixes #17483 - async task creation returns 202
2016-11-25 treydock <[email protected]>
* Fixes #17296 - Add setting access_unattended_without_build
2016-11-25 Ohad Levy <[email protected]>
* fixes #17474 - DROP db prior to restore on postgres
2016-11-25 Sean O'Keeffe <[email protected]>
* Fixes #16935 - Allow : & . device ID if there isnt one set
2016-11-25 Marek Hulan <[email protected]>
* Fixes #15779 - make background processing available
2016-11-25 kgaikwad <[email protected]>
* Fixes #17343 - set deep munge config off
2016-11-24 Amir Fefer <[email protected]>
* Fixes #17468 - build PXE returns error with no TFTP proxies
2016-11-24 Ori Rabin <[email protected]>
* Fixes #17441 - override all parameters permission changed to edit
2016-11-24 Conor O'Callaghan <[email protected]>
* Fixes #17461 - use singular form for missing os
2016-11-24 Marek Hulan <[email protected]>
* Fixes #17458 - include user group admins
* Fixes #16739 - unify parameters permissions
2016-11-23 Marek Hulan <[email protected]>
* Fixes #17403 - enable exporting of templates
2016-11-23 Dominic Cleal <[email protected]>
* refs #14688 - correct i18n extraction for all new power methods
2016-11-22 dhlavac <[email protected]>
* Fixes #15232 - Showing inherited roles from User groups to user
2016-11-22 Ohad Levy <[email protected]>
* refs #14688 - updated corret meta tag name and missing whitespace.
2016-11-22 Ondrej Prazak <[email protected]>
* Fixes #14688 - Power status visible on hosts index page
2016-11-22 Ori Rabin <[email protected]>
* Fixes #14951 - Allow matcher for host turning into managed host
2016-11-22 Timo Goebel <[email protected]>
* fixes #17409 - show only real bmc power actions
2016-11-22 amirfefer <[email protected]>
* Fixes #17436 - extract setting value placeholder in settings
2016-11-21 Ori Rabin <[email protected]>
* Fixes #17279 - Changing os search in host to search on os_title
2016-11-21 Tomer Brisker <[email protected]>
* Fixes #17394 - remove npm shrinkwrap file
2016-11-20 kgaikwad <[email protected]>
* Fixes #17303 - correct position of validation msg for parameters
2016-11-18 Shimon Shtein <[email protected]>
* Fixes #17309 - Made facets resilient to class reloading
2016-11-18 Dominic Cleal <[email protected]>
* fixes #17354 - test and improve idempotency of OS fact parser
2016-11-18 Ivan Nečas <[email protected]>
* Fixes #17361 - ensure plugins migration paths are set
2016-11-17 Dominic Cleal <[email protected]>
* refs #16899 - update help button on environments index
2016-11-16 Dominic Cleal <[email protected]>
* fixes #17335 - parse Solaris update as minor version
2016-11-16 alejandrocfg <[email protected]>
* Fixes #16619 - Set EC2 VPC instance private IP from primary NIC
2016-11-15 Dominic Cleal <[email protected]>
* fixes #17340 - assign IPv6 address to Rackspace CR hosts