kailash 0.9.13__py3-none-any.whl → 0.9.14__py3-none-any.whl
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.
- kailash/__init__.py +6 -5
- kailash/workflow/validation.py +11 -2
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/METADATA +1 -1
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/RECORD +9 -9
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/WHEEL +0 -0
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/entry_points.txt +0 -0
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/licenses/LICENSE +0 -0
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/licenses/NOTICE +0 -0
- {kailash-0.9.13.dist-info → kailash-0.9.14.dist-info}/top_level.txt +0 -0
kailash/__init__.py
CHANGED
@@ -3,11 +3,12 @@
|
|
3
3
|
The Kailash SDK provides a comprehensive framework for creating nodes and workflows
|
4
4
|
that align with container-node architecture while allowing rapid prototyping.
|
5
5
|
|
6
|
-
New in v0.9.
|
6
|
+
New in v0.9.14: Code quality improvements and updated dependencies for DataFlow v0.4.6 compatibility.
|
7
|
+
Applied black formatting fixes and ensured CI stability. Updated dependency references to latest framework versions.
|
8
|
+
Previous v0.9.13: Fixed WorkflowBuilder parameter validation false positives (Bug 010).
|
9
|
+
Previous v0.9.12: SQLite Compatibility & Code Quality improvements.
|
10
|
+
Previous v0.9.2: WebSocket Transport Support with Enterprise Connection Pooling.
|
7
11
|
Fixed "Unsupported transport: websocket" error. Added 73% performance improvement with connection pooling.
|
8
|
-
Previous v0.9.1: DataFlow PostgreSQL parameter conversion verification and comprehensive testing infrastructure.
|
9
|
-
Complete validation of parameter conversion chain from DataFlow to AsyncSQLDatabaseNode to PostgreSQL.
|
10
|
-
Previous v0.9.0: Complete migration from cycle=True to modern CycleBuilder API.
|
11
12
|
"""
|
12
13
|
|
13
14
|
from kailash.nodes.base import Node, NodeMetadata, NodeParameter
|
@@ -50,7 +51,7 @@ except ImportError:
|
|
50
51
|
# For backward compatibility
|
51
52
|
WorkflowGraph = Workflow
|
52
53
|
|
53
|
-
__version__ = "0.9.
|
54
|
+
__version__ = "0.9.14"
|
54
55
|
|
55
56
|
__all__ = [
|
56
57
|
# Core workflow components
|
kailash/workflow/validation.py
CHANGED
@@ -208,9 +208,18 @@ class ParameterDeclarationValidator:
|
|
208
208
|
)
|
209
209
|
)
|
210
210
|
|
211
|
-
# Security: Undeclared parameter access attempts
|
211
|
+
# Security: Undeclared parameter access attempts (WITH auto_map_from support)
|
212
212
|
if declared_params and workflow_parameters:
|
213
|
-
|
213
|
+
# Build complete set of valid parameter names including auto_map_from
|
214
|
+
valid_param_names = set(declared_params.keys())
|
215
|
+
|
216
|
+
# Add all auto_map_from alternatives to valid set
|
217
|
+
for param_name, param_def in declared_params.items():
|
218
|
+
if hasattr(param_def, "auto_map_from") and param_def.auto_map_from:
|
219
|
+
valid_param_names.update(param_def.auto_map_from)
|
220
|
+
|
221
|
+
# Check against expanded valid parameter set
|
222
|
+
undeclared = set(workflow_parameters.keys()) - valid_param_names
|
214
223
|
if undeclared:
|
215
224
|
issues.append(
|
216
225
|
ValidationIssue(
|
@@ -1,4 +1,4 @@
|
|
1
|
-
kailash/__init__.py,sha256=
|
1
|
+
kailash/__init__.py,sha256=5ah04rxNTa7lqceRYS0LAu2U7VHLfU09Jek3rd7Rm2k,2853
|
2
2
|
kailash/__main__.py,sha256=vr7TVE5o16V6LsTmRFKG6RDKUXHpIWYdZ6Dok2HkHnI,198
|
3
3
|
kailash/access_control.py,sha256=MjKtkoQ2sg1Mgfe7ovGxVwhAbpJKvaepPWr8dxOueMA,26058
|
4
4
|
kailash/access_control_abac.py,sha256=FPfa_8PuDP3AxTjdWfiH3ntwWO8NodA0py9W8SE5dno,30263
|
@@ -401,12 +401,12 @@ kailash/workflow/safety.py,sha256=pS5GKu7UdkzFZcb16Dn-0jBxjULDU-59_M0CbUVMVyw,11
|
|
401
401
|
kailash/workflow/state.py,sha256=UTZxs5-Ona6uvBhx1__i6-RX8gB4qazkBIWE7uyRmWQ,7600
|
402
402
|
kailash/workflow/templates.py,sha256=XQMAKZXC2dlxgMMQhSEOWAF3hIbe9JJt9j_THchhAm8,48486
|
403
403
|
kailash/workflow/type_inference.py,sha256=i1F7Yd_Z3elTXrthsLpqGbOnQBIVVVEjhRpI0HrIjd0,24492
|
404
|
-
kailash/workflow/validation.py,sha256=
|
404
|
+
kailash/workflow/validation.py,sha256=LdbIPQSokCqSLfWTBhJR82pa_0va44pcVu9dpEM4rvY,45177
|
405
405
|
kailash/workflow/visualization.py,sha256=nHBW-Ai8QBMZtn2Nf3EE1_aiMGi9S6Ui_BfpA5KbJPU,23187
|
406
|
-
kailash-0.9.
|
407
|
-
kailash-0.9.
|
408
|
-
kailash-0.9.
|
409
|
-
kailash-0.9.
|
410
|
-
kailash-0.9.
|
411
|
-
kailash-0.9.
|
412
|
-
kailash-0.9.
|
406
|
+
kailash-0.9.14.dist-info/licenses/LICENSE,sha256=9GYZHXVUmx6FdFRNzOeE_w7a_aEGeYbqTVmFtJlrbGk,13438
|
407
|
+
kailash-0.9.14.dist-info/licenses/NOTICE,sha256=9ssIK4LcHSTFqriXGdteMpBPTS1rSLlYtjppZ_bsjZ0,723
|
408
|
+
kailash-0.9.14.dist-info/METADATA,sha256=4j6DBNRv5DSiH0VPQ1H3IhTw8vh06MYdDAJebLSmGg0,23528
|
409
|
+
kailash-0.9.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
410
|
+
kailash-0.9.14.dist-info/entry_points.txt,sha256=M_q3b8PG5W4XbhSgESzIJjh3_4OBKtZFYFsOdkr2vO4,45
|
411
|
+
kailash-0.9.14.dist-info/top_level.txt,sha256=z7GzH2mxl66498pVf5HKwo5wwfPtt9Aq95uZUpH6JV0,8
|
412
|
+
kailash-0.9.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|