This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
Releases: sethmlarson/virtualbox-python
Releases · sethmlarson/virtualbox-python
v2.1.1
v2.1.0
- Added support for VirtualBox 6.1
2.0.0
- Added support for VirtualBox 6.0:
- Added new Recording features
- Added support configuring network proxies
- Added support for Cloud features
- Added new CPU, Hardware, and Virt property types
- Added new event and error types
- Renamed the PyPI project from
pyvbox
tovirtualbox
(Installingpyvbox
still works). - Fixed a bug with streaming output from a console command.
- Dropped explicit support for Python 2.6 and 3.3 (May still work?).
- This is a new major version and many argument and function names have
changed. Version 2.x of this library only supports VirtualBox 6.0+.
1.3.2
- Fixed
__name__
which made Python 3 installs break.
1.3.1
- Added
SettingsVersion.v1_17
which is written by VirtualBox 5.2.x - Added
VirtualBox.create_unattended_installer()
- Added
IUnattended
interface which can be used to create a Guest OS
in a fully automated way. (Doesn't work yet in 5.2 beta) - Added
IHostNetworkInterface.wireless
property which returns
True
if the interface is wireless.
v1.3.0b1
- Added
SettingsVersion.v1_17
which is written by VirtualBox 5.2.x - Added
VirtualBox.create_unattended_installer()
- Added
IUnattended
interface which can be used to create a Guest OS
in a fully automated way. (Doesn't work yet in 5.2 beta) - Added
IHostNetworkInterface.wireless
property which returns
True
if the interface is wireless.
v1.2.0
- Searches for vboxapi installed in Anaconda on Windows. (@SethMichaelLarson PR #80)
- Added
__lt__
and__gt__
methods to Enums for orderability on Python 3. (@SethMichaelLarson PR #82)
v1.1.0
version 1.1.0 (02/06/2017)
- IGuest.create_session() now raises a more descriptive error if
not able to connect with a zero-length password. (@SethMichaelLarson PR #70) - Add sys.executable-derived paths in list to check for vboxapi (@SethMichaelLarson PR #69)
- Fix IGuestProcess.execute() on Python 3.x (@SethMichaelLarson PR #58)
- Fix errors to not output on Windows platforms. (@SethMichaelLarson PR #57)
- Fix error caused by attempting to set any attribute in the COM interface
using setattr raising an error. (Reported by @josepegerent, patch by @SethMichaelLarson PR #74)