Change Log¶
All notable changes to the COT project will be documented in this file. This project adheres to Semantic Versioning.
2.1.0 - 2018-01-29¶
Fixed
- The
bin/cothelper script in this repository (not the script installed when installing COT normally) has had some$PATHissues fixed. cot add-disk ... --controllernow acceptssataas an additional option (#72).
2.0.5 - 2017-11-30¶
Fixed
- Error in previous release due to COT using a user-specified relative file
path in
FileReference.createwhich implicitly assumed absolute paths.- Now correctly fixes up the path before constructing this
FileReference. - To prevent similar errors in the future, if a
FileReferenceis constructed with a non-absolute path, COT will log a warning and attempt to fix the path at that point.
- Now correctly fixes up the path before constructing this
2.0.4 - 2017-11-30¶
Fixed
- COT now ensures that cloned Items have a higher InstanceID than the Item they were cloned from, avoiding unexpected out-of-order behavior (#70).
- COT now produces valid manifests for OVF 2.x files (which use SHA256 instead of SHA1 as in OVF 0.x and 1.x).
Added
- Official support for pypy3. (COT has already been usable under pypy3, but now it's actually part of our tests.)
- COT checks the manifest when loading an OVF/OVA and warns if any checksum mismatches are seen.
FileReferenceclass as superclass ofFileInTARandFileOnDisk.
Changed
- Refactored how man page builds are triggered so that Sphinx is no longer a mandatory pre-requisite for building COT. This helps us to avoid breaking Travis-CI tests when a new version of Sphinx comes out that doesn't support older Python versions like 3.3.
- Replaced
add_disk.guess_drive_type_from_extensionwithDiskRepresentation.predicted_drive_type.
2.0.3 - 2017-04-03¶
Fixed
- Fixed issue where UnboundLocalError would be raised during COT's attempt to clean up after a qemu-img error occurring while trying to convert a disk to VMDK (#67).
- Fixed incorrect invocation of 'sudo mkdir' on Mac OS X.
2.0.2 - 2017-03-20¶
Fixed
- Path normalization of output file resulted in COT failing to detect the case of self-overwriting an OVA, resulting in file corruption (#66). Improved detection of self-overwriting cases including relative vs. absolute paths, symlinks, and hardlinks.
2.0.1 - 2017-03-17¶
Fixed
- One unit test case, COT.helpers.tests.test_helper.HelperGenericTest.test_download_and_expand_tgz, was failing after 2.0.0 was released, due to its assumptions about the contents of the master repo on GitHub no longer being valid. Fixed now.
2.0.0 - 2017-03-17¶
Fixed
- Fixed a case that could result in a RuntimeError being thrown when using
cot edit-hardwareto simultaneously create NICs and define a new configuration profile (#64). - Update minimum QEMU version preferred for creation of streamOptimized VMDK
files from 2.1.0 to 2.5.1, due to an incompatibility with VMware in VMDKs
produced by versions prior to 2.5.1 (#65).
- If
vmdktoolis not installed, but QEMU 2.1.0-2.5.0 is, then COT will fall back to usinqqemu-img, but will warn of this potential incompatibility with ESXi.
- If
- When
cot infois invoked with multiple files as input, an error in loading one file will no longer cause the entire command to abort; COT will now log an error about the offending file and continue to the next.
Added
- COT commands now check the available disk space in the temporary working directory against the temporary storage space the command estimates it will require, and if there is likely to be a problem, warns the user before continuing. (#63)
- Additionally COT commands that write out an updated OVF/OVA now check the available disk space in the requested output location against the VM's predicted output size, and if there is likely to be a problem, warns the user before continuing.
Helperclasses can now opt to cache their output to avoid repeatedly re-running the same command. Currently enabled forqemu-img info ...andisoinfo ...commands. (#62)- New modules and APIs in support of the above:
Command.working_dir_disk_space_required()instance method, to ask a command to estimate how much temporary storage it will require. This method is now automatically called from Command unit tests to validate its accuracy.VMDescription.predicted_output_size()instance method, to ask a VM to estimate how much disk space it will require when written out.COT.utilitiesmodule with functionsavailable_bytes_at_pathandtar_entry_size.
Removed
- Discontinued support for Python 2.6 as it has been retired since 2013.
- Removed
cot --debugalias forcot --verbose --verboseas it is no longer correct after increased granularity of logging options, as described below.
Changed
- With
cot edit-hardware, the platform hardware validation is no longer a hard limit. Instead, if a value appears to be invalid, the user will be warned about the validation failure and given the option to continue or abort (#61).cot --force ..., as usual, can be used to auto-continue without prompting. - More granular logging levels (thanks to verboselogs; COT now requires version 1.6 of this package) and more self-consistency in message logging.
- Revised format of log messages generated by COT.
- Lots of API changes:
- All commands ('submodules') are now grouped as a sub-package
under
COT.commands. Most classes in this package have been renamed. - Moved
COT.ovfpackage to be a sub-package underCOT.vm_description. - Moved UI and CLI classes into a
COT.uisub-package. - Moved the
to_stringfunction fromCOT.data_validationtoCOT.utilities. - Function
COT.deploy_esxi.get_object_from_connectionis now methodPyVmomiVMReconfigSpec.lookup_object. - Function
COT.cli.formatteris now classCOT.ui.cli.CLILoggingFormatter. - The functionality of classes
VMContextManagerandVMFactoryhas been rolled into the coreVMDescriptionclass. - COT.disks module:
- Function
create_diskis now split into class methodsDiskRepresentation.for_new_file(creates the disk file and returns a correspondingDiskRepresentationinstance) andDiskRepresentation.create_file(creates disk file only). - Function
convert_diskis now class methodDiskRepresentation.convert_to - Function
disk_representation_from_fileis now class methodDiskRepresentation.from_file - The
DiskRepresentationconstructor now only takes the path to a file as input - if you want to create a new file, useDiskRepresentation.for_new_fileinstead of calling the constructor directly.
- Function
- COT.helpers module:
- Static method
Helper.cphas been renamed toHelper.copy_file.
- Static method
- COT.ovf module:
COT.ovf.ovf.byte_stringhas been moved and renamed toCOT.utilities.pretty_bytes.COT.ovf.ovf.byte_counthas been moved and renamed toCOT.vm_description.ovf.utilities.programmatic_bytes_to_int.COT.ovf.ovf.factor_byteshas been moved and renamed toCOT.vm_description.ovf.utilities.int_bytes_to_programmatic_units.OVF.validate_and_update_file_referencesandOVF.validate_and_update_networkshave been moved to private functions and are no longer part of the public API of the OVF class.Hardware.update_existing_item_count_per_profilehas been moved to a private method.
- COT.platforms module:
- Class
GenericPlatformis nowPlatform. - Function
platform_from_product_classis now class methodPlatform.for_product_stringand returns an instance of aPlatformclass rather than the class object itself. - Most
PlatformAPIs are now instance methods instead of class methods. - Function
COT.platforms.is_known_product_classhas been removed.
- Class
- All commands ('submodules') are now grouped as a sub-package
under
1.9.0 - 2017-02-13¶
Added
- Support for Python 3.6
- Support for brew package manager (#55).
- Support for Cisco Nexus 9000v (NX-OSv 9000) platform (#60).
Fixed
- Improved messaging when COT is unable to install a helper program (#57).
1.8.2 - 2017-01-18¶
Fixed
- Issue (#58) where various multi-value CLI options for the
edit-hardwareandinject-configcommands did not append properly. - Issue in which explicitly specified NIC names were being overwritten by
names auto-derived from network names when attempting to set both NIC name
and network names in a single
cot edit-hardwarecall. cot edit-propertiesagain accepts property values containing the characters+and=(#59).
Added
- COT can now detect the presence of an .ovf file in a TAR archive even if
the archive is not named
*.ova*and even if the .ovf file is not the first file in the archive as specified by the OVF specification. This allows (read-only at present) handling of VirtualBox Vagrant .box files, which are approximately equivalent to non-standards-compliant OVAs.
1.8.1 - 2016-11-12¶
Fixed
- Under Python versions older than 2.7.9, explicitly require
pyOpenSSLandndg-httpsclientto avoid issues likehostname 'people.freebsd.org' doesn't match 'wfe0.ysv.freebsd.org'when installing vmdktool.
1.8.0 - 2016-11-08¶
Fixed
- TypeError in
find_itemmethod (#54). cot inject-configcorrectly handles OVAs with multiple empty CD-ROM drives to choose amongst (#54 also).- Cisco CSR1000v platform now supports 8 CPUs as a valid option.
Added
cot inject-config --extra-filesparameter (#53).- Helper class for
isoinfo(a companion tomkisofs). - Added glossary of terms to COT documentation.
- Inline documentation (docstrings) are now validated using the Pylint docparams extension.
Changed
- Refactored the monolithic
COT/platforms.pyfile into a proper submodule. create_iso()now adds Rock Ridge extensions by default.- Refactored
COT.helpersinto two modules -COT.helpers(now just for handling helper programs such asapt-getandmkisofs) andCOT.disks(which uses the helpers to handle ISO/VMDK/QCOW2/RAW image files). - Inline documentation (docstrings) have been converted to "Google style" for better readability in the code. Sphinx rendering of documentation (for readthedocs.org, etc) now makes use of the napoleon extension to handle this style.
Removed
get_checksum()is no longer part of theCOT.helpersAPI. (It's now the methodfile_checksum()inCOT.data_validation, where it really belonged from the start).download_and_expand()is no longer part of theCOT.helperspublic API. (It's now the static methoddownload_and_expand_tgz()on classHelper.)
1.7.4 - 2016-09-21¶
Newer versions of Sphinx have dropped support for Python 2.6 and 3.3, so I have updated COT's installation requirements to use older Sphinx versions under these Python versions.
1.7.3 - 2016-09-06¶
Added
- When adding NICs to an OVF, if no
-nic-networksare specified,cot edit-hardwarewill now try to infer sequential naming of the Network elements and if successful, offer to create additional Networks as appropriate. (#18)
1.7.2 - 2016-08-17¶
Fixed
- Issue #52 - OVFItemDataError raised when adding NICs to CSR1000V OVA, or more generally when cloning an OVFItem whose ElementName references its Connection.
1.7.1 - 2016-08-12¶
Fixed
cot deploy ... --serial-connectionwill create additional serial ports beyond those defined in the OVF, if requested. Previously it would ask the user for confirmation but not actually do anything about it. (#51)
1.7.0 - 2016-08-05¶
Added
- Support for Python 3.5
- Enhancements to
cot edit-properties(#50):- Added
--user-configurableoption to set whether created/updated properties are marked as user-configurable in the OVF. - Added
--labelsand--descriptionsoptions to set/update the labels and descriptions associated with properties. - It's now valid to set no default value for a property by
omitting the
=value, as in-p property-with-no-value, as well as the existing-p property-with-empty-value=syntax to set an empty string as the value. - Users can now optionally specify the property type to enforce for each
property by using the delimiter
+type, as in-p key=1+boolean.
- Added
Changed
- Switched from statement coverage to branch coverage for better test analysis.
- Moved from Coveralls to Codecov for test coverage tracking, since Coveralls does not support branch coverage reporting.
Fixed
- When
cot edit-hardwareis used to create new NICs in an OVF that previously had none, and the user does not specify any corresponding Network entries, automatically create a 'VM Network' entry, because all NICs must be mapped to Networks for a valid OVF descriptor.
1.6.1 - 2016-07-07¶
Fixed
ValueMismatchErrorexceptions are properly caught by the CLI wrapper so as to result in a graceful exit rather than a stack trace.cot remove-filenow errors if the user specifies both file-id and file-path, one of which matches a file in the OVF, but the other does not match this or any other file.- Better handling of exceptions and usage of
sudowhen installing helpers. - Manual pages are now correctly included in the distribution. Oops!
1.6.0 - 2016-06-30¶
Added
cot edit-product --product-classoption, to set or change the product class identifier (such ascom.cisco.csr1000v).- Enabled additional code quality validation with Pylint, pep8-naming, and mccabe (#49).
Changed
Fixed
- COT now recognizes
AllocationUnitsvalues likemegabytes. - COT no longer ignores the
AllocationUnitsvalue given for RAM. COT.ovf.byte_string()now properly uses binary units (KiBrather thankB, etc.)
1.5.2 - 2016-06-17¶
Changed
- Development requirement changes: The package pep8 has been renamed to pycodestyle, and pep257 has been renamed to pydocstyle. Updated configuration and documentation to reflect these changes. Also, flake8-pep257 does not presently handle these changes, so replaced it as a dependency with the more up-to-date flake8-docstrings package.
1.5.1 - 2016-06-07¶
Added
cot edit-hardware --network-descriptionsoption, to specify the descriptive string(s) associated with each network definition.
Fixed
- #48 - NIC type not set when adding NICs to an OVF that had none before.
- When updating NIC network mapping, COT now also updates any Description that references the network mapping.
1.5.0 - 2016-06-06¶
Added
- #47 - Added
cot remove-filesubcommand. - #43 - add
cot edit-properties --transportoption to set environment transport type(s) - iso, VMWare Tools, etc.cot infonow has a new "Environment" section that displays the transport type
- #45 - support for multiple values for
--nic-types,--ide-subtypes, and--scsi-subtypesincot edit-hardware. - COT now recognizes the Cisco IOS XRv 9000 platform identifier
com.cisco.ios-xrv9000. - #21 - subcommand aliases (Python 3.x only):
cot edit-productaliases:cot set-product,cot set-versioncot edit-propertiesaliases:cot set-properties,cot edit-environment,cot set-environmentcot infoalias:cot describecot inject-configalias:cot add-bootstrapcot remove-filealias:cot delete-file
- Support for tab-completion of CLI parameters using argcomplete.
Changed
cot edit-hardwareoptions--nic-types,--ide-subtypes, and--scsi-subtypesare now validated and canonicalized by COT, meaning that:cot edit-hardware --nic-type virtio-net-pciis now a valid command and will correctly create an OVF withResourceSubTypevirtio(notvirtio-net-pci)cot edit-hardware --ide-subtype foobarwill now fail with an error
cot infois now more self-consistent in how it displays property keys. They are now always wrapped in<>, whereas previously this was only sometimes the case.cot info --verbosenow displays file and disk ID strings under the "Files and Disks" section.
1.4.2 - 2016-05-11¶
Added
- COT now supports
xorrisoas another alternative tomkisofsandgenisoimage
Fixed
- #42 -
cot deploy esxierror handling behavior needed to be updated for requests release 2.8. - #44 - test case failure seen when running pyVmomi 6.0.0.2016.4.
Changed
1.4.0 - 2015-09-01¶
Added
- #24 -
cot deploy esxinow creates serial ports after deployment using pyVmomi library.- Serial port connectivity must be specified either via entries in the OVF
(which can be defined using
cot edit-hardware ... -S) or at deployment time using the new-S/--serial-connectionparameter tocot deploy. - The syntax for serial port connectivity definition is based
on that of QEMU's
--serialCLI option. - Currently only "telnet", "tcp", and "device" connection types are supported.
- Serial port connectivity must be specified either via entries in the OVF
(which can be defined using
- #38 -
cot edit-productcan now set product and vendor information. - flake8 validation now includes pep257 to validate docstring compliance to PEP 257 as well.
- Added changelog file.
- Added
COT.file_referencesubmodule in support of #39.
Changed
- Split ESXi-specific logic out of
COT.deploymodule and into newCOT.deploy_esximodule. - UT for
COT.deploy_esxinow requiresmock(standard library in Python 3.x, install via pip on Python 2.x).
Fixed
- #39 - avoid unnecessary file copies to save time and disk space.
1.3.1 - 2015-04-09¶
Fixed
- #30 -
cot install-helperscan now installfatdiskandvmdktoolunder Python 3.
1.3.0 - 2015-03-27¶
Added
- Installation of helper programs is now provided by a
cot install-helperssubcommand rather than a separate script. - COT now has man pages (
man cot,man cot-edit-hardware, etc.) The man pages are also installed bycot install-helpers. - Improved documentation of the CLI on readthedocs.org as well.
Changed
- Refactored
COT.helper_toolsmodule intoCOT.helperssubpackage. This package has an API (COT.helpers.api) for the rest of COT to access it; the helper-specific logic (qemu-img, fatdisk, etc.) is split into individual helper modules that are abstracted away by the API. - Similarly, logic from
COT.tests.helper_toolshas been refactored and enhanced underCOT.helpers.tests. - Renamed all test code files from "foo.py" to "test_foo.py" to facilitate test case discovery.
- CLI help strings are dynamically rendered to ReST when docs are built, providing cleaner output for both readthedocs.org and the manpages.
Removed
- COT no longer supports Python 3.2.
cot_unittestis no more - usetoxorunit2 discoverto run tests.- As noted above, the installation script
check_and_install_helpers.pyno longer exists - this functionality is now provided by theCOT.install_helpersmodule.
1.2.2 - 2015-02-19¶
Added
- Documentation built with Sphinx and available at http://cot.readthedocs.org
Changed
- CLI adapts more intelligently to terminal width (fixes #28)
- Submodules now use Python properties instead of get_value/set_value methods.
1.2.1 - 2015-02-03¶
Added
- Now PEP 8 compliant - passes validation by flake8 code analysis.
- Very preliminary support for OVF 2.x format
- Now uses tox for easier test execution and coverage.py for code coverage analysis.
- Code coverage reporting with Coveralls.
Changed
- Now uses colorlog instead of
coloredlogsfor CLI log colorization, as this fits better with COT's logging model. - Greatly improved unit test structure and code coverage, including tests for logging.
1.2.0 - 2015-01-16¶
Added
- Greatly improved logging (#26). COT now defaults to logging level INFO,
which provides relatively brief status updates to the user. You can also
run with
--quietto suppress INFO messages and only log WARNING and ERROR messages,--verboseto see VERBOSE messages as well, or--debugif you want to really get into the guts of what COT is doing. - Now integrated with Travis CI for automated builds and UT under all supported Python versions. This should greatly improve the stability of COT under less-common Python versions. (#12)
Changed
- The CLI for
cot deployhas been revised somewhat based on user feedback. - A lot of restructuring of the underlying code to make things more modular and easier to test in isolation.
Fixed
- Various bugfixes for issues specific to Python 2.6 and 3.x - these environments should now be fully working again.
1.1.6 - 2015-01-05¶
Added
- Added THANKS file recognizing various non-code contributions to COT.
Fixed
1.1.5 - 2014-11-25¶
Fixed
- Fixed issue #17 (
cot edit-hardwareadding NICs makes an OVA that vCenter regards as invalid) - Removed several spurious WARNING messages
1.1.4 - 2014-11-12¶
Added
- COT can at least be installed and run under CentOS/Python2.6 now, although the automated unit tests will complain about the different XML output that 2.6 produces.
Changed
- Vastly improved installation workflow under Linuxes supporting
apt-getoryum- included helper script can automatically install all helper programs exceptovftool. Fixes #9.
Fixed
1.1.3 - 2014-10-01¶
Added
cot edit-hardwareadded--nic-namesoption for assigning names to each NICcot infonow displays NIC names.
Fixed
- Improved installation documentation
- Some improvements to IOS XRv OVA support
1.1.2 - 2014-09-24¶
Added
- Take advantage of QEMU 2.1 finally supporting the
streamOptimizedVMDK sub-format. - Can now create new hardware items without an existing item of the same type (issue #4)
Changed
- Clearer documentation and logging messages (issue #8 and others)
- Now uses versioneer for automatic version numbering.
Fixed
- Fixed several Python 3 compatibility issues (issue #7 and others)
1.1.0 - 2014-07-29¶
Added
cot deploy esxisubcommand by Kevin Keim (@kakeim), which usesovftoolto deploy an OVA to an ESXi vCenter server.
Changed
- Removed dependencies on
md5/md5sum/shasum/sha1sumin favor of Python'shashlibmodule. - Nicer formatting of
cot infooutput
Fixed
- Miscellaneous fixes and code cleanup.
1.0.0 - 2014-06-27¶
Initial public release.