2.0.0 beta 2

pull/862/head v2.0.0b2
Julien Duponchelle 8 years ago
parent 4eed9acbd5
commit 2acd6ce884
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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

@ -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):

@ -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)

Loading…
Cancel
Save