This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-dea165cabf
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 8db262230a5 chore(deps-dev): bump the fab-ui-package-updates group
across 1 directory with 3 updates
add 03c6388f400 Re-introducing `--use-migration-files` and fix
inconsistences between ORM/migration files (#62234)
add 471504c6b2d chore(deps-dev): bump the fab-ui-package-updates group
across 1 directory with 3 updates
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 (8db262230a5)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-dea165cabf
(471504c6b2d)
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:
airflow-core/docs/migrations-ref.rst | 4 +-
airflow-core/src/airflow/cli/cli_config.py | 16 +-
.../src/airflow/cli/commands/db_command.py | 24 +-
.../src/airflow/cli/commands/db_manager_command.py | 7 +-
airflow-core/src/airflow/migrations/utils.py | 215 ++++++++++++-
.../versions/0000_2_6_2_squashed_migrations.py | 211 ++++++------
.../versions/0047_3_0_0_add_dag_versioning.py | 10 +
...3_2_0_fix_migration_file_ORM_inconsistencies.py | 211 ++++++++++++
airflow-core/src/airflow/utils/db.py | 87 ++++-
airflow-core/src/airflow/utils/db_manager.py | 66 +++-
.../tests/unit/cli/commands/test_db_command.py | 36 ++-
.../unit/cli/commands/test_db_manager_command.py | 41 ++-
airflow-core/tests/unit/utils/test_db.py | 51 ++-
airflow-core/tests/unit/utils/test_db_compare.py | 64 ++++
airflow-core/tests/unit/utils/test_db_manager.py | 151 ++++++++-
contributing-docs/14_metadata_database_updates.rst | 3 +
devel-common/src/tests_common/test_utils/db.py | 39 +--
providers/edge3/.pre-commit-config.yaml | 14 +-
providers/edge3/docs/index.rst | 1 +
providers/{fab => edge3}/docs/migrations-ref.rst | 18 +-
.../versions/0001_3_0_0_create_edge_tables.py | 3 +-
...3_2_0_fix_migration_file_orm_inconsistencies.py | 88 +++++
.../edge3/src/airflow/providers/edge3/models/db.py | 34 +-
providers/edge3/tests/unit/edge3/models/test_db.py | 4 +-
providers/fab/.pre-commit-config.yaml | 14 +-
providers/fab/docs/migrations-ref.rst | 12 +-
.../fab/auth_manager/cli_commands/db_command.py | 15 +-
.../providers/fab/auth_manager/models/__init__.py | 55 +++-
.../providers/fab/auth_manager/models/db.py | 39 ++-
.../src/airflow/providers/fab/cli/definition.py | 10 +-
.../0000_1_4_0_create_ab_tables_if_missing.py | 355 +++++++++++----------
.../0001_3_5_0_fix_fab_db_inconsistencies.py | 327 +++++++++++++++++++
.../auth_manager/cli_commands/test_db_command.py | 23 +-
.../tests/unit/fab/auth_manager/models/test_db.py | 67 +++-
.../tests/unit/fab/auth_manager/test_security.py | 20 +-
.../unit/fab/db_manager/test_fab_db_manager.py | 6 +-
scripts/in_container/run_generate_migration.sh | 12 +-
scripts/in_container/run_migration_reference.py | 51 ++-
38 files changed, 1986 insertions(+), 418 deletions(-)
create mode 100644
airflow-core/src/airflow/migrations/versions/0108_3_2_0_fix_migration_file_ORM_inconsistencies.py
create mode 100644 airflow-core/tests/unit/utils/test_db_compare.py
copy providers/{fab => edge3}/docs/migrations-ref.rst (56%)
create mode 100644
providers/edge3/src/airflow/providers/edge3/migrations/versions/0003_3_2_0_fix_migration_file_orm_inconsistencies.py
create mode 100644
providers/fab/src/airflow/providers/fab/migrations/versions/0001_3_5_0_fix_fab_db_inconsistencies.py