Skip to content

Commit

Permalink
Merge pull request #115 from certego/develop
Browse files Browse the repository at this point in the history
1.3.2
  • Loading branch information
Lorygold authored Jan 7, 2025
2 parents ffff049 + efc2e74 commit 72cf44c
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## 1.3.x
### 1.3.2
### Changes
* Removed "version" property from docker-compose files because it is obsolete now
#### Bugfix
* Fixed migration 0011
### 1.3.1
### Changes
* Forced the existence of only 1 Config object with id=1
Expand Down
1 change: 1 addition & 0 deletions buffalogs/buffalogs/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/
"""

import os
from datetime import timedelta
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions buffalogs/buffalogs/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""

from django.contrib import admin
from django.urls import include, path
from impossible_travel import views
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.16 on 2024-12-23 13:58
# Generated by Django 4.2.16 on 2025-01-07 16:35

import django.contrib.postgres.fields
from django.db import migrations, models
Expand Down Expand Up @@ -34,6 +34,7 @@ class Migration(migrations.Migration):
]

operations = [
migrations.RunPython(update_alert_name, migrations.RunPython.noop),
migrations.AddField(
model_name="alert",
name="filter_type",
Expand Down Expand Up @@ -381,5 +382,4 @@ class Migration(migrations.Migration):
name="valid_user_risk_score_choice",
),
),
migrations.RunPython(update_alert_name, migrations.RunPython.noop),
]
2 changes: 1 addition & 1 deletion django-buffalogs/buffalogs.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: buffalogs
Version: 1.3.1
Version: 1.3.2
Summary: A Django app to detect anomaly logins.
Author: Lorena Goldoni
License: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion django-buffalogs/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = buffalogs
version = 1.3.1
version = 1.3.2
description = A Django app to detect anomaly logins.
long_description = file: README.rst
author = Lorena Goldoni
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.elastic.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.2'

services:
elasticsearch:
container_name: buffalogs_elasticsearch
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.override.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.2'

services:
buffalogs:
volumes:
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.2'

services:

buffalogs_postgres:
Expand Down

0 comments on commit 72cf44c

Please sign in to comment.