diff --git a/CHANGELOG b/CHANGELOG index 65b9c829..330629d3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,40 @@ # Change Log +## 2.0.0 beta 2 20/12/2016 + +* Fix an error when docker hub failed to anwser +* Fix an issue with Docker and IOU packet capture +* Support aiohttp 1.2 (but not compatible with previous versions) +* Support UDP cloud from 1.5 +* Relax permission check on OSX, it seem returning wrong info for setuid +* Fix start all create error if a docker container is already running +* Close project if one one the compute of the project is down +* Fix error when you upload an empty file +* Fix KeyError: 'color' when converting some 1.3 topologies +* Fix move a docker restart it +* Fix export of projects with docker with a / in the image name +* Fix an error on Linux during export +* Fix hot link issues in Docker +* Fix Can't delete link between docker VM after they were in use +* Fix hardware virtualization detection when an ethernet switch is running +* Trust user for host binding of link adress +* Code cleanup for docker interface creation +* Fix a rare crash when writing a file on a remote server +* Fix delete project on remote compute server +* Fix trouble with builtin devices when we free ports +* When a dynamips command failed display the full command to the user +* Raise error when we can't found VboxManage at GNS3 VM startup +* Catch auth errors when adding a compute +* Do not block server startup if one project use non implemented conversion +* Fix an error when deleting a compute already deleted +* Catch cancelled error when you Ctrl-C during server initalisation +* Handle OSerror when listing images +* Fix a rare crash when stopping qemu +* Improve docker HTTP console +* Fix configuration lost during save as on remote server +* Add support for bios images +* Fix error when controller config file is corrupted + ## 2.0.0 beta 1 07/12/2016 * Fix crash if at controller loading the remote server is not a GNS3 server diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 2a2c8f8f..8dc025bf 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -53,7 +53,7 @@ class CrashReport: Report crash to a third party service """ - DSN = "sync+https://7f26962042804f8fb586600e9b54f954:d94785a63265426bb4b2e3ecce0b8972@sentry.io/38482" + DSN = "sync+https://d1ef96ccbfb54830aa1afaec870f2ee8:860a204699e84f79a319cc943a2d7a85@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 9ee99548..108ab9c1 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,5 +23,5 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.0.0dev6" +__version__ = "2.0.0b2" __version_info__ = (2, 0, 0, -99)