diff --git a/CHANGELOG.md b/CHANGELOG.md index d970696..b854d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## 1.4.x ### 1.4.0 #### Features -* Implemented filter logic (*AlertFilter* class) based on the custom Config set +* Implemented filter logic based on the custom Config set ## 1.3.x ### 1.3.2 diff --git a/django-buffalogs/buffalogs.egg-info/PKG-INFO b/django-buffalogs/buffalogs.egg-info/PKG-INFO index 811b39b..be2c357 100644 --- a/django-buffalogs/buffalogs.egg-info/PKG-INFO +++ b/django-buffalogs/buffalogs.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: buffalogs -Version: 1.3.2 +Version: 1.4.0 Summary: A Django app to detect anomaly logins. Author: Lorena Goldoni License: Apache-2.0 @@ -36,6 +36,7 @@ Requires-Dist: pygal-maps-world>=1.0.2 Requires-Dist: python-dateutil>=2.8.2 Requires-Dist: python-dotenv>=0.21.0 Requires-Dist: PyYAML>=6.0 +Requires-Dist: ua-parser>=1.0.0 Requires-Dist: urllib3>=1.26.12 Requires-Dist: uWSGI>=2.0.28 Requires-Dist: virtualenv>=20.17.1 diff --git a/django-buffalogs/buffalogs.egg-info/SOURCES.txt b/django-buffalogs/buffalogs.egg-info/SOURCES.txt index 6bbda9c..c962f47 100644 --- a/django-buffalogs/buffalogs.egg-info/SOURCES.txt +++ b/django-buffalogs/buffalogs.egg-info/SOURCES.txt @@ -17,6 +17,7 @@ impossible_travel/constants.py impossible_travel/forms.py impossible_travel/models.py impossible_travel/tasks.py +impossible_travel/validators.py impossible_travel/views.py impossible_travel/management/commands/clear_models.py impossible_travel/management/commands/impossible_travel.py @@ -33,10 +34,16 @@ impossible_travel/migrations/0008_usersip.py impossible_travel/migrations/0009_config_ignored_ips_config_ignored_users_and_more.py impossible_travel/migrations/0010_config_alert_max_days_config_distance_accepted_and_more.py impossible_travel/migrations/0011_alert_filter_type_alert_is_filtered_and_more.py +impossible_travel/migrations/0012_remove_alert_valid_alert_filter_type_choices_and_more.py impossible_travel/migrations/__init__.py +impossible_travel/modules/alert_filter.py impossible_travel/modules/impossible_travel.py impossible_travel/modules/login_from_new_country.py impossible_travel/modules/login_from_new_device.py +impossible_travel/modules/__pycache__/alert_filter.cpython-312.pyc +impossible_travel/modules/__pycache__/impossible_travel.cpython-310.pyc impossible_travel/modules/__pycache__/impossible_travel.cpython-312.pyc +impossible_travel/modules/__pycache__/login_from_new_country.cpython-310.pyc impossible_travel/modules/__pycache__/login_from_new_country.cpython-312.pyc +impossible_travel/modules/__pycache__/login_from_new_device.cpython-310.pyc impossible_travel/modules/__pycache__/login_from_new_device.cpython-312.pyc \ No newline at end of file diff --git a/django-buffalogs/buffalogs.egg-info/requires.txt b/django-buffalogs/buffalogs.egg-info/requires.txt index f57cbed..ecc1c1e 100644 --- a/django-buffalogs/buffalogs.egg-info/requires.txt +++ b/django-buffalogs/buffalogs.egg-info/requires.txt @@ -23,6 +23,7 @@ pygal-maps-world>=1.0.2 python-dateutil>=2.8.2 python-dotenv>=0.21.0 PyYAML>=6.0 +ua-parser>=1.0.0 urllib3>=1.26.12 uWSGI>=2.0.28 virtualenv>=20.17.1 diff --git a/django-buffalogs/setup.cfg b/django-buffalogs/setup.cfg index bc6117b..ae92641 100644 --- a/django-buffalogs/setup.cfg +++ b/django-buffalogs/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = buffalogs -version = 1.3.2 +version = 1.4.0 description = A Django app to detect anomaly logins. long_description = file: README.rst author = Lorena Goldoni @@ -41,6 +41,7 @@ install_requires = python-dateutil>=2.8.2 python-dotenv>=0.21.0 PyYAML>=6.0 + ua-parser>=1.0.0 urllib3>=1.26.12 uWSGI>=2.0.28 virtualenv>=20.17.1