From ef5714bd3ef24a1c97baaad5155ec146dbbd5d71 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 31 Mar 2017 10:07:25 +0200 Subject: [PATCH] 2.0.0rc3 --- CHANGELOG | 46 ++++++++++++++++++++++++++++++++++++++ gns3server/crash_report.py | 2 +- gns3server/version.py | 2 +- 3 files changed, 48 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3b6baac5..c47aacf7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,51 @@ # Change Log +## 2.0.0rc3 31/03/2017 + +* Support IOU image without .bin at the end +* Allow to change some properties of an already connected ethernet switch +* Ensure we start only one ubridge +* Catch some broken hostname for compute node +* Fix limit of 20 docker containers +* Fix race conditions in creation of Frame Relay Switch +* Fix conversion of project from 1.X with custom symbol for cloud +* Dissallow parallel pull of docker images +* Add a scripts for running current dev version on GNS3 VM +* Fix a crash with missing size in the svg files +* Fix an utf8 error in auth code +* Improve vmrun timeout message +* Support utf-8 characters in user and password for auth +* Handle password configuration change on remote servers +* Fix Bug when delete fake-running VMBox +* Fix Can't connect to compute local on some computers +* Add a modification uuid to settings returned by the server +* Check python version in setup.py only for install +* Fix Session is closed when listing docker images +* Cleanup docker source code +* Use aiohttp session for docker queries +* Escape special characters from SVG text +* Fix some port short name display issues +* Catch server disconnected errors from computes +* Generate a node uuid if the uuid is missing in the .gns3 +* Ensure to dump project before exporting it +* Fix return code check for SIGSEGV of IOU images +* Prevent vmname change for VirtualBox linked clone +* Upgrade to aiohttp 1.3.5 to solve issue with big file +* Handle some invalid svg +* Try to fix some 1.3 topology with corrupted data +* Fix ComputeError: Can't connect to Main server +* Catch error when the server as trouble to access to itself +* Catch a timeout error in docker +* Lock yarl version because 0.10 is not compatible with aiohttp 1.3 +* Raise error if image are not avaible on main server during export +* Fix a race condition when killing ubridge +* If your settings from 1.X are broken with skip them at import +* Catch a permission error on symbols +* Catch unicode error when you try to duplicate a project with invalid characters +* Catch error when you try to put an invalid server url +* Fix an error when handling ubridge errors +* Fix crash when handling an error in project creation + ## 2.0.0rc2 10/03/2017 * Drop color logging for remote install, seem to fail in some conditions diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index defbe8e1..4d13eadf 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://7c028290d17b4035916285b304d42311:ddf752e704c7423cacab93f8e34f713c@sentry.io/38482" + DSN = "sync+https://71c8e5474e304e2384abc4df1b245acb:9f6d1b1b885a4ad1895f55338d4522d7@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 900b10cc..6d82d6e1 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.0dev11" +__version__ = "2.0.0rc3" # If it's a git checkout try to add the commit if "dev" in __version__: