agentflow-runtime 1.2.0__tar.gz → 1.3.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 (105) hide show
  1. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/CHANGELOG.md +71 -0
  2. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/PKG-INFO +1 -1
  3. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/pyproject.toml +1 -1
  4. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/.gitignore +0 -0
  5. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/LICENSE +0 -0
  6. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/README.md +0 -0
  7. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/requirements.txt +0 -0
  8. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/__init__.py +0 -0
  9. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/constants.py +0 -0
  10. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/__init__.py +0 -0
  11. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/cdc/__init__.py +0 -0
  12. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/cdc/normalizer.py +0 -0
  13. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/connectors/__init__.py +0 -0
  14. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/connectors/mysql_cdc.py +0 -0
  15. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/connectors/postgres_cdc.py +0 -0
  16. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/producers/__init__.py +0 -0
  17. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/producers/event_producer.py +0 -0
  18. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/schemas/__init__.py +0 -0
  19. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/schemas/events.py +0 -0
  20. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/ingestion/tenant_router.py +0 -0
  21. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/logger.py +0 -0
  22. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/orchestration/__init__.py +0 -0
  23. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/orchestration/dags/__init__.py +0 -0
  24. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/orchestration/dags/daily_batch.py +0 -0
  25. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/__init__.py +0 -0
  26. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/event_replayer.py +0 -0
  27. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/flink_jobs/Dockerfile +0 -0
  28. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/flink_jobs/__init__.py +0 -0
  29. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/flink_jobs/checkpointing.py +0 -0
  30. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/flink_jobs/session_aggregation.py +0 -0
  31. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/flink_jobs/session_aggregator.py +0 -0
  32. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/flink_jobs/stream_processor.py +0 -0
  33. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/iceberg_sink.py +0 -0
  34. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/local_pipeline.py +0 -0
  35. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/outbox.py +0 -0
  36. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/tracing.py +0 -0
  37. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/transformations/__init__.py +0 -0
  38. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/processing/transformations/enrichment.py +0 -0
  39. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/__init__.py +0 -0
  40. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/monitors/__init__.py +0 -0
  41. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/monitors/freshness_monitor.py +0 -0
  42. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/monitors/metrics_collector.py +0 -0
  43. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/validators/__init__.py +0 -0
  44. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/validators/schema_validator.py +0 -0
  45. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/quality/validators/semantic_validator.py +0 -0
  46. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/__init__.py +0 -0
  47. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/__init__.py +0 -0
  48. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/alert_dispatcher.py +0 -0
  49. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/alerts/__init__.py +0 -0
  50. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/alerts/dispatcher.py +0 -0
  51. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/alerts/escalation.py +0 -0
  52. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/alerts/evaluator.py +0 -0
  53. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/alerts/history.py +0 -0
  54. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/analytics.py +0 -0
  55. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/auth/__init__.py +0 -0
  56. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/auth/key_rotation.py +0 -0
  57. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/auth/manager.py +0 -0
  58. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/auth/middleware.py +0 -0
  59. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/main.py +0 -0
  60. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/middleware/logging.py +0 -0
  61. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/middleware/tracing.py +0 -0
  62. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/rate_limiter.py +0 -0
  63. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/__init__.py +0 -0
  64. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/admin.py +0 -0
  65. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/admin_ui.py +0 -0
  66. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/agent_query.py +0 -0
  67. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/alerts.py +0 -0
  68. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/batch.py +0 -0
  69. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/contracts.py +0 -0
  70. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/deadletter.py +0 -0
  71. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/lineage.py +0 -0
  72. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/search.py +0 -0
  73. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/slo.py +0 -0
  74. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/stream.py +0 -0
  75. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/routers/webhooks.py +0 -0
  76. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/security.py +0 -0
  77. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/telemetry.py +0 -0
  78. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/templates/admin.html +0 -0
  79. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/versioning.py +0 -0
  80. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/api/webhook_dispatcher.py +0 -0
  81. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/audit_publisher.py +0 -0
  82. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/backends/__init__.py +0 -0
  83. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/backends/clickhouse_backend.py +0 -0
  84. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/backends/duckdb_backend.py +0 -0
  85. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/cache.py +0 -0
  86. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/db_pool.py +0 -0
  87. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/duckdb_connection.py +0 -0
  88. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/masking.py +0 -0
  89. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/__init__.py +0 -0
  90. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/catalog.py +0 -0
  91. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/contract_registry.py +0 -0
  92. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/entity_type_registry.py +0 -0
  93. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/nl_engine.py +0 -0
  94. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/__init__.py +0 -0
  95. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/contracts.py +0 -0
  96. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/engine.py +0 -0
  97. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/entity_queries.py +0 -0
  98. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/metric_queries.py +0 -0
  99. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/nl_queries.py +0 -0
  100. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/sql_builder.py +0 -0
  101. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query/sql_guard.py +0 -0
  102. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/query_engine.py +0 -0
  103. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/schema_evolution.py +0 -0
  104. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/search_index.py +0 -0
  105. {agentflow_runtime-1.2.0 → agentflow_runtime-1.3.0}/src/serving/semantic_layer/sql_guard.py +0 -0
