From 21c83de4451f6eb58ebed78018350ea28b61c0b6 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 28 Oct 2016 19:19:29 +0200 Subject: [PATCH] 2.0.0 alpha 3 --- CHANGELOG | 33 +++++++++++++++++++++++++++++++++ gns3server/crash_report.py | 2 +- gns3server/version.py | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 449323d16..d19e2f920 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,38 @@ # Change Log +## 2.0.0 alpha 3 28/10/16 + +* Fix uuid of VirtualBox VM after a save as +* Explain that segfault on IOU is a issue with the image +* Fix crash when you import a corrupted SVG +* Fix Error while creating link: Port 0 is not allocated. when you have an invalid interface +* No timeout for listing images +* Handle 408 HTTP status code (request timeout) +* Move code for exposing VM ip to the VM itself. And display VM starting status +* Fix a crash when we have error during export project +* Improve remote server console host support when binding to 0.0.0.0 +* Fix port naming for atm switch +* Fix port naming for FrameRelay switch +* Catch permission errors when listing images +* If we can't found the VMware version we use workstation +* CURL API sample for creating a dynamips router +* Fix crash in idlePC compute +* Add sample api call for creating a qemu node +* Try a different method in order to retrieve IP from VMware +* Fix naming of IOU serial interfaces +* Improve timeout management +* When exporting debug information export GNS3 VM vmx content +* /debug for exporting debug informations +* Raise error if using a non linked clone VM twice +* Fix a possible deadlock at exit +* Fix import of some old dynamips topologies +* Fix a crash with some old virtualbox topologies +* Fix conflict issue between the GNS3VM and a remote server +* Fix typo in error message about the GNS3 VM +* Fix an error when importing old topology without color for label +* Use tap adapter instead of veth for docker (allow usage of vlan) +* Avoid crash during tests if VNC server run on host PC + ## 2.0.0 alpha 2 20/10/2016 * Return md5sum and filesize in the list of images * Disable binding to an IPV6 diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 458dc2eb4..826fbdb8b 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -53,7 +53,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://82bf146e1ef44d58abf76185468264a8:393e853264dd418eab04063994433d71@sentry.io/38482" + DSN = "sync+https://687deceeecd441519eeac22a55689498:946da6b558054f7b83a793b3c196d150@sentry.io/38482" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3server/version.py b/gns3server/version.py index 818510561..9214d1570 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,5 +23,5 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.0.0dev3" +__version__ = "2.0.0a3" __version_info__ = (2, 0, 0, -99)