framework-m 0.12.0__tar.gz → 0.12.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.
- {framework_m-0.12.0 → framework_m-0.12.2}/.gitignore +2 -1
- {framework_m-0.12.0 → framework_m-0.12.2}/CHANGELOG.md +16 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/PKG-INFO +3 -3
- {framework_m-0.12.0 → framework_m-0.12.2}/pyproject.toml +16 -16
- {framework_m-0.12.0 → framework_m-0.12.2}/LICENSE +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/README.md +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/alembic/README +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/alembic/env.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/alembic/script.py.mako +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/alembic.ini +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/src/framework_m/__init__.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/src/framework_m/cli/__init__.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/src/framework_m/cli/main.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/src/framework_m/core/services/__init__.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/src/framework_m/core/services/correction.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/src/framework_m/py.typed +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/adapters/auth/test_oauth_adapter.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/adapters/read_model/test_projector.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/architecture/fixtures/ci_dummy_index.html +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/architecture/test_frontend_bootstrap.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/architecture/test_package_separation.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/conftest.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/core/interfaces/test_read_model.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/core/interfaces/test_report_engine.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/core/test_correction_service.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/helpers/__init__.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/__init__.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_api_endpoints.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_app_ports.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_child_table_integration.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_crud_flow.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_jobs_events_webhooks.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_migration_flow.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_override_migration.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_postgres_flow.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_real_http_client.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_rfc_0008_audit.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_rfc_0008_correction.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_rfc_0008_versioning.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/integration/test_workflow_lifecycle.py +0 -0
- {framework_m-0.12.0 → framework_m-0.12.2}/tests/test_meta.py +0 -0
|
@@ -96,7 +96,7 @@ node_modules/
|
|
|
96
96
|
# Frontend build outputs
|
|
97
97
|
frontend/dist/
|
|
98
98
|
frontend/.vite/
|
|
99
|
-
frontend/public/locales
|
|
99
|
+
frontend/public/locales/**/*.json
|
|
100
100
|
!frontend/public/.gitkeep
|
|
101
101
|
!frontend/public/favicon.png
|
|
102
102
|
libs/framework-m-ui/storybook-static/
|
|
@@ -134,3 +134,4 @@ website/node_modules/
|
|
|
134
134
|
|
|
135
135
|
# GitLab Pages
|
|
136
136
|
/public/
|
|
137
|
+
.aider*
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## framework-m v0.12.2
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- use esbuild 0.28.1 for security upgrade (d91af50)
|
|
6
|
+
- extract translations (8377160)
|
|
7
|
+
|
|
8
|
+
## framework-m v0.12.1
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- disable sorting in i18next-cli to prevent CI loop (3ed1cee)
|
|
13
|
+
- sync frontend translations (84705bd)
|
|
14
|
+
- workspace development dependencies and enforce internal version bounds (d39c3df)
|
|
15
|
+
- bump workspace development dependencies (44e70d6)
|
|
16
|
+
|
|
1
17
|
## framework-m v0.12.0
|
|
2
18
|
|
|
3
19
|
### Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: framework-m
|
|
3
|
-
Version: 0.12.
|
|
3
|
+
Version: 0.12.2
|
|
4
4
|
Summary: A modular, metadata-driven business application framework
|
|
5
5
|
Project-URL: Homepage, https://gitlab.com/castlecraft/framework-m
|
|
6
6
|
Project-URL: Documentation, https://gitlab.com/castlecraft/framework-m#readme
|
|
@@ -18,8 +18,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Classifier: Typing :: Typed
|
|
20
20
|
Requires-Python: >=3.12
|
|
21
|
-
Requires-Dist: framework-m-core>=0.
|
|
22
|
-
Requires-Dist: framework-m-standard>=0.
|
|
21
|
+
Requires-Dist: framework-m-core>=0.24.0
|
|
22
|
+
Requires-Dist: framework-m-standard>=0.22.0
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
25
|
# Framework M
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "framework-m"
|
|
3
|
-
version = "0.12.
|
|
3
|
+
version = "0.12.2"
|
|
4
4
|
description = "A modular, metadata-driven business application framework"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "Apache-2.0" }
|
|
@@ -21,8 +21,8 @@ classifiers = [
|
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
dependencies = [
|
|
24
|
-
"framework-m-core>=0.
|
|
25
|
-
"framework-m-standard>=0.
|
|
24
|
+
"framework-m-core>=0.24.0",
|
|
25
|
+
"framework-m-standard>=0.22.0",
|
|
26
26
|
]
|
|
27
27
|
|
|
28
28
|
[tool.uv.sources]
|
|
@@ -32,20 +32,20 @@ framework-m-studio = { workspace = true }
|
|
|
32
32
|
|
|
33
33
|
[dependency-groups]
|
|
34
34
|
dev = [
|
|
35
|
-
"pytest>=
|
|
36
|
-
"pytest-asyncio>=
|
|
37
|
-
"pytest-cov>=
|
|
38
|
-
"mypy>=1.
|
|
39
|
-
"ruff>=0.
|
|
40
|
-
"testcontainers>=
|
|
41
|
-
"httpx>=0.
|
|
42
|
-
"aiosqlite>=0.
|
|
43
|
-
"framework-m-studio",
|
|
35
|
+
"pytest>=9.1.0",
|
|
36
|
+
"pytest-asyncio>=1.4.0",
|
|
37
|
+
"pytest-cov>=7.1.0",
|
|
38
|
+
"mypy>=2.1.0",
|
|
39
|
+
"ruff>=0.15.17",
|
|
40
|
+
"testcontainers>=4.14.2",
|
|
41
|
+
"httpx>=0.28.1",
|
|
42
|
+
"aiosqlite>=0.22.1",
|
|
43
|
+
"framework-m-studio>=0.17.2",
|
|
44
44
|
# Release tools
|
|
45
|
-
"python-semantic-release>=
|
|
46
|
-
"build>=1.
|
|
47
|
-
"twine>=
|
|
48
|
-
"pre-commit>=
|
|
45
|
+
"python-semantic-release>=10.5.3",
|
|
46
|
+
"build>=1.5.0",
|
|
47
|
+
"twine>=6.2.0",
|
|
48
|
+
"pre-commit>=4.6.0",
|
|
49
49
|
]
|
|
50
50
|
|
|
51
51
|
[project.scripts]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|