From b6b345508bffde1ef0939d5c25f3d1fe5b6e7b93 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sat, 15 Sep 2018 11:19:55 +0200 Subject: [PATCH] Release v2.1.10 --- CHANGELOG | 22 ++++++++++++++++++++++ gns3server/crash_report.py | 2 +- gns3server/version.py | 4 ++-- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index cd56eb79..b42116f4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,27 @@ # Change Log +## 2.1.10 15/09/2018 + +* Include locale information and GNS3 VM version in crash reports. +* Fix small errors like unhandled exceptions etc. +* Import encodings.idna to avoid LookupError when standard library is in a zip file. +* Catch exceptions in various locations to fix small issues reported by Sentry. +* Check if serial pipe can be opened for VMware and VirtualBox VMs. +* Improve the invalid port format detection. Fixes https://github.com/GNS3/gns3-gui/issues/2580 +* Update aiohttp verion requirement in order to support Python 3.7. Fixes https://github.com/GNS3/gns3-gui/issues/2566 +* Update setup.py and fix minor issues. +* Catch asyncio.CancelledError when shutting down the server. +* Report GNS3 VM errors to the GUI server summary. Ref #1359. +* Replace vboxnet0 (if it does not exist) by the first available vboxnet interface on Windows. Fixes https://github.com/GNS3/gns3-vm/issues/102 +* Check if the VirtualBox host-only network exists when starting a GNS3 VM running on VirtualBox. Ref https://github.com/GNS3/gns3-vm/issues/102 +* Change file timestamps if necessary because ZIP does not support timestamps before 1980. Fixes #1360. +* Add missing coroutine decorator Ref https://github.com/GNS3/gns3-gui/issues/2566 +* Refactor asyncio locking system for Python 3.7 support. Ref https://github.com/GNS3/gns3-gui/issues/2566 Ref https://github.com/GNS3/gns3-gui/issues/2568 +* Use asyncio.ensure_future() instead of asyncio.async() with conservative approach to support Python < 3.4.4. Fixes https://github.com/GNS3/gns3-gui/issues/2566 +* Forbid controller and compute servers to be different versions. Report last compute server error to clients and display in the server summary. +* Fix exception with short names for Dynamips interfaces. Fixes #1386. +* Add missing Qemu boot priority values. Fixes https://github.com/GNS3/gns3-server/issues/1385 + ## 2.1.9 13/08/2018 * Fix some more problems with interface short names. Fixes https://github.com/GNS3/gns3-gui/issues/2562 diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 020cf02e..fd3fcc1d 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -57,7 +57,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://56af21e241ed4c1894ebe17bf06b1cd1:6075f91067954267b51e90b9638a6fad@sentry.io/38482" + DSN = "https://71472e2845b2422cab117bdfa8af55ec:da50c8f08b9f44d8b905356741c278df@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 3d8ef14e..fa2bfcf6 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.1.10dev2" -__version_info__ = (2, 1, 10, 99) +__version__ = "2.1.10" +__version_info__ = (2, 1, 10, 0) # If it's a git checkout try to add the commit if "dev" in __version__: