From b903e2ad73a1759a9cec28a0ae04b201bcf6cffb Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 1 Nov 2019 17:53:20 +0800 Subject: [PATCH] Release v2.2.1 --- CHANGELOG | 17 +++++++++++++++++ gns3/crash_report.py | 2 +- gns3/version.py | 4 ++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a7cd00a64..41c712d50 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,22 @@ # Change Log +## 2.2.1 01/11/2019 + +* Check if console_type is None. +* Explicitly cleanup the cache directory. +* Get Windows interface from registry if cannot load win32com module. +* Ignore OSError returned by psutil when bringing console to front. +* Catch error if NPF or NPCAP service cannot be detected. Ref https://github.com/GNS3/gns3-server/issues/1670 +* Better handling for reading synchronous JSON response from server. Ref #2874 +* Fix JSONDecodeError when getting server version. Fixes #2874 +* Fix FileNotFoundError exceptions when launching SPICE or VNC clients. +* Fix UnboundLocalError local variable 'win32serviceutil' referenced before assignment +* 'Fix' tab order in preferences dialog so it follows the layout +* 'Fix' tab order in edit project dialog so it follows the layout +* Use compatible shlex_quote to handle case where Windows needs double quotes around file names, not single quotes. Ref https://github.com/GNS3/gns3-gui/issues/2866 +* Use 0.0.0.0 by default for server host. Fixes https://github.com/GNS3/gns3-server/issues/1663 +* Catch IndexError when configuring port names. Fixes #2865 + ## 2.2.0 30/09/2019 * No changes diff --git a/gns3/crash_report.py b/gns3/crash_report.py index b69cb7d44..933adabf9 100644 --- a/gns3/crash_report.py +++ b/gns3/crash_report.py @@ -52,7 +52,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "https://d2660ce45df5459a964576111ea6b651:584df32b61cc483384b73ec36a98d31f@sentry.io/38506" + DSN = "https://b417e24c01214abb838e543a55da28a5:137cd1cd75924dbe96908b00c2400f7d@sentry.io/38506" if hasattr(sys, "frozen"): cacert = get_resource("cacert.pem") if cacert is not None and os.path.isfile(cacert): diff --git a/gns3/version.py b/gns3/version.py index d9c82b6e4..06cf7017e 100644 --- a/gns3/version.py +++ b/gns3/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.1dev1" -__version_info__ = (2, 2, 1, 99) +__version__ = "2.2.1" +__version_info__ = (2, 2, 1, 0) # If it's a git checkout try to add the commit if "dev" in __version__: