diff --git a/CHANGELOG b/CHANGELOG index 9e902340..00efc615 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,21 @@ # Change Log +## 2.1.6 22/05/2018 + +* Locks down async-timeout<3.0.0 for P3.4 support; Fixes: #1331 +* Create/update project on compute when variables changes +* Support for nested global variables +* Don't clean logo images when applied to the project +* Support of supplier and variables in topology +* Project global variables +* Add command information when uBridge has an error. Ref #1289 +* Handle asyncio timeouts. Ref #1307. +* Fix bug with export project. Ref #1187 #1307. +* Offload slow file operations to threads for snapshots and project "save as". Ref #1187 #1307. +* support based on init.sh, Ref: #2482 +* Fix exception from send_signal() on Windows. +* Add support of ExtraHosts for Docker, Ref. gns3-gui#2482 + ## 2.1.5 18/04/2018 * Set the first byte to 0C when generating a random MAC address for a Qemu VM. Ref #1267. diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 8b62c717..5479ebf1 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://f732825cd5004443b62a937d7d28c3bf:9e2bb2ac3f07496693fc9839c6193e20@sentry.io/38482" + DSN = "sync+https://b0dcf456eaa24e97b46d789ecf927d41:f2541a589b1b492fb79f8bee5b9d799d@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 025b7bbd..0a3f8158 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -24,7 +24,7 @@ # number has been incremented) __version__ = "2.1.6" -__version_info__ = (2, 1, 6, 99) +__version_info__ = (2, 1, 6, 0) # If it's a git checkout try to add the commit if "dev" in __version__: