From 62c5aa29481e5206cf9b2a30ac41a190e40c49c7 Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 5 Apr 2019 19:10:04 +0800 Subject: [PATCH] Release v2.2.0a4 --- CHANGELOG | 14 +++++++++++++- gns3server/crash_report.py | 2 +- gns3server/version.py | 4 ++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b1decb69..d253cc9a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,18 @@ # Change Log +## 2.2.0a4 05/04/2019 + +* Use the full version number for path to config files. Ref https://github.com/GNS3/gns3-gui/issues/2756 +* Support for docker images that set the USER directive. Changes the docker user to root for the init script to configure the network, then drops to the configured user (or root if one is not defined) for continuing booting the image. +* Fix packet filter not working for Ethernet switch and Ethernet hub. Fixes https://github.com/GNS3/gns3-gui/issues/2754 +* Fix remote packet capture for Dynamips. +* Fix remote packet capture and make sure packet capture is stopped when deleting an NIO. Fixes https://github.com/GNS3/gns3-gui/issues/2753 +* Store config files in version specific location +* Update pytest from 4.3.1 to 4.4.0 +* Fix opening previously saved 2.1 project grid overlapping. Fixes #2734 +* Fix empty theme name in symbol selection dialog. Fixes https://github.com/GNS3/gns3-gui/issues/2751 +* Bundle v2019.1.0-alpha.3 web-ui + ## 2.2.0a3 25/03/2019 * Fix traceback when starting packet capture on builtin nodes. Fixes https://github.com/GNS3/gns3-gui/issues/2743 @@ -15,7 +28,6 @@ * Save the GNS3 VM settings even if the GNS3 VM cannot be stopped. * Fix exception when emitting event from controller. Ref https://github.com/GNS3/gns3-gui/issues/2737 - ## 2.2.0a2 14/03/2019 * Web-UI v2019.1.0-alpha.1 diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 895c015d..c063d389 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -58,7 +58,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "https://17f6a9ea6a9349eda6a74119a5c4b510:7369426a11b14db5aea6b85e2df57a95@sentry.io/38482" + DSN = "https://eb305634570047afb80a73d634baa5f2:453d676bad2b4d068326e6cb22af7ae5@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 1feb317c..fbd2dd5f 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,8 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.2.0dev9" -__version_info__ = (2, 2, 0, 99) +__version__ = "2.2.0a4" +__version_info__ = (2, 2, 0, -99) # If it's a git checkout try to add the commit if "dev" in __version__: