open-api-framework 0.3.0__tar.gz → 0.4.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.
Files changed (19) hide show
  1. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/CHANGELOG.rst +8 -0
  2. {open_api_framework-0.3.0/open_api_framework.egg-info → open_api_framework-0.4.0}/PKG-INFO +3 -2
  3. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/README.rst +1 -1
  4. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/conf/base.py +1 -0
  5. {open_api_framework-0.3.0 → open_api_framework-0.4.0/open_api_framework.egg-info}/PKG-INFO +3 -2
  6. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/requires.txt +1 -0
  7. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/pyproject.toml +3 -2
  8. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/LICENSE +0 -0
  9. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/MANIFEST.in +0 -0
  10. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/__init__.py +0 -0
  11. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/apps.py +0 -0
  12. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/conf/__init__.py +0 -0
  13. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/conf/utils.py +0 -0
  14. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/py.typed +0 -0
  15. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/SOURCES.txt +0 -0
  16. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/dependency_links.txt +0 -0
  17. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/top_level.txt +0 -0
  18. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/setup.cfg +0 -0
  19. {open_api_framework-0.3.0 → open_api_framework-0.4.0}/tests/test_config_helpers.py +0 -0
@@ -1,6 +1,14 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 0.4.0 (2024-06-06)
5
+ ------------------
6
+
7
+ **New features**
8
+
9
+ * Add django-setup-configuration to deps
10
+ * Add ELASTIC_APM_TRANSACTION_SAMPLE_RATE
11
+
4
12
  0.3.0 (2024-05-17)
5
13
  ------------------
6
14
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: open_api_framework
3
- Version: 0.3.0
3
+ Version: 0.4.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 2024 Maykin Media
@@ -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"
@@ -78,7 +79,7 @@ Requires-Dist: twine; extra == "release"
78
79
  Welcome to open-api-framework's documentation!
79
80
  =================================================
80
81
 
81
- :Version: 0.3.0
82
+ :Version: 0.4.0
82
83
  :Source: https://github.com/maykinmedia/open-api-framework
83
84
  :Keywords: metapackage, dependencies
84
85
 
@@ -3,7 +3,7 @@
3
3
  Welcome to open-api-framework's documentation!
4
4
  =================================================
5
5
 
6
- :Version: 0.3.0
6
+ :Version: 0.4.0
7
7
  :Source: https://github.com/maykinmedia/open-api-framework
8
8
  :Keywords: metapackage, dependencies
9
9
 
@@ -610,6 +610,7 @@ ELASTIC_APM = {
610
610
  ),
611
611
  "SECRET_TOKEN": config("ELASTIC_APM_SECRET_TOKEN", "default"),
612
612
  "SERVER_URL": ELASTIC_APM_SERVER_URL,
613
+ "TRANSACTION_SAMPLE_RATE": config("ELASTIC_APM_TRANSACTION_SAMPLE_RATE", 0.1),
613
614
  }
614
615
  if not ELASTIC_APM_SERVER_URL:
615
616
  ELASTIC_APM["ENABLED"] = False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: open_api_framework
3
- Version: 0.3.0
3
+ Version: 0.4.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 2024 Maykin Media
@@ -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"
@@ -78,7 +79,7 @@ Requires-Dist: twine; extra == "release"
78
79
  Welcome to open-api-framework's documentation!
79
80
  =================================================
80
81
 
81
- :Version: 0.3.0
82
+ :Version: 0.4.0
82
83
  :Source: https://github.com/maykinmedia/open-api-framework
83
84
  :Keywords: metapackage, dependencies
84
85
 
@@ -25,6 +25,7 @@ elastic-apm>=6.20.0
25
25
  celery>=5.2.7
26
26
  flower>=2.0.1
27
27
  maykin-2fa>=1.0.0
28
+ django-setup-configuration>=0.1.0
28
29
 
29
30
  [coverage]
30
31
  pytest-cov
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "open_api_framework"
7
- version = "0.3.0"
7
+ version = "0.4.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"}
@@ -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.3.0"
103
+ current_version = "0.4.0"
103
104
  files = [
104
105
  {filename = "pyproject.toml"},
105
106
  {filename = "README.rst"},