--- enhancements: - | Document the input ordering behavior of auto-promoted lazy variadic sockets in ``Pipeline.connect()``. When multiple senders are connected to the same list-typed receiver socket, ordering depends on the pipeline class. With ``Pipeline``, items are ordered alphabetically by sender component name (because ``Pipeline.run()`` schedules components in alphabetical order for deterministic execution), not by the order of ``connect()`` calls. With ``AsyncPipeline``, no ordering is guaranteed, since components in different branches may run in parallel. The docstrings now point users to a dedicated joiner component when they need explicit ordering.