mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 03:08:14 +00:00
2.0.0a4
This commit is contained in:
parent
62db0b628b
commit
abcddb99b8
50
CHANGELOG
50
CHANGELOG
@ -1,5 +1,55 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.0.0alpha4
|
||||||
|
|
||||||
|
* Do not block traffic originating from an Ethernet interface in the cloud. Ref #771.
|
||||||
|
* Prevent capture on non running node
|
||||||
|
* Make the Ethernet side the source in uBridge connection and UDP tunnel the destination. Ref #771.
|
||||||
|
* IOURC is a text box instead of a file path
|
||||||
|
* Use vnetlib64.exe when possible
|
||||||
|
* Multiple improvements around starting the GNS3 VM
|
||||||
|
* Wait for the end of project loading before making new change
|
||||||
|
* Avoid crash due to permission error on the .backup file
|
||||||
|
* For security reason debug informations can only be exported from local server
|
||||||
|
* Add more debug informations if VM failed to start
|
||||||
|
* Fix opening a project whith the same non linked VM as current project
|
||||||
|
* Return default symbol if user asked for a non existing symbol
|
||||||
|
* Do not log warning at qemu exit on windows if it's normal
|
||||||
|
* Speed up interfaces listening on Windows
|
||||||
|
* Fix filtering special interfaces on Windows
|
||||||
|
* If server answer not found explain this could be due to the usage of 1.X server
|
||||||
|
* Do not reload a project via /load if the project is already opened
|
||||||
|
* Fix you can not pass auto close at project creation
|
||||||
|
* Fix traceback when sending invalid parameters to the server
|
||||||
|
* Require ubridge 0.9.7 this fix error with IOL bridge creation
|
||||||
|
* Display path of vnetlib during interface creations
|
||||||
|
* Catch errors when listing images
|
||||||
|
* Better handle compute unavailable errors
|
||||||
|
* Fix NameError: name 'available_ram' is not define
|
||||||
|
* If we can found a common subnet we return the host binding for link creation
|
||||||
|
* Do not connect GNS3 to remote server via 169.254.X.X
|
||||||
|
* Qemu telnet support multiple client connected
|
||||||
|
* Support multiple client connected to the same VPCS console
|
||||||
|
* Increase timeout for link creation
|
||||||
|
* Support for serial console for Virtual BOX and VMware using asyncio
|
||||||
|
* Fix timeout issues when starting VMware or VBox
|
||||||
|
* Ask for reboot if VBoxManage is not found
|
||||||
|
* Fix a crash with VirtualBox linked clone
|
||||||
|
* Replace iouyap by ubridge to handle IOU connections. Fixes #614.
|
||||||
|
* Lock VMware by VM instead of globally
|
||||||
|
* Support bridge in cloud
|
||||||
|
* Fix support of IOS images outside standard directories
|
||||||
|
* Raise clean error when node timeout when stopped
|
||||||
|
* Fix random VirtualBox creation error when using linked clone
|
||||||
|
* Drop console_type serial, and enable_remote_console for Vbox and VMware
|
||||||
|
* Do not dump iourc_content to .gns3 file
|
||||||
|
* Forward server disconnected errors
|
||||||
|
* Fix a crash when vboxmanage is not found
|
||||||
|
* Raise error if IOU image is not configured
|
||||||
|
* Fix crash when getting font
|
||||||
|
* Fix a crash when default font is missing
|
||||||
|
* Fix a crash when vmrun is not found
|
||||||
|
|
||||||
## 2.0.0 alpha 3 28/10/16
|
## 2.0.0 alpha 3 28/10/16
|
||||||
|
|
||||||
* Fix uuid of VirtualBox VM after a save as
|
* Fix uuid of VirtualBox VM after a save as
|
||||||
|
@ -53,7 +53,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "sync+https://687deceeecd441519eeac22a55689498:946da6b558054f7b83a793b3c196d150@sentry.io/38482"
|
DSN = "sync+https://1339db9521024612af8ab104adc85240:70d15b7dfbf84370bc9ef7c95f4d3459@sentry.io/38482"
|
||||||
if hasattr(sys, "frozen"):
|
if hasattr(sys, "frozen"):
|
||||||
cacert = get_resource("cacert.pem")
|
cacert = get_resource("cacert.pem")
|
||||||
if cacert is not None and os.path.isfile(cacert):
|
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
|
# or negative for a release candidate or beta (after the base version
|
||||||
# number has been incremented)
|
# number has been incremented)
|
||||||
|
|
||||||
__version__ = "2.0.0dev4"
|
__version__ = "2.0.0a4"
|
||||||
__version_info__ = (2, 0, 0, -99)
|
__version_info__ = (2, 0, 0, -99)
|
||||||
|
Loading…
Reference in New Issue
Block a user