open-api-framework 0.5.0__tar.gz → 0.6.0__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.5.0 → open_api_framework-0.6.0}/CHANGELOG.rst +7 -0
- {open_api_framework-0.5.0/open_api_framework.egg-info → open_api_framework-0.6.0}/PKG-INFO +2 -2
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/README.rst +1 -1
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/conf/base.py +4 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0/open_api_framework.egg-info}/PKG-INFO +2 -2
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/pyproject.toml +2 -2
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/LICENSE +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/MANIFEST.in +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/conf/utils.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/context_processors.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/static/open_api_framework/css/admin.css +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/templates/open_api_framework/admin/base_site.html +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/templates/open_api_framework/components/environment.html +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/templates/open_api_framework/components/version.html +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/templatetags/__init__.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/templatetags/open_api_framework.py +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/SOURCES.txt +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/requires.txt +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/setup.cfg +0 -0
- {open_api_framework-0.5.0 → open_api_framework-0.6.0}/tests/test_config_helpers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
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.
|
|
80
|
+
:Version: 0.6.0
|
|
81
81
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
82
82
|
:Keywords: metapackage, dependencies
|
|
83
83
|
|
|
@@ -601,6 +601,10 @@ ADMIN_INDEX_AUTO_CREATE_APP_GROUP = False
|
|
|
601
601
|
# Mozilla Django OIDC DB settings
|
|
602
602
|
#
|
|
603
603
|
OIDC_AUTHENTICATE_CLASS = "mozilla_django_oidc_db.views.OIDCAuthenticationRequestView"
|
|
604
|
+
# Use custom callback view to handle admin login error situations
|
|
605
|
+
# NOTE the AdminLoginFailure view for mozilla-django-oidc-db should be added to the projects
|
|
606
|
+
# urlpatterns to properly catch errors
|
|
607
|
+
OIDC_CALLBACK_CLASS = "mozilla_django_oidc_db.views.OIDCCallbackView"
|
|
604
608
|
MOZILLA_DJANGO_OIDC_DB_CACHE = "oidc"
|
|
605
609
|
MOZILLA_DJANGO_OIDC_DB_CACHE_TIMEOUT = 5 * 60
|
|
606
610
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
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.
|
|
80
|
+
:Version: 0.6.0
|
|
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
|
+
version = "0.6.0"
|
|
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.
|
|
103
|
+
current_version = "0.6.0"
|
|
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.5.0 → open_api_framework-0.6.0}/open_api_framework/context_processors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework/templatetags/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/requires.txt
RENAMED
|
File without changes
|
{open_api_framework-0.5.0 → open_api_framework-0.6.0}/open_api_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|