This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a change to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.
discard 030e715 Make rbac_app's db.session use the same timezone with
@provide_session (#14025)
omit 18e889c Update Mongodb inventory URL to fix docs build (#13939)
add 6373a5e Upgrade tool: skip bad file test for Python 2.7 (#13981)
add fe767e6 Update Mongodb inventory URL to fix docs build (#13939)
(#13991)
add df0ee79 Created rule for SparkJDBCOperator class conn_id (#13798)
add bdae805 Treat default value in HostnameCallable rule as good one
(#13670)
add 8c239b7 Created DatabaseVersionCheckRule class (#13955)
add 28a6a08 [kubernetes_generate_dag_yaml] - Fix dag yaml generate func
(#13816)
add e76c743 Fix broken ``airflow upgrade_check`` command (#14137)
add 7410dc9 Use Tabular Format for the List of Upgrade Check Rules
(#14139)
add 616a698 Add Version command for Upgrade Check (#12929)
add bbaa6cd Release ``upgrade_check`` 1.2.0 (#14140)
add 3709503 Fix `airflow tasks clear` cli command wirh `--yes` (#14188)
add dbf2e30 Handle possible suffix in MySQL version + avoid hard-coding
(#14274)
add e8008f5 Fix permission error on non-POSIX filesystem (#13121) (#14383)
add e333133 Fix Incorrect warning in upgrade check and error in reading
file (#14344)
add 4944160 Fix comparing airflow version to work with older versions of
packaging library (#14435)
add 7a5f0e1 Add 'airflow variables list' command for 1.10.x transition
version (#14462)
add 75b2fa2 Fixed deprecation message for "variables" command (#14457)
add 2ea5881 BugFix: fix the delete_dag function of json_client (#14441)
add 2fa3774 Use CustomSQLAInterface instead of SQLAInterface (#14475)
add e647593 Bugfix: Fix False alarm in import changes rule (#14493)
add 6342f23 Fix Failing test on v1-10-stable (#14678)
add 08c015f Bugfix: False positives for Custom Executors via Plugins
check (#14680)
add 7e7657b Fix merging of secrets and configmaps (#14090)
new 740ec71 Make rbac_app's db.session use the same timezone with
@provide_session (#14025)
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 (030e715)
\
N -- N -- N refs/heads/v1-10-test (740ec71)
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 1 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:
airflow/api/client/json_client.py | 2 +-
airflow/bin/cli.py | 28 +++--
airflow/kubernetes/pod_generator.py | 12 ++-
airflow/upgrade/README.md | 18 +++-
airflow/upgrade/checker.py | 25 ++++-
...in_between_dag_and_operator_not_allowed_rule.py | 57 +++++-----
.../custom_executors_require_full_path_rule.py | 13 ++-
airflow/upgrade/rules/db_api_functions.py | 8 +-
airflow/upgrade/rules/hostname_callable_rule.py | 7 +-
airflow/upgrade/rules/import_changes.py | 28 +++--
.../postgres_mysql_sqlite_version_upgrade_check.py | 65 ++++++++++++
airflow/upgrade/rules/renamed_classes.py | 9 +-
.../rules/spark_jdbc_operator_conn_id_rule.py | 44 ++++++++
.../rules/use_customsqlainterface_class_rule.py | 64 ++++++++++++
airflow/upgrade/setup.cfg | 2 +-
.../secrets/__init__.py => upgrade/version.py} | 2 +
airflow/utils/log/file_task_handler.py | 5 +-
tests/kubernetes/test_pod_generator.py | 90 ++++++++++++++++
.../rules/test_airflow_macro_plugin_removed.py | 9 +-
...in_between_dag_and_operator_not_allowed_rule.py | 35 ++++++-
...test_custom_executors_require_full_path_rule.py | 27 ++++-
tests/upgrade/rules/test_import_changes.py | 41 +++++++-
..._postgres_mysql_sqlite_version_upgrade_check.py | 115 +++++++++++++++++++++
...ark_jdbc_operator_conn_id_default_name_rule.py} | 35 +++++--
.../test_use_customsqlainterface_class_rule.py | 82 +++++++++++++++
25 files changed, 741 insertions(+), 82 deletions(-)
create mode 100644
airflow/upgrade/rules/postgres_mysql_sqlite_version_upgrade_check.py
create mode 100644 airflow/upgrade/rules/spark_jdbc_operator_conn_id_rule.py
create mode 100644 airflow/upgrade/rules/use_customsqlainterface_class_rule.py
copy airflow/{contrib/secrets/__init__.py => upgrade/version.py} (97%)
create mode 100644
tests/upgrade/rules/test_postgres_mysql_sqlite_version_upgrade_check.py
copy tests/upgrade/rules/{test_conn_type_is_not_nullable.py =>
test_spark_jdbc_operator_conn_id_default_name_rule.py} (50%)
create mode 100644
tests/upgrade/rules/test_use_customsqlainterface_class_rule.py