Release v3.0.0a6

pull/2362/head v3.0.0a6
grossmj 6 months ago
parent 48dab4af61
commit 24d958d9ec

@ -1,5 +1,19 @@
# Change Log
## 3.0.0a6 15/11/2023
* Bundle web-ui v3.0.0a6
* Upgrade to aiohttp v3.9.0rc0
* Install Docker resources in writable location
* Default compute username is "gns3"
* Non-blocking checksums computation when server starts. Fixes #2228
* Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313
* Fix broken link to Web UI in 3.0 branch. Fixes #2312
* Fix sample config: VMware section declared twice. Fixes #2311
* Fix ws console and packet capture over SSL
* Support for web socket console over HTTPS
* Allow disabling hardware virtualization check
## 2.2.44 06/11/2023
* Bundle web-ui v2.2.44

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://803d7abaf0e865096421affb70ee9368@o19455.ingest.sentry.io/38482"
DSN = "https://7439f47d7914699d39d94fa76b867a65@o19455.ingest.sentry.io/38482"
_instance = None
def __init__(self):

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -22,8 +22,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "3.0.0.dev10"
__version_info__ = (3, 0, 0, 99)
__version__ = "3.0.0a6"
__version_info__ = (3, 0, 0, -99)
if "dev" in __version__:
try:

Loading…
Cancel
Save