Skip to content

Commit 67bc621

Browse files
committed
chore: Bump version to 1.11.0
1 parent f4c2508 commit 67bc621

7 files changed

Lines changed: 203 additions & 1 deletion

File tree

security/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 10, 0)
1+
VERSION = (1, 11, 0)
22

33

44
def get_version():
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
Metadata-Version: 2.2
2+
Name: skip-django-security-logger
3+
Version: 1.9.3
4+
Summary: Django security library.
5+
Home-page: https://github.com/skip-pay/django-security
6+
Author: Lubos Matl
7+
Author-email: matllubos@gmail.com
8+
License: MIT
9+
Keywords: django,throttling
10+
Classifier: Development Status :: 3 - Alpha
11+
Classifier: Environment :: Web Environment
12+
Classifier: Framework :: Django
13+
Classifier: Intended Audience :: Developers
14+
Classifier: Intended Audience :: End Users/Desktop
15+
Classifier: License :: OSI Approved :: MIT License
16+
Classifier: Natural Language :: Czech
17+
Classifier: Operating System :: OS Independent
18+
Classifier: Programming Language :: Python
19+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
20+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
21+
Description-Content-Type: text/x-rst
22+
License-File: LICENSE
23+
Requires-Dist: django>=4.2
24+
Requires-Dist: django-ipware>=3.0.2
25+
Requires-Dist: ansi2html>=1.6.0
26+
Requires-Dist: skip-django-chamber>=0.7.2
27+
Requires-Dist: skip-django-choice-enumfields>=1.1.3.2
28+
Requires-Dist: skip-django-generic-m2m-field>=0.1.0
29+
Requires-Dist: skip-django-celery-extensions>=0.1.0
30+
Requires-Dist: isodate>=0.6.1
31+
Requires-Dist: structlog>=24.4.0
32+
Dynamic: author
33+
Dynamic: author-email
34+
Dynamic: classifier
35+
Dynamic: description
36+
Dynamic: description-content-type
37+
Dynamic: home-page
38+
Dynamic: keywords
39+
Dynamic: license
40+
Dynamic: requires-dist
41+
Dynamic: summary
42+
43+
Prolog
44+
======
45+
46+
Django-security-logger is library for logging input and output request. The library provides throttling security mechanism.
47+
48+
Installation
49+
------------
50+
51+
.. code:: bash
52+
53+
pip install skip-django-security-logger
54+
55+
56+
Docs
57+
----
58+
59+
For more details see [docs](http://django-security-logger.readthedocs.org/)
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
LICENSE
2+
MANIFEST.in
3+
README.rst
4+
setup.py
5+
example/__init__.py
6+
example/manage.py
7+
example/test_elastic.py
8+
example/urls.py
9+
example/wsgi.py
10+
example/apps/__init__.py
11+
example/apps/test_security/__init__.py
12+
example/apps/test_security/models.py
13+
example/apps/test_security/tasks.py
14+
example/apps/test_security/views.py
15+
example/apps/test_security/management/__init__.py
16+
example/apps/test_security/management/commands/__init__.py
17+
example/apps/test_security/management/commands/create_user.py
18+
example/apps/test_security/management/commands/create_users.py
19+
example/apps/test_security/management/commands/test_command.py
20+
example/apps/test_security/management/commands/test_command_with_response.py
21+
example/apps/test_security/management/commands/test_error_command.py
22+
example/apps/test_security/tests/__init__.py
23+
example/apps/test_security/tests/base.py
24+
example/apps/test_security/tests/celery_log.py
25+
example/apps/test_security/tests/command_log.py
26+
example/apps/test_security/tests/commands.py
27+
example/apps/test_security/tests/input_request_log.py
28+
example/apps/test_security/tests/output_request_log.py
29+
example/apps/test_security/tests/partitioned_log.py
30+
example/apps/test_security/tests/throttling.py
31+
example/apps/test_security/tests/throttling_validators.py
32+
example/apps/test_security/tests/utils.py
33+
example/settings/__init__.py
34+
example/settings/base.py
35+
example/settings/celery.py
36+
example/settings/settings.py
37+
security/__init__.py
38+
security/apps.py
39+
security/command.py
40+
security/config.py
41+
security/decorators.py
42+
security/enums.py
43+
security/log_context.py
44+
security/middleware.py
45+
security/models.py
46+
security/requests.py
47+
security/storages.py
48+
security/suds.py
49+
security/task.py
50+
security/utils.py
51+
security/version.py
52+
security/backends/__init__.py
53+
security/backends/app.py
54+
security/backends/purge_logs.py
55+
security/backends/reader.py
56+
security/backends/signals.py
57+
security/backends/writer.py
58+
security/backends/common/__init__.py
59+
security/backends/common/is_core.py
60+
security/backends/common/mixins.py
61+
security/backends/elasticsearch/__init__.py
62+
security/backends/elasticsearch/app.py
63+
security/backends/elasticsearch/connection.py
64+
security/backends/elasticsearch/models.py
65+
security/backends/elasticsearch/reader.py
66+
security/backends/elasticsearch/tests.py
67+
security/backends/elasticsearch/writer.py
68+
security/backends/elasticsearch/is_core/__init__.py
69+
security/backends/elasticsearch/is_core/cores.py
70+
security/backends/elasticsearch/is_core/filters.py
71+
security/backends/elasticsearch/logstash/__init__.py
72+
security/backends/elasticsearch/logstash/handler_tcp.py
73+
security/backends/elasticsearch/logstash/serializer.py
74+
security/backends/elasticsearch/management/__init__.py
75+
security/backends/elasticsearch/management/commands/__init__.py
76+
security/backends/elasticsearch/management/commands/init_elasticsearch_log.py
77+
security/backends/logging/__init__.py
78+
security/backends/logging/app.py
79+
security/backends/logging/writer.py
80+
security/backends/sql/__init__.py
81+
security/backends/sql/app.py
82+
security/backends/sql/db_helpers.py
83+
security/backends/sql/db_router.py
84+
security/backends/sql/models.py
85+
security/backends/sql/reader.py
86+
security/backends/sql/writer.py
87+
security/backends/sql/is_core/__init__.py
88+
security/backends/sql/is_core/cores.py
89+
security/backends/sql/is_core/filters.py
90+
security/backends/sql/migrations/0001_initial.py
91+
security/backends/sql/migrations/0002_migration.py
92+
security/backends/sql/migrations/0003_migration.py
93+
security/backends/sql/migrations/0004_migration.py
94+
security/backends/sql/migrations/__init__.py
95+
security/backends/testing/__init__.py
96+
security/backends/testing/app.py
97+
security/backends/testing/reader.py
98+
security/backends/testing/writer.py
99+
security/contrib/__init__.py
100+
security/contrib/debug_toolbar_log/__init__.py
101+
security/contrib/debug_toolbar_log/middleware.py
102+
security/contrib/pyston/__init__.py
103+
security/contrib/pyston/resources.py
104+
security/locale/cs/LC_MESSAGES/django.mo
105+
security/locale/cs/LC_MESSAGES/django.po
106+
security/logging/__init__.py
107+
security/logging/common.py
108+
security/logging/celery/__init__.py
109+
security/logging/celery/logger.py
110+
security/logging/commands/__init__.py
111+
security/logging/commands/logger.py
112+
security/logging/requests/__init__.py
113+
security/logging/requests/logger.py
114+
security/logging/requests/utils.py
115+
security/management/__init__.py
116+
security/management/commands/__init__.py
117+
security/management/commands/purge_logs.py
118+
security/management/commands/set_celery_task_log_state.py
119+
security/templates/429.html
120+
security/throttling/__init__.py
121+
security/throttling/default_validators.py
122+
security/throttling/exception.py
123+
security/throttling/validators.py
124+
security/throttling/views.py
125+
skip_django_security_logger.egg-info/PKG-INFO
126+
skip_django_security_logger.egg-info/SOURCES.txt
127+
skip_django_security_logger.egg-info/dependency_links.txt
128+
skip_django_security_logger.egg-info/not-zip-safe
129+
skip_django_security_logger.egg-info/requires.txt
130+
skip_django_security_logger.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
django>=4.2
2+
django-ipware>=3.0.2
3+
ansi2html>=1.6.0
4+
skip-django-chamber>=0.7.2
5+
skip-django-choice-enumfields>=1.1.3.2
6+
skip-django-generic-m2m-field>=0.1.0
7+
skip-django-celery-extensions>=0.1.0
8+
isodate>=0.6.1
9+
structlog>=24.4.0
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
example
2+
security

0 commit comments

Comments
 (0)