framework-m 0.6.0__tar.gz → 0.6.3__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 (37) hide show
  1. {framework_m-0.6.0 → framework_m-0.6.3}/.gitignore +1 -0
  2. {framework_m-0.6.0 → framework_m-0.6.3}/CHANGELOG.md +21 -0
  3. {framework_m-0.6.0 → framework_m-0.6.3}/PKG-INFO +2 -2
  4. {framework_m-0.6.0 → framework_m-0.6.3}/pyproject.toml +2 -2
  5. {framework_m-0.6.0 → framework_m-0.6.3}/README.md +0 -0
  6. {framework_m-0.6.0 → framework_m-0.6.3}/alembic/README +0 -0
  7. {framework_m-0.6.0 → framework_m-0.6.3}/alembic/env.py +0 -0
  8. {framework_m-0.6.0 → framework_m-0.6.3}/alembic/script.py.mako +0 -0
  9. {framework_m-0.6.0 → framework_m-0.6.3}/alembic.ini +0 -0
  10. {framework_m-0.6.0 → framework_m-0.6.3}/docs/ports.md +0 -0
  11. {framework_m-0.6.0 → framework_m-0.6.3}/examples/api_example.py +0 -0
  12. {framework_m-0.6.0 → framework_m-0.6.3}/examples/run_server.py +0 -0
  13. {framework_m-0.6.0 → framework_m-0.6.3}/src/framework_m/__init__.py +0 -0
  14. {framework_m-0.6.0 → framework_m-0.6.3}/src/framework_m/cli/__init__.py +0 -0
  15. {framework_m-0.6.0 → framework_m-0.6.3}/src/framework_m/cli/main.py +0 -0
  16. {framework_m-0.6.0 → framework_m-0.6.3}/src/framework_m/py.typed +0 -0
  17. {framework_m-0.6.0 → framework_m-0.6.3}/tests/adapters/auth/test_oauth_adapter.py +0 -0
  18. {framework_m-0.6.0 → framework_m-0.6.3}/tests/adapters/read_model/test_projector.py +0 -0
  19. {framework_m-0.6.0 → framework_m-0.6.3}/tests/architecture/fixtures/ci_dummy_index.html +0 -0
  20. {framework_m-0.6.0 → framework_m-0.6.3}/tests/architecture/test_frontend_bootstrap.py +0 -0
  21. {framework_m-0.6.0 → framework_m-0.6.3}/tests/architecture/test_package_separation.py +0 -0
  22. {framework_m-0.6.0 → framework_m-0.6.3}/tests/conftest.py +0 -0
  23. {framework_m-0.6.0 → framework_m-0.6.3}/tests/core/interfaces/test_read_model.py +0 -0
  24. {framework_m-0.6.0 → framework_m-0.6.3}/tests/core/interfaces/test_report_engine.py +0 -0
  25. {framework_m-0.6.0 → framework_m-0.6.3}/tests/helpers/__init__.py +0 -0
  26. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/__init__.py +0 -0
  27. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_api_endpoints.py +0 -0
  28. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_app_ports.py +0 -0
  29. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_child_table_integration.py +0 -0
  30. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_crud_flow.py +0 -0
  31. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_jobs_events_webhooks.py +0 -0
  32. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_migration_flow.py +0 -0
  33. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_override_migration.py +0 -0
  34. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_postgres_flow.py +0 -0
  35. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_real_http_client.py +0 -0
  36. {framework_m-0.6.0 → framework_m-0.6.3}/tests/integration/test_workflow_lifecycle.py +0 -0
  37. {framework_m-0.6.0 → framework_m-0.6.3}/tests/test_meta.py +0 -0
@@ -94,6 +94,7 @@ node_modules/
94
94
  # Frontend build outputs
95
95
  frontend/dist/
96
96
  frontend/.vite/
97
+ libs/framework-m-ui/storybook-static/
97
98
  apps/*/studio_ui/dist/
98
99
  apps/*/studio_ui/.vite/
99
100
  frontend/playwright-report
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## framework-m v0.6.3
4
+
5
+ ### Bug Fixes
6
+
7
+ - correct repository url (c629d3c)
8
+
9
+
10
+ ## framework-m v0.6.2
11
+
12
+ ### Bug Fixes
13
+
14
+ - update license and finalize CI publishing fixes (cf3dddc)
15
+
16
+
17
+ ## framework-m v0.6.1
18
+
19
+ ### Bug Fixes
20
+
21
+ - remove hardcoded publishConfig registry (b197c97)
22
+
23
+
3
24
  ## framework-m v0.6.0
4
25
 
5
26
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: framework-m
3
- Version: 0.6.0
3
+ Version: 0.6.3
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
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Programming Language :: Python :: 3.13
18
18
  Classifier: Typing :: Typed
19
19
  Requires-Python: >=3.12
20
- Requires-Dist: framework-m-core>=0.9.0
20
+ Requires-Dist: framework-m-core>=0.10.0
21
21
  Requires-Dist: framework-m-standard>=0.6.0
22
22
  Description-Content-Type: text/markdown
23
23
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "framework-m"
3
- version = "0.6.0"
3
+ version = "0.6.3"
4
4
  description = "A modular, metadata-driven business application framework"
5
5
  readme = "README.md"
6
6
  license = { text = "Apache-2.0" }
@@ -21,7 +21,7 @@ classifiers = [
21
21
  ]
22
22
 
23
23
  dependencies = [
24
- "framework-m-core>=0.9.0",
24
+ "framework-m-core>=0.10.0",
25
25
  "framework-m-standard>=0.6.0",
26
26
  ]
27
27
 
File without changes
File without changes
File without changes
File without changes
File without changes