From 456a28304de4fd006d0fe63d84a6a71176383073 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 20 Apr 2017 10:52:55 +0200 Subject: [PATCH] 2.0.0rc4 --- CHANGELOG | 17 +++++++++++++++++ gns3server/crash_report.py | 2 +- gns3server/version.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 69d5f004..120f8721 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,22 @@ # Change Log +## 2.0.0rc4 20/04/2017 + +* Fix a race condition when handling error at project opening +* Fix an issue with editing network on windows +* Fix windows tests +* Catch timeout error on docker +* typing is already included in Py >= 3.5 (#979) +* Fix import of some old topologies +* Fix AttributeError: 'NoneType' object has no attribute 'returncode' +* Fix ghost vmware vms +* Fix required field in schema not use +* Catch error and log them when we can't write the config +* Fix bridge 'bridge0' already exist when we have trouble with a container +* Catch an error at startup when the remote GNS3 VM is not a real GNS3 VM +* Fixes Qemu sata option. Ref #875. +* Catch GNS3 VM loading error at startup + ## 1.5.4 13/04/2017 * Fix VPCS tests for recent version diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 4d13eadf..6b486de1 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://71c8e5474e304e2384abc4df1b245acb:9f6d1b1b885a4ad1895f55338d4522d7@sentry.io/38482" + DSN = "sync+https://19cca90b55874be5862caf9b507fbd7b:1c0897efd092467a874e89b2e4803b29@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 26e862d6..b3de7df2 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.0dev12" +__version__ = "2.0.0rc4" # If it's a git checkout try to add the commit if "dev" in __version__: