forked from theforeman/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
14884 lines (10613 loc) · 576 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
2018-01-05 Timo Goebel <[email protected]>
* refs #20929 - do not stub settings
2018-01-03 Ori Rabin <[email protected]>
* Fixes #22131 - Refactor new_vm? to calculate compute_object once
2018-01-03 Tomer Brisker <[email protected]>
* Fixes #22111 - add taxonomy indexes to hosts
2018-01-03 Ondrej Prazak <[email protected]>
* Fixes #22065 - Fix missing permissions table in tests
2018-01-02 Timo Goebel <[email protected]>
* fixes #22080 - rabl is loaded before patching
2018-01-02 Tomer Brisker <[email protected]>
* Fixes #22043 - Allow adding invalid orgs to locs (#5104)
* Fixes #22107 - Add hosts count to subnet page
2018-01-02 Ondrej Prazak <[email protected]>
* Sync templates from community-templates
2018-01-02 Amir Fefer <[email protected]>
* Fixes #22075 - move activeTooltip logic to react
2018-01-02 Michael Moll <[email protected]>
* Fixes #22102 - correct YAML syntax of fixtures (#5132)
* Refs #22110 - pin minitest gem
2018-01-01 Avi Sharvit <[email protected]>
* Fixes #22105 - Upgrade to [email protected]
* Fixes #22101 - Reduce lodash affect on the bundle
2017-12-31 Shira Maximov <[email protected]>
* Fixes #12829 - add identifier for smart variables/parameters
* Fixes #21922 - Change memory to Megabytes in compute profile
2017-12-31 Ohad Levy <[email protected]>
* refs #21630 - do not collect code coverage for stories.
2017-12-31 Avi Sharvit <[email protected]>
* Fixes #22092 - refactor lodash usage
2017-12-31 Michael Moll <[email protected]>
* Fixes #22089 - remove unused scope
2017-12-30 Shimon Shtein <[email protected]>
* Fixes #20929 - Added fact name filtering on import
2017-12-29 Daniel Lobato Garcia <[email protected]>
* Fixes #20536 - sprockets3 syntax in plugin_assets.rake
2017-12-28 Tom Copeland <[email protected]>
* Fixes #22091 - Minor Active Record usage tweak (#5124)
2017-12-28 Timo Goebel <[email protected]>
* fixes #22085 - facet test models have db table
2017-12-27 Shimon Shtein <[email protected]>
* Fixes #21868 - Refactored "troubleshooting" to docs link
2017-12-27 Timo Goebel <[email protected]>
* fixes #22062 - support vmware vmrc console
2017-12-27 Michael Moll <[email protected]>
* Fixes #22079 - Fix Lint/UriRegexp cop
* Fixes #19853 - Fix Style/ColonMethodCall cop
* Fixes #19900 - Fix Style/SingleLineMethods cop
* Fixes #22078 - Fix Rails/EnvironmentComparison cop
* Fixes #22077 - Fix Style/TrailingMethodEndStatement cop
* Fixes #19878 - Fix Style/NestedModifier cop
* Refs #19771 - Enable Style/Encoding cop
* Fixes #19819 - Enable Performance/Caller cop
2017-12-26 Tomer Brisker <[email protected]>
* Refs #3763 - fix indentation in rabl_test.rb
* Fixes #19833 - Fix Rails/FindEach cop
2017-12-26 Shimon Shtein <[email protected]>
* Fixes #22074 - fixed #parameterize call in smart proxy show
2017-12-26 Swapnil Abnave <[email protected]>
* Fixes #22054 - Audit resources which lack auditing
2017-12-26 Timo Goebel <[email protected]>
* fixes #3763 - extend rabl templates
2017-12-25 Tomer Brisker <[email protected]>
* Fixes #19782 - Fix Layout/MultilineArrayBraceLayout cop
* Fixes #19771 - Fix Layout/EmptyLineAfterMagicComment cop
* Fixes #19797 - fix Layout/SpaceInsideStringInterpolation cop
* Fixes #19795 - Fix Layout/SpaceInsideParens cop
* Fixes #19788 - fix Layout/SpaceAroundBlockParameters cop
* Fixes #19769 - Fix Layout/CommentIndentation cop
* Fixes #19777 - fix Layout/IndentArray cop
* Fixes #19778 - Fix Layout/IndentAssignment cop
* Fixes #19780 - fix Layout/IndentationWidth cop
2017-12-25 Planktonette <[email protected]>
* Fixes #22068 - Add version column to auditable_index
2017-12-23 Ohad Levy <[email protected]>
* fixes #22055 - update bookmark loading status.
2017-12-22 Michael Moll <[email protected]>
* Refs #21576 - record remaining Rails 5.1 deprecations
* Fixes #21576 - Always use Rails 5.1, drop Rails 5.0
2017-12-21 Ohad Levy <[email protected]>
* fixes #20839 - new react implementation for bookmarks dropdown
2017-12-20 Sebastian Gräßl <[email protected]>
* Fixes #22038 - Fix color for link in action button
2017-12-20 Marek Hulán <[email protected]>
* Refs #11153 - rescue from ldap errors
2017-12-19 Amir Fefer <[email protected]>
* Fixes #22029 - fix redux-action forms test
2017-12-19 Ondrej Prazak <[email protected]>
* Fixes #21851 - Remove deprecations for 1.17
2017-12-19 Lukáš Zapletal <[email protected]>
* Fixes #21120 - DHCP update no longer queued twice
2017-12-19 Michael Moll <[email protected]>
* Fixes #22016 - update rubocop to 0.52
2017-12-18 Tomer Brisker <[email protected]>
* Fixes #19820, #19822, #19824 - Fix some performance cops
2017-12-18 Dmitri Dolguikh <[email protected]>
* Fixes #21875 - added support for sha512 grub passwords
2017-12-18 Amir Fefer <[email protected]>
* Fixes #21444 - change subitems header style in vertical nav (#5038)
2017-12-18 Tomer Brisker <[email protected]>
* Fixes #20667 - Reduce implicit searching on host index (#4768)
2017-12-18 Ohad Levy <[email protected]>
* Revert "Fixes #21312 - components for formatting dates" (#5094)
2017-12-17 Ondrej Prazak <[email protected]>
* Fixes #21760 - Fix tests on Rails 5.1
2017-12-17 Michael Moll <[email protected]>
* Refs #21997 - pin excon gem
* Fixes #21991 - add Rails 5.1 ParseError exception
2017-12-17 Timo Goebel <[email protected]>
* fixes #21947 - host scopes include table name
2017-12-16 Marek Hulán <[email protected]>
* Fixes #21343 - support multiple orgs supported for non-admin users
2017-12-15 Walden Raines <[email protected]>
* Fixes #21990: update patternfly-react to 0.18.2.
2017-12-15 Tomer Brisker <[email protected]>
* Fixes #19772, #19773, #19774 - Fix some empty line cops
2017-12-15 Timo Goebel <[email protected]>
* fixes #21825 - external nodes html content type
2017-12-14 Ondřej Pražák <[email protected]>
* Fixes #21815 - Do not search for permissions when db is empty (#5036)
2017-12-14 Tomer Brisker <[email protected]>
* Fixes #21977 - Stop enforcing detect/select/etc methods
2017-12-14 Avi Sharvit <[email protected]>
* Fixes #21846 - React turbolinks fix
2017-12-13 Timo Goebel <[email protected]>
* fixes #21956 - apply compute profile only when needed
2017-12-13 Marek Hulán <[email protected]>
* Fixes #11153 - handle ldap errors gracefully
2017-12-13 Ohad Levy <[email protected]>
* fixes #21823 - adds foreman user agent to RSS loading (#5039)
2017-12-13 Robert Flechtner <[email protected]>
* Fixes #21946 - Correctly match fact names in classification
2017-12-12 Swapnil Abnave <[email protected]>
* Fixes #21944 - HttpProxy - whitelist taxonomix params
* Fixes #21878 - Audit Puppet Environment (#5060)
2017-12-12 Tomer Brisker <[email protected]>
* Refs #21624 - Correctly load CR tables
2017-12-12 Ondřej Pražák <[email protected]>
* Fixes #21867 - Restore context when leaving tax wizard (#5055)
2017-12-12 Tomas Strachota <[email protected]>
* Fixes #21312 - components for formatting dates
2017-12-12 Dominic Cleal <[email protected]>
* Fixes #21103 - Replace 'false' AR callback results with throw
* Fixes #21102 - Replace 'xhr' in tests with keyword argument
* Fixes #21902 - Replace use_transactional_fixtures setting
* Fixes #21101 - Pass 'parameterize' separator as kwarg
* Fixes #21100 - set DB migration compatibility to 4.2
* Fixes #21099 - Replace redirect_to :back with redirect_back
* Fixes #21098 - Use positional args in functional test requests
* Fixes #21097 - Update to Rails 5 configuration options
2017-12-11 Michael Moll <[email protected]>
* Fixes #21084 - Always Use Rails 5.0, Drop Rails 4.2
2017-12-11 Tomer Brisker <[email protected]>
* Fixes #4238 - Prevent login brute forcing
2017-12-11 Shimon Shtein <[email protected]>
* Fixes #21776 - Improved fact importing to deal with names
2017-12-11 ripcurld0 <[email protected]>
* Fixes #21826 - rss notifications are duplicated (#5042)
2017-12-09 Michael Moll <[email protected]>
* Fixes #21564 - use Rails 5.x compatible oauth version
2017-12-08 Tomer Brisker <[email protected]>
* Refs #21238 - Translate setting tooltip
2017-12-06 Michael Moll <[email protected]>
* Fixes #20961 - use Rails 5.x compatible turbolinks version
2017-12-06 Amir Fefer <[email protected]>
* Fixes #21882 - extract yes/no values in settings
2017-12-06 Timo Goebel <[email protected]>
* fixes #21832 - permission test: do not assume required login
2017-12-06 Shira Maximov <[email protected]>
* Fixes #21849 - Check if the user is new before disabling login
2017-12-05 Ondrej Prazak <[email protected]>
* Sync templates from community-templates
* Fixes #21869 - Improve help text for filter creation
2017-12-05 Timo Goebel <[email protected]>
* fixes #20882 - show template kind names from plugins
2017-12-05 Ori Rabin <[email protected]>
* Fixes #20528 - Remove direct connection to rbovirt client
2017-12-04 Michael Moll <[email protected]>
* Fixes #21857 - don't use ES6 syntax in Rails JS asset
2017-12-04 Amir Fefer <[email protected]>
* Fixes #21847 - fix vertical nav string translation
2017-12-04 Swapnil Abnave <[email protected]>
* Fixes #21238 - Settings - show defaults on hover
2017-12-03 Walden Raines <[email protected]>
* Fixes #21838: Update patternfly-react version to 0.13.0
2017-11-30 Dan Seethaler <[email protected]>
* refs #21137 - Cleanup register reducers
* Fixes #21137 - Register reducers from plugins
2017-12-01 Amir Fefer <[email protected]>
* Fixes #21643 - fix and move nfs_visibilty.js to webpack
2017-11-30 Ivan Necas <[email protected]>
* Fixes #21637 - fallback to default locale with I18n
2017-11-30 Lukáš Zapletal <[email protected]>
* Fixes #14583 - reworded orphan taxonomy validation error
2017-11-29 Fabian von Feilitzsch <[email protected]>
* Fixes #21565 - Orchestration on fact import
2017-11-29 Marek Hulán <[email protected]>
* Fixes #21805 - don't list default role
2017-11-29 Daniel Lobato García <[email protected]>
* Fixes #18292 - Make notifications from an RSS feed (#4240)
2017-11-28 Shira Maximov <[email protected]>
* Fixes #21353 - users can edit login if they have permissions
2017-11-28 Baptiste <[email protected]>
* fixes #21762 - Add disk options to oVirt provider
2017-11-27 Lukáš Zapletal <[email protected]>
* Fixes #21781 - added getenforce to generic OS debug
2017-11-27 Marek Hulán <[email protected]>
* Fixes #21782 - always load global audience
2017-11-27 Tomer Brisker <[email protected]>
* Fixes #21766 - Enforce uniquness of TaxableTaxonomy in DB
2017-11-27 Nagoor Shaik <[email protected]>
* Fixes #21012 - taxonomies API to show hosts associated with it
2017-11-27 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #21774 - Drop fbjs requirement
2017-11-27 Lukas Zapletal <[email protected]>
* Fixes #21599 - explicit transaction for import dropped
2017-11-26 Marek Hulan <[email protected]>
* Fixes #21584 - set taxonomies for chart requests
2017-11-24 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #21757 - Move dynflow executor to script/dynflowd
2017-11-23 Ondřej Pražák <[email protected]>
* i18n - extracting new, pulling from tx
2017-11-23 Baptiste <[email protected]>
* fixes #5441 - Add instance_type support to oVirt provider
2017-11-23 Tomer Brisker <[email protected]>
* Fixes #21736 - Bump mail gem to 2.7.0
2017-11-22 Adam Ruzicka <[email protected]>
* Fixes #21718 - Test
* Fixes #21718 - Show errors properly when creating new oVirt CR
2017-11-22 Dan Seethaler <[email protected]>
* Fixes #21725 - Move test config to setup file
2017-11-22 Daniel Lobato Garcia <[email protected]>
* Fixes #21669 - Use $major on CentOS media, $version deprecated
2017-11-21 Daniel Lobato Garcia <[email protected]>
* Fixes #21675 - OpenStack create host tab fails to load
2017-11-20 Timo Goebel <[email protected]>
* fixes #21676 - select vmware network for subnet
2017-11-19 Amir Fefer <[email protected]>
* Fixes #21699 - fix vertical navigation animation glitch
2017-11-16 Timo Goebel <[email protected]>
* fixes #21658 - add pagelet extension points to hostgroup form
* fixes #21374 - audit host interfaces (#4929)
2017-11-16 Daniel Lobato Garcia <[email protected]>
* Fixes #21682 - Add Domain to Compute Resource API (OpenStack)
2017-11-16 Dan Seethaler <[email protected]>
* Fixes #21624 - eslint update to airbnb-base
2017-11-15 Anthony Chevalet <[email protected]>
* Fixes #12054 - Openstack v3 support
2017-11-14 Ondřej Pražák <[email protected]>
* Fixes #21503 - Import puppet classes when organzations changed
* Fixes #21619 - Add beter debug info for npm postinstall
2017-11-14 Daniel Lobato García <[email protected]>
* Fixes #21502 - Disable editing users in group with EUG (#4962)
2017-11-14 Marek Hulan <[email protected]>
* Fixes #21629 - display error for taxonomy selectors
2017-11-14 Lukáš Zapletal <[email protected]>
* Fixes #19151 - progress_report_id fix for host edit
2017-11-13 Daniel Lobato Garcia <[email protected]>
* Fixes #21626 - "Domain Users" are not a valid AD group
2017-11-13 Shira Maximov <[email protected]>
* Fixes #21136 - Change all labels to Title Case
2017-11-13 Tomer Brisker <[email protected]>
* Fixes #21611 - Improve *_name lookup speed
2017-11-12 Avi Sharvit <[email protected]>
* Fixes #21600 - react-bootstrap Panel
2017-11-12 Dan Seethaler <[email protected]>
* Fixes #21630 - Add colocation for storybook stories
2017-11-10 Tomas Strachota <[email protected]>
* Fixes #21448 - execute npm run lint from context of plugins
2017-11-10 Shira Maximov <[email protected]>
* Fixes #21133 - Change the color of pficon-info to black (#4942)
* Fixes #21135 - Add tooltip for overridden flag icon
2017-11-10 Tomer Brisker <[email protected]>
* Fixes #21606 - Allow searching facts by host_id (#4993)
2017-11-09 Ondrej Prazak <[email protected]>
* Fixes #21602 - Add scoped_search on host.id for reports
2017-11-08 Dan Seethaler <[email protected]>
* Fixes #21130: Use patternfly-react npm package
2017-11-08 Timo Goebel <[email protected]>
* fixes #21579 - pagelets for host show
2017-11-08 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #21603 - Add code owners
2017-11-08 Amir Fefer <[email protected]>
* Fixes #21591 - Add id attribute to topbar element
* Fixes #21551 - add user menu to hamburger menu in mobile
2017-11-07 lizagilman <[email protected]>
* Fixes #20446 - reset page param after search
2017-11-07 kgaikwad <[email protected]>
* Fixes #20204 - returns all hosts for unassigned hostgroup
2017-11-07 Shimon Shtein <[email protected]>
* Fixes #15402 - Moved puppet to separate api controller
2017-11-07 Walden Raines <[email protected]>
* Fixes #21563: add babel-plugin-transform-class-properties.
2017-11-06 Avi Sharvit <[email protected]>
* Fixes #21578 - Cmp.PropTypes to Cmp.propTypes
* Fixes #21583 - Upgrade enzyme
2017-11-05 Tomer Brisker <[email protected]>
* Fixes #21519 - Prevent stored XSS on fact charts
2017-11-03 orrabin <[email protected]>
* Fixes #21556 - Template with no interface shows volumes
2017-11-02 Dan Seethaler <[email protected]>
* Fixes #21567: Update es2015 to env in storybook
2017-11-02 Michael Moll <[email protected]>
* Fixes #21553 - require will_paginate's action_view helper (#4972)
2017-11-02 Shira Maximov <[email protected]>
* Fixes #21543 - Tooltip will appear only if the key is too long
2017-11-02 Tomer Brisker <[email protected]>
* Fixes #21541 - Allow mass set seen on notifications
2017-11-01 Michael Moll <[email protected]>
* Refs #19050 - Use Rails 5.0 on Ruby 2.3 again (#4933)
2017-11-01 Marek Hulan <[email protected]>
* Fixes #21424 - use factory_bot_rails
2017-10-31 Marek Hulan <[email protected]>
* Fixes #16363 - fix taxable user deletion
2017-10-31 Shira Maximov <[email protected]>
* Fixes #20896 - Remove help button from ptable
* Fixes #21420 - Add the name of the file in Edit file
2017-10-31 Tomer Brisker <[email protected]>
* Fixes #16835 - Allow implicit search with org_id
2017-10-30 Avi Sharvit <[email protected]>
* Fixes #21447 - The login page should be based on patternfly
* Fixes #21500 - dismiss notifications
2017-10-30 Tomer Brisker <[email protected]>
* Fixes #21442 - Load puppetclass params on new host form
2017-10-30 Tomer Brisker <[email protected]>
* Fixes #21112 - Only initialize host preview once
2017-10-29 Amir Fefer <[email protected]>
* Fixes #21454 - fix editor fullscreen mode
* Fixes #21499 - org/loc switchers are now visible
* Fixes #21456 - fix input-field fullscreen mode
2017-10-28 Partha Aji <[email protected]>
* Fixes #21496 - Properly fetches permission records
2017-10-27 Timo Goebel <[email protected]>
* refs #21394 - user login with access token api
2017-10-27 Lukáš Zapletal <[email protected]>
* Fixes #20997 - added OpenStack/OpenShift ignored NIC patterns
2017-10-27 Shira Maximov <[email protected]>
* Fixes #21131 - put help text in inline help
2017-10-26 Walden Raines <[email protected]>
* Fixes #21223: add experimental UI menu to foreman.
2017-10-26 Timo Goebel <[email protected]>
* fixes #21330 - http proxies: test connection clears toasts
2017-10-26 Amir Fefer <[email protected]>
* Fixes #21392 - remove active class from secondary menu
2017-10-26 Shira Maximov <[email protected]>
* Fixes #21129 - Switching the submit and cancel buttons
2017-10-26 Avi Sharvit <[email protected]>
* Fixes #21451 - Notification box close button Close button should have a blue highlight on hover
2017-10-25 Dan Seethaler <[email protected]>
* Fixes #21462: Update babel preset to `env
2017-10-25 Tomer Brisker <[email protected]>
* Refs #21424 - Pin factory_girl_rails to unblock CI
* Fixes #21450 - Update rubocop to 0.51.0
2017-10-25 Amir Fefer <[email protected]>
* Fixes #21453 - remove duplicate file
2017-10-25 Sebastian Gräßl <[email protected]>
* Fixes #21026 - Clear cached notifications properly
2017-10-24 Timo Goebel <[email protected]>
* fixes #18004 - increase fact value size
* fixes #21394 - user login with access token api
2017-10-24 Ivan Nečas <[email protected]>
* Fixes #11825 - use before_create for template associations
2017-10-24 Daniel Lobato Garcia <[email protected]>
* Fixes #17992, #18103 - Improve external usergroup errors
2017-10-23 Tomas Strachota <[email protected]>
* Fixes #21200 - gracefully handle long welcome text
2017-10-23 Avi Sharvit <[email protected]>
* Fixes #21202 - Add close button to notifications drawer
2017-10-23 Dan Seethaler <[email protected]>
* Fixes #21160: Upgrade to React@16
2017-10-23 Amir Fefer <[email protected]>
* Fixes #21396 - remove using 'user.jpg' file'
2017-10-19 Marek Hulan <[email protected]>
* Fixes #21342 - fix core roles seeding
2017-10-19 Marek Hulán <[email protected]>
* Fixes #21119 - set taxonomies in API
2017-10-19 Ondrej Prazak <[email protected]>
* Fixes #21180 - Enable adding 3rd party libraries from plugins
2017-10-18 Ohad Levy <[email protected]>
* fixes #20838 - add redux-form supports
2017-10-18 Ivan Nečas <[email protected]>
* Fixes #21295 - load the routes before we load the controllers
2017-10-17 Timo Goebel <[email protected]>
* fixes #21332 - http proxies: edit in two-pane
2017-10-16 Timo Goebel <[email protected]>
* fixes #21333 - http proxies: remove rails js
* fixes #21331 - http proxies: name is required
2017-10-16 Amir Fefer <[email protected]>
* Fixes #18492 - add pf vertical navigation
2017-10-16 Sebastian Gräßl <[email protected]>
* Fixes #20541 - Include nested facts in CSV export
2017-10-16 Eric D. Helms <[email protected]>
* Fixes #21329 - Fix webpack build
2017-10-12 Justin Sherrill <[email protected]>
* Fixes #12216 - support http proxies for compute resources
2017-10-12 Martin Bačovský <[email protected]>
* Fixes #21299 - Make user_id required
2017-10-12 Andrew Kofink <[email protected]>
* Fixes #21253 - fix latest events widget
2017-10-11 Adam Růžička <[email protected]>
* Fixes #18422 - Expose dynflow worker pool size in config
2017-10-11 mdellweg <[email protected]>
* refs #20201: update dependency to rest-client
2017-10-11 Marek Hulán <[email protected]>
* Fixes #21213 - don't fail on nil time stamps
2017-10-11 Andrew Kofink <[email protected]>
* Fixes #21250 - Prevent double render in not_found
2017-10-11 Daniel Lobato Garcia <[email protected]>
* templates - sync from community-templates
2017-10-10 Lukáš Zapletal <[email protected]>
* Fixes #21266 - enabled all PXE loaders for SUSE
* Fixes #21269 - fixed dns_lookup with address resolution
2017-10-10 Rahul Bajaj <[email protected]>
* Fixes #21228 - Use the inline messaging warning
2017-10-09 Sean O'Keeffe <[email protected]>
* Fixes #21232 - verify IP sans when authenticating a SP
2017-10-09 Marek Hulán <[email protected]>
* Fixes #21246 - unify extlogout and login footer text
2017-10-09 Ivan Nečas <[email protected]>
* Fixes #21176 - don't modify strong param filter rules
* Fixes #21206 - Fix templates taxonomies migration
2017-10-06 Lukáš Zapletal <[email protected]>
* Fixes #19706 - don't treat DHCP leases as conflicts
2017-10-06 Sebastian Gräßl <[email protected]>
* Refs #21005 - Allow select_action_button to set button as primary
2017-10-05 Dan Seethaler <[email protected]>
* Fixes #21179 - Upgrade to [email protected]
2017-10-04 Dominik Hlavac <[email protected]>
* Fixes #18736 - Forced unlimited check for filter with no t (#4724)
2017-10-04 Tomas Strachota <[email protected]>
* Fixes #21175 - Unable to add AD LDAP Auth Source
2017-10-04 Ondrej Prazak <[email protected]>
* Fixes #20469 - Register react components from plugins
2017-10-03 Amir Fefer <[email protected]>
* Fixes #21174 - remove javascript tag from ssh_key form
2017-10-02 Ohad Levy <[email protected]>
* fixes #21117 - update to react 15.6.2 (now with MIT license)
2017-09-27 Sebastian Gräßl <[email protected]>
* Fixes #20900 - Combine Template editor and template field
2017-09-27 Michael Moll <[email protected]>
* Refs #19050 - Use Rails 4.2 on Ruby 2.3
2017-09-27 Ivan Nečas <[email protected]>
* Refs #21037 - address review comments
* Fixes #21037 - use Host
2017-09-26 Lukas Zapletal <[email protected]>
* Fixes #20559 - print rails log for test failures
2017-09-26 Shimon Shtein <[email protected]>
* Fixes #15409 - Separated puppet facts from core
2017-09-26 Christian <[email protected]>
* Fixes #21104 - Recognize br-ex etc as bridge interfaces
2017-09-25 Tomer Brisker <[email protected]>
* Refs #21088 - Remove deprecated notify js function
* Fixes #21088 - Update default release for JS deprecation
2017-09-25 Michael Moll <[email protected]>
* Fixes #21086 - revert roadie-rails pinning for Ruby <2.2
2017-09-25 Ohad Levy <[email protected]>
* fixes #20652 - moved compute_resource js code to webpack
2017-09-24 Shimon Shtein <[email protected]>
* Fixes #21015 - sync host and hostgroup rabl to show all_classes
2017-09-24 Michael Moll <[email protected]>
* Fixes #21036 - Don't use class as class_name in associations
2017-09-22 Dominic Cleal <[email protected]>
* Fixes #20957 - Replace alias_method_chain with Module prepend
2017-09-21 Shira Maximov <[email protected]>
* Fixes #20905 - Add message in audit in case no changes
2017-09-20 lizagilman <[email protected]>
* Fixes #20705 - display paginations on audits page correctly
2017-09-20 Marek Hulán <[email protected]>
* Fixes #20665 - make smart proxy delete button grey
2017-09-20 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #20969 - Allow setting the rails version via settings.yaml.dist
2017-09-20 Michael Moll <[email protected]>
* Refs #20950 - remove uniq in AR Finders whitelisting
2017-09-20 Timo Goebel <[email protected]>
* fixes #20878 - vmware clone: rewrite boot order
2017-09-20 Shira Maximov <[email protected]>
* Fixes #20890 - changes SSH key validation messages
2017-09-20 Dominic Cleal <[email protected]>
* Fixes #20952 - Replace AC
* Fixes #21024 - Reorder AR associations in order of use
2017-09-20 Sebastian Gräßl <[email protected]>
* Fixes #20783 - Move Inline messaging regarding user saving first
2017-09-20 Marek Hulan <[email protected]>
* Fixes #21010 - add higher granularity and reorder seeds
* Fixes #21011 - skip permission check and audits for default role
2017-09-19 Sebastian Gräßl <[email protected]>
* Fixes #20201 - Global HTTP proxy for outgoing requests
2017-09-19 Tomer Brisker <[email protected]>
* Fixes #19519 - Prevent autocomplete on LDAP account
2017-09-19 Michael Moll <[email protected]>
* Refs #20960 - raise minimum activerecord-session_store version
2017-09-19 Shimon Shtein <[email protected]>
* Fixes #20966 - Added fast return to host power api
2017-09-19 Dominic Cleal <[email protected]>
* Fixes #20958 - Don't pass argument to force association reload
* Fixes #20949 - Replace deprecated AM
* Fixes #20955 - Remove conditions to {destroy, delete}_all calls
2017-09-19 Trey Dockendorf <[email protected]>
* Fixes #20487 - Add rebuild_config to hostgroups API
2017-09-19 Tomas Strachota <[email protected]>
* Fixes #10726 - NIC types are immutable
* Fixes #20986 - wrongly documented :user_id in ssh_keys#create
2017-09-19 Tomer Brisker <[email protected]>
* Fixes #20963 - CVE-2017-7535 prevent XSS on org/loc host assign
2017-09-18 Dominic Cleal <[email protected]>
* Fixes #20950 - Use 'distinct' in AR finders
* Fixes #20956 - Don't pass class constants to AR conditions
* Fixes #20954 - don't access MIME types via constants
* Fixes #20951 - Replace render :text with :plain
2017-09-18 Walden Raines <[email protected]>
* Fixes #20902: ensure 'katello' is webpack bundle name.
2017-09-18 Tomer Brisker <[email protected]>
* Fixes #19912 - Allow all styles of word arrays
2017-09-17 Dominic Cleal <[email protected]>
* Fixes #20959 - Remove :status option on 'head'
* Fixes #20953 - Remove assert_nothing_raised args
2017-09-17 Ohad Levy <[email protected]>
* fixes #20485 - cache notification indicator in local storage
2017-09-15 Tomer Brisker <[email protected]>
* Fixes #20470 - Audit role filter changes
2017-09-15 Timo Goebel <[email protected]>
* fixes #20653 - ui notifications for hosts with usergroup owner
2017-09-14 Marek Hulan <[email protected]>
* Fixes #19047 - unify date formats
* Fixes #20913 - add missing role_ids to user API
2017-09-14 Tomer Brisker <[email protected]>
* Fixes #20920 - Prevent boot issue with Rake.application
2017-09-14 Marek Hulán <[email protected]>
* Refs #16740 - migration templates to use param macros
2017-09-13 Michael Moll <[email protected]>
* Refs #19050 - Update Rails 5.0 to 5.0.6
2017-09-13 Ivan Necas <[email protected]>
* Fixes #20908 - postpone initialization of Dynflow runtime
2017-09-13 Marek Hulan <[email protected]>
* Refs #20708 - reset default templates type
2017-09-13 Daniel Lobato Garcia <[email protected]>
* Fixes #20098 - Resolve template_used for image provisioning
2017-09-12 Shira Maximov <[email protected]>
* Fixes #20897 - change description for 'default' to help tooltip
2017-09-12 Ron <[email protected]>
* Fixes #20750 - Comment field in host page
2017-09-12 lizagilman <[email protected]>
* Fixes #20454 - change page by typing page number
2017-09-11 Sebastian Gräßl <[email protected]>
* Fixes #20800 - Comply with Patternfly login page recommendations
* Fixes #20678 - Improve provisioning templates history
2017-09-11 Marek Hulán <[email protected]>
* Fixes #20660 - improve proxy features list
2017-09-11 Michael Moll <[email protected]>
* Refs #19707 - test searching domains with locs
2017-09-08 Daniel Lobato Garcia <[email protected]>
* Fixes #20872 - scoped_search should be >= 4.1.2
* Fixes #19730 - Add vendor to provisioning templates
2017-09-08 Marek Hulan <[email protected]>
* Fixes #20672 - add button for autosign entry
2017-09-08 Marek Hulán <[email protected]>
* Fixes #20708 - fix templates auditing
* Fixes #19742 - cache hosts for fact values
2017-09-07 kgaikwad <[email protected]>
* Fixes #20840 - show error on invalid name for any parameter
* Fixes #20858 - pxe_loader in GET api/v2/hostgroups/:id
2017-09-07 Marek Hulán <[email protected]>
* Fixes #20589 - update login_at when extlogin is used
* Fixes #20867 - pin down scoped search
2017-09-07 Nagoor Shaik <[email protected]>
* Fixes #20516 - GET hosts API displays owner_name attribute
2017-09-07 Timo Goebel <[email protected]>
* fixes #20822 - vm: show link to associated host
2017-09-05 Shimon Shtein <[email protected]>
* Fixes #13599 - Wrapped exception truncate moved to client
2017-09-05 Sebastian Gräßl <[email protected]>
* Refs #19554 - Rewrite to use an Object and not Map
2017-09-04 treydock <[email protected]>
* Fixes #20500 - Allow GET /api/hostgroups to include parameters
2017-09-04 Ivan Necas <[email protected]>
* Fixes #20654 - color of Failed Restarts in resources chart
2017-09-04 Timo Goebel <[email protected]>
* fixes #20820 - set ajax vars for cr host import
2017-09-04 Lukáš Zapletal <[email protected]>
* Fixes #20835 - added time into foreman-debug
2017-09-04 Ohad Levy <[email protected]>
* fixes #20833 - allow storybook to use application css
2017-09-04 Marek Hulán <[email protected]>
* Fixes #20737 - add default description to roles
2017-09-04 Tomas Strachota <[email protected]>
* Fixes #19554 - Warning for unsupported PXE loader combinations
2017-09-03 Marek Hulan <[email protected]>
* Fixes #20710 - fix view diff width
2017-08-31 Sebastian Gräßl <[email protected]>
* Fixes #20763 - Reword "Create SSH key" to "Add SSH key"
2017-08-31 Amir Fefer <[email protected]>
* Fixes #20240 - fix fullscreen mode in ace editor
2017-08-30 Sebastian Gräßl <[email protected]>
* Fixes #20801 - Put granularity info into alert box
2017-08-28 Marek Hulan <[email protected]>
* Fixes #20736 - improve bookmark permissions
2017-08-28 Daniel Lobato Garcia <[email protected]>
* Bump version to 1.17-develop
* i18n - extracting new, pulling from tx
2017-08-27 Michael Moll <[email protected]>
* Fixes #1644,#19692 - update fog-libvirt to 0.4.1
2017-08-26 Marek Hulan <[email protected]>
* Fixes #20739 - use unique user label in select
2017-08-25 Ondrej Prazak <[email protected]>
* Fixes #19039 - Lock plugin roles
2017-08-25 Marek Hulán <[email protected]>
* Fixes #20657 - make proxy labels bold
2017-08-25 Partha Aji <[email protected]>
* fixes #20699 - Rake task to selectively backup tables
2017-08-25 kgaikwad <[email protected]>
* Fixes #20701 - Subnet6 fields info in GET api/v2/hostgroups/:id
2017-08-25 Nagoor Shaik <[email protected]>
* Fixes #20711 - GET host interface API will show fqdn attribute
2017-08-25 Marek Hulan <[email protected]>
* Fixes #7778 - allow + in user login
2017-08-24 Marek Hulan <[email protected]>
* Fixes #20726 - allow # in user login
* Fixes #20706 - fix template audit messages
2017-08-24 Lukas Zapletal <[email protected]>
* Fixes #20622 - puppet import does not refresh all statuses
2017-08-24 Ivan Necas <[email protected]>
* Fixes #19113 - use fog-ovirt method for rebooting
2017-08-22 Marek Hulán <[email protected]>
* Fixes #20668 - capitalize cards on smart proxy page
* Fixes #20675 - autosign delete buttons are no longer red
* Fixes #20676 - relabel new button for autosign entry
2017-08-22 Sebastian Gräßl <[email protected]>
* Fixes #20680 - Use default button style for "Add Combination"
2017-08-22 Sebastian Gräßl <[email protected]>
* Fixes #20573 - Include searchbox extension
* Fixes #20669 - Append 'clone' to cloned provisioning templates
2017-08-21 Tomer Brisker <[email protected]>
* Fixes #7499 - Allow searching config group by puppetclass
2017-08-21 Sebastian Gräßl <[email protected]>
* Fixes #20673 - Move locked warning on template editing
2017-08-21 Marek Hulan <[email protected]>
* Fixes #20662 - no failed features
2017-08-20 Tomer Brisker <[email protected]>
* Refs #20255 - simplify hostgroup csv test
2017-08-20 amirfefer <[email protected]>
* Fixes #20416 - fix UI under email preferences
* Fixes #20255 - add csv export for hostgroups
2017-08-20 Amir Fefer <[email protected]>
* Fixes #20612 - Fix error rendering when building pxe default
* Fixes #20628 - cloned host/hostgroup should copy rootpass
2017-08-20 Timo Goebel <[email protected]>
* fixes #20645 - stub templates proxy url call
* fixes #20646 - clear host_id during interface cloning
2017-08-20 Ohad Levy <[email protected]>
* fixes #20636 - update babel-core and loader to newer versions
2017-08-18 Ondrej Prazak <[email protected]>
* Fixes #20529 - Improve the filtering function
2017-08-18 Lukas Zapletal <[email protected]>
* Fixes #20475 - Random DB IPAM with MAC preservation
2017-08-17 Amir Fefer <[email protected]>
* Fixes #20614 - fix host selector for bulk action regression
2017-08-16 Ohad Levy <[email protected]>
* fixes #20316 - allow to delete a user that has notifications
2017-08-16 Tomer Brisker <[email protected]>
* Fixes #20610 - Prevent chrome password autofill
2017-08-16 Maximilian Mack <[email protected]>
* Fixes #20608 - Adding index for ssh_keys
2017-08-15 Swapnil Abnave <[email protected]>
* Fixes #19326 - create compute-resource - URL optional
2017-08-11 Daniel Lobato Garcia <[email protected]>
* Refs #20514 - Add test for $ in user login
2017-08-11 Lukáš Zapletal <[email protected]>
* Fixes #20521 - better subnet prefix label
2017-08-11 Nagoor Shaik <[email protected]>
* Fixes #20553 - br tag now renders to new line
2017-08-10 Avram Lubkin <[email protected]>
* Fixes #20514 - Accept dollar sign($) in login names
2017-08-10 Daniel Lobato Garcia <[email protected]>
* Fixes #20543 - implement asset_path for plugin_assets
2017-08-10 Rune Hammersland <[email protected]>
* Fixes #20537: Monospace fonts in fullscreen editor
2017-08-10 Eric D Helms <[email protected]>
* Fixes #19529: Use main_app for redirect in case of plugins
2017-08-08 Marek Hulán <[email protected]>
* Fixes #20515 - always find user by login
* Fixes #20483 - seed all permission for core roles
2017-08-07 Klaas Demter <[email protected]>
* Fixes #14160 - bump fog-vsphere to 1.11.3
2017-08-07 Daniel Lobato Garcia <[email protected]>
* Fixes #20511 - Webpack config should look for nested deps
2017-08-07 orrabin <[email protected]>
* Fixes #20452 - Keep password value after validation in ovirt CR
2017-08-07 Timo Goebel <[email protected]>
* fixes #20453 - build is enabled for cloned host (#4704)
2017-08-07 lizagilman <[email protected]>
* Refs #19305 - fixing spacing issues on facts page