You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/02/15 17:58:38 UTC

[airflow] branch main updated (69bf74f -> da9d086)

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

jedcunningham pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 69bf74f  Fix EcsOperatorError, so it can be loaded from a picklefile (#21441)
     add da9d086  Add a session backend to store session data in the database (#21478)

No new revisions were added by this update.

Summary of changes:
 airflow/config_templates/config.yml                |  7 +++
 airflow/config_templates/default_airflow.cfg       |  4 ++
 ...27fdd3_increase_length_of_email_and_username.py |  4 +-
 ....py => c381b21cb7e4_add_session_table_to_db.py} | 34 ++++++-----
 airflow/utils/db.py                                |  3 +
 airflow/www/app.py                                 |  3 +-
 airflow/www/extensions/init_session.py             | 63 ++++++++++++---------
 .../www/{extensions/init_session.py => session.py} | 29 ++++------
 docs/apache-airflow/migrations-ref.rst             |  4 +-
 docs/spelling_wordlist.txt                         |  1 +
 setup.cfg                                          |  3 +
 tests/api_connexion/conftest.py                    |  7 ++-
 tests/api_connexion/test_security.py               |  4 ++
 tests/test_utils/decorators.py                     |  2 +-
 tests/utils/test_db.py                             |  3 +
 tests/www/views/conftest.py                        |  1 +
 tests/www/views/test_session.py                    | 65 ++++++++++++++++++++++
 17 files changed, 172 insertions(+), 65 deletions(-)
 copy airflow/migrations/versions/{f2ca10b85618_add_dag_stats_table.py => c381b21cb7e4_add_session_table_to_db.py} (62%)
 copy airflow/www/{extensions/init_session.py => session.py} (59%)
 create mode 100644 tests/www/views/test_session.py