django-structlog 6.1.0.dev2__tar.gz → 7.0.0.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django-structlog-6.1.0.dev2/django_structlog.egg-info → django-structlog-7.0.0.dev1}/PKG-INFO +13 -2
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/README.rst +11 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/__init__.py +1 -1
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1/django_structlog.egg-info}/PKG-INFO +13 -2
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog.egg-info/requires.txt +1 -1
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/pyproject.toml +2 -2
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/LICENSE.rst +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/MANIFEST.in +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/app_settings.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/apps.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/__init__.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/receivers.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/signals.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/steps.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/commands.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/middlewares/__init__.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/middlewares/request.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/signals.py +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog.egg-info/SOURCES.txt +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog.egg-info/dependency_links.txt +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog.egg-info/top_level.txt +0 -0
- {django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/setup.cfg +0 -0
{django-structlog-6.1.0.dev2/django_structlog.egg-info → django-structlog-7.0.0.dev1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-structlog
|
|
3
|
-
Version:
|
|
3
|
+
Version: 7.0.0.dev1
|
|
4
4
|
Summary: Structured Logging for Django
|
|
5
5
|
Author-email: Jules Robichaud-Gagnon <j.robichaudg+pypi@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -29,7 +29,7 @@ License-File: LICENSE.rst
|
|
|
29
29
|
Requires-Dist: django>=3.2
|
|
30
30
|
Requires-Dist: structlog>=21.4.0
|
|
31
31
|
Requires-Dist: asgiref>=3.6.0
|
|
32
|
-
Requires-Dist: django-ipware
|
|
32
|
+
Requires-Dist: django-ipware>=6.0.2
|
|
33
33
|
Provides-Extra: celery
|
|
34
34
|
Requires-Dist: celery>=5.1; extra == "celery"
|
|
35
35
|
Provides-Extra: commands
|
|
@@ -399,6 +399,17 @@ Json file (\ ``logs/json.log``\ )
|
|
|
399
399
|
Upgrade Guide
|
|
400
400
|
=============
|
|
401
401
|
|
|
402
|
+
.. _upgrade_7.0:
|
|
403
|
+
|
|
404
|
+
Upgrading to 7.0+
|
|
405
|
+
^^^^^^^^^^^^^^^^^
|
|
406
|
+
|
|
407
|
+
The dependency `django-ipware <https://github.com/un33k/django-ipware>`_ was upgraded to version 6. This library is used to retrieve the request's ip address.
|
|
408
|
+
|
|
409
|
+
Version 6 may have some `breaking changes <https://github.com/un33k/django-ipware/compare/v5.0.2...v6.0.2#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R97>`_ if you did customizations.
|
|
410
|
+
|
|
411
|
+
It should not affect most of the users but if you did some customizations, you might need to update your configurations.
|
|
412
|
+
|
|
402
413
|
.. _upgrade_6.0:
|
|
403
414
|
|
|
404
415
|
Upgrading to 6.0+
|
|
@@ -362,6 +362,17 @@ Json file (\ ``logs/json.log``\ )
|
|
|
362
362
|
Upgrade Guide
|
|
363
363
|
=============
|
|
364
364
|
|
|
365
|
+
.. _upgrade_7.0:
|
|
366
|
+
|
|
367
|
+
Upgrading to 7.0+
|
|
368
|
+
^^^^^^^^^^^^^^^^^
|
|
369
|
+
|
|
370
|
+
The dependency `django-ipware <https://github.com/un33k/django-ipware>`_ was upgraded to version 6. This library is used to retrieve the request's ip address.
|
|
371
|
+
|
|
372
|
+
Version 6 may have some `breaking changes <https://github.com/un33k/django-ipware/compare/v5.0.2...v6.0.2#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R97>`_ if you did customizations.
|
|
373
|
+
|
|
374
|
+
It should not affect most of the users but if you did some customizations, you might need to update your configurations.
|
|
375
|
+
|
|
365
376
|
.. _upgrade_6.0:
|
|
366
377
|
|
|
367
378
|
Upgrading to 6.0+
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1/django_structlog.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-structlog
|
|
3
|
-
Version:
|
|
3
|
+
Version: 7.0.0.dev1
|
|
4
4
|
Summary: Structured Logging for Django
|
|
5
5
|
Author-email: Jules Robichaud-Gagnon <j.robichaudg+pypi@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -29,7 +29,7 @@ License-File: LICENSE.rst
|
|
|
29
29
|
Requires-Dist: django>=3.2
|
|
30
30
|
Requires-Dist: structlog>=21.4.0
|
|
31
31
|
Requires-Dist: asgiref>=3.6.0
|
|
32
|
-
Requires-Dist: django-ipware
|
|
32
|
+
Requires-Dist: django-ipware>=6.0.2
|
|
33
33
|
Provides-Extra: celery
|
|
34
34
|
Requires-Dist: celery>=5.1; extra == "celery"
|
|
35
35
|
Provides-Extra: commands
|
|
@@ -399,6 +399,17 @@ Json file (\ ``logs/json.log``\ )
|
|
|
399
399
|
Upgrade Guide
|
|
400
400
|
=============
|
|
401
401
|
|
|
402
|
+
.. _upgrade_7.0:
|
|
403
|
+
|
|
404
|
+
Upgrading to 7.0+
|
|
405
|
+
^^^^^^^^^^^^^^^^^
|
|
406
|
+
|
|
407
|
+
The dependency `django-ipware <https://github.com/un33k/django-ipware>`_ was upgraded to version 6. This library is used to retrieve the request's ip address.
|
|
408
|
+
|
|
409
|
+
Version 6 may have some `breaking changes <https://github.com/un33k/django-ipware/compare/v5.0.2...v6.0.2#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R97>`_ if you did customizations.
|
|
410
|
+
|
|
411
|
+
It should not affect most of the users but if you did some customizations, you might need to update your configurations.
|
|
412
|
+
|
|
402
413
|
.. _upgrade_6.0:
|
|
403
414
|
|
|
404
415
|
Upgrading to 6.0+
|
|
@@ -16,7 +16,7 @@ build-backend = "setuptools.build_meta"
|
|
|
16
16
|
"django>=3.2",
|
|
17
17
|
"structlog>=21.4.0",
|
|
18
18
|
"asgiref>=3.6.0",
|
|
19
|
-
"django-ipware",
|
|
19
|
+
"django-ipware>=6.0.2",
|
|
20
20
|
]
|
|
21
21
|
classifiers = [
|
|
22
22
|
"Development Status :: 5 - Production/Stable",
|
|
@@ -129,7 +129,7 @@ build-backend = "setuptools.build_meta"
|
|
|
129
129
|
django32: Django >=3.2, <4.0
|
|
130
130
|
django41: Django >=4.1, <4.2
|
|
131
131
|
django42: Django >=4.2, <5.0
|
|
132
|
-
django50: Django
|
|
132
|
+
django50: Django >=5.0, <5.1
|
|
133
133
|
-r{toxinidir}/requirements/ci.txt
|
|
134
134
|
|
|
135
135
|
commands = pytest --cov=./test_app --cov=./django_structlog --cov-append test_app
|
|
File without changes
|
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/app_settings.py
RENAMED
|
File without changes
|
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/__init__.py
RENAMED
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/receivers.py
RENAMED
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/signals.py
RENAMED
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/celery/steps.py
RENAMED
|
File without changes
|
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/middlewares/__init__.py
RENAMED
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog/middlewares/request.py
RENAMED
|
File without changes
|
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{django-structlog-6.1.0.dev2 → django-structlog-7.0.0.dev1}/django_structlog.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|