Release v3.0.0b2

gh-pages v3.0.0b2
grossmj 4 weeks ago
parent e11621467b
commit 84f7337cb1
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

@ -1,5 +1,18 @@
# Change Log
## 3.0.0b2 07/04/2024
* Bundle web-ui v3.0.0b2
* Fix cannot stop Docker VM while console connection is still active.
* Support for custom Qemu path in templates and nodes
* Fix CPU fractional values for Docker VMs.
* Use bcrypt directly instead of passlib
* Update CORS policy
* Do not stop searching for Qemu binaries if one binary cannot be executed. Ref #2306
* Fix Ethernet switch and Ethernet hub port validations. Fixes #2334
* Update CORS policy
## 2.2.46 26/02/2024
* Bundle web-ui v2.2.46

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://1608802d5d3109b6533e8b270cc8c9b6@o19455.ingest.sentry.io/38482"
DSN = "https://395af26fb5b2245d4c9810095aa11da9@o19455.ingest.us.sentry.io/38482"
_instance = None
def __init__(self):

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

Loading…
Cancel
Save