diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 3186472655..dc51cc49c5 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,6 +1,21 @@ # Changelog [**Upgrade Guide**](https://intelowl.readthedocs.io/en/latest/Installation.md#update-to-the-most-recent-version) +## [v4.1.2](https://github.com/intelowlproject/IntelOwl/releases/tag/v4.1.2) + +This version mainly adds quality improvements to the recently released ["Playbook" feature](https://intelowl.readthedocs.io/en/latest/Usage.html#playbooks): +* Now it is possible to create a new Playbook easily thanks to a proper button in the GUI. In this way you can save your own Playbooks and repeat them. +* Now Playbooks support the check of already existing similar analysis like normal analysis already do. This saves computational and analysts' time. + +Thanks to @0x0elliot for these new features. + +**New/Improved Analyzers:** +* VT analyzer has been fixed and works correctly when performing a "rescan" of a sample. +* AbuseIPDB analyzer does not show all the reports by default (this could become quite large) + +**Others** +- various fixes and stability contributions +- a lot of dependencies upgrades ## [v4.1.1](https://github.com/intelowlproject/IntelOwl/releases/tag/v4.1.1) diff --git a/.github/release_template.md b/.github/release_template.md index 92f9d52327..6a471f4aa8 100644 --- a/.github/release_template.md +++ b/.github/release_template.md @@ -2,7 +2,7 @@ - [ ] (optional) If we changed/added Docker Analyzers, we need to configure Docker Hub / Dependabot properly. - [ ] Update `CHANGELOG.md` for the new version -- [ ] Change version number in `docs/source/conf.py`, `docs/schema.yml`, `docker/.env`, `docker/.version`, `settings.commons.py` and `start.py` +- [ ] Change version number in `docs/source/conf.py`, `docs/schema.yml`, `docker/.env`, `docker/.version`, `intel_owl/settings.commons.py` and `start.py` - [ ] Verify CI Tests - [ ] Create release for the branch `develop`. A Github action should automatically create a [Twitter](https://twitter.com/intel_owl) post. Write the following statement there (change the version number): diff --git a/docker/.env b/docker/.env index 9fc8eb322c..44e72243fc 100644 --- a/docker/.env +++ b/docker/.env @@ -1,3 +1,3 @@ ### DO NOT CHANGE THIS VALUE !! ### It should be updated only when you pull latest changes off from the 'master' branch of IntelOwl. -INTELOWL_TAG_VERSION=v4.1.1 +INTELOWL_TAG_VERSION=v4.1.2 diff --git a/docker/.version b/docker/.version index f18af2aa11..6bfb840a35 100644 --- a/docker/.version +++ b/docker/.version @@ -1 +1 @@ -REACT_APP_INTELOWL_VERSION="v4.1.1" \ No newline at end of file +REACT_APP_INTELOWL_VERSION="v4.1.2" \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 99569021f6..d294eda714 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,7 +29,7 @@ author = "Matteo Lodi" # The full version, including alpha/beta/rc tags -release = "v4.1.1" +release = "v4.1.2" # -- General configuration --------------------------------------------------- diff --git a/docs/source/schema.yml b/docs/source/schema.yml index a272b6d6dc..4826a33a31 100644 --- a/docs/source/schema.yml +++ b/docs/source/schema.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: IntelOwl API specification - version: 4.1.1 + version: 4.1.2 paths: /api/analyze_file: post: diff --git a/intel_owl/settings/commons.py b/intel_owl/settings/commons.py index 83befa3754..a8af26ba34 100644 --- a/intel_owl/settings/commons.py +++ b/intel_owl/settings/commons.py @@ -20,7 +20,7 @@ # Overridden in test_custom_config FORCE_SCHEDULE_JOBS = False -VERSION = "4.1.1" +VERSION = "4.1.2" PUBLIC_DEPLOYMENT = get_secret("PUBLIC_DEPLOYMENT", "True") == "True" PROJECT_LOCATION = "/opt/deploy/intel_owl" diff --git a/start.py b/start.py index 7768a749a7..43413ae44f 100644 --- a/start.py +++ b/start.py @@ -16,7 +16,7 @@ ) exit(2) -CURRENT_VERSION = "4.1.1" +CURRENT_VERSION = "4.1.2" DOCKER_ANALYZERS = [ "tor_analyzers",