This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch move-first-provider-to-separate-project
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 93037f8ebde Move first provider (airbyte) to a separate project
add c692b0836b0 Trim the oversized text in the variables table and
Implement variables view (#45401)
add a93fb43bfc2 mOve first provider (airbyte) to a separate project
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 (93037f8ebde)
\
N -- N -- N refs/heads/move-first-provider-to-separate-project
(a93fb43bfc2)
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:
.pre-commit-config.yaml | 13 ++-
.../ManageVariable/DeleteVariableButton.tsx | 2 +-
airflow/ui/src/pages/Variables/Variables.tsx | 4 +
airflow/ui/src/utils/TrimText.tsx | 118 +++++++++++++++++++++
contributing-docs/08_static_code_checks.rst | 4 +-
dev/breeze/doc/images/output_static-checks.svg | 4 +-
dev/breeze/doc/images/output_static-checks.txt | 2 +-
.../commands/release_management_commands.py | 4 +-
dev/breeze/src/airflow_breeze/pre_commit_ids.py | 2 +-
.../prepare_providers/provider_documentation.py | 63 ++++++++---
.../PROVIDER_CHANGELOG_TEMPLATE.rst.jinja2 | 3 +-
.../templates/PROVIDER_COMMITS_TEMPLATE.rst.jinja2 | 5 +-
.../templates/PROVIDER_README_TEMPLATE.rst.jinja2 | 3 +-
.../PROVIDER__INIT__PY_TEMPLATE.py.jinja2 | 3 +-
.../templates/get_provider_info_TEMPLATE.py.jinja2 | 3 +-
.../templates/pyproject_TEMPLATE.toml.jinja2 | 3 +-
dev/breeze/src/airflow_breeze/utils/packages.py | 12 ++-
providers/airbyte/README.rst | 26 +----
providers/airbyte/__init__.py | 39 -------
.../airbyte/src/airflow/providers/airbyte/LICENSE | 0
.../src/airflow/providers/airbyte/__init__.py | 3 +-
.../airflow/providers/airbyte/get_provider_info.py | 85 +++++++++++++++
pyproject.toml | 3 +
...ers_init.py => update_providers_build_files.py} | 2 +-
24 files changed, 299 insertions(+), 107 deletions(-)
create mode 100644 airflow/ui/src/utils/TrimText.tsx
delete mode 100644 providers/airbyte/__init__.py
copy LICENSE => providers/airbyte/src/airflow/providers/airbyte/LICENSE (100%)
create mode 100644
providers/airbyte/src/airflow/providers/airbyte/get_provider_info.py
rename scripts/ci/pre_commit/{update_providers_init.py =>
update_providers_build_files.py} (97%)