-
Notifications
You must be signed in to change notification settings - Fork 41
/
ChangeLog
1129 lines (1121 loc) · 122 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.2.0] ####
* [02ca226] Updating translation files (Daniel Henrique Barboza)
* [46a9be2] Remomving break-lines from i18n.py (Daniel Henrique Barboza)
* [079d825] Issue #320: Redesign 'Sensor Monitor' UI (Samuel Guimarães)
* [63b5258] Issue #366 : Filtering on partitions needs to be improved to match exact dev.. (Pooja Kulkarni)
* [b7ac4fd] Issue #360: Refreshing volume groups keeps on loading (Samuel Guimarães)
* [54a215c] Fixed Issue #363 - Issue while updating MTU in network interface file (Rajat Gupta)
* [da19756] Fixed Issue #362 - NW operation failed for cfginterface with "BOOTPROTO":"au.. (Rajat Gupta)
* [4a0548c] Issue #364 : No need to show 'tmpfs' type in filesystem listing (Pooja Kulkarni)
* [8d10aae] test_interfaces.py: adding tests to VF = 0 scenario (Daniel Henrique Barboza)
* [d705dda] SR-IOV for ConnectX-4: 0 (zero) VF setup changes (Daniel Henrique Barboza)
* [d911bd0] Disable CX4 SR-IOV setup when selecting a VF (Daniel Henrique Barboza)
* [4661157] Adding nic_type to interfaces: UI changes (Daniel Henrique Barboza)
* [4c2633d] Adding nic_type to interfaces: control and model changes (Daniel Henrique Barboza)
* [76ff07c] Adding nic_type to interfaces: doc changes (Daniel Henrique Barboza)
* [8106721] Issue #355 : Fix for partition listing API taking long time (Pooja Kulkarni)
* [2e2e2c0] Issue #361 : Delete operation on swap file does not remove the file (Pooja Kulkarni)
* [21860c6] Include VG name in partitions details (Pooja Kulkarni)
* [36c645f] model/services.py: fixing cgroup parsing (Daniel Henrique Barboza)
* [942c147] model/services.py: adding docstrings and pylint fixes (Daniel Henrique Barboza)
* [6e5c7ba] Fix sensor unit verification (Ramon Medeiros)
* [2a67946] Issue #349 : Replace converters to use locale converters defined in wok (Pooja Kulkarni)
* [c769b5a] Issue #357 - Listing of PVs shows size in different units (Pooja Kulkarni)
* [00dd2d8] model/sanadapters.py: adding docstring and pylint fixes (Daniel Henrique Barboza)
* [5e6b353] Add 'port_type' to sanadapters API: UI changes (Daniel Henrique Barboza)
* [c3f9962] Add 'port_type' to sanadapters API: model changes (Daniel Henrique Barboza)
* [a10909a] Add 'port_type' to sanadapters API: docs/API.md changes (Daniel Henrique Barboza)
* [efa0d6e] Substitute quotes by apostrophe in configuration file (Rodrigo Trujillo)
* [6929a57] ui/pages/Makefile.am: adding wildcard to add .tmpl files (Daniel Henrique Barboza)
* [13db946] Issue# 342 : Sysmodules HYGIENE Unload of a kernel module is not persistent .. (Atreyee Mukhopadhyay)
* [cbf6620] Issue #125: Delete volumegroup fails with 500 (Harshal Patil)
* [c022260] Issue #334: Ginger spec file is restarting Wokd service twice (Ramon Medeiros)
* [2fbae22] Show error message when update_flash fails. (Paulo Vital)
* [160610e] Fix UI notification of Firmware Update. (Paulo Vital)
* [6fcfd84] Fix overwrite-perm processing in Firmware Update (Paulo Vital)
* [49798b5] model/interfaces.py: mlx5_core driver SR-IOV delay workaround (Daniel Henrique Barboza)
* [57fb193] SR-IOV fixes after hardware testing: unit test changes (Daniel Henrique Barboza)
* [d764c9a] SR-IOV fixes after hardware testing - nw_interfaces_utils.py (Daniel Henrique Barboza)
* [864c3a5] SR-IOV fixes after hardware testing - model/interfaces.py (Daniel Henrique Barboza)
* [45d74bc] Issue #129 : Reduce Volume Group fails with 500 status code. (Harshal Patil)
* [0fff82d] Edit interface mac address: UI changes (Daniel Henrique Barboza)
* [a45efa7] Edit interface mac address: test changes (Daniel Henrique Barboza)
* [0fa01af] Edit interface mac address: doc and model changes (Daniel Henrique Barboza)
* [0d88b97] Issue #128 : PVs part of existing VGs should not be allowed to be extended i.. (Harshal Patil)
* [27ad7d0] Externalised strings and updated .pot and *.po files (Pooja Kulkarni)
* [db2ee78] fix for issue #340 (Suresh Babu Angadi)
* [3c9c241] Issue #325 : vgdisplay api failed on ubuntu (Harshal Patil)
* [e28daf4] Issue #325 : Test cases for lvm version code (Harshal Patil)
* [02ff4eb] Ginger issue #336, raise ValueError if type is not bonding or vlan (Jayavardhan Katta)
* [72a033a] Changing is_feature_enabled of OVSBridgesModel (Daniel Henrique Barboza)
* [f879f46] SR-IOV enablement for mellanox connectx4 card (peterpennings)
* [202571c] Update sensors tests (Ramon Medeiros)
* [264ebd3] Issue #320: Redesign "Sensor Monitor" UI (Ramon Medeiros)
* [541b771] Issue #304. Check for carrier value of each interface after activation (Megha Smriti)
* [b6f941c] Keeping 'Add User' panel in sync with users listing (Suresh Babu Angadi)
* [7865c13] fix for issue #338 (Suresh Babu Angadi)
* [310abf9] Use past verbs and other log message improvements (Lucio Correia)
* [ad32f97] Translate user request log messages (Lucio Correia)
* [5543aab] Issue # 335 : Settings page not opening for 'bonding' (Atreyee Mukhopadhyay)
* [7328bfb] Removed the libvirt from contrib, docs, spec and UI help pages (Jayavardhan Katta)
* [9430c8c] Removed the dependency of libvirt from network.py (Jayavardhan Katta)
* [12169a1] Fix provided to assign variables based on distribution (Jayavardhan Katta)
* [337bf95] Removed the dependency of libvirt from interfaces.py and removed correspondi.. (Jayavardhan Katta)
* [bfe7d54] Make get_fc_path_elements arch-independent (Lucio Correia)
* [a225e35] Fixed issue #333 : Network Configuration BootGrid listing is not showing pro.. (Rajat Gupta)
* [73f3354] System Services front-end (Samuel Guimarães)
* [95b02a2] Multi-Culture support : Format storage related fields as per user locale (Pooja Kulkarni)
* [6bca555] Multi-Culture support : Format datetime in configuration backup as per user .. (Pooja Kulkarni)
* [c076230] ][PATCH v2 1/3] Multi-Culture support : Format fields as per locale (Pooja Kulkarni)
* [01a2645] Adding missing copyright in js and css files (Daniel Henrique Barboza)
* [e41cf6b] OVS Bridges front-end ([email protected])
* [7cda76b] Add unit for each sensor and add 0 when value is N/A (Ramon Medeiros)
* [aaf6af1] Interfaces model: adding 'rdma_enabled' attribute (Daniel Henrique Barboza)
* [ef30828] Remove any cherrypy configuration from gingerbase.conf file (Aline Manera)
* [93dfd35] Remove cherrypy root configuration from gingerbase.conf file (Aline Manera)
* [73e9822] Migration to Gingerbase netinfo: deleting model/netinfo.py (Daniel Henrique Barboza)
* [2ccc41b] Migration to Gingerbase netinfo: test changes (Daniel Henrique Barboza)
* [393a75b] Migration to Gingerbase netinfo: in-code netinfo parameters (Daniel Henrique Barboza)
* [62e16b1] Migration to Gingerbase netinfo: changing imports (Daniel Henrique Barboza)
* [b84fa3d] Add wok-robot header to /sensors requests (Aline Manera)
* [9f6010f] Issue #317: removing 's390x' references from po files (Daniel Henrique Barboza)
* [54efb97] Issue #317: Ginger should NOT depend on Gingers390x (Atreyee Mukhopadhyay)
* [18420a0] Issue #317: Ginger should NOT depend on Gingers390x (Atreyee Mukhopadhyay)
* [53cc370] Issue #317: Ginger should NOT depend on Gingers390x (Atreyee Mukhopadhyay)
* [d27149c] Issue #317: Ginger should NOT depend on Gingers390x. (Atreyee Mukhopadhyay)
* [a4eb2b6] Fix paths and keep symbolic link when updating (Ramon Medeiros)
* [5c9e3f3] RDMA support for ConnectX-4 cards - UI (peterpennings)
* [aa7f346] Fix some PEP8 issues (Rodrigo Trujillo)
* [c5eee8e] SR-IOV for ConnectX-4: adding script config calls in task (Daniel Henrique Barboza)
* [278ebc5] tests/test_interfaces.py: script manipulation use cases (Daniel Henrique Barboza)
* [4977446] SR-IOV for ConnectX-4: script managing functions (Daniel Henrique Barboza)
* [cbc9247] Support non-ascii characters in nw_interfaces_utils by handling UTF-8 support. (Archana Singh)
* [0434075] Support non-ascii characters in nw_cfginterfaces_utils by handling UTF-8 sup.. (Archana Singh)
* [7bca153] Support non-ascii characters in network by handling UTF-8 support. (Archana Singh)
* [d33f6e3] Support non-ascii characters in netinfo by handling UTF-8 support. (Archana Singh)
* [6f03c8b] Support non-ascii characters in interfaces by handling UTF-8 support. (Archana Singh)
* [a7d9b57] Support non-ascii characters in cfginterfaces by handling UTF-8 support. (Archana Singh)
* [e093ca5] Issue #329 : Error message not getting displayed (Harshal Patil)
* [f24f623] tests/test_interfaces.py: adapting to the API rename (Daniel Henrique Barboza)
* [f7d9a59] SR-IOV for ConnectX-4: API change (Daniel Henrique Barboza)
* [d7827f8] tests/test_interfaces: asynchronous backend changes (Daniel Henrique Barboza)
* [9c561da] SR-IOV for ConnectX-4: asynchronous backend (Daniel Henrique Barboza)
* [122d20f] Issue # 328 : Gateway field in Global Network configuration taking invalid v.. (Atreyee Mukhopadhyay)
* [00a9f1a] Issue #323 Move gridfield titles, button labels and other messages to i18n (Pooja Kulkarni)
* [746a862] Issue #324 : In Storage section: Tape devices and SAN adapters are misaligned (Nagamani Chennuboina)
* [1f5e151] Fixing ui/css/ginger.css license mismatch after compiling it (Daniel Henrique Barboza)
* [e7254fb] SR-IOV for ConnectX-4 pre-check: test changes (Daniel Henrique Barboza)
* [f69736c] SR-IOV for ConnectX-4 pre-check: model changes (Daniel Henrique Barboza)
* [bc17e6f] tests/test_backup.py: inserting task.wait() call (Daniel Henrique Barboza)
* [d9a4ea8] Issue #326 : In Network tab, Mispelled message about DNS server change. (Nagamani Chennuboina)
* [728bfef] Issue #321 : Config backup timeout fix (Harshal Patil)
* [1220ea1] fix for issue #322 (Suresh Babu Angadi)
* [a22a666] UI changes to accomodate user profile change (Harshal Patil)
* [16b152b] Modified unit tests with mock module (Suresh Babu Angadi)
* [ebc3d05] Multiple fixes (Suresh Babu Angadi)
* [efc0f6b] test/test_cfginterfaces.py: new unit tests (Daniel Henrique Barboza)
* [9232806] model/nw_cfginterfaces_utils.py: create a new config file (Daniel Henrique Barboza)
* [4579605] Only remove method from interfaces if index exists (Ramon Medeiros)
* [913ee05] Removed Typeahead.js CSS from Ginger (Samuel Guimarães)
* [5be9712] Fixed Issue #312 Preserve the latest backups is not selectable. (Rajat Gupta)
* [4f17899] Issue # 315 : Storage Device listing shows "Not Record Found" till the time .. (Atreyee Mukhopadhyay)
* [a6d43ba] Issue #296 Bad recovery for entry of a faulty DNS address (Jayavardhan Katta)
* [b11de2c] Issue #310 : Large number of DASD format operations (Harshal Patil)
* [63b3d5c] Fixing JS error in ui/js/util.js (Daniel Henrique Barboza)
* [cd1dfaf] Fixed issue #311 IPV6 fields UI Validation (Nagamani Chennuboina)
* [a5966b6] Fixed issue #309 configuration backup UI enhancement (Rajat Gupta)
* [1871b8b] Issue #305 Interfaces with existing ethernet device cannot be created and er.. (Megha Smriti)
* [ca8114e] Issue #303. Error thrown when an interface is deleted and the ifcfg file doe.. (Megha Smriti)
* [d8c53fd] Services backend: test changes (Daniel Henrique Barboza)
* [81eaffe] Services backend: model changes (Daniel Henrique Barboza)
* [b44b7a8] Services backend: ginger.py and control changes (Daniel Henrique Barboza)
* [d6e6421] Services backend: i18n and docs/API.md changes (Daniel Henrique Barboza)
* [4586fcc] Issue #249 - Part 2 - Sorting on size gives incorrect results (Pooja Kulkarni)
* [826a60f] Fixed tracking devices counter for storage devices (Rajat Gupta)
* [4c0803c] Modified the unit testcases as per fine tuned code. (Megha Smriti)
* [791c15a] Added cfginterfaces utils file as a part of networking fine tuned code. (Megha Smriti)
* [e9354b1] Added interfaces utils file as a part of networking fine tuned code. (Megha Smriti)
* [121b479] Networking Fine tuned code for interfaces. (Megha Smriti)
* [77d6289] Networking Fine tuned code for cfginterfaces. (Megha Smriti)
* [65d5b46] Modified netinfo and i18n.py as a part of fine tuned code. (Megha Smriti)
* [e8aaa6f] ui/js/host-network-enable-sriov.js: code style fixes (Daniel Henrique Barboza)
* [8a317a2] SR-IOV modal for mlx5-core interfaces (peterpennings)
* [214b723] Issue #249 Sorting on size gives incorrect results (Pooja Kulkarni)
* [ac4991a] Added support for UTF-8 encoding in user management. (Archana Singh)
* [708b018] Added support for UTF-8 encoding in storage devices. (Archana Singh)
* [fde8194] Added support for UTF-8 encoding in dasd storage. (Archana Singh)
* [8295336] Added support for UTF-8 encoding in backup configuration. (Archana Singh)
* [a3453c4] Fixed Issue #235 ADMIN:Create Backup Panel will not work (Rajat Gupta)
* [fc945a6] fix for issue #227 and #234 (Suresh Babu Angadi)
* [d8f33a6] Modifying error codes on model/interfaces.py (Daniel Henrique Barboza)
* [a649117] SR-IOV for mlx5 interfaces: test changes (Daniel Henrique Barboza)
* [0990297] SR-IOV for mlx5 interfaces: control and model changes (Daniel Henrique Barboza)
* [197c927] SR-IOV for mlx5 interfaces: docs/api.md and i18n changes (Daniel Henrique Barboza)
* [9399aa4] Adding 'module' into interfaces API: test changes (Daniel Henrique Barboza)
* [036a8fe] Adding 'module' into interfaces API: model changes (Daniel Henrique Barboza)
* [739834e] Adding 'module' into interfaces API: sysmodule changes (Daniel Henrique Barboza)
* [f71b016] Adding 'module' into interfaces API: docs and control changes (Daniel Henrique Barboza)
#### [2.1.0] ####
* [885ad6e] Github #260: packaging changes and wok version restiction (Daniel Henrique Barboza)
* [b04ea6e] ChangeLog for 2.1.0 release (Daniel Henrique Barboza)
* [79b48f8] po files update prior to 2.1 release (Daniel Henrique Barboza)
* [ab717b7] Fixing i18n.py and ui/pages/i18n.json.tmpl messages (Daniel Henrique Barboza)
* [130e5c2] Fixed Issue #233 error message appears in closeable format (Rajat Gupta)
* [2582b41] Issue # 230 and #231. (Megha Smriti)
* [c09657e] Issue # 232 : In Storage tab the bottom lines are miss-aligned on each secti.. (Atreyee Mukhopadhyay)
* [53575df] Fixed issues in VLAN and BOND creation (Jayavardhan Katta)
* [2b875a6] Fix for issue #215 (Suresh Babu Angadi)
* [ca9f1d8] Issue #102 Create partition fails with 500 (Harshal Patil)
* [200898e] Issue #133 Delete physical volume fails with 500 status code (Pooja Kulkarni)
* [618f7c1] Ginger Issue #113: Delete operation for /dasdpartitions fails with 500 (Pawan Kumar)
* [539092c] Issue #140 : Create swap file fails (Harshal Patil)
* [fc38b7d] Improve user request log messages (Lucio Correia)
* [2ceb7b2] OVS backend: Avoid error message in WoK start (Daniel Henrique Barboza)
* [4bd5862] Issue #223: list isn't refreshing after unload (Samuel Guimarães)
* [873dec7] Issue #225 Storage devices listing API timesout if large number of FC device.. (Pooja Kulkarni)
#### [2.1.0-rc1] ####
* [bd4ef81] Fix Ginger UI: SEP container is hidden after start service (Rodrigo Trujillo)
* [cdd9b9e] Updated Ginger SCSS to import new Wok accordion mixin (Samuel Guimarães)
* [18b4c61] OVS bridges backend: new tests file test_ovsbridges.py (Daniel Henrique Barboza)
* [9b2ccf0] OVS bridges backend: new model/ovsbridges.py module (Daniel Henrique Barboza)
* [1786406] OVS bridges backend: changes in controls, ginger.py and model/model.py (Daniel Henrique Barboza)
* [c628f04] OVS bridges backend: docs/API.md and i18n.py changes (Daniel Henrique Barboza)
* [a66167d] Customize user request log messages (Lucio Correia)
* [476afc0] Adding svg files to ginger spec file (Daniel Henrique Barboza)
* [2b20636] Adding svg pictures to IBM blacklist (Daniel Henrique Barboza)
* [6a7cb11] Added Ginger new SVG logo for login page, footer and about window (Samuel Guimarães)
* [5d2f4cc] Github #224: adding all JS files in ui/js/Makefile.am (Daniel Henrique Barboza)
* [f8c6071] Removing rstrip() calls just after strip() (Daniel Henrique Barboza)
* [5ce7c92] Fix PEP8 issues according to 1.5.7 version (Aline Manera)
* [a9bb201] Update pkg-version script to work with submodules (Aline Manera)
* [0b6ddd2] Expose Ginger version on /config URI (Aline Manera)
* [a7e9aec] Multiple UI Fixes (Chandra Shekhar Reddy)
* [580cca5] Multiple UI Fixes (Chandra Shekhar Reddy)
* [26b1534] Multiple UI Fixes (Chandra Shekhar Reddy)
* [290e46c] Multiple UI Fixes (Jan Schneider)
* [83779b9] Multiple UI Fixes (Suresh Babu Angadi)
* [a67cccb] Multiple UI Fixes (Suresh Babu Angadi)
* [ccefa8f] Multiple UI Fixes (Rajat Gupta)
* [191602e] Multiple UI Fixes (Rajat Gupta)
* [6144b1f] Multiple UI Fixes (Rajat Gupta)
* [d629442] Copyright fixes for sysmodules UI files (Daniel Henrique Barboza)
* [9588c87] Sysmodules modal window and form validation v3 (Samuel Guimarães)
* [f8b4ed7] Sysmodules (SR-IOV) details accordion v3 (Samuel Guimarães)
* [755179c] Sysmodules (SRIOV) tab initial implementation v2 (Andre Teodoro)
* [45c29be] Implement locking for network functions (Jayavardhan Katta)
* [ce99c8c] Changes for ginger to fix the Issue# 28 in Wok. (Atreyee Mukhopadhyay)
* [95e62d8] Add missing license header (Aline Manera)
* [d1d7209] Use check-IBM-license-header.sh from Wok (Aline Manera)
* [bfb75ed] Fix PEP8 according to PEP8 1.5.7 version (Aline Manera)
* [9f8b9b9] Issue #217 Storage devices listing API timesout if large number of DASD devi.. (Pooja Kulkarni)
* [3455e0e] Ginger Issue #216:Inconsistency in display of DASD and FCLUNS size. (Pawan Kumar)
* [69ec91b] Issue #209 GUI shows wrong units for swap devices (Harshal Patil)
* [58e46ca] Issue #210 Multipath friendly names not showing correct number of paths (Pooja Kulkarni)
* [549aa2e] Issue #205 List storage device fails when FC devices are removed in multithr.. (Pooja Kulkarni)
* [1100f06] Adjustments after issue #202 fix (Daniel Henrique Barboza)
* [b16b6cf] Wok failed to start due Ginger dependency on libvirt (Chandra Shekhar Reddy Potula)
* [b638fb1] Help page content update to reflect the current UI pages (Chandra Shekhar Reddy Potula)
* [465dc9a] Fix ginger issues as #67 #71 #139 #141 #163 (Megha Smriti)
* [e68c0a0] Fix for issue #199 (Suresh Babu Angadi)
* [bc55068] Fix for issue #198 (Suresh Babu Angadi)
* [817a95c] vlan UI html changes to relax interface naming convention (Chandra Shekhar Reddy Potula)
* [ce0bd02] vlan UI js changes to relax interface naming convention (Chandra Shekhar Reddy Potula)
* [ab92d8b] Fixing vlan and bond issues in cfginterfaces (Jayavardhan Katta)
* [02272a8] IBM copyright changes across the board (Daniel Henrique Barboza)
* [20d4da8] Adding IBM license verification in check-local (Daniel Henrique Barboza)
* [07118b2] Address-List-Issues-In-Interface (abhiramk)
* [57287cb] test_physicalvol: fixing error messages match (Daniel Henrique Barboza)
* [f1d9245] Fix PEP8 issues according to PEP8 1.5.7 version (Aline Manera)
* [515dd06] Require authentication to APIs which provide detailed system information (Aline Manera)
* [907eeb3] Add authorization tests to confirm Ginger continues working as expected with.. (Aline Manera)
* [55e7ee1] Use UrlSubNode to enable resource authentication (Aline Manera)
* [b27d560] Github #193: Modified the ipv4 and ipv6 code to accept valid values (Megha Smriti)
* [58470e6] Issue #161: Storage device listing buttons are always enabled (Jan Schneider)
* [cbeb7e9] sysmodules backend: adding 'mlx4_core' alias (Daniel Henrique Barboza)
* [8851ca6] Makefile.am targets enhancements (Daniel Henrique Barboza)
* [d9a643b] Fix Issue #192 (Rajat Gupta)
* [599a5e1] Updated API.md file to update the doc for the information for the URI /plugi.. (Megha Smriti)
* [8ae7952] Unit tests: changing 'models' to 'model' (Daniel Henrique Barboza)
* [9c5ad57] Renaming 'models' to 'model': changes in Makefiles (Daniel Henrique Barboza)
* [f96561a] Renaming 'models' directory to 'model' (Daniel Henrique Barboza)
* [2095409] Changes in RPM spec: (Daniel Henrique Barboza)
* [9a2e3aa] Rename 'controls' to 'control' in Ginger files (Daniel Henrique Barboza)
* [8fde01e] Rename 'controls' dir to 'control' (Daniel Henrique Barboza)
* [529ac7a] Fix ginger issue #191. Clean routes. (abhiramk)
* [aff9ed2] Revert "Adding sub_nodes to __init__.py" (Daniel Henrique Barboza)
* [f4ebbc2] Fix ginger issue #108 (abhiramk)
* [cd36819] UI page new look for global network configuration (Chandra Shekhar Reddy Potula)
* [9a2280f] Javascipt changes to global network configuration (Chandra Shekhar Reddy Potula)
* [b582bd2] CSS code changes to global network configuration (Chandra Shekhar Reddy Potula)
* [497352e] Code changes to global network configuration back end (Chandra Shekhar Reddy Potula)
* [a85e2f6] Issue #162: Format DASD UI messages are corrected (Rajat Gupta)
* [0c0c1d7] Issue #188: DASD format/remove fails with no reason specified. (Pawan Kumar)
* [4c0b928] tests/test_partitions: test failing when real sdb1 mounted (Daniel Henrique Barboza)
* [6c47159] Update API.md for interface API. Issue #69 (abhiramk)
* [44b22d2] Fix bond and vlan creation issue (abhiramk)
* [80227f9] Fixing tests/test_cfginterfaces (Daniel Henrique Barboza)
* [3ac39d3] This patch addresses ginger issues #109 , #110 , #124, #126 (Abhiram Kulkarni)
* [15a70c8] Adding sub_nodes to __init__.py (Daniel Henrique Barboza)
* [59eda64] Update Ginger configuration according to recent changes on Wok (Aline Manera)
* [4123f0e] Fix for ginger issue #70 with double quotes. (Megha Smriti)
* [06200b3] Bug fixing in the Network page (#159 and #179) (Chandra Shekhar Reddy Potula)
* [6b1267f] Fix for issue #180 (Suresh Babu Angadi)
* [ed6b494] Issue #23 : SAN Adapters Listing is not proper on UI (Harshal Patil)
* [cfb2191] Fixes for modal network bond page (Chandra Shekhar Reddy Potula)
* [2a7120e] Fixes for modal network settings page (Chandra Shekhar Reddy Potula)
* [e8b0f42] Fixes for modal network vlan page (Chandra Shekhar Reddy Potula)
* [e2ce2e2] Fix Firmware Update arguments parsing. (Paulo Vital)
* [b579d7e] fix for Issue# 143 (Rajat Gupta)
* [ccb158d] Fixing test_firmwareprogress and copyrights (Daniel Henrique Barboza)
* [1087fc0] Update test_firmware. (Paulo Vital)
* [11e37cd] Change Firmware Update command from PUT to POST (Paulo Vital)
* [7cba67d] Fix serviceable package name (Jose Ricardo Ziviani)
* [bb15e99] Fix for issue #169 in ginger plugin (Megha Smriti)
* [abd6652] Issue #185 VLAN interface UI issues (Chandra Shekhar Reddy Potula)
* [eb0ac3f] Fix ginger issue #144 (abhiramk)
* [f8dcc02] Issue #177 Incorrect multipath count for DASD devices (Harshal Patil)
* [4556314] test_dasdpartitions: fixing import (Daniel Henrique Barboza)
* [c653c0d] Issue #101 GET /plugins/ginger/dasdpartitions/dasdi fails with 500 (Pooja Kulkarni)
* [b88d114] Issue #164 Missing "device_name" in /filesystems (Pooja Kulkarni)
* [6ec3963] Issue #178 Removing UUID from the tape device information affects the FCP ta.. (Pooja Kulkarni)
* [2fb10e3] Fix error in wok_log.error() in models/users.py (Daniel Henrique Barboza)
* [578cf61] Fixing i18n message of sysmodules (Daniel Henrique Barboza)
* [ab131f1] Issue #22 & #24 in ginger390x (Suresh Babu Angadi)
* [3d629df] General unit test fixes in test_swap and test_firmwareprogress (Daniel Henrique Barboza)
* [48dc3ed] Issue #171: NW UI: subchannels is not getting displayed in network setting p.. (Archana Singh)
* [293b2df] Fixing issues with ginger - #82 (Jayavardhan Katta)
* [415d60a] Prevent AsyncTask timeout error during FW Update. (Paulo Vital)
* [c76f966] I18n changes and input field validation for bond (Atreyee Mukhopadhyay)
* [5acd837] Issue# 157 : Hide settings, vlan and bond options on Ubuntu and SuSe (Atreyee Mukhopadhyay)
* [d43447e] Github #170: availability check of dasddevs API (Daniel Henrique Barboza)
* [5401322] tests/test_sysmodules.py: additional tests (Daniel Henrique Barboza)
* [790da40] Github #137: model and API changes for sysmodule features (Daniel Henrique Barboza)
* [0e6280a] Add FirmwareProgress UI (Paulo Vital)
* [2f8f832] Github #168: wrong error code in lookup() (Daniel Henrique Barboza)
* [c0413ab] Fixing models.utils._pvdisplay_out() error codes (Daniel Henrique Barboza)
* [b5b584b] Unit test changes for tests/test_physical_vol.py (Daniel Henrique Barboza)
* [cbb2b2e] Github #133: fix status code and error message of remove_pv (Daniel Henrique Barboza)
* [ab19f91] Issue #146 #147 #149 #151: configuration backup issues (Jose Ricardo Ziviani)
* [48624eb] Issue #150: configuration backup records on click open and close multiple ti.. (Jose Ricardo Ziviani)
* [86f2bc7] Issue #148: New Custom Backup allows blank data (Jose Ricardo Ziviani)
* [bbc2c99] GET of interfaces to include inactibe Bond and Vlan interfaces (abhiramk)
* [16bd192] Html page for Network UI VLAN page (Chandra Shekhar Reddy Potula)
* [75f8616] JS file changes for Networking UI VLAN page (Chandra Shekhar Reddy Potula)
* [9410d16] Html file changes for Network UI Bond page (Atreyee Mukhopadhyay)
* [abb244a] JS file changes for Network Bond UI page (Atreyee Mukhopadhyay)
* [bfb2e56] CSS changes for Network UI Bond page (Atreyee Mukhopadhyay)
* [4a78da4] makefile changes for network settings UI. (Archana Singh)
* [43b5450] i18n for network settings UI. (Archana Singh)
* [3458198] html for network setting UI. (Archana Singh)
* [b01365d] JS for network settings UI. (Archana Singh)
* [37dd8aa] CSS for network settings UI. (Archana Singh)
* [f6638f0] Fix for ginger issue #131 (abhiramk)
* [2322770] Fixing id of device element in ui/js/host-network.js (Daniel Henrique Barboza)
* [3bbc785] Update API.md with user management information (Jose Ricardo Ziviani)
* [a60f426] Github #135: test cases in tests/test_swap.py (Daniel Henrique Barboza)
* [b9b61df] Github #135: Swap API return codes (Daniel Henrique Barboza)
* [9b77292] Fix ginger issues #42 , #109 , #110 , #111 and #112 (abhiramk)
* [686cecc] Fixing ginger issues #105 , #106 and #114 (Jayavardhan Katta)
* [46ca1a3] Help page for storage tab for Ginger (Chandra Shekhar Reddy Potula)
* [8958a4e] Issue #115 : Few Links to the pages are missing under Storage Devices (Chandra Shekhar Reddy Potula)
* [86dd259] Issue #134: Missing group name lead to general error in ginger (Jose Ricardo Ziviani)
* [e7da160] Adding CfginterfacesModel to the Capabilities API (Daniel Henrique Barboza)
* [f0049d8] tests/test_ibmsep.py - Unit tests for IBM Sep models (Daniel Henrique Barboza)
* [dd6dedb] models/sensors.py: adding 'hddtemp' as a prerequirement (Daniel Henrique Barboza)
* [9473e0d] Unit test for Sensors model (Daniel Henrique Barboza)
* [00fab54] Issue #120: Change Power Management Options does not work on a Power System (Jose Ricardo Ziviani)
* [94136cf] Issue #122: Cannot add a new user using Ginger interface (Jose Ricardo Ziviani)
* [c4f43e8] Issue #100 : failed to comply with json schema for dasd device (Harshal Patil)
* [93bdad4] Issue #98 : GET /plugins/ginger/stgdevs fails with 500 (Harshal Patil)
* [38c98ab] Fix python-ethtool repository and typos (Lucio Correia)
* [888cadf] Unit tests for models/backup.py models (Daniel Henrique Barboza)
* [91230a2] Github #119: adding sysmodules files to Makefile.am (Daniel Henrique Barboza)
* [ff2238d] Adding unit tests for Firmware model (Daniel Henrique Barboza)
* [d9dd4a8] Unit tests for the PowerManagement model (Daniel Henrique Barboza)
* [0976922] SysModules backend: unit tests (Daniel Henrique Barboza)
* [0c366fd] SysModules backend: model classes (Daniel Henrique Barboza)
* [d4e6a16] SysModules backend: control classes (Daniel Henrique Barboza)
* [79231fa] SysModules backend: docs/API.md and i18n changes (Daniel Henrique Barboza)
* [58eb94f] Makefile.am: adding AUTOMAKE_OPTIONS=foreign (Daniel Henrique Barboza)
* [4802889] Issue #87 : GET operation /plugin/ginger/dasddevs/<bus id> fails with 500 st.. (Harshal Patil)
* [b129721] Issue #90: GET on /plugins/ginger/filesystems/<mount point> fails with 500 (Ramon Medeiros)
* [706f9e7] Update README.md (Paulo Vital)
* [033077e] Moved README to docs dir and make it MK supported. (Paulo Vital)
* [e0c20f5] Github issue #99 (abhiramk)
* [3ab2b94] Update README (Lucio Correia)
* [854ad28] ginger.spec.in: adding files using wildcard (Daniel Henrique Barboza)
* [bb1254d] Add FirmwareProgress unit test. (Paulo Vital)
* [2951678] Add FirmwareProgress classes. (Paulo Vital)
* [9f951d3] Change to update firmware as AsyncTask. (Paulo Vital)
* [4c091c1] Fixing issues with cfginterfaces - #77 and #78 (Jayavardhan Katta)
* [bbd4a37] Updating ginger.css (Daniel Henrique Barboza)
* [dc60b46] Storage tab Implementation for Ginger plugin. (Atreyee Mukhopadhyay)
* [cd3b1e2] Storage tab Implemention for Ginger plugin. (Atreyee Mukhopadhyay)
* [e5f1efe] Storage tab Implemention for Ginger plugin. (Atreyee Mukhopadhyay)
* [e13565b] Storage tab Implemention for Ginger plugin. (Atreyee Mukhopadhyay)
* [d37d8fa] Do not rely on python-pip to install build dependencies (Aline Manera)
* [3872548] Keep one single CSS file per application (Aline Manera)
* [6c3b543] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [9223e41] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [188ce35] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [f3e95b2] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [7efe387] test_filesystems: using -F (force) option in create_file (Daniel Henrique Barboza)
* [dd2ec19] Issue 88 : Missing unformatted DASD devices from storage API (Harshal Patil)
* [3199b55] Issue #81: Failed to format a device/partition with type 'xfs' (Pooja Kulkarni)
#### [2.0.0] ####
* [b738301] Updated ChangeLog for 2.0.0 (Daniel Henrique Barboza)
* [ee1f8cb] Issue 84: User Management UI issues (samhenri)
* [7c3938b] Fixed error messages not showing in Ginger (samhenri)
* [8bf94d7] Fixes after the CSS and media query commits (Daniel Henrique Barboza)
* [15eef0e] Adding Media Query support for Ginger (samhenri)
* [0cb33ae] Fixed minor CSS issues with Ginger (samhenri)
* [6f9ece8] Wraping things up for 2.0.0 release (Daniel Henrique Barboza)
* [58728b9] Issue 72 : listing of storage devices has missing parameters to remove the d.. (Harshal Patil)
* [bab5ea8] Implementing common functionalities related to jquery bootgrid (Atreyee Mukhopadhyay)
* [7fec65f] Fixing rpm generation after CSS changes (Daniel Henrique Barboza)
* [c57e033] Use correct gettext package for building (Lucio Correia)
* [ad27b40] Fixing issues with cfginterfaces (Jayavardhan Katta)
* [85d1933] Remove special character from host-admin.js to it be interpreted as ASCII Text (Aline Manera)
* [cb73b40] Issue #53:Introduced macaddr and derive status value from operstate (Jayavardhan Katta)
* [c04a068] Issue #76 : Failed to create swap device using multipath and whole devices (Pooja Kulkarni)
* [9d23060] Fixed SCSS Makefile (samhenri)
* [8bbb8cc] Adding Admin New Custom Backup history (Andre Teodoro)
* [94d0487] Upgrade Ginger objectstore schema. (Paulo Vital)
* [b485b2b] Use always flag as a fallback (Lucio Correia)
* [de193ed] Issue #63 : Failed to create physical volumes using whole devices rather tha.. (Pooja Kulkarni)
* [489856a] Issue #61: multipath device with filesystem issue (Pooja Kulkarni)
* [8dbdf23] Fix DEB dependencies (Lucio Correia)
* [d12d5fb] Fix issue #22 - Add workaround for libuser bug (Lucio Correia)
* [ce29993] Fixing unit tests after lsblk changes (Daniel Henrique Barboza)
* [f7f1e3a] Fixing broken packaging due to wrong variable (Daniel Henrique Barboza)
* [a145e82] Expose HTML tabs files in a specific /tabs URI (Aline Manera)
* [81e7009] Issue #57: Incorrect multipath device name being returned by list storage de.. (Pooja Kulkarni)
* [6bfe40a] Make Ginger RPM noarch (Lucio Correia)
* [b2f562f] Issue #56 : Rest API for storage devices fails on Ubuntu 14.04 (Harshal Patil)
* [6c6c4ef] Do not expose /images URI (Aline Manera)
* [60a0e9f] Applying new ui to Admin New Custom Backup (Andre Teodoro)
* [ff08fc5] Issue #35 (Jayavardhan Katta)
* [7771909] Github #48 and #50: unit tests changes (Daniel Henrique Barboza)
* [8d8e225] Adding data subdir to gitignore (Daniel Henrique Barboza)
* [bb6ac98] Github #22: adding workaround for libuser in README (Daniel Henrique Barboza)
* [d1ca6e4] Issue 38 : Missing package dependencies in spec files (Chandra Shekhar Reddy Potula)
* [fda7c49] Fixing minor issues at Admin Backup Batch Delete Modal (Andre Teodoro)
* [5ccb24d] Applying new ui at Admin Backup Batch Delete Modal (Andre Teodoro)
* [a69f344] Applying new ui at Admin User Management Modal (Andre Teodoro)
* [0167eb2] Applying new-ui at SEP Configuration Modal (Andre Teodoro)
* [ce48f7c] Applying new-ui at SEP Configuration Panel (Andre Teodoro)
* [80d6811] Applying new ui at Administration tab (Andre Teodoro)
* [bcc5447] Applying new-ui at SAN Adapters Admin panel (Andre Teodoro)
* [a20f619] Changing Collapse from Admin Screen to Bootstrap Accodion (Andre Teodoro)
* [12db7c0] ipv4 and ipv6 routes support (abhiramk)
* [8e2ab6f] Delete operation on interface of types "Bond" and "Vlan" (Jayavardhan Katta)
* [4a802fb3] Added SCSS assets (samhenri)
* [f5559e7] Fixing unused messages in i18n.py and models/utils.py (Daniel Henrique Barboza)
* [6a75337] Listing available storage devices (Pooja Kulkarni)
* [721e79e] Test Cases for storage devices API (Pooja Kulkarni)
* [c18c610] Updated API doc for storage devices (Pooja Kulkarni)
* [0c7eaa9] Missing files from previous merges (Daniel Henrique Barboza)
* [55c7467] Ginger Task API: unit tests changes (Daniel Henrique Barboza)
* [cbb44ef] Ginger Task API: model changes (Daniel Henrique Barboza)
* [0b236e0] Ginger task API: docs/API.md changes (Daniel Henrique Barboza)
* [d0889c8] Test Cases for Logical Volume support in Ginger (Pooja Kulkarni)
* [20f21cd] Updated API doc for Logical Volumes support in Ginger (Pooja Kulkarni)
* [521f7d8] Support for list, create and delete operations on Logical Volumes on the host (Pooja Kulkarni)
* [68387e0] Test cases for volume groups support in Ginger (Pooja Kulkarni)
* [10efe2f] Updated API doc for volume group support (Pooja Kulkarni)
* [f4d3e53] Support for list, create, modify and delete volume groups on host (Pooja Kulkarni)
* [72a0929] Test Cases for physical volumes support in Ginger (Pooja Kulkarni)
* [52f26c1] Updated API doc for physical volume support (Pooja Kulkarni)
* [b539d4b] Support for list, create and remove physical volumes on host (Pooja Kulkarni)
* [c86b80d] Test cases for disk partition support (Pooja Kulkarni)
* [84a46d7] Updated API doc for disk partition support (Pooja Kulkarni)
* [a634c24] Support for list, create and delete disk partitions on host (Pooja Kulkarni)
* [5998c30] Create an interface of type "Vlan" (Jayavardhan Katta)
* [a768c05] Support DASD (ECKD) devices : Test Cases (Pawan Kumar)
* [0bb1507] Support DASD (ECKD) devices : Docs and base files (Pawan Kumar)
* [1b90db5] Support DASD (ECKD) devices : Model files (Pawan Kumar)
* [8b9e9c7] Support DASD (ECKD) devices : Control files (Pawan Kumar)
* [a25622f] make check-local whiteline fixes (Daniel Henrique Barboza)
* [9d96ff0] Github #44: make check-local improvements (Daniel Henrique Barboza)
* [64e63bf] Remove obsolete message GINSP00018E (Aline Manera)
* [a5e6809] Remove obsolete message GINNET0030E (Aline Manera)
* [989b8f9] Adjust Ginger for the new navigation bar (Aline Manera)
* [5ba6aa0] API doc for POST action on collection - "cfginterfaces" (Jayavardhan Katta)
* [d69effa] Create interface of type "Bond" (Jayavardhan Katta)
* [648366e] For RFC editing the interface with ipv6 configuration(PUT operation continued) (abhiramk)
* [a0cc2a3] Fix Firmware level information of BMC-based machines. (Paulo Vital)
* [3116152] pep8 fix in tests/test_filesystems.py (Daniel Henrique Barboza)
* [bf23bbd] Added testcases for NFS mount operation. (Pooja Kulkarni)
* [4a0f7b1] Modify API documentation to support NFS mount operation. (Pooja Kulkarni)
* [a26b6b7] Extend filesystem code to support NFS mount. (Pooja Kulkarni)
* [bb4b6b3] Updated API documentation for swap device support (Harshal Patil)
* [20058da] Test cases for swap device management in Ginger (Harshal Patil)
* [44506c4] List/add/remove the swap devices used by the host (Harshal Patil)
* [a0e6de0] Support PUT operation to edit the interface cfg files. (abhiramk)
* [fe5f67c] Implementation of POST actions activate/deactivate on interfaces. (Jayavardhan Katta)
* [5d305f1] Github #36: cleaning up python augeas object (Daniel Henrique Barboza)
* [e7b1199] Missing filesystem files (Daniel Henrique Barboza)
* [eedd813] Test cases for filesystem support (Pooja Kulkarni)
* [6f83c4f] Updating API docs for filesystem support (Pooja Kulkarni)
* [148aed9] Adding filesystem list/mount/unmount support to Ginger (Pooja Kulkarni)
* [4905c34] Listing the information from ifcfg files (abhiramk)
* [4ff1320] Fixing Ginger tests after WoK (Daniel Henrique Barboza)
* [ecc57a9] Fix for the issue #26 https://github.com/kimchi-project/ginger/issues/26 (abhiramk)
* [84f36db] Update UI string related to FW update files. (Paulo Vital)
* [59db493] Add support to update Power FW using not only RPM files. (Paulo Vital)
* [0810eac] Show 'progress' image while sensor monitor data is being retrieved (Socorro Stoppler)
* [f4827d4] pep8 fixes for models/users.py (Daniel Henrique Barboza)
* [fd4be1f] Adding static UI files path in ginger.conf (Daniel Henrique Barboza)
* [e94735c] Wok updates (Pooja)
* [b0cc0fa] Adapt Ginger to use Wok - Webserver Originated from Kimchi (Lucio Correia)
* [43b09f5] Fix user/groups id creation in user management (Rodrigo Trujillo)
* [147258c] Fix password encryption and salt generation (Rodrigo Trujillo)
* [f6b32ff] Add missing translations (Aline Manera)
* [112b75e] Update missing translations (Ramon Medeiros)
* [091323a] Add User panel to show correcly in all languages (Socorro Stoppler)
* [bbb7752] Update help pages for ja_JP and zh_CN (Aline Manera)
* [56e96fd] Fix comment format on i18n.json (Ramon Medeiros)
* [6ff9be4] User model changes (Daniel Henrique Barboza)
* [6aa05a7] Unit tests for user management (Daniel Henrique Barboza)
* [27029a1] Fixing russian translation file (Daniel Henrique Barboza)
* [8e8e9fc] New translation files for Ginger (Daniel Henrique Barboza)
* [e02aac6] Help changes for ginger (Kersten)
* [818c53a] Adding copyright disclaimer to files that didn't have. (Daniel Henrique Barboza)
* [a074444] Fix Power Management availability for new tuned-adm versions ([email protected])
* [dc1e37d] TRANSLATION: Add new languages and rebuild existent (Rodrigo Trujillo)
* [26cf416] Translation: Change process - sort output and avoid fuzzy msgs ([email protected])
* [86c1d14] Improve SEP UI - multi subscription (FRONT-END) ([email protected])
* [a13a944] Improve SEP API - multi subscription (API.json/i18n.py) ([email protected])
* [b48aef6] Improve SEP API - multi subscription (control/model) (Ramon Medeiros)
* [ebe1ca2] Add ppc64le support to Firmware is_feature_available() ([email protected])
* [d8bf0f1] Remove Kimchi LibvirtConnection dependency from network.py ([email protected])
* [779385b] Remove Kimchi LibvirtConnection dependency from interfaces.py ([email protected])
* [0459d44] Add html files and build-aux/compile to .gitignore list ([email protected])
* [5b8a541] Updating .po files (Daniel Henrique Barboza)
* [ed405be] Changing ChangeLog generation (Daniel Henrique Barboza)
#### [1.3.0.1] ####
* [3e69117] Github #9, #10 and #12 fixes (Daniel Henrique Barboza)
* [9a5567a] i18n.py: deleting the merge with kimchi messages (Daniel Henrique Barboza)
* [a8a6514] Enhancing Power Management error messages (Daniel Henrique Barboza)
* [8c5ea3a] ChangeLog file for Ginger (Daniel Henrique Barboza)
* [4c81977] Make check fixes (Daniel Henrique Barboza)
#### [ginger-1.3.0] ####
* [0e4806c] Debian/Ubuntu packaging files (Daniel Henrique Barboza)
* [23ded96] README: adding Ubuntu/Debian info. (Daniel Henrique Barboza)
* [f0c3be7] models/ibm_sep.py: adding 'is_feature_available()' method (Daniel Henrique Barboza)
* [c332517] models/interfaces.py: fixing an 'is not defined' error (Daniel Henrique Barboza)
* [fd5c176] UI: Capabilities for ginger ([email protected])
* [b60e80a] Capabilities API: adding support to some existing models (Daniel Henrique Barboza)
* [b911174] Adding capabilities API to Makefiles (Daniel Henrique Barboza)
* [6441dbf] Adding new API: Capabilities (Daniel Henrique Barboza)
* [8aa841f] Fix delete user return error (Rodrigo Trujillo)
* [e8453fc] Have Firmware inherit from Object ([email protected])
* [b7589c6] Changing the network interfaces listing (Daniel Henrique Barboza)
* [a7f2e08] UI: Ginger User Management (Wen Wang)
* [b76a7e2] models/interfaces.py: removing ip/netmask on blank input ([email protected])
* [1e1011f] Add Ginger Help files (Rodrigo Trujillo)
#### [ginger-1.2.1.1] ####
* [a8bff3e] Packaging: Let Ginger Depend on Latest Kimchi (Zhou Zheng Sheng)
* [3345353] Deal with bad hdd sensor data ([email protected])
* [6eb90a5] Bugfix: Make buttons display properly when the text is long (Wen Wang)
* [e7ed072] Enhancement: Change the SEP status style from text to a status dot (Wen Wang)
* [468149e] host-admin.js: disabling OK button when processing ([email protected])
* [daecbfc] Update Makefile.am to add autogen.sh in tarball. (Paulo Vital)
* [3cc5181] Add timeout check for configuration backup (Zhou Zheng Sheng)
* [9a3b682] Bugfix Takes time to activate tuned profile in "Power Options" (Wen Wang)
* [db95b9e] IBM SEP bug fix: Update _get_subscribe info (Paulo Vital)
* [eac260e] Bugfix: Change ginger's text for translation ([email protected])
* [1e1905b] UI: SEP(ESA) initial setup (Wen Wang)
* [b6f83bc] IBM Serviceable Event Provider (SEP): Update build files (Paulo Vital)
* [c5869b6] IBM Serviceable Event Provider (SEP): Backend support (Paulo Vital)
* [66db9fd] IBM Serviceable Event Provider (SEP): Update configuration files (Paulo Vital)
* [646a0c1] UI: Host sensors data visualization (Wen Wang)
* [ea67e95] 'tuned' troubleshot information in README file ([email protected])
* [91ebfc3] Add sensors backend functionality ([email protected])
* [9e5dccc] Fix pyflakes and pep 8 errors (Zhou Zheng Sheng)
* [4fac9cc] Updated .gitignore to Address Generated Files ([email protected])
* [5ce4a73] Adapt to new Kimchi authorization scheme (Zhou Zheng Sheng)
#### [] ####
* [02ca226] Updating translation files (Daniel Henrique Barboza)
* [46a9be2] Remomving break-lines from i18n.py (Daniel Henrique Barboza)
* [079d825] Issue #320: Redesign 'Sensor Monitor' UI (Samuel Guimarães)
* [63b5258] Issue #366 : Filtering on partitions needs to be improved to match exact dev.. (Pooja Kulkarni)
* [b7ac4fd] Issue #360: Refreshing volume groups keeps on loading (Samuel Guimarães)
* [54a215c] Fixed Issue #363 - Issue while updating MTU in network interface file (Rajat Gupta)
* [da19756] Fixed Issue #362 - NW operation failed for cfginterface with "BOOTPROTO":"au.. (Rajat Gupta)
* [4a0548c] Issue #364 : No need to show 'tmpfs' type in filesystem listing (Pooja Kulkarni)
* [8d10aae] test_interfaces.py: adding tests to VF = 0 scenario (Daniel Henrique Barboza)
* [d705dda] SR-IOV for ConnectX-4: 0 (zero) VF setup changes (Daniel Henrique Barboza)
* [d911bd0] Disable CX4 SR-IOV setup when selecting a VF (Daniel Henrique Barboza)
* [4661157] Adding nic_type to interfaces: UI changes (Daniel Henrique Barboza)
* [4c2633d] Adding nic_type to interfaces: control and model changes (Daniel Henrique Barboza)
* [76ff07c] Adding nic_type to interfaces: doc changes (Daniel Henrique Barboza)
* [8106721] Issue #355 : Fix for partition listing API taking long time (Pooja Kulkarni)
* [2e2e2c0] Issue #361 : Delete operation on swap file does not remove the file (Pooja Kulkarni)
* [21860c6] Include VG name in partitions details (Pooja Kulkarni)
* [36c645f] model/services.py: fixing cgroup parsing (Daniel Henrique Barboza)
* [942c147] model/services.py: adding docstrings and pylint fixes (Daniel Henrique Barboza)
* [6e5c7ba] Fix sensor unit verification (Ramon Medeiros)
* [2a67946] Issue #349 : Replace converters to use locale converters defined in wok (Pooja Kulkarni)
* [c769b5a] Issue #357 - Listing of PVs shows size in different units (Pooja Kulkarni)
* [00dd2d8] model/sanadapters.py: adding docstring and pylint fixes (Daniel Henrique Barboza)
* [5e6b353] Add 'port_type' to sanadapters API: UI changes (Daniel Henrique Barboza)
* [c3f9962] Add 'port_type' to sanadapters API: model changes (Daniel Henrique Barboza)
* [a10909a] Add 'port_type' to sanadapters API: docs/API.md changes (Daniel Henrique Barboza)
* [efa0d6e] Substitute quotes by apostrophe in configuration file (Rodrigo Trujillo)
* [6929a57] ui/pages/Makefile.am: adding wildcard to add .tmpl files (Daniel Henrique Barboza)
* [13db946] Issue# 342 : Sysmodules HYGIENE Unload of a kernel module is not persistent .. (Atreyee Mukhopadhyay)
* [cbf6620] Issue #125: Delete volumegroup fails with 500 (Harshal Patil)
* [c022260] Issue #334: Ginger spec file is restarting Wokd service twice (Ramon Medeiros)
* [2fbae22] Show error message when update_flash fails. (Paulo Vital)
* [160610e] Fix UI notification of Firmware Update. (Paulo Vital)
* [6fcfd84] Fix overwrite-perm processing in Firmware Update (Paulo Vital)
* [49798b5] model/interfaces.py: mlx5_core driver SR-IOV delay workaround (Daniel Henrique Barboza)
* [57fb193] SR-IOV fixes after hardware testing: unit test changes (Daniel Henrique Barboza)
* [d764c9a] SR-IOV fixes after hardware testing - nw_interfaces_utils.py (Daniel Henrique Barboza)
* [864c3a5] SR-IOV fixes after hardware testing - model/interfaces.py (Daniel Henrique Barboza)
* [45d74bc] Issue #129 : Reduce Volume Group fails with 500 status code. (Harshal Patil)
* [0fff82d] Edit interface mac address: UI changes (Daniel Henrique Barboza)
* [a45efa7] Edit interface mac address: test changes (Daniel Henrique Barboza)
* [0fa01af] Edit interface mac address: doc and model changes (Daniel Henrique Barboza)
* [0d88b97] Issue #128 : PVs part of existing VGs should not be allowed to be extended i.. (Harshal Patil)
* [27ad7d0] Externalised strings and updated .pot and *.po files (Pooja Kulkarni)
* [db2ee78] fix for issue #340 (Suresh Babu Angadi)
* [3c9c241] Issue #325 : vgdisplay api failed on ubuntu (Harshal Patil)
* [e28daf4] Issue #325 : Test cases for lvm version code (Harshal Patil)
* [02ff4eb] Ginger issue #336, raise ValueError if type is not bonding or vlan (Jayavardhan Katta)
* [72a033a] Changing is_feature_enabled of OVSBridgesModel (Daniel Henrique Barboza)
* [f879f46] SR-IOV enablement for mellanox connectx4 card (peterpennings)
* [202571c] Update sensors tests (Ramon Medeiros)
* [264ebd3] Issue #320: Redesign "Sensor Monitor" UI (Ramon Medeiros)
* [541b771] Issue #304. Check for carrier value of each interface after activation (Megha Smriti)
* [b6f941c] Keeping 'Add User' panel in sync with users listing (Suresh Babu Angadi)
* [7865c13] fix for issue #338 (Suresh Babu Angadi)
* [310abf9] Use past verbs and other log message improvements (Lucio Correia)
* [ad32f97] Translate user request log messages (Lucio Correia)
* [5543aab] Issue # 335 : Settings page not opening for 'bonding' (Atreyee Mukhopadhyay)
* [7328bfb] Removed the libvirt from contrib, docs, spec and UI help pages (Jayavardhan Katta)
* [9430c8c] Removed the dependency of libvirt from network.py (Jayavardhan Katta)
* [12169a1] Fix provided to assign variables based on distribution (Jayavardhan Katta)
* [337bf95] Removed the dependency of libvirt from interfaces.py and removed correspondi.. (Jayavardhan Katta)
* [bfe7d54] Make get_fc_path_elements arch-independent (Lucio Correia)
* [a225e35] Fixed issue #333 : Network Configuration BootGrid listing is not showing pro.. (Rajat Gupta)
* [73f3354] System Services front-end (Samuel Guimarães)
* [95b02a2] Multi-Culture support : Format storage related fields as per user locale (Pooja Kulkarni)
* [6bca555] Multi-Culture support : Format datetime in configuration backup as per user .. (Pooja Kulkarni)
* [c076230] ][PATCH v2 1/3] Multi-Culture support : Format fields as per locale (Pooja Kulkarni)
* [01a2645] Adding missing copyright in js and css files (Daniel Henrique Barboza)
* [e41cf6b] OVS Bridges front-end ([email protected])
* [7cda76b] Add unit for each sensor and add 0 when value is N/A (Ramon Medeiros)
* [aaf6af1] Interfaces model: adding 'rdma_enabled' attribute (Daniel Henrique Barboza)
* [ef30828] Remove any cherrypy configuration from gingerbase.conf file (Aline Manera)
* [93dfd35] Remove cherrypy root configuration from gingerbase.conf file (Aline Manera)
* [73e9822] Migration to Gingerbase netinfo: deleting model/netinfo.py (Daniel Henrique Barboza)
* [2ccc41b] Migration to Gingerbase netinfo: test changes (Daniel Henrique Barboza)
* [393a75b] Migration to Gingerbase netinfo: in-code netinfo parameters (Daniel Henrique Barboza)
* [62e16b1] Migration to Gingerbase netinfo: changing imports (Daniel Henrique Barboza)
* [b84fa3d] Add wok-robot header to /sensors requests (Aline Manera)
* [9f6010f] Issue #317: removing 's390x' references from po files (Daniel Henrique Barboza)
* [54efb97] Issue #317: Ginger should NOT depend on Gingers390x (Atreyee Mukhopadhyay)
* [18420a0] Issue #317: Ginger should NOT depend on Gingers390x (Atreyee Mukhopadhyay)
* [53cc370] Issue #317: Ginger should NOT depend on Gingers390x (Atreyee Mukhopadhyay)
* [d27149c] Issue #317: Ginger should NOT depend on Gingers390x. (Atreyee Mukhopadhyay)
* [a4eb2b6] Fix paths and keep symbolic link when updating (Ramon Medeiros)
* [5c9e3f3] RDMA support for ConnectX-4 cards - UI (peterpennings)
* [aa7f346] Fix some PEP8 issues (Rodrigo Trujillo)
* [c5eee8e] SR-IOV for ConnectX-4: adding script config calls in task (Daniel Henrique Barboza)
* [278ebc5] tests/test_interfaces.py: script manipulation use cases (Daniel Henrique Barboza)
* [4977446] SR-IOV for ConnectX-4: script managing functions (Daniel Henrique Barboza)
* [cbc9247] Support non-ascii characters in nw_interfaces_utils by handling UTF-8 support. (Archana Singh)
* [0434075] Support non-ascii characters in nw_cfginterfaces_utils by handling UTF-8 sup.. (Archana Singh)
* [7bca153] Support non-ascii characters in network by handling UTF-8 support. (Archana Singh)
* [d33f6e3] Support non-ascii characters in netinfo by handling UTF-8 support. (Archana Singh)
* [6f03c8b] Support non-ascii characters in interfaces by handling UTF-8 support. (Archana Singh)
* [a7d9b57] Support non-ascii characters in cfginterfaces by handling UTF-8 support. (Archana Singh)
* [e093ca5] Issue #329 : Error message not getting displayed (Harshal Patil)
* [f24f623] tests/test_interfaces.py: adapting to the API rename (Daniel Henrique Barboza)
* [f7d9a59] SR-IOV for ConnectX-4: API change (Daniel Henrique Barboza)
* [d7827f8] tests/test_interfaces: asynchronous backend changes (Daniel Henrique Barboza)
* [9c561da] SR-IOV for ConnectX-4: asynchronous backend (Daniel Henrique Barboza)
* [122d20f] Issue # 328 : Gateway field in Global Network configuration taking invalid v.. (Atreyee Mukhopadhyay)
* [00a9f1a] Issue #323 Move gridfield titles, button labels and other messages to i18n (Pooja Kulkarni)
* [746a862] Issue #324 : In Storage section: Tape devices and SAN adapters are misaligned (Nagamani Chennuboina)
* [1f5e151] Fixing ui/css/ginger.css license mismatch after compiling it (Daniel Henrique Barboza)
* [e7254fb] SR-IOV for ConnectX-4 pre-check: test changes (Daniel Henrique Barboza)
* [f69736c] SR-IOV for ConnectX-4 pre-check: model changes (Daniel Henrique Barboza)
* [bc17e6f] tests/test_backup.py: inserting task.wait() call (Daniel Henrique Barboza)
* [d9a4ea8] Issue #326 : In Network tab, Mispelled message about DNS server change. (Nagamani Chennuboina)
* [728bfef] Issue #321 : Config backup timeout fix (Harshal Patil)
* [1220ea1] fix for issue #322 (Suresh Babu Angadi)
* [a22a666] UI changes to accomodate user profile change (Harshal Patil)
* [16b152b] Modified unit tests with mock module (Suresh Babu Angadi)
* [ebc3d05] Multiple fixes (Suresh Babu Angadi)
* [efc0f6b] test/test_cfginterfaces.py: new unit tests (Daniel Henrique Barboza)
* [9232806] model/nw_cfginterfaces_utils.py: create a new config file (Daniel Henrique Barboza)
* [4579605] Only remove method from interfaces if index exists (Ramon Medeiros)
* [913ee05] Removed Typeahead.js CSS from Ginger (Samuel Guimarães)
* [5be9712] Fixed Issue #312 Preserve the latest backups is not selectable. (Rajat Gupta)
* [4f17899] Issue # 315 : Storage Device listing shows "Not Record Found" till the time .. (Atreyee Mukhopadhyay)
* [a6d43ba] Issue #296 Bad recovery for entry of a faulty DNS address (Jayavardhan Katta)
* [b11de2c] Issue #310 : Large number of DASD format operations (Harshal Patil)
* [63b3d5c] Fixing JS error in ui/js/util.js (Daniel Henrique Barboza)
* [cd1dfaf] Fixed issue #311 IPV6 fields UI Validation (Nagamani Chennuboina)
* [a5966b6] Fixed issue #309 configuration backup UI enhancement (Rajat Gupta)
* [1871b8b] Issue #305 Interfaces with existing ethernet device cannot be created and er.. (Megha Smriti)
* [ca8114e] Issue #303. Error thrown when an interface is deleted and the ifcfg file doe.. (Megha Smriti)
* [d8c53fd] Services backend: test changes (Daniel Henrique Barboza)
* [81eaffe] Services backend: model changes (Daniel Henrique Barboza)
* [b44b7a8] Services backend: ginger.py and control changes (Daniel Henrique Barboza)
* [d6e6421] Services backend: i18n and docs/API.md changes (Daniel Henrique Barboza)
* [4586fcc] Issue #249 - Part 2 - Sorting on size gives incorrect results (Pooja Kulkarni)
* [826a60f] Fixed tracking devices counter for storage devices (Rajat Gupta)
* [4c0803c] Modified the unit testcases as per fine tuned code. (Megha Smriti)
* [791c15a] Added cfginterfaces utils file as a part of networking fine tuned code. (Megha Smriti)
* [e9354b1] Added interfaces utils file as a part of networking fine tuned code. (Megha Smriti)
* [121b479] Networking Fine tuned code for interfaces. (Megha Smriti)
* [77d6289] Networking Fine tuned code for cfginterfaces. (Megha Smriti)
* [65d5b46] Modified netinfo and i18n.py as a part of fine tuned code. (Megha Smriti)
* [e8aaa6f] ui/js/host-network-enable-sriov.js: code style fixes (Daniel Henrique Barboza)
* [8a317a2] SR-IOV modal for mlx5-core interfaces (peterpennings)
* [214b723] Issue #249 Sorting on size gives incorrect results (Pooja Kulkarni)
* [ac4991a] Added support for UTF-8 encoding in user management. (Archana Singh)
* [708b018] Added support for UTF-8 encoding in storage devices. (Archana Singh)
* [fde8194] Added support for UTF-8 encoding in dasd storage. (Archana Singh)
* [8295336] Added support for UTF-8 encoding in backup configuration. (Archana Singh)
* [a3453c4] Fixed Issue #235 ADMIN:Create Backup Panel will not work (Rajat Gupta)
* [fc945a6] fix for issue #227 and #234 (Suresh Babu Angadi)
* [d8f33a6] Modifying error codes on model/interfaces.py (Daniel Henrique Barboza)
* [a649117] SR-IOV for mlx5 interfaces: test changes (Daniel Henrique Barboza)
* [0990297] SR-IOV for mlx5 interfaces: control and model changes (Daniel Henrique Barboza)
* [197c927] SR-IOV for mlx5 interfaces: docs/api.md and i18n changes (Daniel Henrique Barboza)
* [9399aa4] Adding 'module' into interfaces API: test changes (Daniel Henrique Barboza)
* [036a8fe] Adding 'module' into interfaces API: model changes (Daniel Henrique Barboza)
* [739834e] Adding 'module' into interfaces API: sysmodule changes (Daniel Henrique Barboza)
* [f71b016] Adding 'module' into interfaces API: docs and control changes (Daniel Henrique Barboza)
* [885ad6e] Github #260: packaging changes and wok version restiction (Daniel Henrique Barboza)
* [b04ea6e] ChangeLog for 2.1.0 release (Daniel Henrique Barboza)
* [79b48f8] po files update prior to 2.1 release (Daniel Henrique Barboza)
* [ab717b7] Fixing i18n.py and ui/pages/i18n.json.tmpl messages (Daniel Henrique Barboza)
* [130e5c2] Fixed Issue #233 error message appears in closeable format (Rajat Gupta)
* [2582b41] Issue # 230 and #231. (Megha Smriti)
* [c09657e] Issue # 232 : In Storage tab the bottom lines are miss-aligned on each secti.. (Atreyee Mukhopadhyay)
* [53575df] Fixed issues in VLAN and BOND creation (Jayavardhan Katta)
* [2b875a6] Fix for issue #215 (Suresh Babu Angadi)
* [ca9f1d8] Issue #102 Create partition fails with 500 (Harshal Patil)
* [200898e] Issue #133 Delete physical volume fails with 500 status code (Pooja Kulkarni)
* [618f7c1] Ginger Issue #113: Delete operation for /dasdpartitions fails with 500 (Pawan Kumar)
* [539092c] Issue #140 : Create swap file fails (Harshal Patil)
* [fc38b7d] Improve user request log messages (Lucio Correia)
* [2ceb7b2] OVS backend: Avoid error message in WoK start (Daniel Henrique Barboza)
* [4bd5862] Issue #223: list isn't refreshing after unload (Samuel Guimarães)
* [873dec7] Issue #225 Storage devices listing API timesout if large number of FC device.. (Pooja Kulkarni)
* [bd4ef81] Fix Ginger UI: SEP container is hidden after start service (Rodrigo Trujillo)
* [cdd9b9e] Updated Ginger SCSS to import new Wok accordion mixin (Samuel Guimarães)
* [18b4c61] OVS bridges backend: new tests file test_ovsbridges.py (Daniel Henrique Barboza)
* [9b2ccf0] OVS bridges backend: new model/ovsbridges.py module (Daniel Henrique Barboza)
* [1786406] OVS bridges backend: changes in controls, ginger.py and model/model.py (Daniel Henrique Barboza)
* [c628f04] OVS bridges backend: docs/API.md and i18n.py changes (Daniel Henrique Barboza)
* [a66167d] Customize user request log messages (Lucio Correia)
* [476afc0] Adding svg files to ginger spec file (Daniel Henrique Barboza)
* [2b20636] Adding svg pictures to IBM blacklist (Daniel Henrique Barboza)
* [6a7cb11] Added Ginger new SVG logo for login page, footer and about window (Samuel Guimarães)
* [5d2f4cc] Github #224: adding all JS files in ui/js/Makefile.am (Daniel Henrique Barboza)
* [f8c6071] Removing rstrip() calls just after strip() (Daniel Henrique Barboza)
* [5ce7c92] Fix PEP8 issues according to 1.5.7 version (Aline Manera)
* [a9bb201] Update pkg-version script to work with submodules (Aline Manera)
* [0b6ddd2] Expose Ginger version on /config URI (Aline Manera)
* [a7e9aec] Multiple UI Fixes (Chandra Shekhar Reddy)
* [580cca5] Multiple UI Fixes (Chandra Shekhar Reddy)
* [26b1534] Multiple UI Fixes (Chandra Shekhar Reddy)
* [290e46c] Multiple UI Fixes (Jan Schneider)
* [83779b9] Multiple UI Fixes (Suresh Babu Angadi)
* [a67cccb] Multiple UI Fixes (Suresh Babu Angadi)
* [ccefa8f] Multiple UI Fixes (Rajat Gupta)
* [191602e] Multiple UI Fixes (Rajat Gupta)
* [6144b1f] Multiple UI Fixes (Rajat Gupta)
* [d629442] Copyright fixes for sysmodules UI files (Daniel Henrique Barboza)
* [9588c87] Sysmodules modal window and form validation v3 (Samuel Guimarães)
* [f8b4ed7] Sysmodules (SR-IOV) details accordion v3 (Samuel Guimarães)
* [755179c] Sysmodules (SRIOV) tab initial implementation v2 (Andre Teodoro)
* [45c29be] Implement locking for network functions (Jayavardhan Katta)
* [ce99c8c] Changes for ginger to fix the Issue# 28 in Wok. (Atreyee Mukhopadhyay)
* [95e62d8] Add missing license header (Aline Manera)
* [d1d7209] Use check-IBM-license-header.sh from Wok (Aline Manera)
* [bfb75ed] Fix PEP8 according to PEP8 1.5.7 version (Aline Manera)
* [9f8b9b9] Issue #217 Storage devices listing API timesout if large number of DASD devi.. (Pooja Kulkarni)
* [3455e0e] Ginger Issue #216:Inconsistency in display of DASD and FCLUNS size. (Pawan Kumar)
* [69ec91b] Issue #209 GUI shows wrong units for swap devices (Harshal Patil)
* [58e46ca] Issue #210 Multipath friendly names not showing correct number of paths (Pooja Kulkarni)
* [549aa2e] Issue #205 List storage device fails when FC devices are removed in multithr.. (Pooja Kulkarni)
* [1100f06] Adjustments after issue #202 fix (Daniel Henrique Barboza)
* [b16b6cf] Wok failed to start due Ginger dependency on libvirt (Chandra Shekhar Reddy Potula)
* [b638fb1] Help page content update to reflect the current UI pages (Chandra Shekhar Reddy Potula)
* [465dc9a] Fix ginger issues as #67 #71 #139 #141 #163 (Megha Smriti)
* [e68c0a0] Fix for issue #199 (Suresh Babu Angadi)
* [bc55068] Fix for issue #198 (Suresh Babu Angadi)
* [817a95c] vlan UI html changes to relax interface naming convention (Chandra Shekhar Reddy Potula)
* [ce0bd02] vlan UI js changes to relax interface naming convention (Chandra Shekhar Reddy Potula)
* [ab92d8b] Fixing vlan and bond issues in cfginterfaces (Jayavardhan Katta)
* [02272a8] IBM copyright changes across the board (Daniel Henrique Barboza)
* [20d4da8] Adding IBM license verification in check-local (Daniel Henrique Barboza)
* [07118b2] Address-List-Issues-In-Interface (abhiramk)
* [57287cb] test_physicalvol: fixing error messages match (Daniel Henrique Barboza)
* [f1d9245] Fix PEP8 issues according to PEP8 1.5.7 version (Aline Manera)
* [515dd06] Require authentication to APIs which provide detailed system information (Aline Manera)
* [907eeb3] Add authorization tests to confirm Ginger continues working as expected with.. (Aline Manera)
* [55e7ee1] Use UrlSubNode to enable resource authentication (Aline Manera)
* [b27d560] Github #193: Modified the ipv4 and ipv6 code to accept valid values (Megha Smriti)
* [58470e6] Issue #161: Storage device listing buttons are always enabled (Jan Schneider)
* [cbeb7e9] sysmodules backend: adding 'mlx4_core' alias (Daniel Henrique Barboza)
* [8851ca6] Makefile.am targets enhancements (Daniel Henrique Barboza)
* [d9a643b] Fix Issue #192 (Rajat Gupta)
* [599a5e1] Updated API.md file to update the doc for the information for the URI /plugi.. (Megha Smriti)
* [8ae7952] Unit tests: changing 'models' to 'model' (Daniel Henrique Barboza)
* [9c5ad57] Renaming 'models' to 'model': changes in Makefiles (Daniel Henrique Barboza)
* [f96561a] Renaming 'models' directory to 'model' (Daniel Henrique Barboza)
* [2095409] Changes in RPM spec: (Daniel Henrique Barboza)
* [9a2e3aa] Rename 'controls' to 'control' in Ginger files (Daniel Henrique Barboza)
* [8fde01e] Rename 'controls' dir to 'control' (Daniel Henrique Barboza)
* [529ac7a] Fix ginger issue #191. Clean routes. (abhiramk)
* [aff9ed2] Revert "Adding sub_nodes to __init__.py" (Daniel Henrique Barboza)
* [f4ebbc2] Fix ginger issue #108 (abhiramk)
* [cd36819] UI page new look for global network configuration (Chandra Shekhar Reddy Potula)
* [9a2280f] Javascipt changes to global network configuration (Chandra Shekhar Reddy Potula)
* [b582bd2] CSS code changes to global network configuration (Chandra Shekhar Reddy Potula)
* [497352e] Code changes to global network configuration back end (Chandra Shekhar Reddy Potula)
* [a85e2f6] Issue #162: Format DASD UI messages are corrected (Rajat Gupta)
* [0c0c1d7] Issue #188: DASD format/remove fails with no reason specified. (Pawan Kumar)
* [4c0b928] tests/test_partitions: test failing when real sdb1 mounted (Daniel Henrique Barboza)
* [6c47159] Update API.md for interface API. Issue #69 (abhiramk)
* [44b22d2] Fix bond and vlan creation issue (abhiramk)
* [80227f9] Fixing tests/test_cfginterfaces (Daniel Henrique Barboza)
* [3ac39d3] This patch addresses ginger issues #109 , #110 , #124, #126 (Abhiram Kulkarni)
* [15a70c8] Adding sub_nodes to __init__.py (Daniel Henrique Barboza)
* [59eda64] Update Ginger configuration according to recent changes on Wok (Aline Manera)
* [4123f0e] Fix for ginger issue #70 with double quotes. (Megha Smriti)
* [06200b3] Bug fixing in the Network page (#159 and #179) (Chandra Shekhar Reddy Potula)
* [6b1267f] Fix for issue #180 (Suresh Babu Angadi)
* [ed6b494] Issue #23 : SAN Adapters Listing is not proper on UI (Harshal Patil)
* [cfb2191] Fixes for modal network bond page (Chandra Shekhar Reddy Potula)
* [2a7120e] Fixes for modal network settings page (Chandra Shekhar Reddy Potula)
* [e8b0f42] Fixes for modal network vlan page (Chandra Shekhar Reddy Potula)
* [e2ce2e2] Fix Firmware Update arguments parsing. (Paulo Vital)
* [b579d7e] fix for Issue# 143 (Rajat Gupta)
* [ccb158d] Fixing test_firmwareprogress and copyrights (Daniel Henrique Barboza)
* [1087fc0] Update test_firmware. (Paulo Vital)
* [11e37cd] Change Firmware Update command from PUT to POST (Paulo Vital)
* [7cba67d] Fix serviceable package name (Jose Ricardo Ziviani)
* [bb15e99] Fix for issue #169 in ginger plugin (Megha Smriti)
* [abd6652] Issue #185 VLAN interface UI issues (Chandra Shekhar Reddy Potula)
* [eb0ac3f] Fix ginger issue #144 (abhiramk)
* [f8dcc02] Issue #177 Incorrect multipath count for DASD devices (Harshal Patil)
* [4556314] test_dasdpartitions: fixing import (Daniel Henrique Barboza)
* [c653c0d] Issue #101 GET /plugins/ginger/dasdpartitions/dasdi fails with 500 (Pooja Kulkarni)
* [b88d114] Issue #164 Missing "device_name" in /filesystems (Pooja Kulkarni)
* [6ec3963] Issue #178 Removing UUID from the tape device information affects the FCP ta.. (Pooja Kulkarni)
* [2fb10e3] Fix error in wok_log.error() in models/users.py (Daniel Henrique Barboza)
* [578cf61] Fixing i18n message of sysmodules (Daniel Henrique Barboza)
* [ab131f1] Issue #22 & #24 in ginger390x (Suresh Babu Angadi)
* [3d629df] General unit test fixes in test_swap and test_firmwareprogress (Daniel Henrique Barboza)
* [48dc3ed] Issue #171: NW UI: subchannels is not getting displayed in network setting p.. (Archana Singh)
* [293b2df] Fixing issues with ginger - #82 (Jayavardhan Katta)
* [415d60a] Prevent AsyncTask timeout error during FW Update. (Paulo Vital)
* [c76f966] I18n changes and input field validation for bond (Atreyee Mukhopadhyay)
* [5acd837] Issue# 157 : Hide settings, vlan and bond options on Ubuntu and SuSe (Atreyee Mukhopadhyay)
* [d43447e] Github #170: availability check of dasddevs API (Daniel Henrique Barboza)
* [5401322] tests/test_sysmodules.py: additional tests (Daniel Henrique Barboza)
* [790da40] Github #137: model and API changes for sysmodule features (Daniel Henrique Barboza)
* [0e6280a] Add FirmwareProgress UI (Paulo Vital)
* [2f8f832] Github #168: wrong error code in lookup() (Daniel Henrique Barboza)
* [c0413ab] Fixing models.utils._pvdisplay_out() error codes (Daniel Henrique Barboza)
* [b5b584b] Unit test changes for tests/test_physical_vol.py (Daniel Henrique Barboza)
* [cbb2b2e] Github #133: fix status code and error message of remove_pv (Daniel Henrique Barboza)
* [ab19f91] Issue #146 #147 #149 #151: configuration backup issues (Jose Ricardo Ziviani)
* [48624eb] Issue #150: configuration backup records on click open and close multiple ti.. (Jose Ricardo Ziviani)
* [86f2bc7] Issue #148: New Custom Backup allows blank data (Jose Ricardo Ziviani)
* [bbc2c99] GET of interfaces to include inactibe Bond and Vlan interfaces (abhiramk)
* [16bd192] Html page for Network UI VLAN page (Chandra Shekhar Reddy Potula)
* [75f8616] JS file changes for Networking UI VLAN page (Chandra Shekhar Reddy Potula)
* [9410d16] Html file changes for Network UI Bond page (Atreyee Mukhopadhyay)
* [abb244a] JS file changes for Network Bond UI page (Atreyee Mukhopadhyay)
* [bfb2e56] CSS changes for Network UI Bond page (Atreyee Mukhopadhyay)
* [4a78da4] makefile changes for network settings UI. (Archana Singh)
* [43b5450] i18n for network settings UI. (Archana Singh)
* [3458198] html for network setting UI. (Archana Singh)
* [b01365d] JS for network settings UI. (Archana Singh)
* [37dd8aa] CSS for network settings UI. (Archana Singh)
* [f6638f0] Fix for ginger issue #131 (abhiramk)
* [2322770] Fixing id of device element in ui/js/host-network.js (Daniel Henrique Barboza)
* [3bbc785] Update API.md with user management information (Jose Ricardo Ziviani)
* [a60f426] Github #135: test cases in tests/test_swap.py (Daniel Henrique Barboza)
* [b9b61df] Github #135: Swap API return codes (Daniel Henrique Barboza)
* [9b77292] Fix ginger issues #42 , #109 , #110 , #111 and #112 (abhiramk)
* [686cecc] Fixing ginger issues #105 , #106 and #114 (Jayavardhan Katta)
* [46ca1a3] Help page for storage tab for Ginger (Chandra Shekhar Reddy Potula)
* [8958a4e] Issue #115 : Few Links to the pages are missing under Storage Devices (Chandra Shekhar Reddy Potula)
* [86dd259] Issue #134: Missing group name lead to general error in ginger (Jose Ricardo Ziviani)
* [e7da160] Adding CfginterfacesModel to the Capabilities API (Daniel Henrique Barboza)
* [f0049d8] tests/test_ibmsep.py - Unit tests for IBM Sep models (Daniel Henrique Barboza)
* [dd6dedb] models/sensors.py: adding 'hddtemp' as a prerequirement (Daniel Henrique Barboza)
* [9473e0d] Unit test for Sensors model (Daniel Henrique Barboza)
* [00fab54] Issue #120: Change Power Management Options does not work on a Power System (Jose Ricardo Ziviani)
* [94136cf] Issue #122: Cannot add a new user using Ginger interface (Jose Ricardo Ziviani)
* [c4f43e8] Issue #100 : failed to comply with json schema for dasd device (Harshal Patil)
* [93bdad4] Issue #98 : GET /plugins/ginger/stgdevs fails with 500 (Harshal Patil)
* [38c98ab] Fix python-ethtool repository and typos (Lucio Correia)
* [888cadf] Unit tests for models/backup.py models (Daniel Henrique Barboza)
* [91230a2] Github #119: adding sysmodules files to Makefile.am (Daniel Henrique Barboza)
* [ff2238d] Adding unit tests for Firmware model (Daniel Henrique Barboza)
* [d9dd4a8] Unit tests for the PowerManagement model (Daniel Henrique Barboza)
* [0976922] SysModules backend: unit tests (Daniel Henrique Barboza)
* [0c366fd] SysModules backend: model classes (Daniel Henrique Barboza)
* [d4e6a16] SysModules backend: control classes (Daniel Henrique Barboza)
* [79231fa] SysModules backend: docs/API.md and i18n changes (Daniel Henrique Barboza)
* [58eb94f] Makefile.am: adding AUTOMAKE_OPTIONS=foreign (Daniel Henrique Barboza)
* [4802889] Issue #87 : GET operation /plugin/ginger/dasddevs/<bus id> fails with 500 st.. (Harshal Patil)
* [b129721] Issue #90: GET on /plugins/ginger/filesystems/<mount point> fails with 500 (Ramon Medeiros)
* [706f9e7] Update README.md (Paulo Vital)
* [033077e] Moved README to docs dir and make it MK supported. (Paulo Vital)
* [e0c20f5] Github issue #99 (abhiramk)
* [3ab2b94] Update README (Lucio Correia)
* [854ad28] ginger.spec.in: adding files using wildcard (Daniel Henrique Barboza)
* [bb1254d] Add FirmwareProgress unit test. (Paulo Vital)
* [2951678] Add FirmwareProgress classes. (Paulo Vital)
* [9f951d3] Change to update firmware as AsyncTask. (Paulo Vital)
* [4c091c1] Fixing issues with cfginterfaces - #77 and #78 (Jayavardhan Katta)
* [bbd4a37] Updating ginger.css (Daniel Henrique Barboza)
* [dc60b46] Storage tab Implementation for Ginger plugin. (Atreyee Mukhopadhyay)
* [cd3b1e2] Storage tab Implemention for Ginger plugin. (Atreyee Mukhopadhyay)
* [e5f1efe] Storage tab Implemention for Ginger plugin. (Atreyee Mukhopadhyay)
* [e13565b] Storage tab Implemention for Ginger plugin. (Atreyee Mukhopadhyay)
* [d37d8fa] Do not rely on python-pip to install build dependencies (Aline Manera)
* [3872548] Keep one single CSS file per application (Aline Manera)
* [6c3b543] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [9223e41] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [188ce35] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [f3e95b2] Network tab page for plugin ginger. (Chandra Shekhar Reddy Potula)
* [7efe387] test_filesystems: using -F (force) option in create_file (Daniel Henrique Barboza)
* [dd2ec19] Issue 88 : Missing unformatted DASD devices from storage API (Harshal Patil)
* [3199b55] Issue #81: Failed to format a device/partition with type 'xfs' (Pooja Kulkarni)
* [b738301] Updated ChangeLog for 2.0.0 (Daniel Henrique Barboza)
* [ee1f8cb] Issue 84: User Management UI issues (samhenri)
* [7c3938b] Fixed error messages not showing in Ginger (samhenri)
* [8bf94d7] Fixes after the CSS and media query commits (Daniel Henrique Barboza)
* [15eef0e] Adding Media Query support for Ginger (samhenri)
* [0cb33ae] Fixed minor CSS issues with Ginger (samhenri)
* [6f9ece8] Wraping things up for 2.0.0 release (Daniel Henrique Barboza)
* [58728b9] Issue 72 : listing of storage devices has missing parameters to remove the d.. (Harshal Patil)
* [bab5ea8] Implementing common functionalities related to jquery bootgrid (Atreyee Mukhopadhyay)
* [7fec65f] Fixing rpm generation after CSS changes (Daniel Henrique Barboza)
* [c57e033] Use correct gettext package for building (Lucio Correia)
* [ad27b40] Fixing issues with cfginterfaces (Jayavardhan Katta)
* [85d1933] Remove special character from host-admin.js to it be interpreted as ASCII Text (Aline Manera)
* [cb73b40] Issue #53:Introduced macaddr and derive status value from operstate (Jayavardhan Katta)
* [c04a068] Issue #76 : Failed to create swap device using multipath and whole devices (Pooja Kulkarni)
* [9d23060] Fixed SCSS Makefile (samhenri)
* [8bbb8cc] Adding Admin New Custom Backup history (Andre Teodoro)
* [94d0487] Upgrade Ginger objectstore schema. (Paulo Vital)
* [b485b2b] Use always flag as a fallback (Lucio Correia)
* [de193ed] Issue #63 : Failed to create physical volumes using whole devices rather tha.. (Pooja Kulkarni)
* [489856a] Issue #61: multipath device with filesystem issue (Pooja Kulkarni)
* [8dbdf23] Fix DEB dependencies (Lucio Correia)
* [d12d5fb] Fix issue #22 - Add workaround for libuser bug (Lucio Correia)
* [ce29993] Fixing unit tests after lsblk changes (Daniel Henrique Barboza)
* [f7f1e3a] Fixing broken packaging due to wrong variable (Daniel Henrique Barboza)
* [a145e82] Expose HTML tabs files in a specific /tabs URI (Aline Manera)
* [81e7009] Issue #57: Incorrect multipath device name being returned by list storage de.. (Pooja Kulkarni)
* [6bfe40a] Make Ginger RPM noarch (Lucio Correia)
* [b2f562f] Issue #56 : Rest API for storage devices fails on Ubuntu 14.04 (Harshal Patil)
* [6c6c4ef] Do not expose /images URI (Aline Manera)
* [60a0e9f] Applying new ui to Admin New Custom Backup (Andre Teodoro)
* [ff08fc5] Issue #35 (Jayavardhan Katta)
* [7771909] Github #48 and #50: unit tests changes (Daniel Henrique Barboza)
* [8d8e225] Adding data subdir to gitignore (Daniel Henrique Barboza)
* [bb6ac98] Github #22: adding workaround for libuser in README (Daniel Henrique Barboza)
* [d1ca6e4] Issue 38 : Missing package dependencies in spec files (Chandra Shekhar Reddy Potula)
* [fda7c49] Fixing minor issues at Admin Backup Batch Delete Modal (Andre Teodoro)
* [5ccb24d] Applying new ui at Admin Backup Batch Delete Modal (Andre Teodoro)
* [a69f344] Applying new ui at Admin User Management Modal (Andre Teodoro)
* [0167eb2] Applying new-ui at SEP Configuration Modal (Andre Teodoro)
* [ce48f7c] Applying new-ui at SEP Configuration Panel (Andre Teodoro)
* [80d6811] Applying new ui at Administration tab (Andre Teodoro)
* [bcc5447] Applying new-ui at SAN Adapters Admin panel (Andre Teodoro)
* [a20f619] Changing Collapse from Admin Screen to Bootstrap Accodion (Andre Teodoro)
* [12db7c0] ipv4 and ipv6 routes support (abhiramk)
* [8e2ab6f] Delete operation on interface of types "Bond" and "Vlan" (Jayavardhan Katta)
* [4a802fb3] Added SCSS assets (samhenri)
* [f5559e7] Fixing unused messages in i18n.py and models/utils.py (Daniel Henrique Barboza)
* [6a75337] Listing available storage devices (Pooja Kulkarni)
* [721e79e] Test Cases for storage devices API (Pooja Kulkarni)
* [c18c610] Updated API doc for storage devices (Pooja Kulkarni)
* [0c7eaa9] Missing files from previous merges (Daniel Henrique Barboza)
* [55c7467] Ginger Task API: unit tests changes (Daniel Henrique Barboza)
* [cbb44ef] Ginger Task API: model changes (Daniel Henrique Barboza)
* [0b236e0] Ginger task API: docs/API.md changes (Daniel Henrique Barboza)
* [d0889c8] Test Cases for Logical Volume support in Ginger (Pooja Kulkarni)
* [20f21cd] Updated API doc for Logical Volumes support in Ginger (Pooja Kulkarni)
* [521f7d8] Support for list, create and delete operations on Logical Volumes on the host (Pooja Kulkarni)
* [68387e0] Test cases for volume groups support in Ginger (Pooja Kulkarni)
* [10efe2f] Updated API doc for volume group support (Pooja Kulkarni)
* [f4d3e53] Support for list, create, modify and delete volume groups on host (Pooja Kulkarni)
* [72a0929] Test Cases for physical volumes support in Ginger (Pooja Kulkarni)
* [52f26c1] Updated API doc for physical volume support (Pooja Kulkarni)
* [b539d4b] Support for list, create and remove physical volumes on host (Pooja Kulkarni)
* [c86b80d] Test cases for disk partition support (Pooja Kulkarni)
* [84a46d7] Updated API doc for disk partition support (Pooja Kulkarni)
* [a634c24] Support for list, create and delete disk partitions on host (Pooja Kulkarni)
* [5998c30] Create an interface of type "Vlan" (Jayavardhan Katta)
* [a768c05] Support DASD (ECKD) devices : Test Cases (Pawan Kumar)
* [0bb1507] Support DASD (ECKD) devices : Docs and base files (Pawan Kumar)
* [1b90db5] Support DASD (ECKD) devices : Model files (Pawan Kumar)
* [8b9e9c7] Support DASD (ECKD) devices : Control files (Pawan Kumar)
* [a25622f] make check-local whiteline fixes (Daniel Henrique Barboza)
* [9d96ff0] Github #44: make check-local improvements (Daniel Henrique Barboza)
* [64e63bf] Remove obsolete message GINSP00018E (Aline Manera)
* [a5e6809] Remove obsolete message GINNET0030E (Aline Manera)
* [989b8f9] Adjust Ginger for the new navigation bar (Aline Manera)
* [5ba6aa0] API doc for POST action on collection - "cfginterfaces" (Jayavardhan Katta)
* [d69effa] Create interface of type "Bond" (Jayavardhan Katta)
* [648366e] For RFC editing the interface with ipv6 configuration(PUT operation continued) (abhiramk)
* [a0cc2a3] Fix Firmware level information of BMC-based machines. (Paulo Vital)
* [3116152] pep8 fix in tests/test_filesystems.py (Daniel Henrique Barboza)
* [bf23bbd] Added testcases for NFS mount operation. (Pooja Kulkarni)
* [4a0f7b1] Modify API documentation to support NFS mount operation. (Pooja Kulkarni)
* [a26b6b7] Extend filesystem code to support NFS mount. (Pooja Kulkarni)
* [bb4b6b3] Updated API documentation for swap device support (Harshal Patil)
* [20058da] Test cases for swap device management in Ginger (Harshal Patil)
* [44506c4] List/add/remove the swap devices used by the host (Harshal Patil)
* [a0e6de0] Support PUT operation to edit the interface cfg files. (abhiramk)
* [fe5f67c] Implementation of POST actions activate/deactivate on interfaces. (Jayavardhan Katta)
* [5d305f1] Github #36: cleaning up python augeas object (Daniel Henrique Barboza)