diff --git a/CHANGELOG b/CHANGELOG index 934807b3..05c47e54 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,16 @@ # Change Log +## 2.1.0rc3 19/10/2017 + +* Set vhv.enable before run for VMWare 14. Fixes #1184 +* Tweak how VMware VMs are found with fallback to search in the default location for VMs. +* QEMU: fix logging of base mac address when creating a new node +* Sync appliance files. +* Fix creation of an VMware VM failed with invalid JSON. Fixes #2282. +* Endpoint for obtaining direct action on compute +* Fix IOU detection of layer 1 keepalive support. Fixes #1183. +* Fixes path normalization during file upload on nodes (Fixes: #2276) + ## 2.1.0rc2 04/10/2017 * Don't create directory structure during json dump. Fixes #2270 diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 06957553..9d43c056 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://08ddccd89c204af287b40f68183d38b8:2637bd9a77a84523ae52c59d794cb862@sentry.io/38482" + DSN = "sync+https://5dddb67b02674e8d892c478221980726:e0a69388fbd24ae08e4496b977fedbad@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 567318e4..7daf7d35 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,7 +23,7 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.1.0dev8" +__version__ = "2.1.0rc3" __version_info__ = (2, 1, 0, -99) # If it's a git checkout try to add the commit