open-api-framework 0.4.1__tar.gz → 0.4.2__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.4.1 → open_api_framework-0.4.2}/CHANGELOG.rst +7 -0
- {open_api_framework-0.4.1/open_api_framework.egg-info → open_api_framework-0.4.2}/PKG-INFO +2 -2
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/README.rst +1 -1
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework/conf/base.py +5 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2/open_api_framework.egg-info}/PKG-INFO +2 -2
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/pyproject.toml +2 -2
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/LICENSE +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/MANIFEST.in +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework/conf/utils.py +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/SOURCES.txt +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/requires.txt +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/setup.cfg +0 -0
- {open_api_framework-0.4.1 → open_api_framework-0.4.2}/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.4.
|
|
3
|
+
Version: 0.4.2
|
|
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.4.
|
|
80
|
+
:Version: 0.4.2
|
|
81
81
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
82
82
|
:Keywords: metapackage, dependencies
|
|
83
83
|
|
|
@@ -632,6 +632,11 @@ else:
|
|
|
632
632
|
|
|
633
633
|
# we run the admin site monkeypatch instead.
|
|
634
634
|
TWO_FACTOR_PATCH_ADMIN = False
|
|
635
|
+
# Relying Party name for WebAuthn (hardware tokens)
|
|
636
|
+
TWO_FACTOR_WEBAUTHN_RP_NAME = f"{PROJECT_DIRNAME} - admin"
|
|
637
|
+
# use platform for fingerprint readers etc., or remove the setting to allow any.
|
|
638
|
+
# cross-platform would limit the options to devices like phones/yubikeys
|
|
639
|
+
TWO_FACTOR_WEBAUTHN_AUTHENTICATOR_ATTACHMENT = "cross-platform"
|
|
635
640
|
# add entries from AUTHENTICATION_BACKENDS that already enforce their own two-factor
|
|
636
641
|
# auth, avoiding having some set up MFA again in the project.
|
|
637
642
|
MAYKIN_2FA_ALLOW_MFA_BYPASS_BACKENDS = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
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.4.
|
|
80
|
+
:Version: 0.4.2
|
|
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.4.
|
|
7
|
+
version = "0.4.2"
|
|
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.4.
|
|
103
|
+
current_version = "0.4.2"
|
|
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
|
|
File without changes
|
{open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/requires.txt
RENAMED
|
File without changes
|
{open_api_framework-0.4.1 → open_api_framework-0.4.2}/open_api_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|