Skip to content

Commit

Permalink
Release v3.0.0b2
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Apr 7, 2024
1 parent e116214 commit 84f7337
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions gns3server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 84f7337

Please sign in to comment.