You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/06/30 14:33:48 UTC

[airflow] branch v2-3-test updated (f0fbdfd6de -> c711b76fe9)

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

ephraimanierobi pushed a change to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard f0fbdfd6de docs: sqlalchemy link update (#24627)
 discard 420ccfb691 Update ui.rst (#24514)
 discard 1bf8938fdf docker new system test (#23167)
     new ba19e032dd Update ui.rst (#24514)
     new c711b76fe9 docs: sqlalchemy link update (#24627)

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   (f0fbdfd6de)
            \
             N -- N -- N   refs/heads/v2-3-test (c711b76fe9)

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.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../docker/example_dags}/__init__.py               |   0
 .../example_dags/example_docker.py}                |  35 ++++---
 .../example_dags/example_docker_copy_data.py       | 101 +++++++++++++++++++
 .../docker/example_dags}/example_docker_swarm.py   |  30 ++----
 .../tutorial_taskflow_api_etl_docker_virtualenv.py |  39 +++-----
 docs/apache-airflow-providers-docker/index.rst     |  14 +--
 docs/apache-airflow/tutorial_taskflow_api.rst      |   4 +-
 tests/system/providers/docker/example_docker.py    |  63 ------------
 .../providers/docker/example_docker_copy_data.py   | 110 ---------------------
 9 files changed, 145 insertions(+), 251 deletions(-)
 copy airflow/{api/auth => providers/docker/example_dags}/__init__.py (100%)
 copy airflow/providers/{singularity/example_dags/example_singularity.py => docker/example_dags/example_docker.py} (64%)
 create mode 100644 airflow/providers/docker/example_dags/example_docker_copy_data.py
 rename {tests/system/providers/docker => airflow/providers/docker/example_dags}/example_docker_swarm.py (67%)
 rename tests/system/providers/docker/example_taskflow_api_etl_docker_virtualenv.py => airflow/providers/docker/example_dags/tutorial_taskflow_api_etl_docker_virtualenv.py (77%)
 delete mode 100644 tests/system/providers/docker/example_docker.py
 delete mode 100644 tests/system/providers/docker/example_docker_copy_data.py


[airflow] 01/02: Update ui.rst (#24514)

Posted by ep...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit ba19e032ddedfdc0e5f2bfd687ec705e33c8a744
Author: Habibullah Oladepo <ha...@yahoo.com>
AuthorDate: Fri Jun 17 12:10:49 2022 +0100

    Update ui.rst (#24514)
    
    Fix minor typos
    
    (cherry picked from commit 31f113e4de019399ea6439909e5f6b1ad187fa3f)
---
 docs/apache-airflow/ui.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/apache-airflow/ui.rst b/docs/apache-airflow/ui.rst
index 1889f6883f..5b41658928 100644
--- a/docs/apache-airflow/ui.rst
+++ b/docs/apache-airflow/ui.rst
@@ -76,7 +76,7 @@ Task groups are indicated by a caret and can be opened or closed:
 
 .. image:: img/grid_task_group.png
 
-Mapped Tasks are indicated by a square brackets and will show a table of each mapped task instance in the details panel:
+Mapped Tasks are indicated by square brackets and will show a table of each mapped task instance in the details panel:
 
 .. image:: img/grid_mapped_task.png
 
@@ -159,7 +159,7 @@ provide yet more context.
 
 Task Instance Context Menu
 ..........................
-From the pages seen above (tree view, graph view, gantt, ...), it is always
+From the pages seen above (grid view, graph view, gantt, ...), it is always
 possible to click on a task instance, and get to this rich context menu
 that can take you to more detailed metadata, and perform some actions.
 


[airflow] 02/02: docs: sqlalchemy link update (#24627)

Posted by ep...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c711b76fe9e7a8c69d6c60194732b343b7b58b92
Author: Itay <it...@gmail.com>
AuthorDate: Fri Jun 24 11:12:22 2022 +0300

    docs: sqlalchemy link update (#24627)
    
    following to this change: https://github.com/apache/airflow/pull/22114
    
    (cherry picked from commit 2113d72466fc89215c5874eab4124fce06a6d751)
---
 docs/apache-airflow/howto/set-up-database.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/howto/set-up-database.rst b/docs/apache-airflow/howto/set-up-database.rst
index 9a9b6ababc..cdf9f04ace 100644
--- a/docs/apache-airflow/howto/set-up-database.rst
+++ b/docs/apache-airflow/howto/set-up-database.rst
@@ -20,7 +20,7 @@
 Set up a Database Backend
 =========================
 
-Airflow was built to interact with its metadata using `SqlAlchemy <https://docs.sqlalchemy.org/en/13/>`__.
+Airflow was built to interact with its metadata using `SqlAlchemy <https://docs.sqlalchemy.org/en/14/>`__.
 
 The document below describes the database engine configurations, the necessary changes to their configuration to be used with Airflow, as well as changes to the Airflow configurations to connect to these databases.