kailash 0.9.1__py3-none-any.whl → 0.9.3__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 CHANGED
@@ -3,7 +3,9 @@
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.1: DataFlow PostgreSQL parameter conversion verification and comprehensive testing infrastructure.
6
+ New in v0.9.2: WebSocket Transport Support with Enterprise Connection Pooling.
7
+ 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.
7
9
  Complete validation of parameter conversion chain from DataFlow to AsyncSQLDatabaseNode to PostgreSQL.
8
10
  Previous v0.9.0: Complete migration from cycle=True to modern CycleBuilder API.
9
11
  """
@@ -48,7 +50,7 @@ except ImportError:
48
50
  # For backward compatibility
49
51
  WorkflowGraph = Workflow
50
52
 
51
- __version__ = "0.9.1"
53
+ __version__ = "0.9.3"
52
54
 
53
55
  __all__ = [
54
56
  # Core workflow components
@@ -0,0 +1,9 @@
1
+ """
2
+ Kailash Analysis Module.
3
+
4
+ Provides analysis tools for workflow optimization and conditional execution.
5
+ """
6
+
7
+ from .conditional_branch_analyzer import ConditionalBranchAnalyzer
8
+
9
+ __all__ = ["ConditionalBranchAnalyzer"]