open-api-framework 0.3.0__tar.gz → 0.4.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.3.0 → open_api_framework-0.4.1}/CHANGELOG.rst +16 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/LICENSE +1 -1
- {open_api_framework-0.3.0/open_api_framework.egg-info → open_api_framework-0.4.1}/PKG-INFO +16 -7
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/README.rst +13 -5
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework/conf/base.py +3 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1/open_api_framework.egg-info}/PKG-INFO +16 -7
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework.egg-info/requires.txt +1 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/pyproject.toml +3 -2
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/MANIFEST.in +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework/conf/utils.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework.egg-info/SOURCES.txt +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/setup.cfg +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.1}/tests/test_config_helpers.py +0 -0
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
0.4.1 (2024-06-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
**Bugfixes**
|
|
8
|
+
|
|
9
|
+
* Add ``ordered_model`` to ``INSTALLED_APPS`` (required for ``django-admin-index``)
|
|
10
|
+
* Add ``two_factor.plugins.webauthn`` to ``INSTALLED_APPS`` (required for ``maykin_2fa``)
|
|
11
|
+
|
|
12
|
+
0.4.0 (2024-06-06)
|
|
13
|
+
------------------
|
|
14
|
+
|
|
15
|
+
**New features**
|
|
16
|
+
|
|
17
|
+
* Add django-setup-configuration to deps
|
|
18
|
+
* Add ELASTIC_APM_TRANSACTION_SAMPLE_RATE
|
|
19
|
+
|
|
4
20
|
0.3.0 (2024-05-17)
|
|
5
21
|
------------------
|
|
6
22
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright
|
|
1
|
+
Copyright © Maykin 2024
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
4
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.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
|
-
License: Copyright
|
|
6
|
+
License: Copyright © Maykin 2024
|
|
7
7
|
|
|
8
8
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
9
9
|
|
|
@@ -57,6 +57,7 @@ Requires-Dist: elastic-apm>=6.20.0
|
|
|
57
57
|
Requires-Dist: celery>=5.2.7
|
|
58
58
|
Requires-Dist: flower>=2.0.1
|
|
59
59
|
Requires-Dist: maykin-2fa>=1.0.0
|
|
60
|
+
Requires-Dist: django-setup-configuration>=0.1.0
|
|
60
61
|
Provides-Extra: tests
|
|
61
62
|
Requires-Dist: pytest; extra == "tests"
|
|
62
63
|
Requires-Dist: pytest-django; extra == "tests"
|
|
@@ -73,12 +74,10 @@ Provides-Extra: release
|
|
|
73
74
|
Requires-Dist: bump-my-version; extra == "release"
|
|
74
75
|
Requires-Dist: twine; extra == "release"
|
|
75
76
|
|
|
77
|
+
Open API Framework
|
|
78
|
+
==================
|
|
76
79
|
|
|
77
|
-
|
|
78
|
-
Welcome to open-api-framework's documentation!
|
|
79
|
-
=================================================
|
|
80
|
-
|
|
81
|
-
:Version: 0.3.0
|
|
80
|
+
:Version: 0.4.1
|
|
82
81
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
83
82
|
:Keywords: metapackage, dependencies
|
|
84
83
|
|
|
@@ -133,6 +132,16 @@ directory to the python path (or use ``python -m django <command>``):
|
|
|
133
132
|
# or other commands like:
|
|
134
133
|
# django-admin makemessages -l nl
|
|
135
134
|
|
|
135
|
+
License
|
|
136
|
+
=======
|
|
137
|
+
|
|
138
|
+
Copyright © Maykin 2024
|
|
139
|
+
|
|
140
|
+
Licensed under the `MIT license`.
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
.. _`MIT license`: LICENSE
|
|
144
|
+
|
|
136
145
|
|
|
137
146
|
.. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
|
|
138
147
|
:alt: Build status
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
+
Open API Framework
|
|
2
|
+
==================
|
|
1
3
|
|
|
2
|
-
|
|
3
|
-
Welcome to open-api-framework's documentation!
|
|
4
|
-
=================================================
|
|
5
|
-
|
|
6
|
-
:Version: 0.3.0
|
|
4
|
+
:Version: 0.4.1
|
|
7
5
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
8
6
|
:Keywords: metapackage, dependencies
|
|
9
7
|
|
|
@@ -58,6 +56,16 @@ directory to the python path (or use ``python -m django <command>``):
|
|
|
58
56
|
# or other commands like:
|
|
59
57
|
# django-admin makemessages -l nl
|
|
60
58
|
|
|
59
|
+
License
|
|
60
|
+
=======
|
|
61
|
+
|
|
62
|
+
Copyright © Maykin 2024
|
|
63
|
+
|
|
64
|
+
Licensed under the `MIT license`.
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
.. _`MIT license`: LICENSE
|
|
68
|
+
|
|
61
69
|
|
|
62
70
|
.. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
|
|
63
71
|
:alt: Build status
|
|
@@ -118,6 +118,7 @@ INSTALLED_APPS = [
|
|
|
118
118
|
"django.contrib.staticfiles",
|
|
119
119
|
# Optional applications.
|
|
120
120
|
"django_admin_index",
|
|
121
|
+
"ordered_model",
|
|
121
122
|
"django.contrib.admin",
|
|
122
123
|
# External applications.
|
|
123
124
|
"axes",
|
|
@@ -134,6 +135,7 @@ INSTALLED_APPS = [
|
|
|
134
135
|
"django_otp.plugins.otp_static",
|
|
135
136
|
"django_otp.plugins.otp_totp",
|
|
136
137
|
"two_factor",
|
|
138
|
+
"two_factor.plugins.webauthn",
|
|
137
139
|
"maykin_2fa",
|
|
138
140
|
"privates",
|
|
139
141
|
"django_jsonform",
|
|
@@ -610,6 +612,7 @@ ELASTIC_APM = {
|
|
|
610
612
|
),
|
|
611
613
|
"SECRET_TOKEN": config("ELASTIC_APM_SECRET_TOKEN", "default"),
|
|
612
614
|
"SERVER_URL": ELASTIC_APM_SERVER_URL,
|
|
615
|
+
"TRANSACTION_SAMPLE_RATE": config("ELASTIC_APM_TRANSACTION_SAMPLE_RATE", 0.1),
|
|
613
616
|
}
|
|
614
617
|
if not ELASTIC_APM_SERVER_URL:
|
|
615
618
|
ELASTIC_APM["ENABLED"] = False
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.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
|
-
License: Copyright
|
|
6
|
+
License: Copyright © Maykin 2024
|
|
7
7
|
|
|
8
8
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
9
9
|
|
|
@@ -57,6 +57,7 @@ Requires-Dist: elastic-apm>=6.20.0
|
|
|
57
57
|
Requires-Dist: celery>=5.2.7
|
|
58
58
|
Requires-Dist: flower>=2.0.1
|
|
59
59
|
Requires-Dist: maykin-2fa>=1.0.0
|
|
60
|
+
Requires-Dist: django-setup-configuration>=0.1.0
|
|
60
61
|
Provides-Extra: tests
|
|
61
62
|
Requires-Dist: pytest; extra == "tests"
|
|
62
63
|
Requires-Dist: pytest-django; extra == "tests"
|
|
@@ -73,12 +74,10 @@ Provides-Extra: release
|
|
|
73
74
|
Requires-Dist: bump-my-version; extra == "release"
|
|
74
75
|
Requires-Dist: twine; extra == "release"
|
|
75
76
|
|
|
77
|
+
Open API Framework
|
|
78
|
+
==================
|
|
76
79
|
|
|
77
|
-
|
|
78
|
-
Welcome to open-api-framework's documentation!
|
|
79
|
-
=================================================
|
|
80
|
-
|
|
81
|
-
:Version: 0.3.0
|
|
80
|
+
:Version: 0.4.1
|
|
82
81
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
83
82
|
:Keywords: metapackage, dependencies
|
|
84
83
|
|
|
@@ -133,6 +132,16 @@ directory to the python path (or use ``python -m django <command>``):
|
|
|
133
132
|
# or other commands like:
|
|
134
133
|
# django-admin makemessages -l nl
|
|
135
134
|
|
|
135
|
+
License
|
|
136
|
+
=======
|
|
137
|
+
|
|
138
|
+
Copyright © Maykin 2024
|
|
139
|
+
|
|
140
|
+
Licensed under the `MIT license`.
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
.. _`MIT license`: LICENSE
|
|
144
|
+
|
|
136
145
|
|
|
137
146
|
.. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
|
|
138
147
|
:alt: Build status
|
|
@@ -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.4.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"}
|
|
@@ -54,6 +54,7 @@ dependencies = [
|
|
|
54
54
|
"celery>=5.2.7",
|
|
55
55
|
"flower>=2.0.1",
|
|
56
56
|
"maykin-2fa>=1.0.0",
|
|
57
|
+
"django-setup-configuration>=0.1.0",
|
|
57
58
|
]
|
|
58
59
|
|
|
59
60
|
[project.urls]
|
|
@@ -99,7 +100,7 @@ testpaths = ["tests"]
|
|
|
99
100
|
DJANGO_SETTINGS_MODULE = "testapp.settings"
|
|
100
101
|
|
|
101
102
|
[tool.bumpversion]
|
|
102
|
-
current_version = "0.
|
|
103
|
+
current_version = "0.4.1"
|
|
103
104
|
files = [
|
|
104
105
|
{filename = "pyproject.toml"},
|
|
105
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.3.0 → open_api_framework-0.4.1}/open_api_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.3.0 → open_api_framework-0.4.1}/open_api_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|