Skip to content

Commit

Permalink
added changelog and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed May 4, 2022
1 parent 5b39b2d commit 73522ff
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
18 changes: 17 additions & 1 deletion .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

[**Upgrade Guide**](https://intelowl.readthedocs.io/en/latest/Installation.html#update-to-the-most-recent-version)

## [v3.4.0](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.4.0)
**New/Improved Analyzers:**
- Improved MISP analyzer: more options and fixed a bug (#979, #1000)
- Improved VT3 analyzers: now it is possible to extract relationships data + the analyzers are optimized to reduce the number of queries and save quota (#988)
- New [VirusTotal_v3_Intelligence_Search](https://developers.virustotal.com/reference/search) for premium users (#981)
- New [Yara_Scan_Bartblaze](https://github.com/bartblaze/Yara-rules) analyzer
- New [DocGuard](docguard.io) analyzer (#990)
- New [Anomali ThreatStream](threatstream.com) analyzer for premium users (#976)
- New [IntelX_Intelligent_Search](intelx.io) analyzer (it comes to complete the IntelX endpoints already available) (#974)

**Other:**
- some fixes #952, #938
- adjusted PR automation
- a lot of dependencies upgrades
- renamed `Yara_Scan_McAfee` analyzer to `Yara_Scan_Trellix` and `Virushee_UploadFile` to `Virushee_Upload_File`

## [v3.3.2](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.3.2)
**Notes:**

Expand All @@ -16,7 +32,7 @@ If you are interested in helping the project through a donation, read [here](htt

**Other:**
- fixes: [#931](https://github.com/intelowlproject/IntelOwl/issues/931)
- several dependecies upgrades
- several dependencies upgrades


## [v3.3.1](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.3.1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _vt_get_relationships(
result[relationship] = response.json()
except Exception as e:
logger.error(
f"something went wrong when extracting relationships"
"something went wrong when extracting relationships"
f" for observable {observable_name}: {e}"
)

Expand Down
2 changes: 1 addition & 1 deletion docker/.env
Original file line number Diff line number Diff line change
@@ -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.3.2
INTELOWL_TAG_VERSION=v3.4.0
### Change this to `develop` when doing local development.
INTELOWL_NG_TAG_VERSION=v3.1.0
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN api_app/analyzers_manager/repo_downloader.sh

# this is because botocore points to legacy endpoints
# more info: https://stackoverflow.com/questions/41062055/celery-4-0-0-amazon-sqs-credential-should-be-scoped-to-a-valid-region-not
RUN sed -i "s/{region}.queue/sqs.{region}/g" $(find / -name endpoints.json 2>/dev/null | head -n 1)
RUN sed -i "s/{region}.queue/sqs.{region}/g" "$(find / -name endpoints.json 2>/dev/null | head -n 1)"

# quarkengine calls
# HOME_DIR = f"{Path.home()}/.quark-engine/"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "Matteo Lodi"

# The full version, including alpha/beta/rc tags
release = "v3.3.2"
release = "v3.4.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/schema.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: IntelOwl API specification
version: 3.3.2
version: 3.4.0
paths:
/api/analyze_file:
post:
Expand Down
2 changes: 1 addition & 1 deletion intel_owl/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def retrieve(self, file, analyzer):
# DRF Spectacular
SPECTACULAR_SETTINGS = {
"TITLE": "IntelOwl API specification",
"VERSION": "3.3.2",
"VERSION": "3.4.0",
}

# Django-Rest-Durin
Expand Down

0 comments on commit 73522ff

Please sign in to comment.