@@ -4,6 +4,77 @@ All notable changes to AgentFlow are documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [1.3.0] - 2026-05-24
8
+
9
+ ### Added
10
+
11
+ - A04 chart hardening: `helm/kafka-connect/` now ships NetworkPolicy +
12
+ PodDisruptionBudget + pod/container securityContext + `/tmp` memory
13
+ emptyDir (parity with `helm/agentflow`). All five primitives are
14
+ required by `values.schema.json` and off-by-default for backwards
15
+ compatibility on existing clusters; production switches them on via
16
+ `values-staging.yaml`-style overlays. See
17
+ `docs/operations/cdc-production-onboarding.md` § Chart hardening
18
+ baseline for the production switch-on recommendations.
19
+ - A05 live-validation coverage extended: the
20
+ `tests/integration/test_helm_values_live_validation.py` suite is
21
+ now parametrized across both `helm/agentflow` and `helm/kafka-connect`
22
+ charts, running lint + install --dry-run against the live kind
23
+ cluster with valid + invalid value fixtures each.
24
+ - A05 reuse-cluster mode: `conftest.kind_cluster` honours
25
+ `AGENTFLOW_LIVE_REUSE_CLUSTER=1` to skip the kind create/delete cycle
26
+ and validate against an active `KUBECONFIG` context. Lets the
27
+ schema gates run against managed staging clusters (EKS/GKE/AKS)
28
+ without provisioning a throwaway kind cluster.
29
+
30
+ ### Changed
31
+
32
+ - A03 CI hardware-gap acceptance: Load Test gates raised to 1.3x the
33
+ 2026-04-25 CI baseline (entity p99 750 → 900 ms, query/batch
34
+ 1000 → 1200 ms). Local SLO p99 < 200 ms unchanged. Decision record
35
+ + alternatives considered: `docs/perf/ci-hardware-gap-2026-05-24.md`.
36
+
37
+ ### Documentation
38
+
39
+ - DV2 web-UI screencast (`docs/dv2-multi-branch/demo_webui.mp4`,
40
+ ~60 s, 1.6 MB) — Playwright run through Argo workflow archive
41
+ (4× successful `dv2-refresh` runs + DAG drill-in on the latest) and
42
+ the MinIO `cold-tier` bucket browser (5 per-branch prefixes), with
43
+ a Russian TTS voice-over. Reproducer:
44
+ `docs/dv2-multi-branch/demo_webui.capture.py` plus the same
45
+ edge-tts + ffmpeg pipeline as the terminal cast.
46
+ - DV2 dbt docs screencast (`docs/dv2-multi-branch/demo_dbt_docs.mp4`,
47
+ ~55 s, 1.7 MB) — Playwright walk-through of the auto-generated dbt
48
+ docs site: project tree → `customer_360` columns/description →
49
+ `branch_pnl` with the `rv.bv_order_canonical → branch_pnl` lineage
50
+ graph → `returns_velocity` with lineage. Companion Pod manifest
51
+ `infrastructure/dv2/dbt/dbt-docs-pod.yaml` runs `dbt docs generate`
52
+ + `dbt docs serve --port 8080 --host 0.0.0.0` against the in-cluster
53
+ ClickHouse. Reproducer: `demo_dbt_docs.capture.py` plus the same
54
+ TTS pipeline.
55
+ - Cross-link `docs/plans/2026-04-debezium-kafka-connect-deployment-plan.md`
56
+ to `docs/operations/cdc-production-onboarding.md` (production source
57
+ onboarding still blocked on decision-record fill-in) and note that
58
+ the DV2 demo uses ClickHouse `MaterializedPostgreSQL` as a
59
+ single-node alternative, not a production replacement for
60
+ Debezium/Kafka Connect.
61
+ - Exploration archive: `docs/exploration/2026-05/` collects three
62
+ stale May-6/7 docs-site drafts (`astro_prompt.md`, `kimi.md`,
63
+ `research.md`) that had been sitting untracked in the repo root.
64
+
65
+ ### Fixed
66
+
67
+ - Typed `RetryPolicy.compute_delay()` intermediate `base` in
68
+ `sdk/agentflow/retry.py` so the function no longer returns
69
+ `Any`; SDK mypy is now strict-clean.
70
+ - CI / release / packaging lessons-learned document
71
+ (`docs/lessons/ci-repair-sprint-2026-04.md`) — seven concrete
72
+ Lesson / Apply / Concrete-trace entries covering A06 dependency
73
+ profiles, single-run baseline anti-pattern, FastAPI version drift,
74
+ PyPI namespace pre-claim, required-check self-reference deadlock,
75
+ fail-closed auth + `/v1/health` exemption, and the DV2 voice-over
76
+ pipeline.
77
+
7
78
  ## [1.2.0] - 2026-05-23
8
79
 
9
80
  ### Documentation
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentflow-runtime
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: Real-time data platform serving context to AI agents
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentflow-runtime"
3
- version = "1.2.0"
3
+ version = "1.3.0"
4
4
  description = "Real-time data platform serving context to AI agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"