diff --git a/CHANGELOG b/CHANGELOG index 36fceac1..d465edda 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,16 @@ # Change Log +## 2.2.0b1 21/05/2019 + +* Upgrade GNS3 Web UI to v2019.2.0-alpha.3 +* Change behavior when an IOU license is verified. Fixes https://github.com/GNS3/gns3-server/issues/1555 +* Fix Qemu VM state support after closing a project and check for JSON data returned by qemu-img. Fixes #1591 +* Ensure Qemu monitor commands are executed. Ref #1582. +* Set console type to "none" by default for Ethernet switches and add a warning if trying to use "telnet". Fixes https://github.com/GNS3/gns3-gui/issues/2776 +* Add %console-port% variable for additional Qemu options. Fixes https://github.com/GNS3/gns3-gui/issues/2786 +* Fix invalid reStructuredText for long description in setup.py +* Support for additional persistent docker volumes + ## 2.2.0a5 15/04/2019 * Back to the major.minor version for config files. Ref https://github.com/GNS3/gns3-gui/issues/2756 diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index b88ddba5..320dcbe4 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://7beef06951ab456bb9e17c0ffad7f494:2277ec5146db4649abde8c25c233e8b3@sentry.io/38482" + DSN = "https://6b4544f8cc1b42f798941c844ca6dfa6:885563130aca4d8e87ba097d098229a3@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 ef3b50f4..4a5c03c9 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.0dev11" -__version_info__ = (2, 2, 0, 99) +__version__ = "2.2.0b1" +__version_info__ = (2, 2, 0, -99) # If it's a git checkout try to add the commit if "dev" in __version__: