Skip to content

Commit

Permalink
[MRG] Merge pull request #340 from dfir-iris/v2.3.5-hf
Browse files Browse the repository at this point in the history
Patch - v2.3.5
  • Loading branch information
whikernel authored Nov 30, 2023
2 parents 16a67f4 + f8fe199 commit 9367392
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.3.4
current_version = 2.3.5
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*)-(?P<build>\d+))?
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p align="center">
Incident Response Investigation System
<br>
<i>Current Version v2.3.4</i>
<i>Current Version v2.3.5</i>
<br>
<a href="https://v200.beta.dfir-iris.org">Online Demonstration</a>
</p>
Expand Down Expand Up @@ -52,7 +52,7 @@ git clone https://github.com/dfir-iris/iris-web.git
cd iris-web

# Checkout to the last tagged version
git checkout v2.3.4
git checkout v2.3.5

# Copy the environment file
cp .env.model .env
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
build:
context: docker/db
container_name: iriswebapp_db
image: iriswebapp_db:v2.3.4
image: iriswebapp_db:v2.3.5
restart: always
# Used for debugging purposes, should be deleted for production
ports:
Expand All @@ -47,7 +47,7 @@ services:
build:
context: .
dockerfile: docker/webApp/Dockerfile
image: iriswebapp_app:v2.3.4
image: iriswebapp_app:v2.3.5
container_name: iriswebapp_app
command: ['nohup', './iris-entrypoint.sh', 'iriswebapp']
volumes:
Expand Down Expand Up @@ -85,7 +85,7 @@ services:
build:
context: .
dockerfile: docker/webApp/Dockerfile
image: iriswebapp_app:v2.3.4
image: iriswebapp_app:v2.3.5
container_name: iriswebapp_worker
command: ['./wait-for-iriswebapp.sh', 'app:8000', './iris-entrypoint.sh', 'iris-worker']
volumes:
Expand Down Expand Up @@ -121,7 +121,7 @@ services:
args:
NGINX_CONF_GID: 1234
NGINX_CONF_FILE: nginx.conf
image: iriswebapp_nginx:v2.3.4
image: iriswebapp_nginx:v2.3.5
container_name: iriswebapp_nginx
environment:
- IRIS_UPSTREAM_SERVER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ <h4>General info <button class="ml-2 btn btn-sm float-right" onclick="edit_case_
</div>
<div class="form-group mt--3">
<label>Case tags :</label>
<span type="text" class="text-faded">{% if data.tags %} {% for tag in data.case_tags %}
<span class="badge badge-pill badge-light ml-1"><i class="fa fa-tag mr-1"></i>{{ tag }}</span> {% endfor %}{% endif %}</span>
<span type="text" class="text-faded">{% if data.tags %} {% for tag in data.tags %}
<span class="badge badge-pill badge-light ml-1"><i class="fa fa-tag mr-1"></i>{{ tag.tag_title }}</span> {% endfor %}{% endif %}</span>
</div>
<div class="form-group mt--3">
<label>SOC ID :</label>
Expand Down Expand Up @@ -262,7 +262,7 @@ <h4 class=" pb-3">Edit case information</h4>
<label for="asset_tags">Case tags
</label>
<input type="text" id="case_tags"
class="form-control col-md-12" {% if data.case_tags %} value="{{ data.case_tags }}" {% endif %}/>
class="form-control col-md-12" {% if data.tags %} value="{% for tag in data.tags %}{{ tag.tag_title }},{% endfor %}" {% endif %}/>
</div>
<div class="form-group px-4 py-4 mt-3" id="protagonists_form_group">
{% if protagonists %}
Expand Down
2 changes: 1 addition & 1 deletion source/app/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class CeleryConfig:
# --------- APP ---------
class Config:
# Handled by bumpversion
IRIS_VERSION = "v2.3.4"
IRIS_VERSION = "v2.3.5"

API_MIN_VERSION = "2.0.0"
API_MAX_VERSION = "2.0.3"
Expand Down

0 comments on commit 9367392

Please sign in to comment.