From f2d5eb0b27f9788b411796b4b8e440adb674f940 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 16 May 2017 08:47:35 +0200 Subject: [PATCH 1/2] 2.0.1 --- CHANGELOG | 33 +++++++++++++++++++++++++++++++++ gns3server/crash_report.py | 2 +- gns3server/version.py | 4 ++-- 3 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5a860c6c..477dd91a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,38 @@ # Change Log +## 2.0.1 16/05/2017 + +* Handle HTTP 504 errors from compute node +* When connecting to a compute node ask for qemu images list +* When importing portable project NAT node is loaded on GNS3 VM +* Fix port numbering for Wic slot 1 & 2 +* Fixes issue with connections when loading an ATM switch. +* Fixes ATM mapping. +* Fixes Frame-relay VC mapping. +* Fix export project is looking into the wrong directory +* Fix a race condition in logging when ubridge exit fast +* Fix conversion issue with old topology with C3640 +* Fix error when you have a directory in your symbols directory +* Catch VMWare errors when getting status after GNS3 VM start +* Make sure upstart LANG is utf8 +* Always install typing module (compat with python 3.4 on ubuntu) +* Fix KeyError: 'filename' +* Catch missing function listxattr on some Linux host. +* Sort image list +* Handle a race condition at project closing +* Fix unicode error when reading ios configuration +* Fix AttributeError: 'NoneType' object has no attribute 'send' +* Fix a conversion issue with some 1.3 topologies +* Fix an error with ethernetswitch when ethertype is null +* Raise an error if we can't create the dynamips configuration directory +* Catch timeout error when loading virtualbox VM +* Handle broken compute at server startup +* Catch error when we can't backup the topology +* Catch error when writting the topology file on read only device +* Catch a race condition in VirtualBox when editing and linking +* Fix a race condition when editing a qemu vm and connecting it +* Docker aux console is a VT100 terminal + ## 2.0.0 02/05/2017 * Fix connection to websocket with last docker release diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 264d0c49..0b600e71 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -54,7 +54,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://fd4397dee2e145da9227af29df24ded1:61a0e2c9b9f64204bb8ef7ac17b98e3e@sentry.io/38482" + DSN = "sync+https://9b1156a90ee943eba20e032cf007297d:024b75c7b11844a58df147a4fb059774@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 8f1c3dc5..3255225a 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,7 +23,7 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.0.1dev1" +__version__ = "2.0.1" # If it's a git checkout try to add the commit if "dev" in __version__: @@ -36,4 +36,4 @@ if "dev" in __version__: except Exception as e: print(e) -__version_info__ = (2, 0, 0, 0) +__version_info__ = (2, 0, 1, 0) From e24bfd591353f2bcce01536c1b4e894e3d98bc7d Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 16 May 2017 09:16:35 +0200 Subject: [PATCH 2/2] 2.0.2dev1 --- gns3server/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gns3server/version.py b/gns3server/version.py index 3255225a..3e3497d0 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,7 +23,7 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.0.1" +__version__ = "2.0.2dev1" # If it's a git checkout try to add the commit if "dev" in __version__: @@ -36,4 +36,4 @@ if "dev" in __version__: except Exception as e: print(e) -__version_info__ = (2, 0, 1, 0) +__version_info__ = (2, 0, 2, -99)