diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5dea5ef..d2b3343 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -181,3 +181,16 @@ in a sort of pre-release mode. * Updated flask dependencies (#180) (#222) * Configure flask maximum content length + +3.5.0 (2025-09-18) +################## + +* Addressed issue #245, sanitize input on post_job_results - thanks @whartond +* Updated documentation +* Code cleanup (ruff) +* Bump dependencies + * jinja2 to 3.1.6 + * flask to 3.1.1 +* Contributions from @da667 - thank you! + * Added cyberchef container (#235) + * Updated base OS to Ubuntu 24.04 (#234) diff --git a/app/__init__.py b/app/__init__.py index 923c684..12aebc4 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -6,7 +6,7 @@ from app.dalton import dalton_blueprint, ensure_rulesets_exist, setup_dalton_logging from app.flowsynth import flowsynth_blueprint, setup_flowsynth_logging -__version__ = "3.4.2" +__version__ = "3.5.0" def create_app(test_config=None): diff --git a/pyproject.toml b/pyproject.toml index c696d67..a540935 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ ignore = ["E501"] "dalton-agent/dalton-agent.py" = ["B"] [tool.bumpversion] -current_version = "3.4.2" +current_version = "3.5.0" commit = true allow_dirty = false