forked from kimchi-project/kimchi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2735 lines (2716 loc) · 284 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
=========
#### [2.3.0] ####
* [65911fd] Improve storage volume creation of XML (Paulo Vital)
* [7761ae4] Fixed noTemplate message display (Rajat Gupta)
* [21fdd7a] Fix make-rpm target (Aline Manera)
* [2933d64] Issue #1018 - Disable volume resize option on logical pool. (Paulo Vital)
* [cf788ac] Fix max number of memory slots for Ubuntu on Power (Lucio Correia)
* [b8d9171] Issue #1017: Fix upload file to logical storage pool. (Paulo Vital)
* [02d2d4f] Fix issue #1019: Hide storage volume actions menu for iSCSI/SCSI pools (Aline Manera)
* [1c75947] Bug fix #521: Extend logical pool (Aline Manera)
* [6c044f9] Fix issue #1022: Remove 'Clone' option for running guests (Aline Manera)
* [16b14bb] Bug fix: Recognize Fedora 24 ISO (Aline Manera)
* [b8cdedd] Fix issue #1005: Proper display paused guests on Gallery View (Aline Manera)
* [4a2e554] Bug fix: Disable "Search More ISOs" button on create Template dialog when th.. (Aline Manera)
* [9e863d8] Fix issue #1020: Fix alert icon position to do not overlay img/iso icon (Aline Manera)
* [2d1a0e7] Fix issue #1020: Verify libvirt access on real file path instead of symlink (Aline Manera)
* [52e44d1] Remove legacy check_files on Makefile (Aline Manera)
* [0ec9ead] Issue #1012: Boot order gets reset to only one entry after editing a VM (Ramon Medeiros)
* [063ef8b] Issue #585: 'make clean' does not revert its changes from 'make rpm' (Bianca Carvalho)
* [f0016f4] Fix issue #1010: Convert disk size to bytes while attaching new disk to guest (Aline Manera)
* [77ddaa6] remote iso listing for s390x (Suresh Babu Angadi)
* [2be8daa] Storagebuttons not behaving properly (Socorro)
* [3bc4697] Create test to verify graphics type change (Ramon Medeiros)
* [90299ac] Issue #836: Allow user change guest graphics type (Ramon Medeiros)
* [1090f3a] Issue #994: SPICE graphics does not need <channel> tag (Ramon Medeiros)
* [6bdb060] For s390x architecture, serial type is not validated in vm xml as as not sup.. (Archana Singh)
* [4a36120] Issue# 973 Emphasize resource name in dlg (Socorro)
* [60e0ca6] Updated API.md for addition paramters support for VM ifaces API on s390x/s39.. (Archana Singh)
* [e7a6f95] Updated code to support VM ifaces on s390x/s390 architecture. (Archana Singh)
* [dff38a1] Updated API.md for addition interfaces paramter in template API. (Archana Singh)
* [b09bbaf] Updated code to support 'interfaces' parameter to template API only on s390x.. (Archana Singh)
* [963a294] /plugins/kimchi/ovsbridges API (Suresh Babu Angadi)
* [190e612] Issue #606: Change icon to distinguish image generated template and iso gene.. (Samuel Guimarães)
* [1c48656] Issue #939: [UI] Guest tab is not rendered correctly if guests are not in 'r.. (Samuel Guimarães)
* [c054786] Issue #921: Peers button disappears (Samuel Guimarães)
* [cc0f163] Enhancement to /plugins/kimchi/interfaces (Suresh Babu Angadi)
* [554be6c] Enhancement to /plugins/kimchi/interfaces (Suresh Babu Angadi)
* [2e111ef] Issue #626: Snapshot revert does not release storage volume (Bianca Carvalho)
* [298dff0] Update tests (Ramon Medeiros)
* [7624370] Do not remove storagepools linked to guests (Ramon Medeiros)
* [66bf654] mockmodel.py: fixing virtviewerfile_tmp path (Daniel Henrique Barboza)
* [92e903a] Only on s390x add default networks to template if template.conf has default .. (Archana Singh)
* [6ef5dc3] Update usage of add_task() method. (Paulo Vital)
* [26d74de] Check if VM is off before detaching multifn PCI (Jose Ricardo Ziviani)
* [5f91b00] Github #986: create '/data/virtviewerfiles' dir automatically (Daniel Henrique Barboza)
* [bac1972] Revert "Fix frontend vcpu hotplug" (Jose Ricardo Ziviani)
* [564caef] Fix when calling error message in storagepool (Ramon Medeiros)
* [3a4eab0] Issue #933: Invalid image path not marking template as "invalid" (back-end) (Ramon Medeiros)
* [a05de49] test/test_model.py pep8 1.5.7 fix (Ramon Medeiros)
* [12d85d3] Issue #982 - Fix broken testcases. (Paulo Vital)
* [b73e7ae] Update docs (Ramon Medeiros)
* [6490cb2] Update tests (Ramon Medeiros)
* [6a37e55] Issue #857: Support VM description (Ramon Medeiros)
* [351917d] Issue #317 Inconsistent button status when adding or creating new resources (Socorro)
* [2c84b51] Prevents pci passthrough double click (Jose Ricardo Ziviani)
* [7cc96b5] Fix frontend vcpu hotplug (Jose Ricardo Ziviani)
* [430a08b] Issue #585: 'make clean' does not revert its changes from 'make rpm' (Bianca Carvalho)
* [de355ab] model.py: use the new 'get_all_model_instances' utils function (Daniel Henrique Barboza)
* [7d7c2ad] Modified code, to return distro and version as unknown, if guestfs import fa.. (Archana Singh)
* [56bf15c] Added s390x architecture support in osinfo params. (Archana Singh)
* [1d23583] Added on_poweroff, on_reboot, on_crash tag to also support s390x architecture. (Archana Singh)
* [b0675bc] Added method for implementation of s390x boot detection. (Archana Singh)
* [1307379] Added check for s390x architecture to not add graphics in params as not supp.. (Archana Singh)
* [83d92f8] Issue #604: Windows XP: Kimchi should set the right NIC Type in Templates (Ramon Medeiros)
* [38aeade] Revert "Use verbs in the past" (Lucio Correia)
* [4cb6484] Updated serial console to support s390x architecture. (Archana Singh)
* [b45afea] Validate passthrough inside the task (Jose Ricardo Ziviani)
* [12bb8ad] Replace device companion check before the passthrough (Jose Ricardo Ziviani)
* [2c0ce1d] Improve PCI passthrough performance (Jose Ricardo Ziviani)
* [d62079b] Add test to verify bootmenu and update old tests (Ramon Medeiros)
* [616c6a9] Allow guest to enable bootmenu on startup (Ramon Medeiros)
* [6eeaa83] Disable vm statistics/screenshots in edit guest (Jose Ricardo Ziviani)
* [765a954] Issue #968: Kimchi is searching for 'undefined' VM (Samuel Guimarães)
* [42717b3] Add test to check bootorder (Ramon Medeiros)
* [255e6d9] Add function to retrieve bootorder on vm lookup (Ramon Medeiros)
* [7d6be68] Update REST API (Ramon Medeiros)
* [394422f] Update documentation about bootorder on vm update (Ramon Medeiros)
* [a5b9e1f] Create method to change bootorder of a guest (Ramon Medeiros)
* [e05c7a3] Add function get_bootorder_node (Ramon Medeiros)
* [24cc635] Virt-Viewer launcher: mockmodel changes (Daniel Henrique Barboza)
* [d57f2b5] Virt-Viewer launcher: changes after adding libvirt event listening (Daniel Henrique Barboza)
* [5d58c67] Virt-Viewer launcher: libvirt events to control firewall (Daniel Henrique Barboza)
* [b822c44] Virt-Viewer launcher: test changes for firewall manager (Daniel Henrique Barboza)
* [dc70e6b] Virt-Viewer launcher: adding FirewallManager class (Daniel Henrique Barboza)
* [80c170d] Virt-Viewer launcher: test changes (Daniel Henrique Barboza)
* [f5a47af] Virt-Viewer launcher: virtviewerfile module (Daniel Henrique Barboza)
* [f8b51e1] Virt-Viewer launcher: control/vms.py and model/vms.py changes (Daniel Henrique Barboza)
* [9148d3f] Virt-Viewer launcher: Makefile and config changes (Daniel Henrique Barboza)
* [abb5114] Virt-Viewer launcher: docs and i18n changes (Daniel Henrique Barboza)
* [e0faa46] Kimchi kills Wokd due to sys.exit() calls in files networks.py and storagepo.. (Bianca Carvalho)
* [66567fe] Issue #969: Error message showing up in parent panel rather than modal windo.. (Samuel Guimarães)
* [8dc7ec9] Send (de)attach fail messages to tasks (Jose Ricardo Ziviani)
* [19d5748] Handle libvirt events for device attachment/detachment (Jose Ricardo Ziviani)
* [eb3864f] Issue #956: Unable to assign pci passthrough devices through kimchi (Samuel Guimarães)
* [edff54f] Added cursor for tasks in progress (Samuel Guimarães)
* [51d69ce] Add UI netboot support for adding templates; add loading icon when switching.. (Socorro Stoppler)
* [42d9d27] Show error message for untracked and failed cloning tasks (Lucio Correia)
* [c5d83e6] Disable ISOs templates with wrong permission (peterpennings)
* [0a0f5d4] Save last view for templates - fix for issue# 799 (Socorro Stoppler)
* [227e5d8] model/vms.py: changing all interfaces VM (Daniel Henrique Barboza)
* [4d64944] Github #972: spice-html5 dir incorrect (Daniel Henrique Barboza)
* [e6f21db] Update unit tests to changes in Remote links. (Paulo Vital)
* [c279a37] Update Ubuntu remote images. (Paulo Vital)
* [c73acfe] Update OpenSUSE remote images. (Paulo Vital)
* [e419a9b] Update Gentoo remote images. (Paulo Vital)
* [9af7d9d] Update Debian remote images. (Paulo Vital)
* [cd2707a] Update Fedora remote images. (Paulo Vital)
* [559df57] Issue #965: Recognize Fedora 24 ISO image. (Paulo Vital)
* [5105530] Issue #948: Kimchi not throwing errors when migration is performed and gives.. (Samuel Guimarães)
* [23a14b0] Make sure all log messages have required parameters (Lucio Correia)
* [d2e3551] VM migrate: generic remote path check (Daniel Henrique Barboza)
* [509fe9b] Avoid break Wok when register events, if Libvirt is down (Rodrigo Trujillo)
* [9c8f0e0] Do not break the logging of failed requests (Lucio Correia)
#### [2.2.0] ####
* [7b5be35] Update ChangeLog, VERSION and .po files for 2.2 release (Aline Manera)
* [9feff9e] Fixing Opensuse Leap package name (Daniel Henrique Barboza)
* [bcb8917] Handle URLError exception when creating Template. (Paulo Vital)
* [bce9f42] Use qxl driver only for x86 (Lucio Correia)
* [2675517] Fix typo in API.md (Rodrigo Trujillo)
* [c85e2bd] Update tests to reflect new behavior (Lucio Correia)
* [34a65a0] Use ASCII name in XML (Lucio Correia)
* [86b98ad] Always update snapshot XML with new name and UUID (Lucio Correia)
* [bc6e7c5] Add loading icon for guests tab (Socorro Stoppler)
* [b5c291b] Save view for Guests tab (Socorro Stoppler)
* [03d1a2b] Improve UI error codes checking (Ramon Medeiros)
* [a2a5ccd] Fix storage volume clone test case (Aline Manera)
* [ff6d55c] Change PPC memory slots to 256 (Rodrigo Trujillo)
* [5fe4a22] Pass only those fields that have been modified in Edit Guest; Match maxmem t.. (Socorro Stoppler)
* [cf96769] Fixed Storage Volume upload error message when switching tabs (Samuel Guimarães)
* [2bbd88d] Do not use default value when declare a function (Ramon Medeiros)
* [f7819c2] Clean FEATURETEST_VM effectively. (Paulo Vital)
* [de28dd6] Substitute quotes by apostrophe in configuration file (Rodrigo Trujillo)
* [9bd8331] Github #934: fix storage pool name in template-edit.html.tmpl (Daniel Henrique Barboza)
* [94f43a2] Properly display network interfaces when more than one exists (Socorro Stoppler)
* [c9ea507] Storage Volume management (Samuel Guimarães)
* [22759e9] Add missing test dependency: bc (Lucio Correia)
* [b1b2f3e] Use Wok session timeout value to configure serial console (Aline Manera)
* [7e45dc9] Implement multi-function pci hotplug support (Jose Ricardo Ziviani)
* [31df688] Enable hot-plug multi-function pci on front-end (Jose Ricardo Ziviani)
* [2293369] Load Kimchi when started by command line and libvirt is not running (Rodrigo Trujillo)
* [8f8bc00] Remove notification message if Libvirt is back (Rodrigo Trujillo)
* [57df670] Improve Kimchi feature tests output (Rodrigo Trujillo)
* [8839805] Fixed Clone Guest modal window (Samuel Guimarães)
* [40bc3b0] Handle Libvirt host ENOSPC event (Lucio Correia)
* [da01b4d] Decrease the sleep time for libvirt event timout (Jose Ricardo Ziviani)
* [886c7ef] Add support to Libvirt Events. (Paulo Vital)
* [ca57d4b] Isolate unit tests execution. (Paulo Vital)
* [c88bd4d] UI fixes for edit virtual network (Aline Manera)
* [1eaa962] Edit Virtual Network with passthrough support (Socorro Stoppler)
* [7efd036] Add test case to test new slots value implementation (Rodrigo Trujillo)
* [85c621d] Modify max memory slots default numbers (Rodrigo Trujillo)
* [6928a79] Passthrough macvtap network support: UI changes (Daniel Henrique Barboza)
* [efb538a] Passthrough macvtap network support: model and test changes (Daniel Henrique Barboza)
* [9337420] Passthrough macvtap network support: doc changes (Daniel Henrique Barboza)
* [a1532bf] Make static and live update functions independent (Rodrigo Trujillo)
* [10041b2] Modify mockmodel to support memory devices (Rodrigo Trujillo)
* [642bca6] Modify tests to support mem devs with different sizes (Rodrigo Trujillo)
* [665bfbb] Change memory hotplug to support more than 32GB (Rodrigo Trujillo)
* [532c6df] Update Fedora iso url to fix test (Rodrigo Trujillo)
* [493fb97] Use verbs in the past (Lucio Correia)
* [25d68a4] Add translation to user log messages (Lucio Correia)
* [bba5c2e] Fix issue on network update (Lucio Correia)
* [9ad2fb4] Add support to check if libvirtd is running. (Paulo Vital)
* [4f58062] Make Cheerypy up if not able to connect to libvirt (Paulo Vital)
* [d51a7e2] Update Kimchi config file for Systemd service (Paulo Vital)
* [6e983c4] Check if qemu/libvirt user has permission to use the image (Jose Ricardo Ziviani)
* [28036f3] Add new unit test for memory hotplug in PowerPC (Rodrigo Trujillo)
* [03b5392] Implements support to memory hotplug in non-NUMA guests (Rodrigo Trujillo)
* [1462734] Filter VEPA interfaces: JS changes (Daniel Henrique Barboza)
* [347fa3a] Filter VEPA interfaces: adding 'module' to interfaces API (Daniel Henrique Barboza)
* [579cf05] Fix memory return in vm with memory devices hotplugged (Rodrigo Trujillo)
* [4fe6cde] Does not use slot in memory device removal (Rodrigo Trujillo)
* [e2d1d4c] Added loading icon and 'Creating' for create template (Socorro Stoppler)
* [a991876] Fixed "Add Template" modal window alignment (Samuel Guimarães)
* [1b03c57] Adding 'source_media' docs in docs/API.md (Daniel Henrique Barboza)
* [2ee72ce4] Bug fix: Do not allow user selects invalid volume format to create a new vol.. (Aline Manera)
* [4b9e658] Bug fix: Display error when creating new disk to attach to guest (Aline Manera)
* [63aac98] Bug fix: Allow creating network with XML special characters (Aline Manera)
* [201730b] Create template error message not being displayed in panel (Socorro Stoppler)
* [a2e5601] Bug fix: Create VM based on Remote ISO Template (Aline Manera)
* [2436b8f] Migration to Gingerbase netinfo: removing netinfo.py (Daniel Henrique Barboza)
* [08b10f4] Migration to Gingerbase netinfo: import changes (Daniel Henrique Barboza)
* [668392d] VEPA network UI: fixing network creation (Daniel Henrique Barboza)
* [f80a019] Remove cherrypy configuration from kimchi.conf file (Aline Manera)
* [47eca6d] Disable Template when it has invalid parameters (Samuel Guimarães)
* [b0cfe49] Fix logging and error messages in objectstore upgrade (Rodrigo Trujillo)
* [bb8a8e0] Update UI to reflect modifications in template API (Paulo Vital)
* [8b116bd] Update test cases to support netboot. (Paulo Vital)
* [20e3e6c] Add support to create guests to netboot. (Paulo Vital)
* [398633b] Add support to create netboot templates. (Paulo Vital)
* [d707a69] Do not use systemd private tmp dir (Jose Ricardo Ziviani)
* [db18461] Issue #931 Error when editing a template created using a disk image (Ramon Medeiros)
* [0212352] Fix typo and integer values validation in Guest edit UI (Rodrigo Trujillo)
* [eb37b1b] Add error message when empty disks list is passed in Template edit API (Rodrigo Trujillo)
* [ee5ecd9] Move capabilities to model constructor (Jose Ricardo Ziviani)
* [f0f1b42] Change nfs host from localhost to 127.0.0.1 (Jose Ricardo Ziviani)
* [a382bf1] Avoid race condition in vm lookup (Rodrigo Trujillo)
* [fc9ecd5] Create Template UI adjustments based latest API changes (Socorro Stoppler)
* [705fe6b] Issue #920: Template is removed if an ISO doesn't exist (Jose Ricardo Ziviani)
* [f76bf2e] Make detach device return an AsyncTask (Paulo Vital)
* [3ca5088] Make attach device return an AsyncTask (Paulo Vital)
* [bdcf65d] Issue #924: Update test case with new storage pool field (Jose Ricardo Ziviani)
* [70a1066] Issue #924: Disable deactivate/delete buttons if storage is in use (Jose Ricardo Ziviani)
* [0c2e33b] Issue #924: Add field to inform front-end if storage is in use (Jose Ricardo Ziviani)
* [d7c5117] Add network update tests (Lucio Correia)
* [a97f03c] Add backend support for editing virtual networks (Lucio Correia)
* [a292738] Improve checking of cpu_info API (json schema) (Rodrigo Trujillo)
* [cc81ef3] Fixed some issues with SCSS after adding compact() mixin to Wok (Samuel Guimarães)
* [dd4959e] Issue #924: Before deleting a storagepool, kimchi should check if any templa.. (Jose Ricardo Ziviani)
* [7e9a993] Issue #919: Deactivate a storagepool makes the list of templates blank (Jose Ricardo Ziviani)
* [9ca89ba] Adjust UI to create Template according to the latest API changes (Aline Manera)
* [1e43fb5] Change "Memory Available" by "Memory Utilization" (Rodrigo Trujillo)
* [b97f3c2] Issue #923: Template always shows VNC, even if I save Spice in my template (Jose Ricardo Ziviani)
* [7d89153] Add new tests to verify source_media feature (Ramon Medeiros)
* [5e4cec3] Update tests (Ramon Medeiros)
* [4de31e5] Identify installation media while creating template (Ramon Medeiros)
* [8a465f9] Create a single field to pass the installation media (Ramon Medeiros)
* [95df63b] Fix template creation from image file (Jose Ricardo Ziviani)
* [9bda692] Test if CPU value is higher than Max CPU before request (Rodrigo Trujillo)
* [8103f93] Bug fix: Use 256MB of memory on feature tests due restriction on Power machi.. (Aline Manera)
* [2834685] Add support to recognize latest CentOS version (Rodrigo Trujillo)
* [b07fea1] Check memory values in UI before submit request (Rodrigo Trujillo)
* [a7d61bf] Fix memory value return when hotplug memory devs (Rodrigo Trujillo)
* [9bd1744] Enabling multiselect for VEPA networks (Samuel Guimarães)
* [0234c4c] Remove View Console link from guests that doesn't support vnc/spice (Jose Ricardo Ziviani)
* [c33d254] Change CPU Number/CPUs to Current CPU Number/Current (Socorro Stoppler)
* [13dc7a3] Add UI support to clone a guest multiple times (Rodrigo Trujillo)
* [2257134] Fix issue when clone a vm multiple times (Rodrigo Trujillo)
* [19eec71] Add function 'get_next_clone_name' (Rodrigo Trujillo)
#### [2.1.0] ####
* [ba5b8af] Update ChangeLog, VERSION and .po files for 2.1 release (Aline Manera)
* [88b8ef9] Issue #838: UI - Blocks maxmemory input field (Rodrigo Trujillo)
* [0de3952] Issue #838: Extend memory hotplug feature test (Rodrigo Trujillo)
* [83622d5] Adding wok version dependency (Daniel Henrique Barboza)
* [b5793f8] Update po files for 2.1 release (Aline Manera)
* [10c7968] Move 'template.conf' to /etc (Rodrigo Trujillo)
* [d73ccbd] Fix issue #840: Change distros.d internal path (Rodrigo Trujillo)
* [d360266] Issue #788: Network information mismatch in template creation (Samuel Guimarães)
* [e507c45] Issue #818: Frontend doesn't update the PCI tab after a PCI attachment (Samuel Guimarães)
* [ca11431] Issue #809: PCI filter does not seem to work (Samuel Guimarães)
* [24002a7] Fix problem when removing window size fo GPU (Jose Ricardo Ziviani)
* [919de4f] Issue 814: UI just show exported NFS path when clicked twice at field (Samuel Guimarães)
* [5131154] Check if guest is listening to serial before connecting to it (Jose Ricardo Ziviani)
* [60ea598] Make serial console timeout configurable (Jose Ricardo Ziviani)
* [d86a411] Improve log messages printed by the serial console (Jose Ricardo Ziviani)
* [176c810] Move unix socket files from /tmp to /run (Jose Ricardo Ziviani)
* [2e38103] Issue #847: Save button is having wrong behavior when edit a running Guest (Samuel Guimarães)
* [291a725] Remove useless function 'validate_repo_url' from Kimchi (Rodrigo Trujillo)
* [3557365] Fixed "Add a Storage Device to VM" modal behavior (Samuel Guimarães)
* [38d7186] Fix showing of memory/cpu for guest and templates (Socorro Stoppler)
* [1dc57f9] Removing disks.py because it was moved to gingerbase (Jose Ricardo Ziviani)
* [27eb2ab] Fix issue #849: Get network name for bridged networks (Aline Manera)
* [2df81f5] Issue #859 - Fix error when adding new disk to VM. (Paulo Vital)
* [be5e6dd] Increase guest Max Memory limits (Rodrigo Trujillo)
* [9aa4d24] Bug fix: Remove storage volume file while removing the storage volume (Aline Manera)
* [b7e28af] Customize user request log messages (Lucio Correia)
* [0ad6c6f] Fix minor issues in Kimchi UI: Template CPUs and Guest CPUs (Rodrigo Trujillo)
#### [2.1.0-rc1] ####
* [7a79ced] Multiple fixes in Gallery and List views for Templates and Guests tabs (Samuel Guimarães)
* [c69b346] Adding gallery view to guest tab and minor fixes to templates tab (peterpennings)
* [886351c] Fix test case: Proper check memory and cpu_info information (Aline Manera)
* [10084bc] Fix pep8 1.6.2 error W503 in model/vms.py (Daniel Henrique Barboza)
* [f24f237] Create test cases for GPU attachment (Jose Ricardo Ziviani)
* [943ec44] Set mmio memory when GPU is attached (Jose Ricardo Ziviani)
* [8994cc7] Fixed navbar order (Samuel Guimarães)
* [33596c7] Fix memory values in guest with attached memory devices (Rodrigo Trujillo)
* [daf0592] Added Kimchi SVG logo for login page, footer and about window (Samuel Guimarães)
* [5df80b7] Update pkg-version script to work with submodules (Aline Manera)
* [097d8e3] Add release number to Kimchi version (Aline Manera)
* [5812625] Adding maxmemory for guest and templates (Samuel Guimarães)
* [53337ef] Changes and add tests to support new memory API (templates/guest) (Rodrigo Trujillo)
* [2cdb4a1] Add support to edit max memory in Guest (Rodrigo Trujillo)
* [311fd9f] Add function to update 'memory' in objectstore (Rodrigo Trujillo)
* [a5a94ac] Add support to edit max memory in Templates (Rodrigo Trujillo)
* [001bf5b] Update copyright according to make check-local result (Aline Manera)
* [e7bb53a] Verify IBM copyright on make check-local (Aline Manera)
* [a14d2ae] Remove help and screenshot URI configuraton from kimchi.conf file (Aline Manera)
* [df6cd08] Update the API document (Jose Ricardo Ziviani)
* [23a9fda] Disable hotplug of graphic card devices in the frontend (Jose Ricardo Ziviani)
* [7b0fb13] Disallow hotplug of graphic cards because it is no supported (Jose Ricardo Ziviani)
* [b453728] Create logical pool from existing VG (peterpennings)
* [7128507] Add maxvCpu support UI for guest and template (Socorro Stoppler)
* [0f611a3] VEPA network support: UI changes (Daniel Henrique Barboza)
* [b90baac] VEPA network support: additional backend unit tests (Daniel Henrique Barboza)
* [d4efeae] VEPA network support - models and xmlutils changes (Daniel Henrique Barboza)
* [128523b] VEPA network support: API and i18n changes (Daniel Henrique Barboza)
* [01fddc8] Changing network API: UI changes (Daniel Henrique Barboza)
* [2a1d51f] Changing network API: unit test changes (Daniel Henrique Barboza)
* [e8bd5dd] Changing network API: control and model changes (Daniel Henrique Barboza)
* [552434a] Changing network API 'interface' to array: docs and API (Daniel Henrique Barboza)
* [28261d4] Bugfix 804: Disable connect vnc when VM is powered off (Jose Ricardo Ziviani)
* [3de4eed] Bugfix 843: Add sourceURL comment for kimchi.min.js (Jose Ricardo Ziviani)
* [2132e2f] Add test case for the socket server (Jose Ricardo Ziviani)
* [7a2b43b] Update the build system to make the serial console (Jose Ricardo Ziviani)
* [04e0b6c] Implement the Kimchi front-end for the web serial console (Jose Ricardo Ziviani)
* [3ec18c7] Implement the web serial console front-end (Jose Ricardo Ziviani)
* [ed32f71] Import term.js to Kimchi project (Jose Ricardo Ziviani)
* [547c1aa] Implement the backend to support web serial console (Jose Ricardo Ziviani)
* [18e4d3e] Implement the web serial console server (Jose Ricardo Ziviani)
* [1adc320] Rename vnc.py to websocket.py (Jose Ricardo Ziviani)
* [6e876e0] Update tests (Lucio Correia)
* [0b13816] Add graphics settings merge to template update (Lucio Correia)
* [36f54d3] test_mock_network.py: fixes due to backend changes (Daniel Henrique Barboza)
* [9aca4d7] Issue #791: New UI for adding network bridges (peterpennings)
* [b01edba] Fix handling of VLANs in backend (Lucio Correia)
* [ea99ac4] Create new volume with .img extension and attach to VM (Socorro Stoppler)
* [526aba7] Update tests (Lucio Correia)
* [1655d31] Do not break web UI (Lucio Correia)
* [4e6f993] Add maxvcpus attribute to guests (Lucio Correia)
* [b1d6140] Add maxvcpus attribute to templates (Lucio Correia)
* [4ce55cb] Add python-pillow as RPM dependency. (Paulo Vital)
* [82e25b3] Fix error message for IOMMU configuration. (Paulo Vital)
* [0570280] Remove hack that disables vhosts-net (Ramon Medeiros)
* [a95ce46] Fix add storage device to VM using existing disk (Socorro Stoppler)
* [00bfedf] Whitespace fixes in existing code (Daniel Henrique Barboza)
* [09c12d4] Makefile.am targets enhancements (Daniel Henrique Barboza)
* [9464300] Memory hot plug front-end (peterpennings)
* [bd28f14] Implementing sort for Templates tab (Samuel Guimarães)
* [3458e15] Add federation and create_iso_pool options to Kimchi configuration file (Aline Manera)
* [3df347f] Use the cached values for wok config when required (Aline Manera)
* [52b0a89] Remove authentication method information from Kimchi (Aline Manera)
* [857bf88] Update Kimchi configuration according to recent changes on Wok (Aline Manera)
* [74fab9e] Live Migration front-end (samhenri)
* [2f5169d] Initial checkin for live migration UI support (Socorro Stoppler)
* [1c1b023] Add support for websockify 0.7 (Ramon Medeiros)
* [84349f5] Start up websockify on localhost (Rob Lemley)
* [31faea7] Update README (Aline Manera)
* [877a249] Update /plugins/kimchi/config API to only return information related to Kimchi (Aline Manera)
* [c7665d6] Add support to passtrhough 3D graphic controllers (Jose Ricardo Ziviani)
* [3482cc6] Add opensuse LEAP to remote ISOs (Ramon Medeiros)
* [3754660] Issue #816: kimchi.conf isn't pointing to libvirt service on ubuntu 15.10 (Ramon Medeiros)
* [4ff81cf] Fix issue #810 (Lucio Correia)
* [150ec44] Fixed minor UI issues when saving edited template (samhenri)
* [254310f] Supress HTTPS certification checking on tests (Ramon Medeiros)
* [96f1c49] Identify opensuse-LEAP-42.1 ISO (Ramon Medeiros)
* [db67e45] Do not rely on python-pip to install build dependencies (Aline Manera)
* [4ec0ee3] Fix Portuguese translations for storage pool. (Leonardo Garcia)
* [5291600] Adding Gallery View at Templates screen (Andre Teodoro)
* [393a1a4] Ignore pool.refresh if it cannot be called (Jose Ricardo Ziviani)
#### [2.0.0] ####
* [5cfaf51] Update ChangeLog and po files for 2.0 release (Aline Manera)
* [066a097] Add python-paramiko package as Kimchi dependency (Aline Manera)
* [60f40e3] Bug fix: Get the right guest name when creating/cloning a guest (Aline Manera)
* [5a7e852] Fix and add tests to related to max memory in xml (Rodrigo Trujillo)
* [acbe74b] Issue #753: Adds max_memory checkings and settings properly (Rodrigo Trujillo)
* [70f59e2] Issue #753: Remove max memory settings from osinfo.py (Rodrigo Trujillo)
* [f32556b] Use always flag as a fallback (Lucio Correia)
* [bc0ef31] Use correct gettext package for building (Lucio Correia)
* [611d9e8] Issue 776: Adding filter on Guest screen (samhenri)
* [926aa55] Moved Kimchi SCSS files from Wok to Kimchi (samhenri)
* [ec6575b] Remove useless messages (Aline Manera)
* [7891f1f] Update Kimchi objectstore versioning. (Paulo Vital)
* [0d7e872] Issue 784: Display a 'loading gif' when waiting for data (samhenri)
* [3b69ac0] Issue 777: Network tab not being updated after exclude a network (samhenri)
* [d985aca] New i18n strings in PT-BR (samhenri)
* [cbce1ad] Issue 776: Adding filter on Templates screen (samhenri)
* [da9e666] Issue 783: Error message hidden by the modal window (samhenri)
* [7507b22] Issue 773: Snapshot error message showed behind edit window (samhenri)
* [417b042] Issue 772: Template tab and Template edit window - Some problems (samhenri)
* [aa51e17] Issue 770: New template is not shown right after creation (samhenri)
* [c7e02d0] Removed theme-default.min.css reference (samhenri)
* [8777bb1] Update openSUSE version in the README file (Aline Manera)
* [5ea1745] Add ginger-base as Kimchi dependency (Aline Manera)
* [0decec3] Fix disk creation when pool is netfs (Ramon Medeiros)
* [2d525f8] Fix screen freezing when upload file for storage volume (Socorro Stoppler)
* [bae983b] Disable hotplugging buttons of multi-function devices (Jose Ricardo Ziviani)
* [7c05504] Add multi-function field in PCI information (Jose Ricardo Ziviani)
* [55f6bf5] Remove required authentication from / (Aline Manera)
* [faefabf] Expose HTML tabs files in a specific /tabs URI (Aline Manera)
* [b04d80c] Multiple changes in guest maxMemory management (Rodrigo Trujillo)
* [c939ea4] Fix test_async_tasks testcase. (Paulo Vital)
* [87f85f5] Fix range for network of NAT and isolated types. (Paulo Vital)
* [e2a264d] Do not show OVS bridges for now (Lucio Correia)
* [51f9120] Fix ovs commands output handling (Lucio Correia)
* [e8dce5a] Bugfix 786: Undefine button enabled for active storage pool (Socorro Stoppler)
* [a884005] Use "macvtap" instead of "bridged" (Lucio Correia)
* [6fa99d0] Differentiate network lookup between macvtap and bridge (Lucio Correia)
* [9b2cc1f] Restore control/config.py (Aline Manera)
* [d1a9511] Bugfix 785: Create a template from an existing image (Socorro Stoppler)
* [34c70ca] PATCH] Bugfix 782: Fix creating storage pools (Jose Ricardo Ziviani)
* [8414ff8] bug fix: Update UI according to changes on /networks API (Aline Manera)
* [028549d] Change UI to support remotion of 'storagepool' from template backend (Rodrigo Trujillo)
* [47a19d0] Fix tests and backend after remove 'storagepool' from templates (Rodrigo Trujillo)
* [fa71ea2] Add script to upgrade objectstore to support new Template disks schema (Rodrigo Trujillo)
* [0acc086] Remove 'stogarepool' referencies from Templates code backend (Rodrigo Trujillo)
* [be74743] Test: Fix and add test related to disks in templates (Rodrigo Trujillo)
* [4dae7ba] Update VCPU by using libvirt function (Rodrigo Trujillo)
* [24972d2] UI - Implement multiple disks support in Template edit window (Rodrigo Trujillo)
* [0913ace] Enable create guests with multiple disks from different pools (Rodrigo Trujillo)
* [3d5465e] Fix Template backend create/update for multiple disks (Rodrigo Trujillo)
* [5a88a95] PATCH] Bugfix 781: fix adding brigde network (Jose Ricardo Ziviani)
* [2127dcc] Reverting model/config.py deleted on last commit (Ramon Medeiros)
* [14eefb5] Remove Wok code from Kimchi repository (Aline Manera)
* [d5d10f7] Add Ginger Base as Wok submodule (Aline Manera)
* [274902e] Remove Ginger Base from Kimchi repository (Aline Manera)
* [b10d056] Fix issue 766 - Define network interface in libvirt (Lucio Correia)
* [415b743] Removed Administration / Ginger references from WOK ui assets (Andre Teodoro)
* [d98db06] Guests tab (samhenri)
* [c7108df] Templates tab and modal windows bugfixes (samhenri)
* [14f2345] Issue 728 : processor info displays blank for system z (Chandra Shekhar Reddy Potula)
* [24f08bf] Ginger Base screen shot change to reflect new ui (Chandra Shekhar Reddy Potula)
* [52cb478] Host tab functionality split into Dashboard and Updates (Chandra Shekhar Reddy Potula)
* [d8445ce] Issue 728 - Processor Info in s390 architecture (Suresh Babu Angadi)
* [ef8d734] Add checking for UI codes when running make check-local (Ramon Medeiros)
* [6a2e1a9] Fix WOK UI error messages (Ramon Medeiros)
* [b011487] Remove unused messages in Kimchi UI (Ramon Medeiros)
* [2c436f8] Edit Guests modal window (samhenri)
* [94e3a70] Add OVS bridges recognition support (Lucio Correia)
* [f77fcbd] Support Linux Bridge creation (Ramon Medeiros)
* [a4519ba] Add support for serial console (Ramon Medeiros)
* [200fd38] Add python-mock to README.md (Rodrigo Trujillo)
* [748dea2] Fix memory add aligment to 256 in PowerPC (Rodrigo Trujillo)
* [14136e0] Create logical pool from existing VG (Aline Manera)
* [b037f27] Issue #746 : New navigation bar. (Atreyee Mukhopadhyay)
* [ded9d91] Moved disks.py file from kimchi plugin to gingerbase plugin (Pooja Kulkarni)
* [1744cc7] Issue #737: Wok base framework calls resource model's lookup twice (Archana Singh)
* [f28a30e] Gingerbase: adapting unit tests to use WoK /tests/utils.py (Daniel Henrique Barboza)
* [945d06e] Kimchi: updating unit tests to use WoK /test/utils.py (Daniel Henrique Barboza)
* [c19526f] WoK: making /tests/utils.py available to all WoK plug-ins (Daniel Henrique Barboza)
* [de9d132] Issue #755 : Action's states are showing in correctly for Repositories (Atreyee Mukhopadhyay)
* [c807199] Change memory multipliers/divisors by bitwise operators (Rodrigo Trujillo)
* [57dc127] Check and align number of memory slot to 32 in PowerPC (Rodrigo Trujillo)
* [c9dcaf4] Check memory alignment in PowerPC to 256MiB (Rodrigo Trujillo)
* [dc87567] Live migration: unit tests for the new features (Daniel Henrique Barboza)
* [d7b7b78] Live migration: model changes for the new features (Daniel Henrique Barboza)
* [1adc1d7] Live migration: new features changes in docs/API/i18n (Daniel Henrique Barboza)
* [2c4d24e] WoK: control/base.py: _generate_action_handler_base changes (Daniel Henrique Barboza)
* [a9233a4] Add "io"="native" when creating a disk on Kimchi (Ramon Medeiros)
* [f0d8426] Display guest IP address for each network interface (Socorro Stoppler)
* [6aef8a5] shutdown and reboot actions on plain linux vs linux with KVM (chandrureddy)
* [55ac65a] Issue #757 : clean generated css files when 'make clean' executed (chandrureddy)
* [ee95cd5] Live migration backend: non-shared storage VM migration (Daniel Henrique Barboza)
* [fba3699] Allow listStorageVolumes ajax call be synchronized (Rodrigo Trujillo)
* [6992c71] Kimchi: Add m4/pkg.m4 to .gitignore (Aline Manera)
* [26d2b06] Fix test case: Delete directory associated to the storage pool (Aline Manera)
* [586af40] Fix issue #734: Update test case as libvirt issue was fixed (Aline Manera)
* [6633c7f] Fix make check-local for Ginger Base (Aline Manera)
* [b94218e] Update COPYING file for Ginger Base (Aline Manera)
* [e12e920] Update gingerbase po files (Aline Manera)
* [2d6f5b3] Remove Kimchi references from Ginger Base (Aline Manera)
* [7bfdb51] Change Kimchi version. (Paulo Vital)
* [50b104a] Upgrade Kimchi objectstore content. (Paulo Vital)
* [980b362] Add Kimchi version to objectstore entries. (Paulo Vital)
* [fec9776] Add version to objectstore information. (Paulo Vital)
* [753a372] Bug fix: Properly get the new guest name while creating or cloning a guest (Aline Manera)
* [03580e1] Bug fix: Properly define kimchi.trackTask() (Aline Manera)
* [7f14bfa] Bug fix: Use qxl video model for Fedora 22+ guests (Aline Manera)
* [64153da] Templates tab (samhenri)
* [4e85285] Storage tab (samhenri)
* [447b5e6] Network tab (samhenri)
* [ec72c34] Kimchi config and Guests tab (samhenri)
* [f90ddcb] Gingerbase / Hosts tab (samhenri)
* [40f9938] Base template files (samhenri)
* [1cbea68] Updated SCSS files (samhenri)
* [dd93d74] Updated images and distro icons (samhenri)
* [62e2709] Updated widgets (samhenri)
* [8f5f3a1] Deleting unused files (samhenri)
* [7a2fa67] Issue #751: Fix guest memory utilization calculation. (Paulo Vital)
* [e9237b1] Ginger Base: Fix DEBIAN/control.in (Aline Manera)
* [ec0434a] Add support for displaying guest memory utilization (Socorro Stoppler)
* [6a573ad] Fix Issue #743 : gingerbase: fail to create RPM. (chandrureddy)
* [69d20f3] Ginger Base : Plugin path changes (chandrureddy)
* [6a98a21] Ginger Base : Fix Minor Issues with the test cases. (chandrureddy)
* [cfa3d94] Bug fix: Update Kimchi URL while checking ISO stream support (Aline Manera)
* [bff756f] Fix issue 'unable to open database file' when run 'sudo src/wokd --environme.. (chandrureddy)
* [7d12d19] Live migration backend: unit tests (Daniel Henrique Barboza)
* [8d04f19] Live migration backend: control/vms and model/vms changes (Daniel Henrique Barboza)
* [d8c5d73] Live migration backend: API and messages (Daniel Henrique Barboza)
* [1c000e6] Log any exception raised (Aline Manera)
* [b51269d] Github #745: WoK: improve error message when importing plug-ins (Daniel Henrique Barboza)
* [ba21c97] Guest memory utilization. (Paulo Vital)
* [34e437c] Update README to recommend pkgconf installation in Ubuntu (Lucio Correia)
* [296e009] Bug fix: Display storage pool types properly (Aline Manera)
* [94ce07b] Fix make check-local for Kimchi (Aline Manera)
* [794ed7c] Add .gitignore file to gingerbase directory (Aline Manera)
* [1f1679f] Add src/wok/plugins directory to the Wok PEP8 backlist (Aline Manera)
* [94a71b1] Remove Host Resource from Kimchi (Aline Manera)
* [89c9058] Keep /host/partitions on Kimchi (Aline Manera)
* [3c8c947] Move host authorization tests from Kimchi to Ginger Base (Aline Manera)
* [d165ab5] Remove repositories tests from Kimchi (Aline Manera)
* [cc7d7a3] Fix Ginger Base tests (Aline Manera)
* [9e62598] Get the right internal URI to Ginger Base plugin (Aline Manera)
* [d6ee86b] Fix PYTHONPATH to run tests for Ginger Base (Aline Manera)
* [379ccff] V7 Ginger Base : base plugin po files (chandrureddy)
* [cd4c415] V7 Ginger Base : base plugin ui make, images and config (chandrureddy)
* [2256442] V7 Ginger Base : base plugin ui/css files (chandrureddy)
* [c12612f] V7 Ginger Base : base plugin ui/js files (chandrureddy)
* [89fc8af] V7 Ginger Base : base plugin ui/pages files (chandrureddy)
* [074670a] V7 Ginger Base : base plugin ui/pages/help files (chandrureddy)
* [83bb860] V7 Ginger Base : base plugin tests files (chandrureddy)
* [3b10bb7] V7 Ginger Base : base plugin model files (chandrureddy)
* [3cc1ae1] V7 Ginger Base : control files (chandrureddy)
* [c37bfb7] V7 Ginger Base : base plugin m4 files (chandrureddy)
* [8e8adcc] V7 Ginger Base : base plugin build-aix and contrib (chandrureddy)
* [ca7d757] V7 Ginger Base : base plugin docs files (chandrureddy)
* [a9add5c] V7 Add License files to ginger base (chandrureddy)
* [5456005] V7 Ginger Base : base folder files part 3 (chandrureddy)
* [89de0af] V7 Ginger Base : base folder files part 2 (chandrureddy)
* [ae5e96c] V7 Ginger Base : base folder files part 1 (chandrureddy)
* [d8134dd] V7 Ginger Base : Taking off the host tab functionality (chandrureddy)
* [570719e] Fix Kimchi RPM spec files (Paulo Vital)
* [2b2c353] Fix passthrough bugs (Jose Ricardo Ziviani)
* [25d4d73] Copy missing files to build Kimchi RPM. (Paulo Vital)
* [082002a] Fix test cases to proper get the screenshot and debug report file (Aline Manera)
* [97a1e7b] Use right URI while doing internal redirection (Aline Manera)
* [af79c77] Update test case according to commit e9cd4666 (Aline Manera)
* [52d7b3e] Update test case to use the right Template URI while creating a guest (Aline Manera)
* [a2f0193] Make sure to use relative path when setting an icon to a guest (Aline Manera)
* [113b6fc] Force a HTTP redirection when a resource has its ID changed after a PUT requ.. (Aline Manera)
* [92fdbca] Add correct package name for libxslt in Ubuntu (Socorro Stoppler)
* [14ab575] Add correct name for libxslt for Kimchi plugin (Socorro Stoppler)
* [1fa39c3] Use absolute import path (Aline Manera)
* [ef522e2] Move validate_repo_url() and check_url_path() from Wok to Kimchi (Aline Manera)
* [e515438] Provide a meaningful message to WOKUTILS0001E (Aline Manera)
* [f61307f] Remove any WOK error message from Kimchi (Aline Manera)
* [0285dc9] Fix issue #738 - Part 2: Split Wok and Kimchi object stores (Lucio Correia)
* [c96eefd] Fix Kimchi model (Lucio Correia)
* [142e656] bug fix: Allow user to get guest console (noVNC and spice) (Aline Manera)
* [e1aab0d] Update the documentation (Jose Ricardo Ziviani)
* [baa7cce] Implement the package manager monitor frontend (Jose Ricardo Ziviani)
* [35e33d8] Implement the package manager monitor backend (Jose Ricardo Ziviani)
* [b2f7363] Add functions for package manager monitoring (Jose Ricardo Ziviani)
* [2dce65e] Use absolute import path on root.py (Aline Manera)
* [8aa0fe4] Set the right error messages for Kimchi (Aline Manera)
* [d88a55a] Issue #742: Update Readme with missing dependencies. (Paulo Vital)
* [04574d2] Fix import path based on new plugin structure (Aline Manera)
* [cef3e5f] Update Wok and Kimchi systemd process. (Paulo Vital)
* [e9cd466] imageinfo.py: Don't fail template creation if unable to detect OS (Brent Baude)
* [bd45f0a] Fix package name of some dependencies (Paulo Vital)
* [b6e8a6e] Fix issue #738 - Use *lib/kimchi instead of *lib/wok/plugins/kimchi (Lucio Correia)
* [61c3bcb] Issue #740: Solving UI dependencies checking. (Paulo Vital)
* [729bd57] Fix some test cases on test_config.py for Wok and Kimchi (Aline Manera)
* [fd4d711] Adding new-ui src sass dependencies (samhenri)
* [86d19a0] Adding new-ui sass source files (samhenri)
* [9fbb105] Adding python-dev, python-pip and cython & libsass libs to compile SCSS sour.. (samhenri)
* [387fa33] Update README.md with submodules information. (Paulo Vital)
* [65ab63e] Add Ginger as module (Paulo Vital)
* [a28d705] Add Kimchi as module (Paulo Vital)
* [6bbf20d] Fix issue stopping nginx proxy (Rodrigo Trujillo)
* [c5d8cbf] Moving bootstrap-select js and css to separate folders (samhenri)
* [984b2f5] Add %Used back to the right of Name column in Storage tab (Socorro Stoppler)
* [58fa34a] Add license files to Kimchi (Paulo Vital)
* [bf30b09] Use locks to prevent concurrent updates to VMs (Crístian Deives)
* [14659eb] Update back-end license to LGPLv2.1 (Paulo Vital)
* [20fd822] Configure deb package to use systemd service if needed (Jose Ricardo Ziviani)
* [d28c60a] Fix RuntimeWarning in check_i18n.py (Lucio Correia)
* [1affc03] Fix PEP8 issues (Lucio Correia)
* [0ed043b] Fix name mismatch with imported module (Lucio Correia)
* [2a79226] Update the header of all Wok front-end files (Paulo Vital)
* [b6d2242] Update the header of all Wok back-end files (Paulo Vital)
* [93c2762] Update README.md of Wok and Kimchi after slipt. (Paulo Vital)
* [3253819] Update gitignore after move of plugins structure (Paulo Vital)
* [1884b4d] Fix PYTHONPATH to be able to run "make check" (Aline Manera)
* [32562f8] Wok tests (Paulo Vital)
* [8ee22a4] Move KCHASYNC0003E to Wok and update code. (Paulo Vital)
* [52ed2a4] Update build and config files to new plugins path. (Paulo Vital)
* [4821f95] Change relative to absolute imports in Kimchi. (Paulo Vital)
* [9f4b1b2] Move plugins directory to src/wok structure. (Paulo Vital)
* [6e4ccee] Issue #704: page refreshing in Wok when no plugins installed (Atreyee)
* [49922ac] Set systemd KillMode to process (Jose Ricardo Ziviani)
* [66696c1] Make the package update process indendent of Kimchi (Jose Ricardo Ziviani)
* [8aa56e9] Fix template default memory in hosts with few memory (Rodrigo Trujillo)
* [78f99d6] Wok updates (Aline Manera)
* [81b8ee4] New UI updates (samhenri)
* [5389b71] New UI updates (Aline Manera)
* [df099d1] Wok updates (Paulo Vital)
* [f1c774b] Introduce Wok (Webserver Originated from Kimchi) (Lucio Correia)
* [c5c84c8] New UI: Add makefiles for fontello (Lucio Correia)
* [1dbeb3c] New UI (Wen Wang)
* [2577dec] New UI (Yu Xin Huo)
* [3465abd] New UI (Wen Wang)
* [f8a5bb5] Update copyright for src/kimchi/model/hostdev.py (Aline Manera)
* [bf85859] Merge remote-tracking branch 'origin/next' into origin/master (Aline Manera)
* [44df55c] Patched kimchi for psutils 3.0.1 (Stephan Conrad)
* [4aa87c9] Merge remote-tracking branch 'origin/master' into next (Aline Manera)
* [5c1473b] List IPs of VM Ifaces (Christy Perez)
#### [1.5.1] ####
* [19ded0b] Update ChangeLog and Version files for 1.5.1 release (Aline Manera)
* [b183877] Update pt_BR translations (Aline Manera)
* [355e206] Raw volumes validation: update tests (Paulo Vital)
* [6b5727e] Raw volumes validation: back-end and front-end (Paulo Vital)
* [cffec17] Raw volumes validation: update contrib and README (Paulo Vital)
* [584b8d9] Add missing translations (Aline Manera)
* [251d82e] Add volume to storage pool label not formatted properly in some languages (Socorro Stoppler)
* [ee25fb9] Update help pages for ja_JP and pt_BR (Aline Manera)
* [4f76ccf] Isolate strings in guest-edit and template-add (Ramon Medeiros)
* [045a97c] PCI filter not in sync with device listing (Socorro Stoppler)
* [8c1a0c9] Fix confirmation box for delete and clone (Socorro Stoppler)
* [90cc4d8] Handles http redirection when checking url path (Jose Ricardo Ziviani)
* [7d40ff4] Expands all possible variables in a repo url to validate it (Jose Ricardo Ziviani)
* [a727d32] Implement a method to expand variables in a url (Jose Ricardo Ziviani)
* [9fe226b] Add translation for "Users" and "Groups" on guest edit (Ramon Medeiros)
* [4f4c4fc] Update build process to include jquery.base64.js (Aline Manera)
* [e3613ef] Adds the new display_repo_name field in the JSON API (Jose Ricardo Ziviani)
* [c58b1aa] Display the expanded repo name instead of variables (Jose Ricardo Ziviani)
* [598670f] Implement a method to display the repo name expanding variables (Jose Ricardo Ziviani)
* [f3b25c4] Remove colon character from template cpu edit window (Rodrigo Trujillo)
* [20efb22] Add Fedora 22 as remote ISO option. (Paulo Vital)
* [3ec935c] Add Fedora 21 as remote ISO option. (Paulo Vital)
* [03fd734] Update Fedora Live 20 URL as remote ISO (Paulo Vital)
* [13e95ce] Add unity tests for start/shutdown/poweroff response commands (Ramon Medeiros)
* [2f3ffd8] Issues #682/#684/#685: Change some code errors when start, shutdown or power.. (Ramon Medeiros)
* [760e5a8] Issue #667: Unable to rename guest when it is paused (Ramon Medeiros)
* [e32d366] Bug fix: Access guest console when guest name has non-ASCII characters (Aline Manera)
* [8187a97] Update server configuration to expose jquery.base64.js (Aline Manera)
* [cd1c0c7] Import Jquery Base64 code (Aline Manera)
* [a7712c3] Fix bug #450: Allow creating guest with non-ASCII characters in name (Aline Manera)
* [1e537c4] Create helper method to remove metadata node (Aline Manera)
* [123f2cc] Allow setting multiple metadata nodes at once (Aline Manera)
* [5ce57b1] Remove manual <metadata> manupulation (Aline Manera)
* [a3f2525] Disallow storage format changes in UI for templates based on image file (Jose Ricardo Ziviani)
* [e2c6b8c] Avoid show user/password in url browser (Rodrigo Trujillo)
* [453155d] Add missing translations (Aline Manera)
* [d78e0b4] Improve code to get default disk format for VMTemplate (Aline Manera)
* [4ad0c61] Add m4/pkg.m4 to .gitignore (Aline Manera)
* [baa58d1] Fix SLES 11 reg exp to recognize SLE-11-SP4-SAP-DVD-ppc64-GM-DVD1.iso (Ramon Medeiros)
* [93c77d3] Set default VM template memory to 2048 in Power (Daniel Henrique Barboza)
* [c9c80c2] Improve code performance on UI (Ramon Medeiros)
* [5a906b7] PCI Node filtering (Socorro Stoppler)
* [358bb48] Force qcow2 when creating a VM based on backing image (Jose Ricardo Ziviani)
* [20564f8] vmHostDevModel: returning 'product' and 'vendor' in lookup (Daniel Henrique Barboza)
* [947030a] Change getsebool to run silently. (Jose Ricardo Ziviani)
* [583824f] Add option 'silent' in run_command (Jose Ricardo Ziviani)
* [17ad4cd] Fixing compilation problems with translation files (Daniel Henrique Barboza)
* [dc76a2a] Translation updates (Daniel Henrique Barboza)
* [5775d48] Template disk format test fixes (Daniel Henrique Barboza)
* [630d2ae] Remove unecessary call to node_dev.parent() (Ramon Medeiros)
* [1f3ad8b] Update Fedora 20 ISO path to mirrors.kernel.org (Ramon Medeiros)
* [10e0170] Detach group of PCI Devices from host before attaching to guest (Jose Ricardo Ziviani)
* [c5e33e4] New unit tests to check disk creation behavior (Daniel Henrique Barboza)
* [859cff7] Getting default disk format from template.conf (Daniel Henrique Barboza)
* [6195bf8] Mockmodel and test changes for the new API (Daniel Henrique Barboza)
* [73b2917] Adding new API in the UI APIs and docs (Daniel Henrique Barboza)
* [e9cb253] Get available host passthrough devices: model changes (Daniel Henrique Barboza)
* [9e47f9e] Fix displaying numerous error msgs when host is shut down (Socorro Stoppler)
* [44fcf75] Fix minus in manpage (Frederic Bonnard)
* [f0915d4] Help updates for Kimchi (Kersten Richter)
* [fe1d00a] Issue #670: openSUSE: problem while building Kimchi (Ramon Medeiros)
* [55df955] Issue #670: openSUSE: problem while building Kimchi (Ramon Medeiros)
* [5924897] Github 663: software update improvements (Daniel Henrique Barboza)
* [b052da8] Bug fix: Allow creating a pool using an existing path (Aline Manera)
#### [1.5.0] ####
* [38ee948] Update ChangeLog, VERSION and .po files for 1.5 release (Aline Manera)
* [87bc47f] Prevent Kimchi against TLS Logjam attacks (Rodrigo Trujillo)
* [aaa60fa] Issue #653: "make rpm" requests authentication with non-root (Ramon Medeiros)
* [51f4dd5] Bug fix: Use a temp directory under /var to avoid permission errors (Aline Manera)
* [e0db9f2] Bug fix: Detach host device prior to attach to guest (Aline Manera)
* [ebd8f65] Gtihub #660 - Fixing .repo file with no repos handling (Daniel Henrique Barboza)
* [dfb220f] Support xorriso ISOs detection (Ramon Medeiros)
* [fc7ecea] Github #657 - fixing yum check-update parsing (Daniel Henrique Barboza)
* [30ceeea] Bug fix: Allow user creates multiple templates (Aline Manera)
* [c4d040b] Changing repositories and swupdate to use yumparser module (Daniel Henrique Barboza)
* [4bfddd1] Unit tests for the yumparser module (Daniel Henrique Barboza)
* [964d5eb] Adding yumparser module (Daniel Henrique Barboza)
* [0c3a3e8] Fix bug #647: Properly set qxl as video model for Fedora 22 (Aline Manera)
* [392feb9] Update po files for 1.5 release (Aline Manera)
* [b19989b] Change the width of Actions button (Socorro Stoppler)
* [c074f60] Fix tests, adds slot and memory hotplug tests (Rodrigo Trujillo)
* [94826cf] Add maxMemory and numa configuration to guest xml (Rodrigo Trujillo)
* [437e989] Add maxMemory into templates (Rodrigo Trujillo)
* [86f0e13] Feature test to check support to memory devices (Rodrigo Trujillo)
* [d2741fa] pep8 fixes (Daniel Henrique Barboza)
* [7a4bd1b] UI-Template Edit: Enable user to change disk format (Rodrigo Trujillo)
* [ee0c11d] Supress error messages while checking vm metadata (Ramon Medeiros)
* [a1ad10e] Add support for Pause/Resume UI (Socorro Stoppler)
* [9dea5f6] Does not list non-bootable images (Ramon Medeiros)
* [577d85d] Enable storage volume upload on UI (Aline Manera)
* [2d4cb23] Storage volume upload: Let the 'format' parameter be an empty string (Aline Manera)
* [8a83cbe] Storage volume upload: Keep the task tracking to update the UI (Aline Manera)
* [6704c66] Set 'used_by' to [] when creating some volumes (Crístian Deives)
* [c384530] Replace storage volume 'ref_cnt' with 'used_by' (Crístian Deives)
* [34634e9] Update test cases to reflect MAC address update changes (Jose Ricardo Ziviani)
* [a1ac29f] Implement frontend code to edit MAC address of a guest (Jose Ricardo Ziviani)
* [3058559] Implement backend code to edit MAC address of a guest (Jose Ricardo Ziviani)
* [2ccb544] Add vfio driver as default for powerkvm systems. (Jose Ricardo Ziviani)
* [82d4308] Removing the hardcoded version of kimchi and make it depend of PACKAGE_VERSION (Frédéric Bonnard)
* [0ef10a1] UI: Enable virtual NIC hot plug/unplug (Aline Manera)
* [16e2944] Change log message if command to run is not found (Jose Ricardo Ziviani)
* [04d2953] Install service on make install (Ramon Medeiros)
* [1aa919c] Fix SLES version checking in interfaces.py (Rodrigo Trujillo)
* [0902323] Remove storage volume creation from file (Aline Manera)
* [7f33702] Upload storage volume (Aline Manera)
* [1327f49] Update controller to make update accept formdata params (Royce Lv)
* [83e470f] Fix URI format of guest interfaces (Jose Ricardo Ziviani)
* [872e379] Display MAC Address in guest interface tab (Jose Ricardo Ziviani)
* [205a3f4] Avoid certificate validation on tests (Ramon Medeiros)
* [8b5b932] Handle invalid path in 'get_disk_ref_cnt' (Crístian Deives)
* [16c4b9b] fix: Use correct path when setting 'ref_cnt' to a new volume (Crístian Deives)
* [b231913] Bug fix: Build default pools list according to user input (Aline Manera)
* [f1a13ac] Fixed section number within the man page itself (Frederic Bonnard)
* [1cc236f] Add documentation for VM suspend/resume (Crístian Deives)
* [b61931d] Verify storage pool set as Template default prior to server starts up (Aline Manera)
* [e0a6fb5] Verify all networks set as Template defaults prior to server start up (Aline Manera)
* [e1ac636] Make Template defaults configurable (Aline Manera)
* [2f0a442] snapshot: Handle non-existing snapshots in mock lookup (Crístian Deives)
* [9b3fec5] Create option to auto create ISO pool or not on server start up (Aline Manera)
* [bef2836] Add libvirt-daemon-config-network package as Kimchi dependency (Aline Manera)
* [f6e0177] Merge common_spec with defaults value in osinfo.py (Aline Manera)
* [aa36517] Remove useless variable in osinfo.py (Aline Manera)
* [14e0179] Create VMs Asynchronously: UI (Aline Manera)
* [8c85938] Create VMs Asynchronously: Tests (Christy Perez)
* [698797a] Create VMs asynchronously: Backend (Christy Perez)
* [a2c5abc] UI changes for new clone target_uri (Christy Perez)
* [6aef7da] Tests for new clone target_uri (Christy Perez)
* [e7eef4d] Append clone to target_uri for vm clone task (Christy Perez)
* [a65075a] Do not resolve hostname to IP in using remote ISOs (Aline Manera)
* [d6ec766] Improve code to retrieve the number of host CPUs (Jose Ricardo Ziviani)
* [fde36c0] Move kimchi nginx config file to nginx default directory. (Jose Ricardo Ziviani)
* [16a25ce] Add a warn about NM running in the system. (Jose Ricardo Ziviani)
* [69af91d] Implement function to check if NM is running. (Jose Ricardo Ziviani)
* [ec0a453] Host tests (Aline Manera)
* [81dd7ce] issue #548: Hotplug network interfaces (Crístian Deives)
* [aeb667d] Use default network model when attaching a NIC (Crístian Deives)
* [838a30c] Handle missing parameter "network" when attaching a NIC (Crístian Deives)
* [a00b2f7] Parse osinfo.lookup return parameters correctly (Crístian Deives)
* [738165d] Remove nginx conf on suse (Ramon Medeiros)
* [7fbb521] Create empty files on rpm build (Ramon Medeiros)
* [b80e55c] Adds tests to check disk format information in new templates (Rodrigo Trujillo)
* [85e9bac] Set qcow2 as default disk format in new templates (Rodrigo Trujillo)
* [79c6105] Template: Assign 'raw' to disk format if pool is 'logical' or [i]scsi (Rodrigo Trujillo)
* [61ede25] Server tests (Aline Manera)
* [95cd887] Object store tests (Aline Manera)
* [82e5658] Add support for VM suspend and resume (Crístian Viana)
* [94533f9] Update some VM state conditions (Crístian Viana)
* [a6b2ce2] Optimize VM update function (Crístian Viana)
* [f393e07] Move stats-related VM functions to VMModel (Crístian Deives)
* [9175b3e] Update stats when looking up one single VM (Crístian Deives)
* [0cc163d] Add %Used in the header for storage (Socorro Stoppler)
* [2ce0387] Security: Prevent Bar Mitzvah attacks by disabling RC4 (Aline Manera)
* [1c716c6] issue #461: Add 'metalink' support for YUM repositories (Crístian Viana)
* [65e10c2] Use more generic message in repo mirror list error (Crístian Viana)
* [0190298] Handle empty variables when updating YUM repository (Crístian Viana)
* [671fc4c] Update host number of cpus and total physical memory (Jose Ricardo Ziviani)
* [61ffb22] Making urls relative (Frederic Bonnard)
* [9185c35] test/test_model: Power architecture fixes (Daniel Henrique Barboza)
* [6017105] Fix Network create name checking in backend (slashes and quotes) (Rodrigo Trujillo)
* [0cb27b1] Move slash checking in storagepool name from UI to backend (Rodrigo Trujillo)
* [acca0c3] Prohibits slashes '/' in VM name (Rodrigo Trujillo)
* [8c4386c] issue #628: Set ref_cnt=1 on cloned disks (Crístian Viana)
* [53779bd] Issue #623: Fix mismatch in host device details query (Royce Lv)
* [a0b6ca0] Fix a ZeroDivisionError when starting kimchi service in Qemu. (Jose Ricardo Ziviani)
#### [1.4.1] ####
* [9123208] Update ChangeLog and VERSION file for 1.4.1 release (Aline Manera)
* [5044020] Update pt_BR translations for Kimchi 1.4.1 (Aline Manera)
* [4781452] Update .po files for translation (Aline Manera)
* [44f0788] Kimchi tests: Power system fixes - removing hardcoded values (Daniel Henrique Barboza)
* [6714909] tests/test_osinfo.py: fixes for Power architecture (Daniel Henrique Barboza)
* [47d66eb] Specify user when changing VM disks permission (Crístian Viana)
* [8f5c248] issue #518: Simplify template URL verification (Crístian Viana)
* [923bf2d] Update ISO file's ACL before checking its permission (Crístian Viana)
* [d501a6e] issue #564: Parse logical volumes to find out their actual formats (Crístian Viana)
* [8eb00ed] issue #565: Allow a template's ISO to be a block device (Crístian Viana)
* [f1a009b] Fix test_model.py to reset Singleton classes when initializing the tests (Aline Manera)
* [0fe437f] Bug fix: Consider server is being started up on servermethod function (Aline Manera)
* [fe65e09] Use the right firewall-cmd command to open Kimchi ports (Aline Manera)
* [91e18b9] Fix issue #597: Get the right arch when using libvirt Test driver (Aline Manera)
* [2cf3920] Fix issue #617: Base URL may be an empty string when updating YUM repo (Aline Manera)
* [a6406e4] Fix issue #621: Catch libvirt exception when network does not have bridge name (Aline Manera)
* [99dc469] Fix issue #620: Allow use iSCSI/SCSI volume on Template (Aline Manera)
* [650655a] Add support to recognize RHEL-LE distro and version (Jose Ricardo Ziviani)
* [bb9ccf7] Deregister peer information when kimchid exit (Royce Lv)
* [27210d7] Update doc for federation (Royce Lv)
* [70010ea] Assign HTML labels to their corresponding elements (Crístian Viana)
* [d5e7800] Fix wrong usage of feature tests (Royce Lv)
* [d2c3ad2] Avoid using server dependent feature tests when server not running (Royce Lv)
* [30cf319] Remove slash "/" filter in template name when create VM (Rodrigo Trujillo)
* [13de741] Remove unsupported Fedora ISO link (Royce Lv)
* [c1553bb] Issue #587: Man page submission for kimchid (Frederic Bonnard)
* [784c0bd] RHEL7: Guide user to install spice-html5 (Aline Manera)
* [9a73497] Template tests (Aline Manera)
* [7691b5a] bug fix: Allow adding a iSCSI/SCSI volume from a non-ASCII pool to a template (Aline Manera)
* [77fe74e] Fix shallow scan test: wait until storage volume creation finished (Royce Lv)
* [50b2a60] Change from using /usr/bin/python to /usr/bin/env python2 to improve portabi.. (Alan Jenkins)
* [4143018] issue #595: Return correct memory value when VM is shutoff (Crístian Viana)
* [37d5af1] Add function to convert data sizes (Crístian Viana)
* [a338573] issue #545: Handle simultaneous authentication methods when updating VM perm.. (Crístian Viana)
* [b5d1a03] Bug fix: Properly raise authenticate error when login fails (Aline Manera)
* [0240f0c] Bug fix: Properly reload grid content (Aline Manera)
* [2c6b1dc] Set a common message to KCHGRD6002M (Aline Manera)
* [a17379a] Fix grammar for selected messages (Christy Perez)
* [1a43119] Stop collecting background stats (Christy Perez)
* [b529c0c] issue #512: Attach the function "showMessage" to the UI grid class (Crístian Viana)
* [7fd7aed] Add Arch Linux entry to isoinfo. (Alan Jenkins)
* [2aacf14] Add modern entry for Arch Linux. (Alan Jenkins)
* [3cdb137] Set allocation=capacity when creating images in logical pools (Christy Perez)
* [bef7afd] Disable SSL on nginx (Tulio Magno Quites Machado Filho)
* [16d7e48] Fix issue #589: Add listener to remove Kimchi leftovers (Aline Manera)
* [2f6a5d2] Fix issue #591: Get the right arch for MockModel (Aline Manera)
* [0c41e50] Bugfix: Kimchi: Better to list storage pool paths (Wen Wang)
* [eaf2349] Issue #573: Kimchi on ppc64el (Ramon Medeiros)
* [a8a057e] Transient StoragePool POST request handling (Christy Perez)
* [7714f22] Transient Network POST request handling (Christy Perez)
* [97a47d2] Transient VM POST request handling (Christy Perez)
* [464f5ee] Handle requests differently for transient objects (Christy Perez)
* [640b257] On Ubuntu, current libvirt library requires <os><type arch= (Thierry Fauck)
* [a9232d8] Revert "Remove workaround when deleting a VM due to tests" (Aline Manera)
* [c434e4a] tests/iso_gen.py: adding fake bootable PowerPC ISO (Daniel Henrique Barboza)
* [f56cee2] Build kimchi package in Fedora and SuSE as noarch (Ramon Medeiros)
* [902d0b3] Storage volume tests (Aline Manera)
* [445a070] Update rollback_wrapper function to handle nested API (Aline Manera)
* [55cfce3] Storage volumes: Update docs/API.md (Aline Manera)
* [a5ffb4d] Bug fix: Allow clonning a volume from a pool with non-ASCII characters (Aline Manera)
* [e828458] Bug fix: Use VIR_STORAGE_VOL_RESIZE_SHRINK flag when decreasing the volume s.. (Aline Manera)
* [50a334f] Remove policycoreutils-python as Kimchi dependency (Aline Manera)
* [26b70ca] Update copyright according to last changes (Aline Manera)
* [c81574c] Storage pool tests (Aline Manera)
* [4b65688] MockModel: Fix devices filter (Aline Manera)
* [107cf42] MockModel: Extend logical storage pool (Aline Manera)
* [dea4295] MockModel: Add mock code to list partitions to /host/partitions API (Aline Manera)
* [23a4ab4] MockModel: Override storage pool validation (Aline Manera)
* [8dee69a] Storage pool: Fix encoding/decoding while dealing with storage pools (Aline Manera)
* [1c5296a] Storage Pools: Update docs/API.md (Aline Manera)
* [8e35911] Rename test_storagepool.py to test_storagepoolxml.py (Aline Manera)
* [aca40a1] Bugfix: Template disk allocation changed back to default(10G) (Wen Wang)
* [dfc664a] Allow -v to be passed through in run_tests.sh (Julien Goodwin)
* [a1c4754] issue #526: Support updating name for VMs with snapshots (Crístian Viana)
* [e8dd163] Solve the snapshot revert problem, relate to issue #526 (Zongmei Gou)
* [743c9d9] Fix file handler leak in netinfo.py (Royce Lv)
* [3e25bdf] Work around eventfd leak using multiprocessing (Royce Lv)
* [e0371d4] Fix leak in check_url_path (Royce Lv)
* [10a58be] close fh after iso scanning (Royce Lv)
* [5583e6f] Close json schema file after loading (Royce Lv)
* [df87f99] Fix file handler leak for uptime file (Royce Lv)
* [36fa2e1] Fix md5 file handler leak (Royce Lv)
* [0b1c4b1] Run Model tests prior to MockModel tests (Aline Manera)
* [7c2c32c] Update copyright date (Aline Manera)
* [fe38d23] Remove workaround when deleting a VM due to tests (Crístian Viana)
* [7e33df1] Add build-aux/compile to gitignore. (Julien Goodwin)
* [6614a72] Update config test to expect robots.txt. (Julien Goodwin)
* [fbd2536] Add a robots.txt file. (Julien Goodwin)
* [5ab71df] Update Debian dependecy list. (Paulo Vital)
* [e494883] Issue #563: Delete network button works even disabled (Zongmei Gou)
* [fcc38fd] Issue #456: Firewall ports are not open after firewall restart v4 (Ramon Medeiros)
* [5dc11fb] Do not reuse names when cloning the same VM more than once at the same time (Crístian Viana)
* [f9bd067] Add vm names to delete/deactivate network error message (Rodrigo Trujillo)
* [e153572] Reorganize the network tests (Aline Manera)
* [5d23de2] Move rollback_wrapper function to a common place (Aline Manera)
* [cc35328] Network API: Update docs/API.md (Aline Manera)
* [40fe791] Bug fix: Allow deleting VLAN tagging bridged network (Aline Manera)
* [0222c8b] Add message to KCHNET0010E code (Aline Manera)
* [7e990e0] Improve PUT param checking (Royce Lv)
* [394f32a] Po: Minor changes to Chinese translation (Wen Wang)
* [ce016f2] Add a disk to the VM when testing snapshot (Crístian Viana)
* [cfba104] issue #544: Refactor storage volume download (Crístian Viana)
* [6801022] Use 'bytes' as volume capacity and allocation unit (Crístian Viana)
* [3dd94b6] Change "_get_storagevolume" to static (Crístian Viana)
* [75fc427] Remove directories under /var/lib/kimchi if empty on ubuntu (Ramon Medeiros)
* [67f963b] Don't let empty directories left on suse (Ramon Medeiros)
* [e651a4f] Remove empty directories after rpm -e kimchi on fedora (Ramon Medeiros)
* [56a6838] issue #543: Generate unique names when creating volumes without name (Crístian Viana)
* [cf9842e] bugfix: Fix regexp in "kimchi.utils.get_next_clone_name" (Crístian Viana)
#### [1.4.0] ####
* [d19c5d9] Update VERSION, ChangeLog and po files for 1.4 release (Aline Manera)
* [33362ff] Po support: translation for Chinese (Wen Wang)
* [318efd5] Update Portuguese translations (Aline Manera)
* [02c82dd] Update po files (Aline Manera)
* [6afd60a] Bugfix#527 Reverting a snapshot doesn't change initial state of "Edit Guest" (Wen Wang)
* [d53ae80] issue #553: Use required parameter in "snapshotLookupByName" (Crístian Viana)
* [2f86e63] Bug fix #463: Allow add networks with non-ASCII characters to template and g.. (Aline Manera)
* [009fc38] Issue#536: raise proper error message when disk os info absent (Royce Lv)
* [a378799] Revert "Bug #482 Fix: Interfaces stacked in template edit" (Aline Manera)
* [ee4acc5] Bug #482 Fix: Interfaces stacked in template edit (Yu Xin Huo)
* [1c18dc2] Bug 487 Fix: Dropdown & Filter not aligned(mobile) (Yu Xin Huo)
* [70f178c] Bug fix #529: Kill all Kimchi processes when stopping kimchid service (Aline Manera)
* [f61cccd] issue #474: Add default value for ldap_admin_id (Royce Lv)
* [d0aad8f] Bugfix#549 VM button icons unaligned (Wen Wang)
* [f1e6004] issue #504: Add details on how to install test dependencies (Crístian Viana)
* [c66bfdb] issue #438: Display nicer error message when starting network (Crístian Viana)
* [514465b] Bug fix #530: Update distros.d/ files (Aline Manera)
* [f908c7c] Bug #443: Do not crash Kimchi when federation is enabled and openslp is not .. (Aline Manera)
* [091936e] Bugfix #479: Allow non-admin users get devices passthrough information (Aline Manera)
* [1e308f3] Bug #495 Fix: Remove error popup when non-admin login (Yu Xin Huo)
* [f22bbca] Bugfix #477 Fix snapshot time didn't align issue (Wen Wang)
* [4f8f229] Bug #546 Fix: Network button state issue (Yu Xin Huo)
* [b2ae21e] issue #498: Fix typos on Kimchi messages (Aline Manera)
* [b104ed7] issue #491: Check model parameter exists when generating the interface XML (Aline Manera)
* [6e3a3f4] issue #515: Add check_i18n.py to EXTRA_DIST (Royce Lv)
* [b88672f] List as many pools' info as possible (Christy Perez)
* [18cbe25] issue #532: Fix ldap admin filtering (Royce Lv)
* [e03f9f0] issue #475: Properly set cert and key variables when starting nginx proxy (Aline Manera)
* [3ae2454] UI: Use capabilities cached values on 'Host PCI Device' tab (Aline Manera)
* [bf2a92c] issue #492: Expressly set autoport to yes in vm graphics. (Alan Jenkins)
* [40142e9] Bugfix: fix testcase for repository update (Royce Lv)
* [3ec90a0] Bugfix: Disable actions not supported by non-persistent VMs (Wen Wang)
* [2e8b9f2] Change pattern match in pep8 filtering (Royce Lv)
* [4844a1a] Revert "snapshot: Clone snapshots when cloning a VM" (Crístian Viana)
* [f3dffe4] Only allow VM snapshots to be taken on 'qcow2' disks (Crístian Viana)
* [8c3c530] Update ChangeLog, VERSION and po files (Aline Manera)
* [322bd6e] RHEL7: Guide user to subscribe to "RHEL Server Optional" channel (Aline Manera)
#### [1.4.0-rc1] ####
* [61f6ba3] Update ChangeLog for 1.4.0-rc1 (Aline Manera)
* [b76db0e] Change guest edit permission logic (Royce Lv)
* [f9e2d28] UI: support ldap vm permission tag (Royce Lv)
* [fa07b67] vmtemplate: allow allocation = 0 for type 'raw' (Daniel Henrique Barboza)
* [34ba2f1] Mockmodel test for cpuinfo (Christy Perez)
* [b145158] Parts to allow Kimchi to configure the cpu topology. (Christy Perez)
* [64601ca] UI: CPU Topology (Yu Xin Huo)
* [ab308ec] UI: Guest Snapshot (Yu Xin Huo)
* [4c4e582] Pass through libvirt error if storage create fails (Christy Perez)
* [c786647] Remove README statement that advises user does not use Kimchi in production (Aline Manera)
* [984e5b9] Return empty dict when VM doesn't have current snasphot (Crístian Viana)
* [997b6c3] Update test model for authentication and authorization (Royce Lv)
* [e1a7e1d] change vm permission tag (Royce Lv)
* [1230d98] Move validation to authorizaiton (Royce Lv)
* [5846a81] Split users and groups for permission query (Royce Lv)
* [b856c0d] Bugfix: UI Disable button "Create" when adding a VM (Wen Wang)
* [10ef1d9] Edit Template redefined (Wen Wang)
* [03a6fb8] bugfix: Use correct error code when current snapshot does not exist (Crístian Viana)
* [4ff0c5f] Return empty dict when request body is empty (Crístian Viana)
* [35a9442] Use dedicate function to remove unused namespace (Royce Lv)
* [f7dbd47] Don't fail if no translation can be found (Cédric Bosdonnat)
* [5039154] Fix test cases for authentication (Royce Lv)
* [db15509] Add LDAP authentication (Royce Lv)
* [ed07977] Split PAM and LDAP authentication (Royce Lv)
* [1393eb2] Add configuration of LDAP (Royce Lv)
* [502e95e] Improve french translation (Cédric Bosdonnat)
* [fb49863] MockModel refactor: Create MockModel based on Model("test:///default") (Aline Manera)
* [c087f65] snapshot: Clone snapshots when cloning a VM (Crístian Viana)
* [4fb6786] snapshot: Delete snapshots when deleting a VM (Crístian Viana)
* [049720c] snapshot: Add model tests (Crístian Viana)
* [f3d5b01] snapshot: Revert a domain to a snapshot (Crístian Viana)
* [c857e25] snapshot: Lookup current snapshot on a domain (Crístian Viana)
* [5900d68] snapshot: Delete a domain snapshot (Crístian Viana)
* [a724e69] snapshot: List domain snapshots (Crístian Viana)
* [8f010d8] snapshot: Lookup a domain snapshot (Crístian Viana)
* [d1cf5c8] snapshot: Create domain snapshots (Crístian Viana)
* [96f19e4] Update clone test (Crístian Viana)
* [4b22966] bug fix: Update storage volume ref_cnt when VM is deleted (Aline Manera)
* [411fbd4] Pass libvirt connection as CapabilitiesModel parameter (Aline Manera)
* [0f38c74] Ensure the guest volume exists to remove it (Aline Manera)
* [e1f2d60] Check currentMemory exists prior to remote its XML node (Aline Manera)
* [c5cb151] Use objectify to Remove metadata namespace (Aline Manera)
* [7b84638] Re-raise the original exception when creating a new Template (Aline Manera)
* [bde438e] Issue #473: Update selectMenu method to set a default value. (Paulo Vital)
* [9983fe9] Prevent disks from being added twice (Christy Perez)
* [eb6fd62] Delete ui/js/modernizr.custom.2.6.2.min.js (Aline Manera)
* [ea2b1b0] Delete ui/libs/modernizr.custom.76777.js (Aline Manera)
* [6f88b09] UI: Clone Guest(static message) (Yu Xin Huo)
* [15a965c] Add tests and mockmodel for the cloning feature (Crístian Viana)
* [37635c1] Clone virtual machine (Crístian Viana)
* [0a5714b] Clone storage volume (Crístian Viana)
* [8ba3537] Clean up test pool directories (Crístian Viana)
* [659096d] Add model function to wait for task (Crístian Viana)
* [00b7e6f] storagepool-add: showing Fibre Channel devices (Daniel Henrique Barboza)
* [8b2865c] Fix content of the SW update list after disable a repository. (Paulo Vital)
* [22d18e2] Add PPC console configuration to guest XML (Rodrigo Trujillo)
* [42d364c] Move featuretests.py to /model (Aline Manera)
* [e4794c0] Set domain type in FeatureTests according libvirt URI (Aline Manera)
* [ff90fbf] Update FeatureTests to use the same libvirt connection used by Model (Aline Manera)
* [7fd8c95] netinfo.py: adding 'link_detected' to get_interface_info (Daniel Henrique Barboza)
* [736f24d] Create common function to generate interface guest XML (Aline Manera)
* [0efc87e] Use lxml to generate graphics XML and update VMTemplate to use it (Aline Manera)
* [e4e95cf] bug fix: Properly generate guest disks on VMTemplate (Aline Manera)
* [c779bfb] Guest disk hot plug UI (Wen Wang)
* [6144431] Render different types of data in generate_action_handler (Crístian Viana)
* [7e78a07] Allow updating XML attribute in "xml_item_update" (Crístian Viana)
* [99e8034] Make function "randomMAC" public (Crístian Viana)
* [749abbf] Remove VMTemplate._get_scsi_disks_xml() and VMTemplate._get_iscsi_disks_xml() (Aline Manera)
* [cdd146a] Change VMTemplate._get_disks_xml() to handle all type of disks (Aline Manera)
* [c07a031] Change VMTemplate._get_disks_xml() to use the common get_disk_xml() (Aline Manera)
* [67e89a9] Change VMTemplate._get_iscsi_disks_xml() to use the common get_disk_xml() (Aline Manera)
* [08c1154] Change VMTemplate._get_scsi_disks_xml() to use the common get_disk_xml() (Aline Manera)
* [44fdf7d] Set guest disk cache to none to support live migration (Aline Manera)
* [aa09dbe] Make disk type an optional parameter on get_disk_xml() (Aline Manera)
* [d29a9c5] ISSUE#466: Filter valid format only on volume type of 'file' (Royce Lv)
* [07aef06] Enhancement: PCI Device information enhancement (Wen Wang)
* [f7dfaae] Unit tests for the new disk image format (Daniel Henrique Barboza)
* [e0a6ccd] Choose disk image format in vm template - backend (Daniel Henrique Barboza)
* [72865eb] Create xmlutils/qemucmdline.py to generate <qemu:commandline> XML (Aline Manera)
* [686c314] Update vmtemplate.py to use get_disk_xml() while generating CDROM XML (Aline Manera)
* [b94678e] Check QEMU stream DNS capability when attaching new disk to guest (Aline Manera)
* [cded6a6] Get disk type according to file path on get_disk_xml() (Aline Manera)
* [f2582f3] Remove ignore_src parameter from get_disk_xml() (Aline Manera)
* [79930fd] Update get_disk_xml() to get the device same according to bus and index values (Aline Manera)
* [8e89056] Remove 'bus' paramater from /vms/<name>/storages documentation (Aline Manera)
* [f8b771f] Move vmdisks.py functions to xmlutils/disk.py (Aline Manera)
* [291a778] Move _get_storage_xml() to xmlutils/disk.py (Aline Manera)
* [be83d06] Number of CPUs in Host's Basic Information. (Paulo Vital)
* [043db33] Remove libxml2-python as Kimchi dependency (Aline Manera)
* [6a7704f] Use lxml.etree on gen-index.py script instead of libxml2 (Aline Manera)
* [bd6d163] Use lxml.etree on xmlutils/utils.py instead of xml.etree and libxml2 (Aline Manera)
* [d712d75] Remove pyc files on make clean (Christy Perez)
* [c44aa09] AsyncTask: Improve continuous status feedback (Zhou Zheng Sheng)
* [f33afdc] Translations for new cpu_info messages (Christy Perez)
* [b6876d6] cpu_info tests for model and mockmodel (Christy Perez)
* [c5dbd1f] Backend support for templates with sockets, cores, and threads (Christy Perez)
* [1c8c539] ConfigTests: Fix novnc paths (Zhou Zheng Sheng)
* [2000911] ModelTests: Improve leftover cleaning (Zhou Zheng Sheng)
* [f28d16e] VMsModel: Make _update_guests_stats() robust against race condition (Zhou Zheng Sheng)