blob: 43b58789d89d3667e4a34f99f26a210bb6639311 [file] [log] [blame]
Steve McIntyrec03d68d2016-03-24 17:38:34 +00001vland 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 McIntyre01997df2015-12-24 12:32:38 +000018vland 0.5
Steve McIntyre00dc61b2015-09-28 02:44:29 +010019
20 * Large numbers of bugfixes and code cleanups
Steve McIntyre1ab18162015-10-31 00:29:17 +000021 + 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 McIntyre01997df2015-12-24 12:32:38 +000030 * Add a special dummy switch driver to help with debugging and testing
Steve McIntyre1ab18162015-10-31 00:29:17 +000031 * In database multi-element calls, sort the output for consistency
Steve McIntyre01997df2015-12-24 12:32:38 +000032 * Add a database last-modified-time to help with caching
33 * Make 404 errors more descriptive
Steve McIntyre00dc61b2015-09-28 02:44:29 +010034
Steve McIntyre01997df2015-12-24 12:32:38 +000035 -- Steve McIntyre <steve.mcintyre@linaro.org> Thu, 24 Dec 2015 12:16:29 +0000
Steve McIntyre00dc61b2015-09-28 02:44:29 +010036
Steve McIntyre94ef65e2015-09-25 01:08:14 +010037vland 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 McIntyre866353e2015-07-31 16:31:27 +010058vland 0.3
Steve McIntyre9d897182014-12-22 17:51:08 +000059
Steve McIntyre866353e2015-07-31 16:31:27 +010060 * 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 McIntyre9d897182014-12-22 17:51:08 +000078
Steve McIntyre866353e2015-07-31 16:31:27 +010079 -- Steve McIntyre <steve.mcintyre@linaro.org> Fri, 31 Jul 2015 16:21:50 +0100
Steve McIntyre6d19cd42015-02-13 07:43:10 +000080
81vland 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 McIntyre866353e2015-07-31 16:31:27 +010092
93vland 0.1
94
95 * Initial Release
96
97 -- Steve McIntyre <steve.mcintyre@linaro.org> Wed, 24 Dec 2014 18:31:24 +0000
98