open-api-framework 0.7.0__tar.gz → 0.7.1__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.
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/CHANGELOG.rst +7 -0
- {open_api_framework-0.7.0/open_api_framework.egg-info → open_api_framework-0.7.1}/PKG-INFO +2 -2
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/README.rst +1 -1
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/conf/base.py +17 -2
- {open_api_framework-0.7.0 → open_api_framework-0.7.1/open_api_framework.egg-info}/PKG-INFO +2 -2
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/pyproject.toml +2 -2
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/LICENSE +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/MANIFEST.in +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/conf/utils.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/context_processors.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/management/__init__.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/management/commands/__init__.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/management/commands/generate_envvar_docs.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/static/open_api_framework/css/admin.css +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templates/open_api_framework/admin/base_site.html +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templates/open_api_framework/components/environment.html +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templates/open_api_framework/components/version.html +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templates/open_api_framework/env_config.rst +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templatetags/__init__.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templatetags/doc_tags.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templatetags/open_api_framework.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/SOURCES.txt +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/requires.txt +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/setup.cfg +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/tests/test_config_helpers.py +0 -0
- {open_api_framework-0.7.0 → open_api_framework-0.7.1}/tests/test_generate_envvar_docs.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings
|
|
5
5
|
Author-email: Maykin Media <support@maykinmedia.nl>
|
|
6
6
|
License: Copyright © Maykin 2024
|
|
@@ -77,7 +77,7 @@ Requires-Dist: twine; extra == "release"
|
|
|
77
77
|
Open API Framework
|
|
78
78
|
==================
|
|
79
79
|
|
|
80
|
-
:Version: 0.7.
|
|
80
|
+
:Version: 0.7.1
|
|
81
81
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
82
82
|
:Keywords: metapackage, dependencies
|
|
83
83
|
|
|
@@ -539,10 +539,25 @@ LOGOUT_REDIRECT_URL = reverse_lazy("admin:index")
|
|
|
539
539
|
#
|
|
540
540
|
SESSION_COOKIE_SECURE = IS_HTTPS
|
|
541
541
|
SESSION_COOKIE_HTTPONLY = True
|
|
542
|
-
SESSION_COOKIE_SAMESITE = config(
|
|
542
|
+
SESSION_COOKIE_SAMESITE = config(
|
|
543
|
+
"SESSION_COOKIE_SAMESITE",
|
|
544
|
+
"Strict",
|
|
545
|
+
help_text=(
|
|
546
|
+
"The value of the SameSite flag on the session cookie. This flag prevents the "
|
|
547
|
+
"cookie from being sent in cross-site requests thus preventing CSRF attacks and "
|
|
548
|
+
"making some methods of stealing session cookie impossible."
|
|
549
|
+
),
|
|
550
|
+
)
|
|
543
551
|
|
|
544
552
|
CSRF_COOKIE_SECURE = IS_HTTPS
|
|
545
|
-
CSRF_COOKIE_SAMESITE = config(
|
|
553
|
+
CSRF_COOKIE_SAMESITE = config(
|
|
554
|
+
"CSRF_COOKIE_SAMESITE",
|
|
555
|
+
"Strict",
|
|
556
|
+
help_text=(
|
|
557
|
+
"The value of the SameSite flag on the CSRF cookie. This flag prevents the cookie "
|
|
558
|
+
"from being sent in cross-site requests."
|
|
559
|
+
),
|
|
560
|
+
)
|
|
546
561
|
|
|
547
562
|
X_FRAME_OPTIONS = "DENY"
|
|
548
563
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings
|
|
5
5
|
Author-email: Maykin Media <support@maykinmedia.nl>
|
|
6
6
|
License: Copyright © Maykin 2024
|
|
@@ -77,7 +77,7 @@ Requires-Dist: twine; extra == "release"
|
|
|
77
77
|
Open API Framework
|
|
78
78
|
==================
|
|
79
79
|
|
|
80
|
-
:Version: 0.7.
|
|
80
|
+
:Version: 0.7.1
|
|
81
81
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
82
82
|
:Keywords: metapackage, dependencies
|
|
83
83
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "open_api_framework"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.1"
|
|
8
8
|
description = "A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings"
|
|
9
9
|
authors = [
|
|
10
10
|
{name = "Maykin Media", email = "support@maykinmedia.nl"}
|
|
@@ -100,7 +100,7 @@ testpaths = ["tests"]
|
|
|
100
100
|
DJANGO_SETTINGS_MODULE = "testapp.settings"
|
|
101
101
|
|
|
102
102
|
[tool.bumpversion]
|
|
103
|
-
current_version = "0.7.
|
|
103
|
+
current_version = "0.7.1"
|
|
104
104
|
files = [
|
|
105
105
|
{filename = "pyproject.toml"},
|
|
106
106
|
{filename = "README.rst"},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/context_processors.py
RENAMED
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/management/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templatetags/__init__.py
RENAMED
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework/templatetags/doc_tags.py
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/requires.txt
RENAMED
|
File without changes
|
{open_api_framework-0.7.0 → open_api_framework-0.7.1}/open_api_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|