Skip to content

Commit

Permalink
bump version and added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Nov 18, 2022
1 parent 6bcb7fc commit 56beeba
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion .github/release_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion docker/.env
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion docker/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_INTELOWL_VERSION="v4.1.1"
REACT_APP_INTELOWL_VERSION="v4.1.2"
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 = "v4.1.1"
release = "v4.1.2"


# -- 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: 4.1.1
version: 4.1.2
paths:
/api/analyze_file:
post:
Expand Down
2 changes: 1 addition & 1 deletion intel_owl/settings/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion start.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)
exit(2)

CURRENT_VERSION = "4.1.1"
CURRENT_VERSION = "4.1.2"

DOCKER_ANALYZERS = [
"tor_analyzers",
Expand Down

0 comments on commit 56beeba

Please sign in to comment.