open-api-framework 0.13.4__tar.gz → 0.14.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.13.4 → open_api_framework-0.14.0}/CHANGELOG.rst +29 -0
- {open_api_framework-0.13.4/open_api_framework.egg-info → open_api_framework-0.14.0}/PKG-INFO +15 -6
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/README.rst +3 -3
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/admin.py +3 -3
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/conf/base.py +449 -291
- open_api_framework-0.14.0/open_api_framework/conf/utils.py +89 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/context_processors.py +2 -2
- {open_api_framework-0.13.4 → open_api_framework-0.14.0/open_api_framework.egg-info}/PKG-INFO +15 -6
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework.egg-info/SOURCES.txt +0 -5
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework.egg-info/requires.txt +12 -2
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/pyproject.toml +17 -4
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/tests/test_admin.py +1 -1
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/tests/test_settings.py +12 -0
- open_api_framework-0.13.4/open_api_framework/conf/utils.py +0 -188
- open_api_framework-0.13.4/open_api_framework/management/commands/__init__.py +0 -0
- open_api_framework-0.13.4/open_api_framework/management/commands/generate_envvar_docs.py +0 -58
- open_api_framework-0.13.4/open_api_framework/templatetags/__init__.py +0 -0
- open_api_framework-0.13.4/tests/test_config_helpers.py +0 -63
- open_api_framework-0.13.4/tests/test_generate_envvar_docs.py +0 -184
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/LICENSE +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/MANIFEST.in +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/static/open_api_framework/css/admin.css +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/templates/open_api_framework/admin/base_site.html +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/templates/open_api_framework/components/environment.html +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/templates/open_api_framework/components/version.html +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/templates/open_api_framework/env_config.rst +0 -0
- {open_api_framework-0.13.4/open_api_framework/management → open_api_framework-0.14.0/open_api_framework/templatetags}/__init__.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/templatetags/doc_tags.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/templatetags/open_api_framework.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework/utils.py +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/setup.cfg +0 -0
- {open_api_framework-0.13.4 → open_api_framework-0.14.0}/tests/test_csp.py +0 -0
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
0.14.0 (2026-06-05)
|
|
5
|
+
-------------------
|
|
6
|
+
|
|
7
|
+
**💥 Breaking changes**
|
|
8
|
+
|
|
9
|
+
* [:open-api-framework:`83`] Remove ``generate_envvar_docs`` command and other code related to old style
|
|
10
|
+
envvar docs generation and switch to documentation generation based on Sphinx directives
|
|
11
|
+
from ``maykin-common`` (see `documentation <https://maykin-django-common.readthedocs.io/en/latest/env_docs_helpers.html>`_)
|
|
12
|
+
|
|
13
|
+
**Bugfixes**
|
|
14
|
+
|
|
15
|
+
* [:open-api-framework:`215`] Add missing ``notifications_api_common`` logger configuration
|
|
16
|
+
|
|
17
|
+
**Project maintenance**
|
|
18
|
+
|
|
19
|
+
* Add explicit dependency on django-privates and django-simple-certmanager
|
|
20
|
+
* [:open-api-framework:`83`] Add maykin-common to dependencies and remove python-decouple
|
|
21
|
+
* [:open-zaak:`2369`] Update log-outgoing-requests to >=0.9.1
|
|
22
|
+
* [:open-zaak:`2369`] Align outgoing requests config with OF
|
|
23
|
+
* Add missing STORAGES setting to testapp for django-privates 4.0
|
|
24
|
+
* [:open-api-framework:`208`] Configure type checking with pyright
|
|
25
|
+
* Use trusted publishing to publish to PyPI
|
|
26
|
+
* [:open-api-framework:`218`] Add zizmor action and fix warnings/errors
|
|
27
|
+
|
|
28
|
+
**Documentation**
|
|
29
|
+
|
|
30
|
+
* Mention correct django/python minimum versions in quickstart docs
|
|
31
|
+
* Check build stats of main only in README badge
|
|
32
|
+
|
|
4
33
|
0.13.4 (2026-02-02)
|
|
5
34
|
-------------------
|
|
6
35
|
|
{open_api_framework-0.13.4/open_api_framework.egg-info → open_api_framework-0.14.0}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: open-api-framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.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
|
|
@@ -31,7 +31,7 @@ License-File: LICENSE
|
|
|
31
31
|
Requires-Dist: django>=5.2
|
|
32
32
|
Requires-Dist: django-axes>=6.5.1
|
|
33
33
|
Requires-Dist: django-jsonform>=2.22.0
|
|
34
|
-
Requires-Dist: django-log-outgoing-requests>=0.
|
|
34
|
+
Requires-Dist: django-log-outgoing-requests>=0.9.1
|
|
35
35
|
Requires-Dist: django-admin-index>=3.1.0
|
|
36
36
|
Requires-Dist: djangorestframework>=3.15.2
|
|
37
37
|
Requires-Dist: django-filter>=24.2
|
|
@@ -39,23 +39,32 @@ Requires-Dist: drf-spectacular[sidecar]>=0.27.2
|
|
|
39
39
|
Requires-Dist: mozilla-django-oidc-db>=0.19.0
|
|
40
40
|
Requires-Dist: psycopg[binary]>=3.2.9
|
|
41
41
|
Requires-Dist: python-dotenv>=1.0.0
|
|
42
|
-
Requires-Dist: python-decouple>=3.8
|
|
43
42
|
Requires-Dist: requests>=2.32.3
|
|
44
43
|
Requires-Dist: sentry-sdk>=2.11.0
|
|
45
44
|
Requires-Dist: elastic-apm>=6.22.0
|
|
46
45
|
Requires-Dist: maykin-2fa>=1.0.1
|
|
47
46
|
Requires-Dist: django-setup-configuration>=0.1.0
|
|
47
|
+
Requires-Dist: django-privates<4.0.0
|
|
48
|
+
Requires-Dist: django-simple-certmanager<4.0.0
|
|
48
49
|
Requires-Dist: django-sessionprofile>=3.0.0
|
|
49
50
|
Requires-Dist: django-upgrade-check>=1.1.0
|
|
51
|
+
Requires-Dist: maykin-common>=0.19.0
|
|
50
52
|
Provides-Extra: tests
|
|
51
53
|
Requires-Dist: pytest; extra == "tests"
|
|
52
54
|
Requires-Dist: pytest-django; extra == "tests"
|
|
53
55
|
Requires-Dist: pytest-env; extra == "tests"
|
|
56
|
+
Requires-Dist: syrupy; extra == "tests"
|
|
54
57
|
Requires-Dist: tox; extra == "tests"
|
|
55
58
|
Requires-Dist: ruff; extra == "tests"
|
|
56
59
|
Requires-Dist: factory-boy; extra == "tests"
|
|
57
60
|
Requires-Dist: django-rosetta; extra == "tests"
|
|
58
61
|
Requires-Dist: django-webtest; extra == "tests"
|
|
62
|
+
Provides-Extra: type-checking
|
|
63
|
+
Requires-Dist: pyright; extra == "type-checking"
|
|
64
|
+
Requires-Dist: decouple-types; extra == "type-checking"
|
|
65
|
+
Requires-Dist: django-stubs; extra == "type-checking"
|
|
66
|
+
Requires-Dist: django-stubs-ext; extra == "type-checking"
|
|
67
|
+
Requires-Dist: gitpython; extra == "type-checking"
|
|
59
68
|
Provides-Extra: coverage
|
|
60
69
|
Requires-Dist: pytest-cov; extra == "coverage"
|
|
61
70
|
Provides-Extra: docs
|
|
@@ -96,7 +105,7 @@ Dynamic: license-file
|
|
|
96
105
|
Open API Framework
|
|
97
106
|
==================
|
|
98
107
|
|
|
99
|
-
:Version: 0.
|
|
108
|
+
:Version: 0.14.0
|
|
100
109
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
101
110
|
:Keywords: metapackage, dependencies
|
|
102
111
|
|
|
@@ -135,11 +144,11 @@ Licensed under the `MIT license`.
|
|
|
135
144
|
|
|
136
145
|
.. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
|
|
137
146
|
:alt: Build status
|
|
138
|
-
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Run+CI%22
|
|
147
|
+
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Run+CI%22+branch%3Amain
|
|
139
148
|
|
|
140
149
|
.. |code-quality| image:: https://github.com/maykinmedia/open-api-framework/workflows/Code%20quality%20checks/badge.svg
|
|
141
150
|
:alt: Code quality checks
|
|
142
|
-
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Code+quality+checks%22
|
|
151
|
+
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Code+quality+checks%22+branch%3Amain
|
|
143
152
|
|
|
144
153
|
.. |ruff| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
|
|
145
154
|
:target: https://github.com/astral-sh/ruff
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Open API Framework
|
|
2
2
|
==================
|
|
3
3
|
|
|
4
|
-
:Version: 0.
|
|
4
|
+
:Version: 0.14.0
|
|
5
5
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
6
6
|
:Keywords: metapackage, dependencies
|
|
7
7
|
|
|
@@ -40,11 +40,11 @@ Licensed under the `MIT license`.
|
|
|
40
40
|
|
|
41
41
|
.. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
|
|
42
42
|
:alt: Build status
|
|
43
|
-
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Run+CI%22
|
|
43
|
+
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Run+CI%22+branch%3Amain
|
|
44
44
|
|
|
45
45
|
.. |code-quality| image:: https://github.com/maykinmedia/open-api-framework/workflows/Code%20quality%20checks/badge.svg
|
|
46
46
|
:alt: Code quality checks
|
|
47
|
-
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Code+quality+checks%22
|
|
47
|
+
:target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Code+quality+checks%22+branch%3Amain
|
|
48
48
|
|
|
49
49
|
.. |ruff| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
|
|
50
50
|
:target: https://github.com/astral-sh/ruff
|
|
@@ -25,14 +25,14 @@ class SessionProfileAdmin(admin.ModelAdmin):
|
|
|
25
25
|
|
|
26
26
|
@admin.display(boolean=True)
|
|
27
27
|
def exists(self, obj):
|
|
28
|
-
return self.SessionStore().exists(obj.session_key)
|
|
28
|
+
return self.SessionStore().exists(obj.session_key) # pyright: ignore
|
|
29
29
|
|
|
30
30
|
def delete_model(self, request, obj):
|
|
31
|
-
self.SessionStore(obj.session_key).flush()
|
|
31
|
+
self.SessionStore(obj.session_key).flush() # pyright: ignore
|
|
32
32
|
super().delete_model(request, obj)
|
|
33
33
|
|
|
34
34
|
def delete_queryset(self, request, queryset):
|
|
35
35
|
for session_profile in queryset.iterator():
|
|
36
|
-
self.SessionStore(session_profile.session_key).flush()
|
|
36
|
+
self.SessionStore(session_profile.session_key).flush() # pyright: ignore
|
|
37
37
|
|
|
38
38
|
super().delete_queryset(request, queryset)
|