diff --git a/CHANGELOG b/CHANGELOG index 1b58762e..46785d7a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,13 @@ # Change Log +## 2.2.0b3 15/06/2019 + +* Fix template migration issues from GUI to controller. Fixes https://github.com/GNS3/gns3-gui/issues/2803 +* Refresh mounted media after ISO switch. +* Resolve conflicts in docker volumes instead of error. Fixes https://github.com/GNS3/gns3-server/issues/1595 +* %guest-cid% variable implementation for Qemu VMs. Fixes https://github.com/GNS3/gns3-gui/issues/2804 +* Fix KeyError: 'usage' exception when configuring IOU template. Fixes https://github.com/GNS3/gns3-gui/issues/2806 + ## 2.2.0b2 29/05/2019 * Ignore Unicode errors when reading base config file contents. diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 6416bc7f..f58b313d 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://eb9c34a9e4504bf99a6392a3ed2e0568:65d873fc33544886b239628c5e8577e4@sentry.io/38482" + DSN = "https://52dee6fc5b2a4a61880328386919e2f4:c84e7bbd39ce43b7aec27349e49fedf0@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 0e73452f..23614700 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.0dev13" -__version_info__ = (2, 2, 0, 99) +__version__ = "2.2.0b3" +__version_info__ = (2, 2, 0, -99) # If it's a git checkout try to add the commit if "dev" in __version__: