forked from kimchi-project/kimchi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2994 lines (2970 loc) · 313 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
CHANGELOG
=========
#### [3.0.0] ####
* [a6574995] Update remote ISOs URLs (Aline Manera)
* [b04c5e3a] OpenSUSE 15.1: Use localstatedir when runstatedir is not available (Aline Manera)
* [bb254866] OpenSUSE 15.1: Install pyparted via pip (Aline Manera)
* [e08abf34] Issue #1224 : kvmusertest.py: hardcoded path prevents kimchi module from loa.. (Renata Ravanelli)
* [bc8f14e9] Issue #1264 : Libvirt check should only look for socket (Renata Ravanelli)
* [68237118] Remove python3-pam as Kimchi dependency (Aline Manera)
* [c47a9c00] Use jsonschema Draft3Validator (Aline Manera)
* [e7c5fca8] Bug fix: Proper set python3 on RPM build (Aline Manera)
* [1dadcdae] Bug fix: Detect CentOS 8 ISO (Aline Manera)
* [daa803dd] Add pull request template (Aline Manera)
* [77dcf86d] Create issue templates (Aline Manera)
* [d3c54092] Update docs (Aline Manera)
* [9ff17b2f] Remove *deps.list files as they are auto generated on build (Aline Manera)
* [4631a0a6] Ubuntu 19.10: Set dependencies properly (Aline Manera)
* [b35d21be] Use the correct python lib directory to install python libraries (Aline Manera)
* [28384e43] Fix build: Add new files to Makefile (Aline Manera)
* [37f2e983] Python3: Use python3-pep8 on Fedora (Aline Manera)
* [68d136a1] Fix #1285: Use distro.linux_distribution (python3) (Aline Manera)
* [203ddc43] Fix #1179: Proper set cpu mode for PPC and Aarch64 (Aline Manera)
* [ec9b4d31] Fix #1281: Only listen to VIR_STORAGE_POOL_EVENT_ID_LIFECYCLE events (Aline Manera)
* [832a2d3c] Fix #1228: Proper set storage volume capacity unit (Aline Manera)
* [14f5e308] Bug fix: Update config tests due to 'take_screenshot' option (Aline Manera)
* [8189398f] Bug fix: Set PYTHONPATH to while running target (Aline Manera)
* [6d91c39b] Bug fix: Update config tests due to /spice-web-client (Aline Manera)
* [f72d0ef7] Bug fix: Use encoding option of ET.tostring() to get XML as string (Aline Manera)
* [0b09900c] Bug fix: Update tests as the default amount of memory was increased to 2048M (Aline Manera)
* [f3fd4563] Fix #1275: Update README with Kimchi dependencies (Aline Manera)
* [74333089] Bug fix: Remove blank line from dependencies.yaml (Aline Manera)
* [4f848586] Issue #1256: Always show the link to access guest via VNC or Spice (Manassé Ngudia)
* [3b70de3c] comma expected (kattil3)
* [c26d35d8] Python3: Update package dependencies (Aline Manera)
* [2ca10671] Increase default virtual machine memory to 2048Mb (Aline Manera)
* [0c0d76aa] flipping problem fix (Pavel Gurenko)
* [1ab22ad3] removed unneeded index.html static map (Pavel Gurenko)
* [5b29ccfd] added with_spice_web_client to config (Pavel Gurenko)
* [45a4ef55] api changes to support spice-web-client (Pavel Gurenko)
* [b27e60df] adds automakes for spice-web-client (Pavel Gurenko)
* [620d9a07] adds spice-web-client (Pavel Gurenko)
* [9d1dee76] fix broken links (Invch)
* [230b53e9] Bug fix: Proper get 'take_screenshot' parameter from kimchi config (Aline Manera)
* [cc4c9095] Use importlib module instead of imp (Aline Manera)
* [3d523cdb] Remove IBM license checker (Aline Manera)
* [57f9f526] Add pre-commit configuration (Aline Manera)
* [8334268a] Switch to Python 3 (Aline Manera)
* [c9068602] Add a configuration option for disabling taking a screenshot (ss23)
* [c56b06db] stop testing symlinks/blockdevices against VALID_RAW_CONTENT (a-a)
* [bc66961b] Issue 1242: Allow either python-imaging or python-pil in installer (Ian Otto)
* [c775ab5b] Issue #1215: Wrong tab into Storage section (Cyrille Gindreau)
* [382771e1] Update Ubuntu deps. (#1192) (dumol)
* [0afbd77d] Guest autostart (#1163) (Galen Pospisil)
* [5a38b72c] Fix error handler on $.ajax() function (Aline Manera)
* [bf9097dd] Fix issue #1165: Use relative path to access websockify (Aline Manera)
* [9e85926c] Fix issue #1157: Consider DOS/MBR mime type as ISO file (Aline Manera)
* [18e9257e] Use fontawesome spinner icon instead of external image (Aline Manera)
* [e29d0463] Use fontawesome icon instead of external image (Aline Manera)
* [34aaaf7b] Use distro icons exposed by Kimchi URIs (Aline Manera)
* [93befdb5] Remove kimchi.setListVMAuto call function (Aline Manera)
* [0928eff5] .size() is deprecated on JQuery 3.2.1 (Aline Manera)
* [2618d991] Remove alert-container as it is being provided by Wok basic-template (Aline Manera)
* [2dd489a7] Update README as http://kimchi-project.github.io/kimchi/downloads/ is no lon.. (Aline Manera)
* [6fa2dda5] Add Domain listeners to update page according to user interations (Aline Manera)
* [6189310b] Register for libvirt domain events to update the UI accordindly (Aline Manera)
* [33857406] Add Network listeners to update page according to user interations (Aline Manera)
* [ad43cf49] Register for libvirt network events to update the UI accordindly (Aline Manera)
* [b4b48184] Add Storage Pools listeners to update page according to user interations (Aline Manera)
* [3c76dd2d] Register for libvirt storage pools events to update the UI accordindly (Aline Manera)
* [48d03e07] Add Template listeners to update page according to user interations (Aline Manera)
* [3803fece] Update po files (Aline Manera)
* [810ad2e0] Change VNC & Spice console URLs to reference web interface port (Galen Pospisil)
* [f859a7aa] Issue #1155: enhancement (Joni Orponen)
#### [2.5.0] ####
* [bd3a102a] Update VERSION, ChangeLog and .po files for 2.5 release (Aline Manera)
* [0f3c23ce] Remove ginger-base as Kimchi dependency (Aline Manera)
* [6251e083] Remove federation feature from Kimchi as it is now on Wok (Aline Manera)
* [fb99e655] Add server arch from /host API instead of relying on Ginger Base (Aline Manera)
* [4fae03c7] Move Kimchi specific functions from gingerbase.disks to Kimchi (Aline Manera)
* [ed61aeff] Move Kimchi specific functions from gingerbase.netinfo to Kimchi (Aline Manera)
* [3653a56a] Remove Open Sans font requirement (Aline Manera)
* [330995a5] Bug fix: Let Wok specify UI configuration on cherrypy settings (Aline Manera)
* [e236d110] Updated PO files (Rajat Gupta)
* [33a6cd63] Update Copyright date on po files (Aline Manera)
#### [2.4.0] ####
* [856b1570] Update VERSION, ChangeLog and po files for 2.4.0 release (Aline Manera)
* [c49cbb57] Bug fix: Set original VLAN device to network parameters to be updated (Aline Manera)
* [62cb5803] Bug fix 1119: Proper check NetworkManager is running when creating new network (Aline Manera)
* [a4a5472b] Bug fix: Inform user there is no interface available when creating a network (Aline Manera)
* [1709bcf7] Bug fix: Proper display storage volume content on gallery view (Aline Manera)
* [5f79fca4] Bug fix: Display full Volume dropdown menu content even when pool has few vo.. (Aline Manera)
* [4b301157] Bug fix: Preserve "View Gallery" button location when opening Storage Volume.. (Aline Manera)
* [04a2a9a0] Bug fix #1123: Do not rely on Wok configuration to get host information (Aline Manera)
#### [2.4.0-rc1] ####
* [61537e95] Bug fix #1107: Only set cache=none to disks that support direct IO (Aline Manera)
* [eb4dfde0] Use Websocket facilities from WoK (Daniel Henrique Barboza)
* [09d9a398] Update copyright date according commit 3195f7b1 (Aline Manera)
* [2b3a7219] Fix typo (Lucio Correia)
* [9f0cf4a7] fix wrong tab enumeration (fritz-net)
* [a20b8a55] Fix storage volume test to run without nginx (Lucio Correia)
* [39bd67b6] Fix tests to run without proxy (Lucio Correia)
* [fb6ba234] Fix patch_auth() call according to Wok changes (Aline Manera)
* [459d3f03] Improve logic to identify if a network is in use or not (Aline Manera)
* [abe36bb5] Fix memory hotplug test case (Aline Manera)
* [09a380c1] Fix snapshots test case (Aline Manera)
* [952c029b] Bug fix: Set default host value while generating the virt-viewer config file (Aline Manera)
* [d95ed9dc] Update run_server() calls to do not pass model instance (Aline Manera)
* [0758c189] Specify objectstore location when running on test mode (Aline Manera)
* [a743f930] Bug Fix #979 - Change boot order UI (Bianca Carvalho)
* [049a9c9c] Update copyright date for root.py file (Aline Manera)
* [05af594c] Bug fix #1089: osinfo.py tablet_bus='usb' for x86 modern (Ramon Medeiros)
* [a386a29e] Adding 'self.depends' option in root.py (Daniel Henrique Barboza)
* [90e37cf9] Fix for the kimchi #1102 (Jayavardhan Katta)
* [d59f5ff0] Fixed truncation for Guest Interface GUI OVS network/interface scroll bar (Rajat Gupta)
* [94bc11d8] Fixed Truncation appeared on Virtualization->add network of Japanese language (Rajat Gupta)
* [9a088014] Fixed for Truncation occurs in edit a guest panel console row (Rajat Gupta)
* [08571fed] Bug fix #1096 - Prevent mass detach based on source PCI address (Daniel Henrique Barboza)
* [e24dfb5f] Remove role_key parameter (Aline Manera)
* [649621f6] Remove whitespaces (Aline Manera)
* [ed83a269] Add test to live snapshot (Ramon Medeiros)
* [aa069381] Bug fix #1029: Unable to create a snapshot on a running guest (Ramon Medeiros)
* [f5e7c699] Live migration RDMA support: mockmodel changes (Daniel Henrique Barboza)
* [9927cfb6] Live migration RDMA support: test changes (Daniel Henrique Barboza)
* [cda5bd13] Live migration RDMA support: ui changes (Daniel Henrique Barboza)
* [29b237aa] Live migration RDMA support: model changes (Daniel Henrique Barboza)
* [2b42c4ca] Live migration RDMA support: doc changes (Daniel Henrique Barboza)
* [64ffba7e] Bug fix #1016: Display current storage volume size on resize dialog (Ramon Medeiros)
* [b688fa49] VEPA interface not listed with VM running (Ramon Medeiros)
* [eaaea97b] Fix issue #1069: Allow user specifies the Template name when creating it (Aline Manera)
* [d0f1467e] Update copyright date (Aline Manera)
* [8fce3b18] Bug fix #1073: Re-attach device to host when detaching it from guest (Aline Manera)
* [6288c73d] mockmodel.py: unsubscribing from 'exit' channel on cleanup (Daniel Henrique Barboza)
* [d6c39766] Multi-culture UI issues for kimchi plugin Guest module (Rajat Gupta)
* [9e6c5b93] Multi-culture UI issues for kimchi plugin Storage module (Rajat Gupta)
* [5d478e30] Corrected position of close icon for create a network pop up alert (Rajat Gupta)
* [43948dc2] Multi-culture UI issues for kimchi plugin template module (Rajat Gupta)
* [467afa2e] Bug fix #1064: In Migrate guest window, text boxes are not taking input prop.. (Bianca Carvalho)
* [060a5bd3] Update README file to point to http://kimchi-project.github.io/kimchi/downlo.. (Aline Manera)
* [86e75b00] Use libvirtd service in Ubuntu (Lucio Correia)
* [1b2b8546] Bug fix #1026: CentOS: Unable to get and update memory values for a powered .. (Ramon Medeiros)
* [03c5b000] Bug fix #1057: Failed to import kimchi (Bianca Carvalho)
* [0e2a8f3e] Add more details to error message when probing image (Lucio Correia)
* [ebc2ebb3] Add missing dependency to documentation (Lucio Correia)
* [a9e2808e] Bug fix #1066: Do not stora guest storage volume information on objectstore (Aline Manera)
* [9314ab37] Bug fix #1015: Rename "Guest Name ID" header to "Guest Name" (Aline Manera)
* [729aaf48] Fix checking for libvirt daemon on Ubuntu (Lucio Correia)
* [4e4ec433] Fixed resize volume click input number in virtualization->storag (Rajat Gupta)
* [06c52e95] Recognize openSUSE 42.2 ISO (Aline Manera)
* [eb8684ad] CPU Hot plug/unplug: test_rest.py changes (Daniel Henrique Barboza)
* [ecb5fdcb] CPU Hot plug/unplug: ui changes (Daniel Henrique Barboza)
* [1c11e086] CPU Hot plug/unplug: test changes (Daniel Henrique Barboza)
* [6c2e9176] CPU Hot plug/unplug: model changes (Daniel Henrique Barboza)
* [2943a04e] CPU Hot plug/unplug: i18n changes (Daniel Henrique Barboza)
* [66da0a5e] Changing 'threads' to be a free number field (Daniel Henrique Barboza)
* [035b6dfa] Edit Guest dialog: fixing 'Save' button on Processor tab (Daniel Henrique Barboza)
* [52e93961] Adding CPU setup help text in Edit Guest/Template (Daniel Henrique Barboza)
* [feb5f889] CPU configuration UI: several improvements (Daniel Henrique Barboza)
* [4ebe1df5] Adding 'Processor' tab in Edit Guest dialog (Daniel Henrique Barboza)
* [b5070c8e] template_edit_main.js: initProcessor now a global function (Daniel Henrique Barboza)
* [51c5c300] Adding 'sockets' field in the topology of Templates (Daniel Henrique Barboza)
* [21e2608b] Bug fix #1072 - changing vpus verification (Daniel Henrique Barboza)
* [3431536f] Fix pep8 issue (Aline Manera)
* [549177a0] Fixed issue #1076 s390x : n/w shows twice same interface while adding for te.. (Rajat Gupta)
* [0571b300] Fixed issue #1075 s390x : Edit Template storage tab Storage dropdown shows ".. (Rajat Gupta)
* [7f6c6523] Fixed issue #1062 Disk path not taking input properly (Rajat Gupta)
* [ca013f28] Update Kimchi code due chnages on Wok configuration parameters (Aline Manera)
* [920da4fd] po/ja_JP.po: fix trailing whitespace (Daniel Henrique Barboza)
* [73c29d29] rpmlint fixes on Fedora and Suse specs (Daniel Henrique Barboza)
* [a3135122] Issue #1050: Rename template with existing template name (Archana Singh)
* [9c6d48ab] s390x specific changes to support storage path and storage pool as disk. (Archana Singh)
* [9764bdb2] Edit template storage path should start with "/" (Rajat Gupta)
* [2e1089ea] Fixed issue #1074 IP address for the guest under Interfaces tab is blank (Rajat Gupta)
* [f70c9808] Issue #998 Updated .pot and .po files (Pooja Kulkarni)
* [70a15b92] Issue #998 Not all static strings are externalized (Pooja Kulkarni)
* [f8400f92] Remove URI configuration from kimchi.conf file (Aline Manera)
* [951c8bdf] Issue #1061: For s390x, in edit template add storage path, even after changi.. (Archana Singh)
* [26560667] Issue #1060: Edit template/Guest for s390x, console drop down shows empty bo.. (Archana Singh)
* [54ac56bc] Issue #1059: Not able to save corrected img path after editing img based tem.. (Archana Singh)
* [1c0d3534] Wok issue #173: Set tab color on tab-ext.xml and update SCSS files (Aline Manera)
* [037cf5a9] Wok issue #174: Let Wok create the whole navigation bar (Aline Manera)
* [8ca2eafb] Issue: #1008 Issues while editing a VEPA network (Ramon Medeiros)
* [96d5b2f9] PCI hotplug: Check USB controller, define in template, add test in Power (Lucio Correia)
* [27c23dd3] Issue #651: Windows guests - default mouse type causing problems (Ramon Medeiros)
* [0a5a4d29] Improve multifunction attach/detach operations (Lucio Correia)
* [36b1398d] Improve Fedora 24 identification (Lucio Correia)
* [f4bbf64d] Adding libvirt remote connection verification (Daniel Henrique Barboza)
* [f42d8b54] Github #1007: Fixing non-root ssh key generation (Daniel Henrique Barboza)
* [c9e50d4e] Github #1007: use provided user for password-less setup (Daniel Henrique Barboza)
* [8847bbb9] For s390x virtualization edit template display "Storage" as header (Rajat Gupta)
* [9896df85] Added UI validation for s390x Virtualization Template Edit Add Storage module (Rajat Gupta)
* [1d0f9e04] Added UI validation for s390x Virtualization Guest Edit Add Storage module (Rajat Gupta)
* [a3c1ea01] Remove PowerKVM checks from memory alignment code (Lucio Correia)
* [8421bae4] Use tablet_bus for tablet input instead of kbd_bus (Ramon Medeiros)
* [38b9813b] Issue #733: CSS updates to handle relative path support. (Paulo Vital)
* [664411fd] Issue #733: Fix UI to handle relative paths. (Paulo Vital)
* [d6959a82] Issue #1006: Invalid subnet value when editing a network raise an error (Ramon Medeiros)
* [4ed2242f] fix for issue #1049 (Suresh Babu Angadi)
* [93735c22] Issue #1048 : disable DASD disks without partitions on s390x (Harshal Patil)
* [11f16c02] Issue #962: Suggestion to check spec guidelines (Ramon Medeiros)
* [9873c493] For s390x hide Netboot template for Virtualization Add Template (Rajat Gupta)
* [42b48bde] Issue #1047: In xmlutils/interface.py --> get_iface_xml returns none for typ.. (Archana Singh)
* [6cd7db74] Merge branch 'next' (Aline Manera)
* [0268810c] Modified unit test cases to include new s390x specific features (Pooja Kulkarni)
* [ffb429e1] For s390x hide VNC, PCI, Snapshot, Graphics and clone options (Rajat Gupta)
* [197b0c01] Issue #999 : Attach storage to guest on s390x without libvirt (Harshal Patil)
* [33fd64ab] Issue #1045 : boot order fix for guest edit (Harshal Patil)
* [d5b62118] Introducing s390x UI Interfaces module for Edit Template under virtualization (Rajat Gupta)
* [bc0315a9] Introducing Console for edit Guest module under virtualization (Rajat Gupta)
* [84667a91] Introducing Console for edit template module under virtualization (Rajat Gupta)
* [1d17195a] added 'console' parameter to vms api for s390x (Suresh Babu Angadi)
* [2760baa5] added 'console' parameter to templates api for s390x (Suresh Babu Angadi)
* [a8f17b8d] Introducing s390x UI Storage module for Edit Guest under virtualization (Rajat Gupta)
* [794b6125] Introducing s390x UI Storage module for Edit Template under virtualization (Rajat Gupta)
* [800b30ab] Fix for Issue #1000 : Make Check fails on s390x environment (Pooja Kulkarni)
* [b259b1da] Issue #992 : Create template on s390x without libvirt storage. (Harshal Patil)
* [6652b317] Introducing s390x UI Interfaces module for Edit Guest under virtualization (Rajat Gupta)
#### [2.3.1] ####
* [4d690f76] Updates for 2.3.1 release (Aline Manera)
* [ec5658e3] Use libvirtd service in Ubuntu (Lucio Correia)
* [e4fb62dd] Bug fix #1057: Failed to import kimchi (Bianca Carvalho)
* [a5497c2d] Bug fix #1026: CentOS: Unable to get and update memory values for a powered .. (Ramon Medeiros)
* [6757a209] Add more details to error message when probing image (Lucio Correia)
* [3d1fc459] Add missing dependency to documentation (Lucio Correia)
* [dee34f1a] Bug fix #1066: Do not stora guest storage volume information on objectstore (Aline Manera)
* [5c520740] Bug fix #1015: Rename "Guest Name ID" header to "Guest Name" (Aline Manera)
* [9e63b30a] Fix checking for libvirt daemon on Ubuntu (Lucio Correia)
* [44484b4c] Fixed resize volume click input number in virtualization->storag (Rajat Gupta)
* [627ded4d] Recognize openSUSE 42.2 ISO (Aline Manera)
* [17e54c23] Edit Guest: block CPU settings when guest is running or paused (Daniel Henrique Barboza)
* [0fb58402] Changing 'threads' to be a free number field (Daniel Henrique Barboza)
* [72276c29] Edit Guest dialog: fixing 'Save' button on Processor tab (Daniel Henrique Barboza)
* [087eeeae] Adding CPU setup help text in Edit Guest/Template (Daniel Henrique Barboza)
* [1f661880] CPU configuration UI: several improvements (Daniel Henrique Barboza)
* [dbd0be5c] Adding 'Processor' tab in Edit Guest dialog (Daniel Henrique Barboza)
* [cc171721] template_edit_main.js: initProcessor now a global function (Daniel Henrique Barboza)
* [58d7dfa3] Adding 'sockets' field in the topology of Templates (Daniel Henrique Barboza)
* [dcad16ac] Bug fix #1072 - changing vpus verification (Daniel Henrique Barboza)
* [2d1754e1] rpmlint fixes on Fedora and Suse specs (Daniel Henrique Barboza)
* [3c5858c8] Issue #1050: Rename template with existing template name (Archana Singh)
* [a79b8421] Fixed issue #1074 IP address for the guest under Interfaces tab is blank (Rajat Gupta)
* [34731ea8] Remove URI configuration from kimchi.conf file (Aline Manera)
* [6645190d] Issue #1059: Not able to save corrected img path after editing img based tem.. (Archana Singh)
* [f07434ea] Wok issue #173: Set tab color on tab-ext.xml and update SCSS files (Aline Manera)
* [6be9c5a6] Wok issue #174: Let Wok create the whole navigation bar (Aline Manera)
* [78234e8d] Issue: #1008 Issues while editing a VEPA network (Ramon Medeiros)
* [1cb0fb79] PCI hotplug: Check USB controller, define in template, add test in Power (Lucio Correia)
* [22dcbcc3] Issue #651: Windows guests - default mouse type causing problems (Ramon Medeiros)
* [a12707e8] Improve multifunction attach/detach operations (Lucio Correia)
* [c7ae10d9] Improve Fedora 24 identification (Lucio Correia)
* [1e34ce36] Adding libvirt remote connection verification (Daniel Henrique Barboza)
* [241ce3dd] Github #1007: Fixing non-root ssh key generation (Daniel Henrique Barboza)
* [0c05aa1e] Github #1007: use provided user for password-less setup (Daniel Henrique Barboza)
* [41c669ff] Remove PowerKVM checks from memory alignment code (Lucio Correia)
* [a9385512] Use tablet_bus for tablet input instead of kbd_bus (Ramon Medeiros)
* [237705f8] Issue #1006: Invalid subnet value when editing a network raise an error (Ramon Medeiros)
#### [2.3.0] ####
* [337f2b26] Update ChangeLog, VERSION and po files to 2.3 release (Aline Manera)
* [2156589e] Improve storage volume creation of XML (Paulo Vital)
* [55247e61] Fixed noTemplate message display (Rajat Gupta)
* [136b3355] Fix make-rpm target (Aline Manera)
* [e5e65f36] Issue #1018 - Disable volume resize option on logical pool. (Paulo Vital)
* [bef852c5] Fix max number of memory slots for Ubuntu on Power (Lucio Correia)
* [ef53757d] Issue #1017: Fix upload file to logical storage pool. (Paulo Vital)
* [b953abe7] Fix issue #1019: Hide storage volume actions menu for iSCSI/SCSI pools (Aline Manera)
* [74d22c60] Bug fix #521: Extend logical pool (Aline Manera)
* [4e048f09] Fix issue #1022: Remove 'Clone' option for running guests (Aline Manera)
* [c5dd8ac1] Bug fix: Recognize Fedora 24 ISO (Aline Manera)
* [e7fa5501] Fix issue #1005: Proper display paused guests on Gallery View (Aline Manera)
* [9c1e2769] Bug fix: Disable "Search More ISOs" button on create Template dialog when th.. (Aline Manera)
* [5a885b04] Fix issue #1020: Fix alert icon position to do not overlay img/iso icon (Aline Manera)
* [460aa9ea] Fix issue #1020: Verify libvirt access on real file path instead of symlink (Aline Manera)
* [f6c53ad8] Remove legacy check_files on Makefile (Aline Manera)
* [905d7416] Issue #1012: Boot order gets reset to only one entry after editing a VM (Ramon Medeiros)
* [4182a245] Issue #585: 'make clean' does not revert its changes from 'make rpm' (Bianca Carvalho)
* [35548598] Fix issue #1010: Convert disk size to bytes while attaching new disk to guest (Aline Manera)
* [e1d75161] remote iso listing for s390x (Suresh Babu Angadi)
* [2b7becb1] Storagebuttons not behaving properly (Socorro)
* [5b50ff81] Create test to verify graphics type change (Ramon Medeiros)
* [68914bbf] Issue #836: Allow user change guest graphics type (Ramon Medeiros)
* [17a0895c] Issue #994: SPICE graphics does not need <channel> tag (Ramon Medeiros)
* [ce832419] For s390x architecture, serial type is not validated in vm xml as as not sup.. (Archana Singh)
* [bde5a6fc] Issue# 973 Emphasize resource name in dlg (Socorro)
* [f62f79fd] Updated API.md for addition paramters support for VM ifaces API on s390x/s39.. (Archana Singh)
* [6f1b3030] Updated code to support VM ifaces on s390x/s390 architecture. (Archana Singh)
* [e54afa3a] Updated API.md for addition interfaces paramter in template API. (Archana Singh)
* [bf08ecda] Updated code to support 'interfaces' parameter to template API only on s390x.. (Archana Singh)
* [e5a54e96] /plugins/kimchi/ovsbridges API (Suresh Babu Angadi)
* [19bcfe4f] Issue #606: Change icon to distinguish image generated template and iso gene.. (Samuel Guimarães)
* [38bbef00] Issue #939: [UI] Guest tab is not rendered correctly if guests are not in 'r.. (Samuel Guimarães)
* [59d6d1f7] Issue #921: Peers button disappears (Samuel Guimarães)
* [ad1aa1bf] Enhancement to /plugins/kimchi/interfaces (Suresh Babu Angadi)
* [02eaa0af] Enhancement to /plugins/kimchi/interfaces (Suresh Babu Angadi)
* [8169f9ab] Issue #626: Snapshot revert does not release storage volume (Bianca Carvalho)
* [71fb00d6] Update tests (Ramon Medeiros)
* [381232c0] Do not remove storagepools linked to guests (Ramon Medeiros)
* [7bd7a398] mockmodel.py: fixing virtviewerfile_tmp path (Daniel Henrique Barboza)
* [37e038d6] Only on s390x add default networks to template if template.conf has default .. (Archana Singh)
* [5df29fd0] Update usage of add_task() method. (Paulo Vital)
* [174ee3f7] Check if VM is off before detaching multifn PCI (Jose Ricardo Ziviani)
* [5cec2dc0] Github #986: create '/data/virtviewerfiles' dir automatically (Daniel Henrique Barboza)
* [4e0b34f3] Revert "Fix frontend vcpu hotplug" (Jose Ricardo Ziviani)
* [1a2dd0d0] Fix when calling error message in storagepool (Ramon Medeiros)
* [fbdc2380] Issue #933: Invalid image path not marking template as "invalid" (back-end) (Ramon Medeiros)
* [c08ee489] test/test_model.py pep8 1.5.7 fix (Ramon Medeiros)
* [f44ae6ba] Issue #982 - Fix broken testcases. (Paulo Vital)
* [036feb4f] Update docs (Ramon Medeiros)
* [ffed3ff2] Update tests (Ramon Medeiros)
* [3038958d] Issue #857: Support VM description (Ramon Medeiros)
* [ea0c25d3] Issue #317 Inconsistent button status when adding or creating new resources (Socorro)
* [47492402] Prevents pci passthrough double click (Jose Ricardo Ziviani)
* [14c73318] Fix frontend vcpu hotplug (Jose Ricardo Ziviani)
* [14ebd3a7] Issue #585: 'make clean' does not revert its changes from 'make rpm' (Bianca Carvalho)
* [7fb936a8] model.py: use the new 'get_all_model_instances' utils function (Daniel Henrique Barboza)
* [fd1a6fb7] Modified code, to return distro and version as unknown, if guestfs import fa.. (Archana Singh)
* [2ceda61a] Added s390x architecture support in osinfo params. (Archana Singh)
* [4839a5a4] Added on_poweroff, on_reboot, on_crash tag to also support s390x architecture. (Archana Singh)
* [5f036f48] Added method for implementation of s390x boot detection. (Archana Singh)
* [04cca253] Added check for s390x architecture to not add graphics in params as not supp.. (Archana Singh)
* [94c84a36] Issue #604: Windows XP: Kimchi should set the right NIC Type in Templates (Ramon Medeiros)
* [ca99bda1] Revert "Use verbs in the past" (Lucio Correia)
* [21437ef1] Updated serial console to support s390x architecture. (Archana Singh)
* [75fafad4] Validate passthrough inside the task (Jose Ricardo Ziviani)
* [bd946a22] Replace device companion check before the passthrough (Jose Ricardo Ziviani)
* [ec8dad4a] Improve PCI passthrough performance (Jose Ricardo Ziviani)
* [72a97ac4] Add test to verify bootmenu and update old tests (Ramon Medeiros)
* [b9fe3170] Allow guest to enable bootmenu on startup (Ramon Medeiros)
* [e5095568] Disable vm statistics/screenshots in edit guest (Jose Ricardo Ziviani)
* [6d0f5fb1] Issue #968: Kimchi is searching for 'undefined' VM (Samuel Guimarães)
* [40a3e430] Add test to check bootorder (Ramon Medeiros)
* [18d71642] Add function to retrieve bootorder on vm lookup (Ramon Medeiros)
* [88f48064] Update REST API (Ramon Medeiros)
* [eef289c5] Update documentation about bootorder on vm update (Ramon Medeiros)
* [755ded20] Create method to change bootorder of a guest (Ramon Medeiros)
* [d0595d91] Add function get_bootorder_node (Ramon Medeiros)
* [2fd0d584] Virt-Viewer launcher: mockmodel changes (Daniel Henrique Barboza)
* [ec34b6e3] Virt-Viewer launcher: changes after adding libvirt event listening (Daniel Henrique Barboza)
* [c9725854] Virt-Viewer launcher: libvirt events to control firewall (Daniel Henrique Barboza)
* [f746c9e9] Virt-Viewer launcher: test changes for firewall manager (Daniel Henrique Barboza)
* [e515b96d] Virt-Viewer launcher: adding FirewallManager class (Daniel Henrique Barboza)
* [90e7b2f9] Virt-Viewer launcher: test changes (Daniel Henrique Barboza)
* [e2aafc6c] Virt-Viewer launcher: virtviewerfile module (Daniel Henrique Barboza)
* [260d0e40] Virt-Viewer launcher: control/vms.py and model/vms.py changes (Daniel Henrique Barboza)
* [ae7fd9fb] Virt-Viewer launcher: Makefile and config changes (Daniel Henrique Barboza)
* [b70a7e0a] Virt-Viewer launcher: docs and i18n changes (Daniel Henrique Barboza)
* [ccc004ee] Kimchi kills Wokd due to sys.exit() calls in files networks.py and storagepo.. (Bianca Carvalho)
* [f41762de] Issue #969: Error message showing up in parent panel rather than modal windo.. (Samuel Guimarães)
* [9fbee80d] Send (de)attach fail messages to tasks (Jose Ricardo Ziviani)
* [cd670a43] Handle libvirt events for device attachment/detachment (Jose Ricardo Ziviani)
* [b915380b] Issue #956: Unable to assign pci passthrough devices through kimchi (Samuel Guimarães)
* [64f348bd] Added cursor for tasks in progress (Samuel Guimarães)
* [57012d73] Add UI netboot support for adding templates; add loading icon when switching.. (Socorro Stoppler)
* [e54745aa] Show error message for untracked and failed cloning tasks (Lucio Correia)
* [3da920f6] Disable ISOs templates with wrong permission (peterpennings)
* [4c269c63] Save last view for templates - fix for issue# 799 (Socorro Stoppler)
* [c202b8cd] model/vms.py: changing all interfaces VM (Daniel Henrique Barboza)
* [d82768e8] Github #972: spice-html5 dir incorrect (Daniel Henrique Barboza)
* [de78b0df] Update unit tests to changes in Remote links. (Paulo Vital)
* [fb7adc17] Update Ubuntu remote images. (Paulo Vital)
* [48a31d16] Update OpenSUSE remote images. (Paulo Vital)
* [2bb59c6c] Update Gentoo remote images. (Paulo Vital)
* [70f37927] Update Debian remote images. (Paulo Vital)
* [306517ec] Update Fedora remote images. (Paulo Vital)
* [e0150151] Issue #965: Recognize Fedora 24 ISO image. (Paulo Vital)
* [442555de] Issue #948: Kimchi not throwing errors when migration is performed and gives.. (Samuel Guimarães)
* [8e5448f6] Make sure all log messages have required parameters (Lucio Correia)
* [175babf4] VM migrate: generic remote path check (Daniel Henrique Barboza)
* [a894fc35] Avoid break Wok when register events, if Libvirt is down (Rodrigo Trujillo)
* [90d99f9b] Do not break the logging of failed requests (Lucio Correia)
#### [2.2.0] ####
* [9751cbcb] Update ChangeLog, VERSION and .po files for 2.2 release (Aline Manera)
* [b69bec63] Fixing Opensuse Leap package name (Daniel Henrique Barboza)
* [329545ef] Handle URLError exception when creating Template. (Paulo Vital)
* [4150bb81] Use qxl driver only for x86 (Lucio Correia)
* [bcef66f8] Fix typo in API.md (Rodrigo Trujillo)
* [a8331d1d] Update tests to reflect new behavior (Lucio Correia)
* [c87d06c9] Use ASCII name in XML (Lucio Correia)
* [b47f1fd6] Always update snapshot XML with new name and UUID (Lucio Correia)
* [5f9e9368] Add loading icon for guests tab (Socorro Stoppler)
* [08b91af3] Save view for Guests tab (Socorro Stoppler)
* [d20a0692] Improve UI error codes checking (Ramon Medeiros)
* [9feaa044] Fix storage volume clone test case (Aline Manera)
* [1cc9a2c7] Change PPC memory slots to 256 (Rodrigo Trujillo)
* [7a5e9507] Pass only those fields that have been modified in Edit Guest; Match maxmem t.. (Socorro Stoppler)
* [53233722] Fixed Storage Volume upload error message when switching tabs (Samuel Guimarães)
* [095eb5bd] Do not use default value when declare a function (Ramon Medeiros)
* [d9150424] Clean FEATURETEST_VM effectively. (Paulo Vital)
* [345f1420] Substitute quotes by apostrophe in configuration file (Rodrigo Trujillo)
* [e7f2f965] Github #934: fix storage pool name in template-edit.html.tmpl (Daniel Henrique Barboza)
* [e9d54d1f] Properly display network interfaces when more than one exists (Socorro Stoppler)
* [26b4a39a] Storage Volume management (Samuel Guimarães)
* [5d790a2d] Add missing test dependency: bc (Lucio Correia)
* [01bf4c1c] Use Wok session timeout value to configure serial console (Aline Manera)
* [bb66a06a] Implement multi-function pci hotplug support (Jose Ricardo Ziviani)
* [8232b650] Enable hot-plug multi-function pci on front-end (Jose Ricardo Ziviani)
* [b6c7a5eb] Load Kimchi when started by command line and libvirt is not running (Rodrigo Trujillo)
* [25f2d72c] Remove notification message if Libvirt is back (Rodrigo Trujillo)
* [e842ce02] Improve Kimchi feature tests output (Rodrigo Trujillo)
* [8db0f919] Fixed Clone Guest modal window (Samuel Guimarães)
* [c2c04c52] Handle Libvirt host ENOSPC event (Lucio Correia)
* [ac18b506] Decrease the sleep time for libvirt event timout (Jose Ricardo Ziviani)
* [4ab1dc13] Add support to Libvirt Events. (Paulo Vital)
* [b846128c] Isolate unit tests execution. (Paulo Vital)
* [98fe8623] UI fixes for edit virtual network (Aline Manera)
* [57846a1f] Edit Virtual Network with passthrough support (Socorro Stoppler)
* [da5d85d0] Add test case to test new slots value implementation (Rodrigo Trujillo)
* [1eb42f8d] Modify max memory slots default numbers (Rodrigo Trujillo)
* [52659714] Passthrough macvtap network support: UI changes (Daniel Henrique Barboza)
* [fdacdf13] Passthrough macvtap network support: model and test changes (Daniel Henrique Barboza)
* [aca5dfb6] Passthrough macvtap network support: doc changes (Daniel Henrique Barboza)
* [d1074dfa] Make static and live update functions independent (Rodrigo Trujillo)
* [cc1b8357] Modify mockmodel to support memory devices (Rodrigo Trujillo)
* [46a53660] Modify tests to support mem devs with different sizes (Rodrigo Trujillo)
* [e507d5ed] Change memory hotplug to support more than 32GB (Rodrigo Trujillo)
* [4b578d45] Update Fedora iso url to fix test (Rodrigo Trujillo)
* [a53905b5] Use verbs in the past (Lucio Correia)
* [a68af30e] Add translation to user log messages (Lucio Correia)
* [7de77c7e] Fix issue on network update (Lucio Correia)
* [1bd17be6] Add support to check if libvirtd is running. (Paulo Vital)
* [0a30faa1] Make Cheerypy up if not able to connect to libvirt (Paulo Vital)
* [5368b34a] Update Kimchi config file for Systemd service (Paulo Vital)
* [74373506] Check if qemu/libvirt user has permission to use the image (Jose Ricardo Ziviani)
* [fa90297d] Add new unit test for memory hotplug in PowerPC (Rodrigo Trujillo)
* [3c760b68] Implements support to memory hotplug in non-NUMA guests (Rodrigo Trujillo)
* [c91eab69] Filter VEPA interfaces: JS changes (Daniel Henrique Barboza)
* [3135f021] Filter VEPA interfaces: adding 'module' to interfaces API (Daniel Henrique Barboza)
* [739b6415] Fix memory return in vm with memory devices hotplugged (Rodrigo Trujillo)
* [73494572] Does not use slot in memory device removal (Rodrigo Trujillo)
* [a83a70bf] Added loading icon and 'Creating' for create template (Socorro Stoppler)
* [b17ba052] Fixed "Add Template" modal window alignment (Samuel Guimarães)
* [0e28c09e] Adding 'source_media' docs in docs/API.md (Daniel Henrique Barboza)
* [8fbad6d5] Bug fix: Do not allow user selects invalid volume format to create a new vol.. (Aline Manera)
* [feaf3301] Bug fix: Display error when creating new disk to attach to guest (Aline Manera)
* [1403939b] Bug fix: Allow creating network with XML special characters (Aline Manera)
* [56f79e94] Create template error message not being displayed in panel (Socorro Stoppler)
* [5566b943] Bug fix: Create VM based on Remote ISO Template (Aline Manera)
* [f33728a8] Migration to Gingerbase netinfo: removing netinfo.py (Daniel Henrique Barboza)
* [48e7e3e4] Migration to Gingerbase netinfo: import changes (Daniel Henrique Barboza)
* [70682383] VEPA network UI: fixing network creation (Daniel Henrique Barboza)
* [9e7ba41b] Remove cherrypy configuration from kimchi.conf file (Aline Manera)
* [9f28117b] Disable Template when it has invalid parameters (Samuel Guimarães)
* [00ce7d57] Fix logging and error messages in objectstore upgrade (Rodrigo Trujillo)
* [81e0429b] Update UI to reflect modifications in template API (Paulo Vital)
* [fec9dff3] Update test cases to support netboot. (Paulo Vital)
* [2cdbd12f] Add support to create guests to netboot. (Paulo Vital)
* [696cacfb] Add support to create netboot templates. (Paulo Vital)
* [45627aa5] Do not use systemd private tmp dir (Jose Ricardo Ziviani)
* [89ccfede] Issue #931 Error when editing a template created using a disk image (Ramon Medeiros)
* [24479725] Fix typo and integer values validation in Guest edit UI (Rodrigo Trujillo)
* [e045477d] Add error message when empty disks list is passed in Template edit API (Rodrigo Trujillo)
* [d3620839] Move capabilities to model constructor (Jose Ricardo Ziviani)
* [14cb6bc4] Change nfs host from localhost to 127.0.0.1 (Jose Ricardo Ziviani)
* [bc3af2d7] Avoid race condition in vm lookup (Rodrigo Trujillo)
* [9b8f7cf5] Create Template UI adjustments based latest API changes (Socorro Stoppler)
* [b9acc9c4] Issue #920: Template is removed if an ISO doesn't exist (Jose Ricardo Ziviani)
* [d929807c] Make detach device return an AsyncTask (Paulo Vital)
* [a6d74aee] Make attach device return an AsyncTask (Paulo Vital)
* [a1c4dd12] Issue #924: Update test case with new storage pool field (Jose Ricardo Ziviani)
* [40afe5c0] Issue #924: Disable deactivate/delete buttons if storage is in use (Jose Ricardo Ziviani)
* [6a958b69] Issue #924: Add field to inform front-end if storage is in use (Jose Ricardo Ziviani)
* [13bbaa0d] Add network update tests (Lucio Correia)
* [93ce78e6] Add backend support for editing virtual networks (Lucio Correia)
* [3f83dc29] Improve checking of cpu_info API (json schema) (Rodrigo Trujillo)
* [f88956c9] Fixed some issues with SCSS after adding compact() mixin to Wok (Samuel Guimarães)
* [cc0036c4] Issue #924: Before deleting a storagepool, kimchi should check if any templa.. (Jose Ricardo Ziviani)
* [b5f5f419] Issue #919: Deactivate a storagepool makes the list of templates blank (Jose Ricardo Ziviani)
* [d2bb62ad] Adjust UI to create Template according to the latest API changes (Aline Manera)
* [150091e7] Change "Memory Available" by "Memory Utilization" (Rodrigo Trujillo)
* [668b9046] Issue #923: Template always shows VNC, even if I save Spice in my template (Jose Ricardo Ziviani)
* [f5cebc0e] Add new tests to verify source_media feature (Ramon Medeiros)
* [c508d1cb] Update tests (Ramon Medeiros)
* [4e28b854] Identify installation media while creating template (Ramon Medeiros)
* [5c6f88ec] Create a single field to pass the installation media (Ramon Medeiros)
* [1bb5a717] Fix template creation from image file (Jose Ricardo Ziviani)
* [f0b83456] Test if CPU value is higher than Max CPU before request (Rodrigo Trujillo)
* [74203a34] Bug fix: Use 256MB of memory on feature tests due restriction on Power machi.. (Aline Manera)
* [0590e385] Add support to recognize latest CentOS version (Rodrigo Trujillo)
* [46473b64] Check memory values in UI before submit request (Rodrigo Trujillo)
* [8e1880a3] Fix memory value return when hotplug memory devs (Rodrigo Trujillo)
* [f0673281] Enabling multiselect for VEPA networks (Samuel Guimarães)
* [df0091c8] Remove View Console link from guests that doesn't support vnc/spice (Jose Ricardo Ziviani)
* [d3a1ea20] Change CPU Number/CPUs to Current CPU Number/Current (Socorro Stoppler)
* [66f36078] Add UI support to clone a guest multiple times (Rodrigo Trujillo)
* [adfec892] Fix issue when clone a vm multiple times (Rodrigo Trujillo)
* [f3014684] Add function 'get_next_clone_name' (Rodrigo Trujillo)
#### [2.1.0] ####
* [ad5caec0] Update ChangeLog, VERSION and .po files for 2.1 release (Aline Manera)
* [b319d79e] Issue #838: UI - Blocks maxmemory input field (Rodrigo Trujillo)
* [d20ac598] Issue #838: Extend memory hotplug feature test (Rodrigo Trujillo)
* [dba63dcd] Adding wok version dependency (Daniel Henrique Barboza)
* [2a22d3a7] Update po files for 2.1 release (Aline Manera)
* [8bb0a5b5] Move 'template.conf' to /etc (Rodrigo Trujillo)
* [8986e073] Fix issue #840: Change distros.d internal path (Rodrigo Trujillo)
* [2f96e505] Issue #788: Network information mismatch in template creation (Samuel Guimarães)
* [80ab22db] Issue #818: Frontend doesn't update the PCI tab after a PCI attachment (Samuel Guimarães)
* [818f7c37] Issue #809: PCI filter does not seem to work (Samuel Guimarães)
* [0555dd4d] Fix problem when removing window size fo GPU (Jose Ricardo Ziviani)
* [9423c560] Issue 814: UI just show exported NFS path when clicked twice at field (Samuel Guimarães)
* [fc1306c9] Check if guest is listening to serial before connecting to it (Jose Ricardo Ziviani)
* [43dde741] Make serial console timeout configurable (Jose Ricardo Ziviani)
* [474353c5] Improve log messages printed by the serial console (Jose Ricardo Ziviani)
* [385acdd8] Move unix socket files from /tmp to /run (Jose Ricardo Ziviani)
* [bea47b08] Issue #847: Save button is having wrong behavior when edit a running Guest (Samuel Guimarães)
* [74bf39d6] Remove useless function 'validate_repo_url' from Kimchi (Rodrigo Trujillo)
* [82389e94] Fixed "Add a Storage Device to VM" modal behavior (Samuel Guimarães)
* [1e86c354] Fix showing of memory/cpu for guest and templates (Socorro Stoppler)
* [b178c020] Removing disks.py because it was moved to gingerbase (Jose Ricardo Ziviani)
* [67a8d320] Fix issue #849: Get network name for bridged networks (Aline Manera)
* [fa5a662b] Issue #859 - Fix error when adding new disk to VM. (Paulo Vital)
* [d17dbaff] Increase guest Max Memory limits (Rodrigo Trujillo)
* [ee648008] Bug fix: Remove storage volume file while removing the storage volume (Aline Manera)
* [64d3f30e] Customize user request log messages (Lucio Correia)
* [9c790baf] Fix minor issues in Kimchi UI: Template CPUs and Guest CPUs (Rodrigo Trujillo)
#### [2.1.0-rc1] ####
* [4092eccc] Multiple fixes in Gallery and List views for Templates and Guests tabs (Samuel Guimarães)
* [b5b737a0] Adding gallery view to guest tab and minor fixes to templates tab (peterpennings)
* [5985376a] Fix test case: Proper check memory and cpu_info information (Aline Manera)
* [5be0dac4] Fix pep8 1.6.2 error W503 in model/vms.py (Daniel Henrique Barboza)
* [27fe22b7] Create test cases for GPU attachment (Jose Ricardo Ziviani)
* [486d8757] Set mmio memory when GPU is attached (Jose Ricardo Ziviani)
* [4c0c7d04] Fixed navbar order (Samuel Guimarães)
* [3a1e8083] Fix memory values in guest with attached memory devices (Rodrigo Trujillo)
* [796fd446] Added Kimchi SVG logo for login page, footer and about window (Samuel Guimarães)
* [753b2f71] Update pkg-version script to work with submodules (Aline Manera)
* [56f99317] Add release number to Kimchi version (Aline Manera)
* [713bbf20] Adding maxmemory for guest and templates (Samuel Guimarães)
* [de111059] Changes and add tests to support new memory API (templates/guest) (Rodrigo Trujillo)
* [92fc1a09] Add support to edit max memory in Guest (Rodrigo Trujillo)
* [cb4fc7aa] Add function to update 'memory' in objectstore (Rodrigo Trujillo)
* [ab1475f8] Add support to edit max memory in Templates (Rodrigo Trujillo)
* [c8ddfd48] Update copyright according to make check-local result (Aline Manera)
* [7ab994f5] Verify IBM copyright on make check-local (Aline Manera)
* [bb628f58] Remove help and screenshot URI configuraton from kimchi.conf file (Aline Manera)
* [c2255212] Update the API document (Jose Ricardo Ziviani)
* [33d99bb0] Disable hotplug of graphic card devices in the frontend (Jose Ricardo Ziviani)
* [bf658f07] Disallow hotplug of graphic cards because it is no supported (Jose Ricardo Ziviani)
* [2e07f10e] Create logical pool from existing VG (peterpennings)
* [6ebd083c] Add maxvCpu support UI for guest and template (Socorro Stoppler)
* [e45f37f7] VEPA network support: UI changes (Daniel Henrique Barboza)
* [088debc7] VEPA network support: additional backend unit tests (Daniel Henrique Barboza)
* [e4aa225c] VEPA network support - models and xmlutils changes (Daniel Henrique Barboza)
* [947b2014] VEPA network support: API and i18n changes (Daniel Henrique Barboza)
* [57f9bf02] Changing network API: UI changes (Daniel Henrique Barboza)
* [c595590c] Changing network API: unit test changes (Daniel Henrique Barboza)
* [ca8bad37] Changing network API: control and model changes (Daniel Henrique Barboza)
* [9bb95b58] Changing network API 'interface' to array: docs and API (Daniel Henrique Barboza)
* [81819362] Bugfix 804: Disable connect vnc when VM is powered off (Jose Ricardo Ziviani)
* [b5c1ee16] Bugfix 843: Add sourceURL comment for kimchi.min.js (Jose Ricardo Ziviani)
* [5a9b3593] Add test case for the socket server (Jose Ricardo Ziviani)
* [036db7b7] Update the build system to make the serial console (Jose Ricardo Ziviani)
* [a789ecd4] Implement the Kimchi front-end for the web serial console (Jose Ricardo Ziviani)
* [d563214b] Implement the web serial console front-end (Jose Ricardo Ziviani)
* [2abd24b7] Import term.js to Kimchi project (Jose Ricardo Ziviani)
* [14b49749] Implement the backend to support web serial console (Jose Ricardo Ziviani)
* [ff56e7ab] Implement the web serial console server (Jose Ricardo Ziviani)
* [79348fa2] Rename vnc.py to websocket.py (Jose Ricardo Ziviani)
* [b8340346] Update tests (Lucio Correia)
* [5d13f6c4] Add graphics settings merge to template update (Lucio Correia)
* [c9a10e91] test_mock_network.py: fixes due to backend changes (Daniel Henrique Barboza)
* [dfcc4b41] Issue #791: New UI for adding network bridges (peterpennings)
* [3506b7f2] Fix handling of VLANs in backend (Lucio Correia)
* [0b51e568] Create new volume with .img extension and attach to VM (Socorro Stoppler)
* [7503b61c] Update tests (Lucio Correia)
* [8138df47] Do not break web UI (Lucio Correia)
* [f31d2c70] Add maxvcpus attribute to guests (Lucio Correia)
* [da8475b5] Add maxvcpus attribute to templates (Lucio Correia)
* [c3306480] Add python-pillow as RPM dependency. (Paulo Vital)
* [3e2a1c5b] Fix error message for IOMMU configuration. (Paulo Vital)
* [a7b57f3f] Remove hack that disables vhosts-net (Ramon Medeiros)
* [2af23fb4] Fix add storage device to VM using existing disk (Socorro Stoppler)
* [cb8e91e7] Whitespace fixes in existing code (Daniel Henrique Barboza)
* [9120a029] Makefile.am targets enhancements (Daniel Henrique Barboza)
* [3f20f358] Memory hot plug front-end (peterpennings)
* [08a91fa2] Implementing sort for Templates tab (Samuel Guimarães)
* [e891856a] Add federation and create_iso_pool options to Kimchi configuration file (Aline Manera)
* [9e7689a0] Use the cached values for wok config when required (Aline Manera)
* [31410ea9] Remove authentication method information from Kimchi (Aline Manera)
* [024f6e93] Update Kimchi configuration according to recent changes on Wok (Aline Manera)
* [26ea40c6] Live Migration front-end (samhenri)
* [686efbb8] Initial checkin for live migration UI support (Socorro Stoppler)
* [73dbf411] Add support for websockify 0.7 (Ramon Medeiros)
* [7cf68d5a] Start up websockify on localhost (Rob Lemley)
* [341b29d7] Update README (Aline Manera)
* [2745b545] Update /plugins/kimchi/config API to only return information related to Kimchi (Aline Manera)
* [7fd1bc2b] Add support to passtrhough 3D graphic controllers (Jose Ricardo Ziviani)
* [756b1154] Add opensuse LEAP to remote ISOs (Ramon Medeiros)
* [e51eca8b] Issue #816: kimchi.conf isn't pointing to libvirt service on ubuntu 15.10 (Ramon Medeiros)
* [c5d74065] Fix issue #810 (Lucio Correia)
* [e8eae7d4] Fixed minor UI issues when saving edited template (samhenri)
* [5197de6b] Supress HTTPS certification checking on tests (Ramon Medeiros)
* [39173db4] Identify opensuse-LEAP-42.1 ISO (Ramon Medeiros)
* [5bbcc1e3] Do not rely on python-pip to install build dependencies (Aline Manera)
* [26cc0325] Fix Portuguese translations for storage pool. (Leonardo Garcia)
* [d45e963e] Adding Gallery View at Templates screen (Andre Teodoro)
* [dabf9f04] Ignore pool.refresh if it cannot be called (Jose Ricardo Ziviani)
#### [2.0.0] ####
* [e65ca2aa] Update ChangeLog and po files for 2.0 release (Aline Manera)
* [e0bcb980] Add python-paramiko package as Kimchi dependency (Aline Manera)
* [058c5e43] Bug fix: Get the right guest name when creating/cloning a guest (Aline Manera)
* [1e5d1561] Fix and add tests to related to max memory in xml (Rodrigo Trujillo)
* [ccafde2e] Issue #753: Adds max_memory checkings and settings properly (Rodrigo Trujillo)
* [0bacfeac] Issue #753: Remove max memory settings from osinfo.py (Rodrigo Trujillo)
* [b91d9dba] Use always flag as a fallback (Lucio Correia)
* [43dc0a9a] Use correct gettext package for building (Lucio Correia)
* [88a49503] Issue 776: Adding filter on Guest screen (samhenri)
* [977c5a5c] Moved Kimchi SCSS files from Wok to Kimchi (samhenri)
* [07ca3c2a] Remove useless messages (Aline Manera)
* [bc994eee] Update Kimchi objectstore versioning. (Paulo Vital)
* [bc6e4bb5] Issue 784: Display a 'loading gif' when waiting for data (samhenri)
* [cd71a49b] Issue 777: Network tab not being updated after exclude a network (samhenri)
* [bc565ca3] New i18n strings in PT-BR (samhenri)
* [590758aa] Issue 776: Adding filter on Templates screen (samhenri)
* [9418b85c] Issue 783: Error message hidden by the modal window (samhenri)
* [43878152] Issue 773: Snapshot error message showed behind edit window (samhenri)
* [9e11fe7e] Issue 772: Template tab and Template edit window - Some problems (samhenri)
* [80000f16] Issue 770: New template is not shown right after creation (samhenri)
* [d625f64f] Removed theme-default.min.css reference (samhenri)
* [17cd24ab] Update openSUSE version in the README file (Aline Manera)
* [c76cef47] Add ginger-base as Kimchi dependency (Aline Manera)
* [5d55f476] Fix disk creation when pool is netfs (Ramon Medeiros)
* [a6428f2c] Fix screen freezing when upload file for storage volume (Socorro Stoppler)
* [383579f7] Disable hotplugging buttons of multi-function devices (Jose Ricardo Ziviani)
* [a5aa72cd] Add multi-function field in PCI information (Jose Ricardo Ziviani)
* [3d0bb0a4] Remove required authentication from / (Aline Manera)
* [e13c113b] Expose HTML tabs files in a specific /tabs URI (Aline Manera)
* [d32bc843] Multiple changes in guest maxMemory management (Rodrigo Trujillo)
* [01c18679] Fix test_async_tasks testcase. (Paulo Vital)
* [56510864] Fix range for network of NAT and isolated types. (Paulo Vital)
* [35d8c44c] Do not show OVS bridges for now (Lucio Correia)
* [8b7621c8] Fix ovs commands output handling (Lucio Correia)
* [6578bc73] Bugfix 786: Undefine button enabled for active storage pool (Socorro Stoppler)
* [4413d1c7] Use "macvtap" instead of "bridged" (Lucio Correia)
* [d43a3e56] Differentiate network lookup between macvtap and bridge (Lucio Correia)
* [71e29828] Restore control/config.py (Aline Manera)
* [0e01dcef] Bugfix 785: Create a template from an existing image (Socorro Stoppler)
* [a602f7d0] PATCH] Bugfix 782: Fix creating storage pools (Jose Ricardo Ziviani)
* [ac67aa63] bug fix: Update UI according to changes on /networks API (Aline Manera)
* [14304e3f] Change UI to support remotion of 'storagepool' from template backend (Rodrigo Trujillo)
* [59398626] Fix tests and backend after remove 'storagepool' from templates (Rodrigo Trujillo)
* [1623c153] Add script to upgrade objectstore to support new Template disks schema (Rodrigo Trujillo)
* [c1c59fa8] Remove 'stogarepool' referencies from Templates code backend (Rodrigo Trujillo)
* [a12766e0] Test: Fix and add test related to disks in templates (Rodrigo Trujillo)
* [bbfae4c4] Update VCPU by using libvirt function (Rodrigo Trujillo)
* [b45cd878] UI - Implement multiple disks support in Template edit window (Rodrigo Trujillo)
* [d93da9c9] Enable create guests with multiple disks from different pools (Rodrigo Trujillo)
* [94cb5640] Fix Template backend create/update for multiple disks (Rodrigo Trujillo)
* [fb8f54e0] PATCH] Bugfix 781: fix adding brigde network (Jose Ricardo Ziviani)
* [60aeceec] Reverting model/config.py deleted on last commit (Ramon Medeiros)
* [054e5198] Remove Wok code from Kimchi repository (Aline Manera)
* [48a799c8] Add Ginger Base as Wok submodule (Aline Manera)
* [d523ee0d] Remove Ginger Base from Kimchi repository (Aline Manera)
* [d0d10e67] Fix issue 766 - Define network interface in libvirt (Lucio Correia)
* [70afa669] Removed Administration / Ginger references from WOK ui assets (Andre Teodoro)
* [ab2954ba] Guests tab (samhenri)
* [be1cdb2d] Templates tab and modal windows bugfixes (samhenri)
* [ceec1507] Issue 728 : processor info displays blank for system z (Chandra Shekhar Reddy Potula)
* [26efbe5f] Ginger Base screen shot change to reflect new ui (Chandra Shekhar Reddy Potula)
* [3cfc67fa] Host tab functionality split into Dashboard and Updates (Chandra Shekhar Reddy Potula)
* [2fc0cdf8] Issue 728 - Processor Info in s390 architecture (Suresh Babu Angadi)
* [cd0bd2a3] Add checking for UI codes when running make check-local (Ramon Medeiros)
* [9e00ff5d] Fix WOK UI error messages (Ramon Medeiros)
* [8a027e32] Remove unused messages in Kimchi UI (Ramon Medeiros)
* [03299855] Edit Guests modal window (samhenri)
* [36880c4f] Add OVS bridges recognition support (Lucio Correia)
* [60510d11] Support Linux Bridge creation (Ramon Medeiros)
* [d211e07e] Add support for serial console (Ramon Medeiros)
* [a062d9c1] Add python-mock to README.md (Rodrigo Trujillo)
* [49b63356] Fix memory add aligment to 256 in PowerPC (Rodrigo Trujillo)
* [d67e7e3a] Create logical pool from existing VG (Aline Manera)
* [5aacaf21] Issue #746 : New navigation bar. (Atreyee Mukhopadhyay)
* [b4f02b24] Moved disks.py file from kimchi plugin to gingerbase plugin (Pooja Kulkarni)
* [71290f57] Issue #737: Wok base framework calls resource model's lookup twice (Archana Singh)
* [bb33c036] Gingerbase: adapting unit tests to use WoK /tests/utils.py (Daniel Henrique Barboza)
* [f9935dc9] Kimchi: updating unit tests to use WoK /test/utils.py (Daniel Henrique Barboza)
* [80d845fb] WoK: making /tests/utils.py available to all WoK plug-ins (Daniel Henrique Barboza)
* [23321ed6] Issue #755 : Action's states are showing in correctly for Repositories (Atreyee Mukhopadhyay)
* [33edb5a6] Change memory multipliers/divisors by bitwise operators (Rodrigo Trujillo)
* [9f912cde] Check and align number of memory slot to 32 in PowerPC (Rodrigo Trujillo)
* [e8ee482e] Check memory alignment in PowerPC to 256MiB (Rodrigo Trujillo)
* [21a5d03c] Live migration: unit tests for the new features (Daniel Henrique Barboza)
* [a58ee717] Live migration: model changes for the new features (Daniel Henrique Barboza)
* [45e89315] Live migration: new features changes in docs/API/i18n (Daniel Henrique Barboza)
* [485fe4f7] WoK: control/base.py: _generate_action_handler_base changes (Daniel Henrique Barboza)
* [8742922d] Add "io"="native" when creating a disk on Kimchi (Ramon Medeiros)
* [3f2b1c8e] Display guest IP address for each network interface (Socorro Stoppler)
* [176e34a7] shutdown and reboot actions on plain linux vs linux with KVM (chandrureddy)
* [f08bc9d9] Issue #757 : clean generated css files when 'make clean' executed (chandrureddy)
* [d61c3f59] Live migration backend: non-shared storage VM migration (Daniel Henrique Barboza)
* [d47ed663] Allow listStorageVolumes ajax call be synchronized (Rodrigo Trujillo)
* [4fdbb98e] Kimchi: Add m4/pkg.m4 to .gitignore (Aline Manera)
* [60c5fabc] Fix test case: Delete directory associated to the storage pool (Aline Manera)
* [a2c37b43] Fix issue #734: Update test case as libvirt issue was fixed (Aline Manera)
* [8fcb0ae7] Fix make check-local for Ginger Base (Aline Manera)
* [981b85c7] Update COPYING file for Ginger Base (Aline Manera)
* [a85905d6] Update gingerbase po files (Aline Manera)
* [85e31680] Remove Kimchi references from Ginger Base (Aline Manera)
* [8e5c2a09] Change Kimchi version. (Paulo Vital)
* [8a3d6bb5] Upgrade Kimchi objectstore content. (Paulo Vital)
* [345161d8] Add Kimchi version to objectstore entries. (Paulo Vital)
* [983c5721] Add version to objectstore information. (Paulo Vital)
* [94f263a0] Bug fix: Properly get the new guest name while creating or cloning a guest (Aline Manera)
* [e086fd65] Bug fix: Properly define kimchi.trackTask() (Aline Manera)
* [8f7aa139] Bug fix: Use qxl video model for Fedora 22+ guests (Aline Manera)
* [8e1b384d] Templates tab (samhenri)
* [df3f51b5] Storage tab (samhenri)
* [cf10e484] Network tab (samhenri)
* [79117428] Kimchi config and Guests tab (samhenri)
* [bcf97e94] Gingerbase / Hosts tab (samhenri)
* [0337d165] Base template files (samhenri)
* [6ba92c4c] Updated SCSS files (samhenri)
* [61301ae0] Updated images and distro icons (samhenri)
* [ea698d8b] Updated widgets (samhenri)
* [88e79a6e] Deleting unused files (samhenri)
* [3bae90ed] Issue #751: Fix guest memory utilization calculation. (Paulo Vital)
* [699ca69a] Ginger Base: Fix DEBIAN/control.in (Aline Manera)
* [04dd5871] Add support for displaying guest memory utilization (Socorro Stoppler)
* [4718e71b] Fix Issue #743 : gingerbase: fail to create RPM. (chandrureddy)
* [10139e39] Ginger Base : Plugin path changes (chandrureddy)
* [e1077b5a] Ginger Base : Fix Minor Issues with the test cases. (chandrureddy)
* [e5d6e9d2] Bug fix: Update Kimchi URL while checking ISO stream support (Aline Manera)
* [69a30c87] Fix issue 'unable to open database file' when run 'sudo src/wokd --environme.. (chandrureddy)
* [2d2fc4a3] Live migration backend: unit tests (Daniel Henrique Barboza)
* [5e2a1f8b] Live migration backend: control/vms and model/vms changes (Daniel Henrique Barboza)
* [0b777928] Live migration backend: API and messages (Daniel Henrique Barboza)
* [873b617d] Log any exception raised (Aline Manera)
* [64297ac0] Github #745: WoK: improve error message when importing plug-ins (Daniel Henrique Barboza)
* [595fe9f4] Guest memory utilization. (Paulo Vital)
* [5c12348c] Update README to recommend pkgconf installation in Ubuntu (Lucio Correia)
* [a57e6176] Bug fix: Display storage pool types properly (Aline Manera)
* [1c70986f] Fix make check-local for Kimchi (Aline Manera)
* [7306c310] Add .gitignore file to gingerbase directory (Aline Manera)
* [9cc0b8f9] Add src/wok/plugins directory to the Wok PEP8 backlist (Aline Manera)
* [4a6671b3] Remove Host Resource from Kimchi (Aline Manera)
* [7d8473e7] Keep /host/partitions on Kimchi (Aline Manera)
* [52bf10cd] Move host authorization tests from Kimchi to Ginger Base (Aline Manera)
* [0ed3da6e] Remove repositories tests from Kimchi (Aline Manera)
* [05790586] Fix Ginger Base tests (Aline Manera)
* [74803276] Get the right internal URI to Ginger Base plugin (Aline Manera)
* [5d367ecd] Fix PYTHONPATH to run tests for Ginger Base (Aline Manera)
* [9b19d45b] V7 Ginger Base : base plugin po files (chandrureddy)
* [6cd75482] V7 Ginger Base : base plugin ui make, images and config (chandrureddy)
* [c4da9919] V7 Ginger Base : base plugin ui/css files (chandrureddy)
* [b48bc9ae] V7 Ginger Base : base plugin ui/js files (chandrureddy)
* [1c8a6830] V7 Ginger Base : base plugin ui/pages files (chandrureddy)
* [67f67974] V7 Ginger Base : base plugin ui/pages/help files (chandrureddy)
* [c924db91] V7 Ginger Base : base plugin tests files (chandrureddy)
* [5d33017c] V7 Ginger Base : base plugin model files (chandrureddy)
* [e04498a9] V7 Ginger Base : control files (chandrureddy)
* [cfc34988] V7 Ginger Base : base plugin m4 files (chandrureddy)
* [3014c8fa] V7 Ginger Base : base plugin build-aix and contrib (chandrureddy)
* [71953527] V7 Ginger Base : base plugin docs files (chandrureddy)
* [bd69aab2] V7 Add License files to ginger base (chandrureddy)
* [92aa088a] V7 Ginger Base : base folder files part 3 (chandrureddy)
* [32cd0a35] V7 Ginger Base : base folder files part 2 (chandrureddy)
* [4a1d1a3b] V7 Ginger Base : base folder files part 1 (chandrureddy)
* [2b814b97] V7 Ginger Base : Taking off the host tab functionality (chandrureddy)
* [2d0f6ac5] Fix Kimchi RPM spec files (Paulo Vital)
* [4fc75872] Fix passthrough bugs (Jose Ricardo Ziviani)
* [a2207f32] Copy missing files to build Kimchi RPM. (Paulo Vital)
* [5535dd5d] Fix test cases to proper get the screenshot and debug report file (Aline Manera)
* [377499a4] Use right URI while doing internal redirection (Aline Manera)
* [0a68bf94] Update test case according to commit e9cd4666 (Aline Manera)
* [2e6212b0] Update test case to use the right Template URI while creating a guest (Aline Manera)
* [a859d03a] Make sure to use relative path when setting an icon to a guest (Aline Manera)
* [49de99de] Force a HTTP redirection when a resource has its ID changed after a PUT requ.. (Aline Manera)
* [6a0e66b1] Add correct package name for libxslt in Ubuntu (Socorro Stoppler)
* [70966562] Add correct name for libxslt for Kimchi plugin (Socorro Stoppler)
* [7821e2f2] Use absolute import path (Aline Manera)
* [e51d8135] Move validate_repo_url() and check_url_path() from Wok to Kimchi (Aline Manera)
* [ff14195e] Provide a meaningful message to WOKUTILS0001E (Aline Manera)
* [341d08d3] Remove any WOK error message from Kimchi (Aline Manera)
* [019bf262] Fix issue #738 - Part 2: Split Wok and Kimchi object stores (Lucio Correia)
* [726b96ae] Fix Kimchi model (Lucio Correia)
* [6e4cf3fa] bug fix: Allow user to get guest console (noVNC and spice) (Aline Manera)
* [64856ea5] Update the documentation (Jose Ricardo Ziviani)
* [a8c54c76] Implement the package manager monitor frontend (Jose Ricardo Ziviani)
* [4d5cb808] Implement the package manager monitor backend (Jose Ricardo Ziviani)
* [3810c26d] Add functions for package manager monitoring (Jose Ricardo Ziviani)
* [4b453585] Use absolute import path on root.py (Aline Manera)
* [e510700e] Set the right error messages for Kimchi (Aline Manera)
* [2752645a] Issue #742: Update Readme with missing dependencies. (Paulo Vital)
* [bb86df5e] Fix import path based on new plugin structure (Aline Manera)
* [b800c0e5] Update Wok and Kimchi systemd process. (Paulo Vital)
* [38a3409b] imageinfo.py: Don't fail template creation if unable to detect OS (Brent Baude)
* [3a960d18] Fix package name of some dependencies (Paulo Vital)
* [16ede117] Fix issue #738 - Use *lib/kimchi instead of *lib/wok/plugins/kimchi (Lucio Correia)
* [69c6c2da] Issue #740: Solving UI dependencies checking. (Paulo Vital)
* [4e659f82] Fix some test cases on test_config.py for Wok and Kimchi (Aline Manera)
* [4e028276] Adding new-ui src sass dependencies (samhenri)
* [128c05f1] Adding new-ui sass source files (samhenri)
* [556fa6c8] Adding python-dev, python-pip and cython & libsass libs to compile SCSS sour.. (samhenri)
* [8c68f291] Update README.md with submodules information. (Paulo Vital)
* [c9095925] Add Ginger as module (Paulo Vital)
* [87463bbc] Add Kimchi as module (Paulo Vital)
* [f0934302] Fix issue stopping nginx proxy (Rodrigo Trujillo)
* [06c81b05] Moving bootstrap-select js and css to separate folders (samhenri)
* [c46ce085] Add %Used back to the right of Name column in Storage tab (Socorro Stoppler)
* [2c1ecbd0] Add license files to Kimchi (Paulo Vital)
* [fd88eb08] Use locks to prevent concurrent updates to VMs (Crístian Deives)
* [ddc07c78] Update back-end license to LGPLv2.1 (Paulo Vital)
* [58ffd293] Configure deb package to use systemd service if needed (Jose Ricardo Ziviani)
* [68932442] Fix RuntimeWarning in check_i18n.py (Lucio Correia)
* [e29a63d9] Fix PEP8 issues (Lucio Correia)
* [945dd74a] Fix name mismatch with imported module (Lucio Correia)
* [6f6ce582] Update the header of all Wok front-end files (Paulo Vital)
* [07717289] Update the header of all Wok back-end files (Paulo Vital)
* [5efe8f08] Update README.md of Wok and Kimchi after slipt. (Paulo Vital)
* [bd88c879] Update gitignore after move of plugins structure (Paulo Vital)
* [1db98f67] Fix PYTHONPATH to be able to run "make check" (Aline Manera)
* [0bae086f] Wok tests (Paulo Vital)
* [b7cac1b1] Move KCHASYNC0003E to Wok and update code. (Paulo Vital)
* [6b0960ee] Update build and config files to new plugins path. (Paulo Vital)
* [6768e409] Change relative to absolute imports in Kimchi. (Paulo Vital)
* [4675caf9] Move plugins directory to src/wok structure. (Paulo Vital)
* [4f1a645a] Issue #704: page refreshing in Wok when no plugins installed (Atreyee)
* [926cb428] Set systemd KillMode to process (Jose Ricardo Ziviani)
* [d8482740] Make the package update process indendent of Kimchi (Jose Ricardo Ziviani)
* [730c66a5] Fix template default memory in hosts with few memory (Rodrigo Trujillo)
* [bd921f2f] Wok updates (Aline Manera)
* [43c86ef2] New UI updates (samhenri)
* [f103d9a4] New UI updates (Aline Manera)
* [2d5c9b9f] Wok updates (Paulo Vital)
* [5a79d132] Introduce Wok (Webserver Originated from Kimchi) (Lucio Correia)
* [01de1e0c] New UI: Add makefiles for fontello (Lucio Correia)
* [0da71e11] New UI (Wen Wang)
* [0578a58b] New UI (Yu Xin Huo)
* [0c1a09c3] New UI (Wen Wang)
* [e16ba085] Update copyright for src/kimchi/model/hostdev.py (Aline Manera)
* [85a134a6] Merge remote-tracking branch 'origin/next' into origin/master (Aline Manera)
* [b934901e] Patched kimchi for psutils 3.0.1 (Stephan Conrad)
* [9a41f0c6] Merge remote-tracking branch 'origin/master' into next (Aline Manera)
* [616ea4d2] List IPs of VM Ifaces (Christy Perez)
#### [1.5.1] ####
* [c424980b] Update ChangeLog and Version files for 1.5.1 release (Aline Manera)
* [396ee653] Update pt_BR translations (Aline Manera)
* [60615113] Raw volumes validation: update tests (Paulo Vital)
* [2feb8cc3] Raw volumes validation: back-end and front-end (Paulo Vital)
* [62964149] Raw volumes validation: update contrib and README (Paulo Vital)
* [f272e2ff] Add missing translations (Aline Manera)
* [4765f273] Add volume to storage pool label not formatted properly in some languages (Socorro Stoppler)
* [5cc46e17] Update help pages for ja_JP and pt_BR (Aline Manera)
* [3352b564] Isolate strings in guest-edit and template-add (Ramon Medeiros)
* [134527ec] PCI filter not in sync with device listing (Socorro Stoppler)
* [c45fe56d] Fix confirmation box for delete and clone (Socorro Stoppler)
* [49b87f34] Handles http redirection when checking url path (Jose Ricardo Ziviani)
* [52ca8827] Expands all possible variables in a repo url to validate it (Jose Ricardo Ziviani)
* [d846e260] Implement a method to expand variables in a url (Jose Ricardo Ziviani)
* [637b1445] Add translation for "Users" and "Groups" on guest edit (Ramon Medeiros)
* [86e66985] Update build process to include jquery.base64.js (Aline Manera)
* [b0f9b30c] Adds the new display_repo_name field in the JSON API (Jose Ricardo Ziviani)
* [d74f93b7] Display the expanded repo name instead of variables (Jose Ricardo Ziviani)
* [afdcb375] Implement a method to display the repo name expanding variables (Jose Ricardo Ziviani)
* [4237323d] Remove colon character from template cpu edit window (Rodrigo Trujillo)
* [76782b04] Add Fedora 22 as remote ISO option. (Paulo Vital)
* [8e8a6279] Add Fedora 21 as remote ISO option. (Paulo Vital)
* [b2a09e7e] Update Fedora Live 20 URL as remote ISO (Paulo Vital)
* [690b09ef] Add unity tests for start/shutdown/poweroff response commands (Ramon Medeiros)
* [ec4fe6d9] Issues #682/#684/#685: Change some code errors when start, shutdown or power.. (Ramon Medeiros)
* [05697000] Issue #667: Unable to rename guest when it is paused (Ramon Medeiros)
* [df21d34b] Bug fix: Access guest console when guest name has non-ASCII characters (Aline Manera)
* [cb5487fb] Update server configuration to expose jquery.base64.js (Aline Manera)
* [921876f3] Import Jquery Base64 code (Aline Manera)
* [e0e97f56] Fix bug #450: Allow creating guest with non-ASCII characters in name (Aline Manera)
* [e10e158c] Create helper method to remove metadata node (Aline Manera)
* [12ba7903] Allow setting multiple metadata nodes at once (Aline Manera)
* [6bdac405] Remove manual <metadata> manupulation (Aline Manera)
* [f4941a26] Disallow storage format changes in UI for templates based on image file (Jose Ricardo Ziviani)
* [91b04075] Avoid show user/password in url browser (Rodrigo Trujillo)
* [9f9408ac] Add missing translations (Aline Manera)
* [b91891d5] Improve code to get default disk format for VMTemplate (Aline Manera)
* [16a7830d] Add m4/pkg.m4 to .gitignore (Aline Manera)
* [d52ce00f] Fix SLES 11 reg exp to recognize SLE-11-SP4-SAP-DVD-ppc64-GM-DVD1.iso (Ramon Medeiros)
* [d677b736] Set default VM template memory to 2048 in Power (Daniel Henrique Barboza)
* [b79f5b12] Improve code performance on UI (Ramon Medeiros)
* [83800932] PCI Node filtering (Socorro Stoppler)
* [1a01d8f0] Force qcow2 when creating a VM based on backing image (Jose Ricardo Ziviani)
* [95e36b33] vmHostDevModel: returning 'product' and 'vendor' in lookup (Daniel Henrique Barboza)
* [a2197098] Change getsebool to run silently. (Jose Ricardo Ziviani)
* [b83f8f1c] Add option 'silent' in run_command (Jose Ricardo Ziviani)
* [5de475f0] Fixing compilation problems with translation files (Daniel Henrique Barboza)
* [eed3d15a] Translation updates (Daniel Henrique Barboza)
* [d4537fb5] Template disk format test fixes (Daniel Henrique Barboza)
* [34b6e049] Remove unecessary call to node_dev.parent() (Ramon Medeiros)
* [1351729e] Update Fedora 20 ISO path to mirrors.kernel.org (Ramon Medeiros)
* [eb3b2bb0] Detach group of PCI Devices from host before attaching to guest (Jose Ricardo Ziviani)
* [356c95d8] New unit tests to check disk creation behavior (Daniel Henrique Barboza)
* [297ca7d3] Getting default disk format from template.conf (Daniel Henrique Barboza)
* [4676106b] Mockmodel and test changes for the new API (Daniel Henrique Barboza)
* [4a00ca0c] Adding new API in the UI APIs and docs (Daniel Henrique Barboza)
* [c1e7aad1] Get available host passthrough devices: model changes (Daniel Henrique Barboza)
* [b3cd034f] Fix displaying numerous error msgs when host is shut down (Socorro Stoppler)
* [1e6ac52f] Fix minus in manpage (Frederic Bonnard)
* [17df1627] Help updates for Kimchi (Kersten Richter)
* [152640a1] Issue #670: openSUSE: problem while building Kimchi (Ramon Medeiros)
* [520cfee3] Issue #670: openSUSE: problem while building Kimchi (Ramon Medeiros)
* [0ba085c4] Github 663: software update improvements (Daniel Henrique Barboza)
* [fc20b7a5] Bug fix: Allow creating a pool using an existing path (Aline Manera)
#### [1.5.0] ####
* [2f6ae8a1] Update ChangeLog, VERSION and .po files for 1.5 release (Aline Manera)
* [6520e58e] Prevent Kimchi against TLS Logjam attacks (Rodrigo Trujillo)
* [f101a12d] Issue #653: "make rpm" requests authentication with non-root (Ramon Medeiros)
* [5e831068] Bug fix: Use a temp directory under /var to avoid permission errors (Aline Manera)
* [fb5ef931] Bug fix: Detach host device prior to attach to guest (Aline Manera)
* [5ed39b3f] Gtihub #660 - Fixing .repo file with no repos handling (Daniel Henrique Barboza)
* [ae939e79] Support xorriso ISOs detection (Ramon Medeiros)
* [cec1b143] Github #657 - fixing yum check-update parsing (Daniel Henrique Barboza)
* [c3252ed8] Bug fix: Allow user creates multiple templates (Aline Manera)
* [ac646f41] Changing repositories and swupdate to use yumparser module (Daniel Henrique Barboza)
* [15e265ab] Unit tests for the yumparser module (Daniel Henrique Barboza)
* [dd3c2c77] Adding yumparser module (Daniel Henrique Barboza)
* [b7b86820] Fix bug #647: Properly set qxl as video model for Fedora 22 (Aline Manera)
* [7c9f261f] Update po files for 1.5 release (Aline Manera)
* [46fe795d] Change the width of Actions button (Socorro Stoppler)
* [970b7c0f] Fix tests, adds slot and memory hotplug tests (Rodrigo Trujillo)
* [4a0eb86d] Add maxMemory and numa configuration to guest xml (Rodrigo Trujillo)
* [f137f062] Add maxMemory into templates (Rodrigo Trujillo)
* [2bd729a5] Feature test to check support to memory devices (Rodrigo Trujillo)
* [c6952029] pep8 fixes (Daniel Henrique Barboza)
* [6ed39cf9] UI-Template Edit: Enable user to change disk format (Rodrigo Trujillo)
* [0b777284] Supress error messages while checking vm metadata (Ramon Medeiros)
* [9e4cc6ef] Add support for Pause/Resume UI (Socorro Stoppler)
* [8fdedc0c] Does not list non-bootable images (Ramon Medeiros)
* [c9937b84] Enable storage volume upload on UI (Aline Manera)
* [e261fc71] Storage volume upload: Let the 'format' parameter be an empty string (Aline Manera)
* [690c3641] Storage volume upload: Keep the task tracking to update the UI (Aline Manera)
* [08c4af01] Set 'used_by' to [] when creating some volumes (Crístian Deives)
* [1d23e60f] Replace storage volume 'ref_cnt' with 'used_by' (Crístian Deives)
* [3ce2c42f] Update test cases to reflect MAC address update changes (Jose Ricardo Ziviani)
* [591ac232] Implement frontend code to edit MAC address of a guest (Jose Ricardo Ziviani)
* [bf258030] Implement backend code to edit MAC address of a guest (Jose Ricardo Ziviani)
* [ec6bd25e] Add vfio driver as default for powerkvm systems. (Jose Ricardo Ziviani)
* [63725024] Removing the hardcoded version of kimchi and make it depend of PACKAGE_VERSION (Frédéric Bonnard)
* [4d58f914] UI: Enable virtual NIC hot plug/unplug (Aline Manera)
* [ae33e0e6] Change log message if command to run is not found (Jose Ricardo Ziviani)
* [6f2487ac] Install service on make install (Ramon Medeiros)
* [eb2880b1] Fix SLES version checking in interfaces.py (Rodrigo Trujillo)
* [93a875d8] Remove storage volume creation from file (Aline Manera)
* [a2b84a60] Upload storage volume (Aline Manera)
* [cf76b626] Update controller to make update accept formdata params (Royce Lv)
* [2b7a456e] Fix URI format of guest interfaces (Jose Ricardo Ziviani)
* [0758cf3a] Display MAC Address in guest interface tab (Jose Ricardo Ziviani)
* [a4fa2c08] Avoid certificate validation on tests (Ramon Medeiros)
* [28e2c151] Handle invalid path in 'get_disk_ref_cnt' (Crístian Deives)
* [44475d62] fix: Use correct path when setting 'ref_cnt' to a new volume (Crístian Deives)
* [50f64e7b] Bug fix: Build default pools list according to user input (Aline Manera)
* [2a351070] Fixed section number within the man page itself (Frederic Bonnard)
* [570cd89e] Add documentation for VM suspend/resume (Crístian Deives)
* [12dbc97b] Verify storage pool set as Template default prior to server starts up (Aline Manera)
* [4b64bb3b] Verify all networks set as Template defaults prior to server start up (Aline Manera)
* [3ec063ce] Make Template defaults configurable (Aline Manera)
* [e4fa2c19] snapshot: Handle non-existing snapshots in mock lookup (Crístian Deives)
* [51871d06] Create option to auto create ISO pool or not on server start up (Aline Manera)
* [ef566a1b] Add libvirt-daemon-config-network package as Kimchi dependency (Aline Manera)
* [c43fe1c2] Merge common_spec with defaults value in osinfo.py (Aline Manera)
* [7fad14f9] Remove useless variable in osinfo.py (Aline Manera)
* [6a134aab] Create VMs Asynchronously: UI (Aline Manera)
* [b8ee58d0] Create VMs Asynchronously: Tests (Christy Perez)
* [c8f56d57] Create VMs asynchronously: Backend (Christy Perez)
* [78f1ff63] UI changes for new clone target_uri (Christy Perez)
* [236f3a53] Tests for new clone target_uri (Christy Perez)
* [c449622c] Append clone to target_uri for vm clone task (Christy Perez)
* [db6afa6c] Do not resolve hostname to IP in using remote ISOs (Aline Manera)
* [d9e5d8b5] Improve code to retrieve the number of host CPUs (Jose Ricardo Ziviani)
* [a65660a8] Move kimchi nginx config file to nginx default directory. (Jose Ricardo Ziviani)
* [100aec5e] Add a warn about NM running in the system. (Jose Ricardo Ziviani)
* [c234e9bd] Implement function to check if NM is running. (Jose Ricardo Ziviani)
* [28dcbc40] Host tests (Aline Manera)
* [b042b230] issue #548: Hotplug network interfaces (Crístian Deives)
* [83220337] Use default network model when attaching a NIC (Crístian Deives)
* [aa332f51] Handle missing parameter "network" when attaching a NIC (Crístian Deives)
* [d17d8be8] Parse osinfo.lookup return parameters correctly (Crístian Deives)
* [99bd4bb1] Remove nginx conf on suse (Ramon Medeiros)
* [e1597d32] Create empty files on rpm build (Ramon Medeiros)
* [81ea427e] Adds tests to check disk format information in new templates (Rodrigo Trujillo)
* [1d41799c] Set qcow2 as default disk format in new templates (Rodrigo Trujillo)
* [f06ddfcc] Template: Assign 'raw' to disk format if pool is 'logical' or [i]scsi (Rodrigo Trujillo)
* [351ffbdd] Server tests (Aline Manera)
* [95e3030c] Object store tests (Aline Manera)
* [958d93eb] Add support for VM suspend and resume (Crístian Viana)
* [ae44ff31] Update some VM state conditions (Crístian Viana)
* [63c3a70e] Optimize VM update function (Crístian Viana)
* [7803cdf9] Move stats-related VM functions to VMModel (Crístian Deives)
* [ceb4f3f0] Update stats when looking up one single VM (Crístian Deives)
* [f7d93c43] Add %Used in the header for storage (Socorro Stoppler)
* [89be36b7] Security: Prevent Bar Mitzvah attacks by disabling RC4 (Aline Manera)
* [4722d646] issue #461: Add 'metalink' support for YUM repositories (Crístian Viana)
* [b85c0683] Use more generic message in repo mirror list error (Crístian Viana)
* [5376a6bf] Handle empty variables when updating YUM repository (Crístian Viana)
* [4538eb7f] Update host number of cpus and total physical memory (Jose Ricardo Ziviani)