Release v2.2.55

This commit is contained in:
grossmj 2025-11-19 12:13:56 +10:00
parent f24134a8f5
commit 37f17209d3
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7
3 changed files with 16 additions and 4 deletions

View File

@ -1,5 +1,18 @@
# Change Log
## 2.2.55 19/11/2025
* Docker API version requirements and process to handle older daemons
* Use docker_name property when creating a container
* Set name of container in Docker
* Support for Python 3.14
* Enable ip cef in IOU L2 and IOU L3 base configs
* Only build and push Docker image when releasing a new version
* Fix pushing Docker image to Docker hub
* Update security issues in README.md. Fixes #2535
* Add missing 'nat' template type in schema. Fixes #2529
* Resolve deprecation warnings of regex library
## 2.2.54 21/04/2025
* Bundle web-ui v2.2.54

View File

@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://c663917f99579c9b5a5c0764415c0bd4@o19455.ingest.us.sentry.io/38482"
DSN = "https://9721facaf4cb1e0a93e126300ea56901@o19455.ingest.us.sentry.io/38482"
_instance = None
def __init__(self):

View File

@ -23,9 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.55.dev1"
__version_info__ = (2, 2, 54, 99)
__version__ = "2.2.55"
__version_info__ = (2, 2, 55, 0)
if "dev" in __version__:
try:
import os