Release v3.0.0b3

gh-pages v3.0.0b3
grossmj 1 month ago
parent e50e2c90bd
commit 3e512e650a
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

@ -1,5 +1,16 @@
# Change Log
## 3.0.0b3 19/05/2024
* Bundle web-ui v3.0.0b3
* Fix to allow duplicating IOS routers
* Fix to allow changing the auxiliary console for IOS router nodes.
* Replace deprecated method datetime.utcnow()
* Upgrade FastAPI to v0.111.0
* Fix reset console for non running IOU devices
* Do not allow to create a builtin template using the API.
* Use cryptography backend for python-jose. Ref #2372
## 2.2.47 15/05/2024
* Fix update-bundled-web-ui.sh script

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

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.dev13"
__version_info__ = (3, 0, 0, 99)
__version__ = "3.0.0b3"
__version_info__ = (3, 0, 0, -99)
if "dev" in __version__:
try:

Loading…
Cancel
Save