You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/07/07 20:58:49 UTC

[airflow] branch dependabot/npm_and_yarn/airflow/www/moment-2.29.4 updated (39f9d52dfc -> 1f427a9d9b)

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

potiuk pushed a change to branch dependabot/npm_and_yarn/airflow/www/moment-2.29.4
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 39f9d52dfc Bump moment from 2.29.3 to 2.29.4 in /airflow/www
     add fb7162418e Add links for Google Kubernetes Engine operators (#24786)
     add 01a5d8fe93 Upgrade FAB to 4.1.3 (#24884)
     add 7a9c03caaf Add additional information to Airflow release doc (#24848)
     add b9b97b3e1b Improve documentation to add path of Breeze in a Mac with Python (#24829)
     add bdc31bd1f6 Make sure that build-images workflow has permissions to read PR info (#24897)
     add 90450c029b Don't add init.py files to __pycache__ folders. (#24896)
     add 98aa044782 Sync committers list with Apache project page (#24900)
     add 1404d6785a Remove full provider's specification from TEST_TYPES (#24901)
     add 011fbae583 Update PythonVirtualenvOperator Howto (#24782)
     add 7f749b653c Add test connection functionality to `GithubHook` (#24903)
     add 2f29bfefb5 Bind log server on worker to IPv6 address (#24755) (#24846)
     add 64412ee867 Add blocksize arg for ftp hook (#24860)
     add c1526a2888 Convert Step Functions Example DAG to System Test (AIP-47) (#24643)
     add 1f427a9d9b Bump moment from 2.29.3 to 2.29.4 in /airflow/www

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   (39f9d52dfc)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/airflow/www/moment-2.29.4 (1f427a9d9b)

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:
 .github/workflows/build-images.yml                 |   1 +
 BREEZE.rst                                         |   6 ++
 .../aws/example_dags/example_step_functions.py     |  56 ----------
 airflow/providers/ftp/hooks/ftp.py                 |  29 +++--
 airflow/providers/github/hooks/github.py           |  39 ++++---
 .../google/cloud/links/kubernetes_engine.py        |  83 ++++++++++++++
 .../google/cloud/operators/kubernetes_engine.py    |  12 ++-
 airflow/providers/google/provider.yaml             |   2 +
 airflow/utils/serve_logs.py                        |  22 ++--
 dev/README_RELEASE_AIRFLOW.md                      |  16 ++-
 .../operators/step_functions.rst                   |   6 +-
 docs/apache-airflow/howto/operator/python.rst      |   3 +-
 docs/apache-airflow/project.rst                    |   3 +
 newsfragments/24755.improvement.rst                |   1 +
 .../pre_commit/pre_commit_check_init_in_tests.py   |   9 +-
 scripts/ci/testing/ci_run_airflow_testing.sh       |   3 +-
 setup.cfg                                          |   2 +-
 tests/providers/ftp/hooks/test_ftp.py              |   4 +-
 tests/providers/github/hooks/test_github.py        |  38 +++++--
 tests/providers/github/operators/test_github.py    |  10 +-
 tests/providers/github/sensors/test_github.py      |  10 +-
 .../cloud/operators/test_kubernetes_engine.py      |  16 +--
 .../providers/amazon/aws/example_step_functions.py | 119 +++++++++++++++++++++
 .../system/providers/amazon/aws/utils/__init__.py  |  55 +++++++++-
 24 files changed, 409 insertions(+), 136 deletions(-)
 delete mode 100644 airflow/providers/amazon/aws/example_dags/example_step_functions.py
 create mode 100644 airflow/providers/google/cloud/links/kubernetes_engine.py
 create mode 100644 newsfragments/24755.improvement.rst
 create mode 100644 tests/system/providers/amazon/aws/example_step_functions.py