jason810496 commented on code in PR #71822: URL: https://github.com/apache/airflow/pull/71822#discussion_r3811806585
########## airflow-core/docs/authoring-and-scheduling/language-sdks/typescript.rst: ########## @@ -26,13 +26,17 @@ The TypeScript SDK lets you implement Airflow task logic in TypeScript (or plain Node.js. The Dag and its scheduling remain in Python; individual tasks delegate to a Node.js subprocess that is spawned by :class:`~airflow.sdk.coordinators.node.NodeCoordinator` for each task instance. -The SDK is an ESM-only package that ships from the ``ts-sdk/`` directory of the Airflow repository. It is currently in **alpha** and its API may change. +The SDK is an ESM-only package that ships from the ``ts-sdk/`` directory of the Airflow repository. Its current version is **1.0.0-beta1**, and its API may change. .. warning:: - The SDK is not yet published to npm. To try it today, build it from source in the - `ts-sdk/ <https://github.com/apache/airflow/tree/main/ts-sdk>`__ directory of the Airflow repository and - depend on it locally (see ``ts-sdk/example/`` for a working setup). + The SDK is a beta release. Its API may change in incompatible ways between releases. + +Install the beta package from npm: + +.. code-block:: bash + + npm install [email protected] Review Comment: IMO, the Airflow core docs will be rebased with 3.4 timeline, but we will release the first TS SDK beta release before 3.4 release (perhaps next week if no one object). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
