From bdfc0b35b3a9c898e4448163d42633868f4a1687 Mon Sep 17 00:00:00 2001 From: Eshaan Bansal Date: Fri, 12 Nov 2021 18:50:45 +0530 Subject: [PATCH] Release: v3.2.1 --- .github/CHANGELOG.md | 21 +++++++++++++++++++++ docker/.env | 2 +- docs/source/conf.py | 2 +- intel_owl/settings.py | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 5e16b145ed..be0bc2d15e 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -2,6 +2,27 @@ [**Upgrade Guide**](https://intelowl.readthedocs.io/en/latest/Installation.html#update-to-the-most-recent-version) +## [v3.2.1](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.1) + +> Update PyIntelOwl to version [4.1.3](https://github.com/intelowlproject/pyintelowl/blob/master/.github/CHANGELOG.md#413). + +**REST API changes**: + +- New parameter `minutes_ago` in the `/api/ask_analysis_availability` endpoint. + +**Bug Fixes:** + +- Fix AWS S3 storage not working for file analysis. +- Fix in intezer analyzers to correctly manage HashDoesNotExistError error +- Fix in `Fortiguard` analyzer. +- Temporary disable `Quark_Engine_APK` analyzer in CI tests because of [quark-engine/quark-engine#286](https://github.com/quark-engine/quark-engine/issues/286). + +**Other:** + +- Updated to python 3.9 in CI. +- Uniform docker-compose version in all docker-compose files. +- Use isort to sort import statements. + ## [v3.2.0](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.0) **New Analyzers:** diff --git a/docker/.env b/docker/.env index d6977ddc3d..311309bace 100644 --- a/docker/.env +++ b/docker/.env @@ -1,5 +1,5 @@ ### 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=v3.2.0 +INTELOWL_TAG_VERSION=v3.2.1 ### Change this to `develop` when doing local development. INTELOWL_NG_TAG_VERSION=v3.1.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index a0e28781fe..435020f4bf 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 = "v3.2.0" +release = "v3.2.1" # -- General configuration --------------------------------------------------- diff --git a/intel_owl/settings.py b/intel_owl/settings.py index 0f8807f57e..34e3d15919 100644 --- a/intel_owl/settings.py +++ b/intel_owl/settings.py @@ -153,7 +153,7 @@ def retrieve(self, file, analyzer): # DRF Spectacular SPECTACULAR_SETTINGS = { "TITLE": "IntelOwl API specification", - "VERSION": "3.2.0", + "VERSION": "3.2.1", } # Django-Rest-Durin