This is an automated email from the ASF dual-hosted git repository.

Lee-W pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit dbc56d29ace [main] CI: Upgrade important CI environment
     add 2678bc8e3ae Java SDK: Add setVariable and deleteVariable to the task 
Client (#72676)
     add b4d012936c5 Add integrity metadata to TypeScript bundles (#72046)
     add a5655d8b301 [main] CI: Upgrade important CI environment

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (dbc56d29ace)
            \
             N -- N -- N   refs/heads/ci-upgrade-main (a5655d8b301)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../language-sdks/java.rst                         |  18 +
 .../language-sdks/typescript.rst                   |  13 +-
 .../org/apache/airflow/e2e/TestBundleBuilder.java  |  26 +-
 .../src/resources/dags/java_test_dags.py           |  12 +
 .../airflow_e2e_tests/e2e_test_utils/clients.py    |   4 +
 .../java_sdk_tests/test_java_sdk_dag.py            |  55 +++
 java-sdk/README.md                                 |   2 +-
 java-sdk/capabilities.yaml                         |   4 +-
 java-sdk/sdk/module.md                             |   2 +-
 .../main/kotlin/org/apache/airflow/sdk/Client.kt   |  25 ++
 .../org/apache/airflow/sdk/execution/Client.kt     |  29 ++
 .../org/apache/airflow/sdk/execution/Frame.kt      |  14 +
 .../kotlin/org/apache/airflow/sdk/ClientTest.kt    |   8 +
 .../org/apache/airflow/sdk/execution/CommTest.kt   | 123 ++++++
 .../org/apache/airflow/sdk/execution/TaskTest.kt   |   8 +
 task-sdk/docs/airflow-metadata.schema.json         |   2 +-
 task-sdk/docs/index.rst                            |   1 +
 task-sdk/docs/ts-bundle-spec.rst                   | 178 +++++++++
 .../sdk/coordinators/node/_bundle_reader.py        | 376 +++++++++++++++++++
 .../airflow/sdk/coordinators/node/coordinator.py   | 138 +++----
 .../coordinators/node/_bundle_test_utils.py        | 124 +++++++
 .../coordinators/node/test_bundle_reader.py        | 412 +++++++++++++++++++++
 .../task_sdk/coordinators/node/test_coordinator.py | 250 +++++++------
 ts-sdk/README.md                                   |  12 +-
 ts-sdk/src/cli/bundle-encoder.ts                   | 174 +++++++++
 ts-sdk/src/cli/pack.ts                             |  74 +---
 .../cli/fixtures/{empty-entry.ts => bundle-v1.mjs} |   2 +
 ts-sdk/tests/cli/pack.test.ts                      | 210 ++++++++---
 28 files changed, 1957 insertions(+), 339 deletions(-)
 create mode 100644 task-sdk/docs/ts-bundle-spec.rst
 create mode 100644 task-sdk/src/airflow/sdk/coordinators/node/_bundle_reader.py
 create mode 100644 
task-sdk/tests/task_sdk/coordinators/node/_bundle_test_utils.py
 create mode 100644 
task-sdk/tests/task_sdk/coordinators/node/test_bundle_reader.py
 create mode 100644 ts-sdk/src/cli/bundle-encoder.ts
 copy ts-sdk/tests/cli/fixtures/{empty-entry.ts => bundle-v1.mjs} (63%)

Reply via email to