Steve McIntyre | c03d68d | 2016-03-24 17:38:34 +0000 | [diff] [blame] | 1 | vland 0.6 |
| 2 | |
| 3 | * Major changes to admin interface command-line: |
| 4 | + Switch from optparse to argparse for much better support of complex |
| 5 | command lines, using sub-commands instead of arguments and named |
| 6 | arguments instead of positional arguments. Example: |
| 7 | $ admin.py --create_vlan test30 30 false |
| 8 | now becomes |
| 9 | $ admin.py create_vlan --name test30 --tag 30 --is_base_vlan false |
| 10 | + admin.py will now exit non-zero when commands fail rather than |
| 11 | (falsely) always indicate success. |
| 12 | * Errors are tracked better internally, and distinguished in various |
| 13 | places between "object not found" and "misc error". |
| 14 | * Misc small bugfixes |
| 15 | |
| 16 | -- Steve McIntyre <steve.mcintyre@linaro.org> Thu, 24 March 2016 17:19:39 +0000 |
| 17 | |
Steve McIntyre | 01997df | 2015-12-24 12:32:38 +0000 | [diff] [blame] | 18 | vland 0.5 |
Steve McIntyre | 00dc61b | 2015-09-28 02:44:29 +0100 | [diff] [blame] | 19 | |
| 20 | * Large numbers of bugfixes and code cleanups |
Steve McIntyre | 1ab1816 | 2015-10-31 00:29:17 +0000 | [diff] [blame] | 21 | + More robust error handling and logging |
| 22 | * Lots of improvements to the visualisation code: |
| 23 | + Bind to any interface, not just localhost so that the |
| 24 | visualisation can be seen from other machines |
| 25 | + Add an option to auto-refresh in the browser |
| 26 | + Improve error logging |
| 27 | + Add caching of graphics for improved performance |
| 28 | + Improve compliance with HTTP headers |
| 29 | + Add popup tooltips for more information about configuration of ports |
Steve McIntyre | 01997df | 2015-12-24 12:32:38 +0000 | [diff] [blame] | 30 | * Add a special dummy switch driver to help with debugging and testing |
Steve McIntyre | 1ab1816 | 2015-10-31 00:29:17 +0000 | [diff] [blame] | 31 | * In database multi-element calls, sort the output for consistency |
Steve McIntyre | 01997df | 2015-12-24 12:32:38 +0000 | [diff] [blame] | 32 | * Add a database last-modified-time to help with caching |
| 33 | * Make 404 errors more descriptive |
Steve McIntyre | 00dc61b | 2015-09-28 02:44:29 +0100 | [diff] [blame] | 34 | |
Steve McIntyre | 01997df | 2015-12-24 12:32:38 +0000 | [diff] [blame] | 35 | -- Steve McIntyre <steve.mcintyre@linaro.org> Thu, 24 Dec 2015 12:16:29 +0000 |
Steve McIntyre | 00dc61b | 2015-09-28 02:44:29 +0100 | [diff] [blame] | 36 | |
Steve McIntyre | 94ef65e | 2015-09-25 01:08:14 +0100 | [diff] [blame] | 37 | vland 0.4 |
| 38 | |
| 39 | * Large numbers of bugfixes and code cleanups |
| 40 | * Code changes for integration with LAVA: |
| 41 | + Added db.find_lowest_unused_vlan_tag() |
| 42 | + create_vlan() with a tag of -1 will find and allocate the first |
| 43 | unused tag automatically |
| 44 | * Add port *numbers* as well as names to the ports database, to give |
| 45 | human-recognisable references. See README.port-numbering for more |
| 46 | details. |
| 47 | * Add tracking of trunks, the inter-switch connections, needed for |
| 48 | visualisation diagrams. |
| 49 | * Add a simple http-based visualisation feature: |
| 50 | + Generate network diagrams on-demand based on the information in the |
| 51 | VLANd database, colour-coded to show port configuration |
| 52 | + Generate a simple website to reference those diagrams. |
| 53 | * Allow more ports to be seen on Catalyst switches |
| 54 | * Add a systemd service file for vland |
| 55 | |
| 56 | -- Steve McIntyre <steve.mcintyre@linaro.org> Thu, 24 Sep 2015 17:00:03 -0700 |
| 57 | |
Steve McIntyre | 866353e | 2015-07-31 16:31:27 +0100 | [diff] [blame] | 58 | vland 0.3 |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 59 | |
Steve McIntyre | 866353e | 2015-07-31 16:31:27 +0100 | [diff] [blame] | 60 | * Massive numbers of bugfixes and code cleanups |
| 61 | * Added two new switch drivers: |
| 62 | + TP-Link TL-SG2XXX family (TPLinkTLSG2XXX) |
| 63 | + Netgear XSM family (NetgearXSM) |
| 64 | * Added "debug" option to all the switch drivers to log all interactions |
| 65 | * Added internal caching of port modes within the driver core for a large |
| 66 | speed-up in normal use |
| 67 | * Bug fix to handling of trunk ports in the CiscoCatalyst driver, |
| 68 | improving VLAN interop with other switches |
| 69 | * Huge changes to the test lab, now using 5 switches and 10 hosts |
| 70 | * Big improvements to the test suite: |
| 71 | + Match the new test lab layout |
| 72 | + Move more of the core test code into the test-common utility library |
| 73 | + Massively improved the check-networks test runner for the test hosts |
| 74 | + Added parsing of the UP/DOWN results in test-common to give a simple |
| 75 | PASS/FAIL result for each test |
| 76 | + Added more tests |
| 77 | * All logging now in UTC |
Steve McIntyre | 9d89718 | 2014-12-22 17:51:08 +0000 | [diff] [blame] | 78 | |
Steve McIntyre | 866353e | 2015-07-31 16:31:27 +0100 | [diff] [blame] | 79 | -- Steve McIntyre <steve.mcintyre@linaro.org> Fri, 31 Jul 2015 16:21:50 +0100 |
Steve McIntyre | 6d19cd4 | 2015-02-13 07:43:10 +0000 | [diff] [blame] | 80 | |
| 81 | vland 0.2 |
| 82 | |
| 83 | * Massive numbers of bugfixes and code cleanups |
| 84 | * Improve how we talk to the Cisco switches - disable paging on long |
| 85 | output |
| 86 | * Switch from "print" to "logging.foo" for messages, and add logfile |
| 87 | support |
| 88 | * Improved test suite coverage, and added core test scripts for the lab |
| 89 | environment |
| 90 | |
| 91 | -- Steve McIntyre <steve.mcintyre@linaro.org> Fri, 13 Feb 2015 15:42:31 +0800 |
Steve McIntyre | 866353e | 2015-07-31 16:31:27 +0100 | [diff] [blame] | 92 | |
| 93 | vland 0.1 |
| 94 | |
| 95 | * Initial Release |
| 96 | |
| 97 | -- Steve McIntyre <steve.mcintyre@linaro.org> Wed, 24 Dec 2014 18:31:24 +0000 |
| 98 | |