open-api-framework 0.14.2__tar.gz → 0.15.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.14.2 → open_api_framework-0.15.0}/CHANGELOG.rst +12 -0
- {open_api_framework-0.14.2/open_api_framework.egg-info → open_api_framework-0.15.0}/PKG-INFO +2 -2
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/README.rst +1 -1
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/conf/base.py +9 -1
- {open_api_framework-0.14.2 → open_api_framework-0.15.0/open_api_framework.egg-info}/PKG-INFO +2 -2
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/pyproject.toml +2 -2
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/LICENSE +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/MANIFEST.in +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/admin.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/conf/utils.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/context_processors.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/static/open_api_framework/css/admin.css +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templates/open_api_framework/admin/base_site.html +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templates/open_api_framework/components/environment.html +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templates/open_api_framework/components/version.html +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templates/open_api_framework/env_config.rst +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templatetags/__init__.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templatetags/doc_tags.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templatetags/open_api_framework.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/utils.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/SOURCES.txt +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/requires.txt +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/setup.cfg +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/tests/test_admin.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/tests/test_csp.py +0 -0
- {open_api_framework-0.14.2 → open_api_framework-0.15.0}/tests/test_settings.py +0 -0
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
0.15.0 (2026-09-09)
|
|
5
|
+
-------------------
|
|
6
|
+
|
|
7
|
+
**New features**
|
|
8
|
+
|
|
9
|
+
* [:open-api-framework:`226`] ``SESSION_EXPIRE_AT_BROWSER_CLOSE`` environment variable can now be used to specify whether a user's
|
|
10
|
+
session should end when the browser closes (default ``False``).
|
|
11
|
+
|
|
12
|
+
**Maintenance**
|
|
13
|
+
|
|
14
|
+
* [:open-api-framework:`226`] Set the default value of ``SESSION_COOKIE_AGE`` to 8 hours.
|
|
15
|
+
|
|
4
16
|
0.14.2 (2026-09-03)
|
|
5
17
|
-------------------
|
|
6
18
|
|
{open_api_framework-0.14.2/open_api_framework.egg-info → open_api_framework-0.15.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.15.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
|
|
@@ -106,7 +106,7 @@ Dynamic: license-file
|
|
|
106
106
|
Open API Framework
|
|
107
107
|
==================
|
|
108
108
|
|
|
109
|
-
:Version: 0.
|
|
109
|
+
:Version: 0.15.0
|
|
110
110
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
111
111
|
:Keywords: metapackage, dependencies
|
|
112
112
|
|
|
@@ -1078,12 +1078,20 @@ SESSION_COOKIE_NAME = f"{PROJECT_DIRNAME}_sessionid"
|
|
|
1078
1078
|
SESSION_ENGINE = "django.contrib.sessions.backends.cache"
|
|
1079
1079
|
SESSION_COOKIE_AGE = config(
|
|
1080
1080
|
"SESSION_COOKIE_AGE",
|
|
1081
|
-
default=
|
|
1081
|
+
default=28800, # 8 hours
|
|
1082
1082
|
documentation=DocumentationParams(
|
|
1083
1083
|
help_text="For how long, in seconds, the session cookie will be valid."
|
|
1084
1084
|
),
|
|
1085
1085
|
)
|
|
1086
1086
|
|
|
1087
|
+
SESSION_EXPIRE_AT_BROWSER_CLOSE = config(
|
|
1088
|
+
"SESSION_EXPIRE_AT_BROWSER_CLOSE",
|
|
1089
|
+
default=False,
|
|
1090
|
+
documentation=DocumentationParams(
|
|
1091
|
+
help_text="Whether to expire the session when the user closes their browser."
|
|
1092
|
+
),
|
|
1093
|
+
)
|
|
1094
|
+
|
|
1087
1095
|
LOGIN_URL = "admin:login"
|
|
1088
1096
|
LOGIN_REDIRECT_URL = reverse_lazy("admin:index")
|
|
1089
1097
|
LOGOUT_REDIRECT_URL = reverse_lazy("admin:index")
|
{open_api_framework-0.14.2 → open_api_framework-0.15.0/open_api_framework.egg-info}/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.15.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
|
|
@@ -106,7 +106,7 @@ Dynamic: license-file
|
|
|
106
106
|
Open API Framework
|
|
107
107
|
==================
|
|
108
108
|
|
|
109
|
-
:Version: 0.
|
|
109
|
+
:Version: 0.15.0
|
|
110
110
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
111
111
|
:Keywords: metapackage, dependencies
|
|
112
112
|
|
|
@@ -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.15.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"}
|
|
@@ -140,7 +140,7 @@ env = [
|
|
|
140
140
|
]
|
|
141
141
|
|
|
142
142
|
[tool.bumpversion]
|
|
143
|
-
current_version = "0.
|
|
143
|
+
current_version = "0.15.0"
|
|
144
144
|
files = [
|
|
145
145
|
{filename = "pyproject.toml"},
|
|
146
146
|
{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.14.2 → open_api_framework-0.15.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
|
|
File without changes
|
{open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templatetags/__init__.py
RENAMED
|
File without changes
|
{open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework/templatetags/doc_tags.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/requires.txt
RENAMED
|
File without changes
|
{open_api_framework-0.14.2 → open_api_framework-0.15.0}/open_api_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|