diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 60b40a1a6e..52b3d6b82e 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,6 +1,27 @@ # Changelog [**Upgrade Guide**](https://intelowl.readthedocs.io/en/latest/Installation.html#update-to-the-most-recent-version) +## [v3.4.1](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.4.1) +**Notes:** + +We are proud to announce that we have selected 3 contributors for the upcoming [Google Summer of Code](https://summerofcode.withgoogle.com/)! + +IntelOwlProject will run their projects under the umbrella of [The Honeynet Project](https://www.honeynet.org/), like the previous years. + +The contributors are going to have 3 intense months of work: with the help of the IntelOwl maintainers, they'll bring new functionalities to the project! + +- [Aditya Narayan Sinha](https://twitter.com/0x0elliot): "Creating Playbooks for IntelOwl" +- [Aditya Pratap Singh](https://twitter.com/devmrfitz): "IntelOwl v4 improvements" +- [Hussain Khan](https://twitter.com/Hussain41099635): "IntelOwl Go Client" + +We are also moving forward to release the next major version (v4). We just need to work on some update scripts. + +**Fixes/Adjustments:** +* Add support for ".csv" file in all the Analyzers for documents +* Refactored `Triage` analyzers +* Fixes: #951, #1004, #1003 +* usual dependencies upgrades + ## [v3.4.0](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.4.0) **New/Improved Analyzers:** diff --git a/docker/.env b/docker/.env index c361b49f1b..a98cfa378a 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.4.0 +INTELOWL_TAG_VERSION=v3.4.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 1d90046c50..da9348ba23 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.4.0" +release = "v3.4.1" # -- General configuration --------------------------------------------------- diff --git a/docs/source/schema.yml b/docs/source/schema.yml index 2eeca5c136..dc29e6f9a9 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: 3.4.0 + version: 3.4.1 paths: /api/analyze_file: post: diff --git a/intel_owl/settings.py b/intel_owl/settings.py index ab5e0725d3..8313b6ffdc 100644 --- a/intel_owl/settings.py +++ b/intel_owl/settings.py @@ -155,7 +155,7 @@ def retrieve(self, file, analyzer): # DRF Spectacular SPECTACULAR_SETTINGS = { "TITLE": "IntelOwl API specification", - "VERSION": "3.4.0", + "VERSION": "3.4.1", } # Django-Rest-Durin