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

potiuk pushed a change to branch python3.12
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 576755d139 python 3.12 support
     add bc50c58768 Add Qdrant Provider (#36805)
     add 4aee6da38b Partially enable D401 rule (#37167)
     add 0d338e6051 Change docs type in insert_many to list of dicts (#37230)
     add 1ab082b1ed Add extra modules to exclude D401 check (#37251)
     add 8c83e9156b Trims leading `./` from filenames when repackaging 
reproducible packages (#37253)
     add c297f55d7a Fixing the version for mongo provider (#37250)
     add 91fab4aefc Sign helm chart packages without dist/ prefix (#37260)
     add e5bd94b5b0 python 3.12 support

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   (576755d139)
            \
             N -- N -- N   refs/heads/python3.12 (e5bd94b5b0)

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_providers_bug_report.yml               |   1 +
 .github/boring-cyborg.yml                          |   6 +
 .github/workflows/ci.yml                           |   3 +
 INSTALL                                            |   7 +-
 airflow/providers/mongo/CHANGELOG.rst              |   2 +-
 airflow/providers/mongo/hooks/mongo.py             |   4 +-
 airflow/providers/mongo/provider.yaml              |   1 +
 airflow/providers/{fab => qdrant}/CHANGELOG.rst    |   4 +-
 .../qdrant}/__init__.py                            |   0
 .../qdrant/hooks}/__init__.py                      |   0
 airflow/providers/qdrant/hooks/qdrant.py           | 128 ++++++++++
 .../qdrant/operators}/__init__.py                  |   0
 airflow/providers/qdrant/operators/qdrant.py       | 109 +++++++++
 airflow/providers/{cohere => qdrant}/provider.yaml |  37 ++-
 airflow/utils/db.py                                |   9 +
 .../12_airflow_dependencies_and_extras.rst         |   7 +-
 contributing-docs/testing/integration_tests.rst    |   2 +
 dev/README_RELEASE_HELM_CHART.md                   |   4 +-
 dev/breeze/doc/images/output-commands.svg          |   2 +-
 dev/breeze/doc/images/output_build-docs.svg        |   6 +-
 dev/breeze/doc/images/output_build-docs.txt        |   2 +-
 ...tput_release-management_add-back-references.svg |   6 +-
 ...tput_release-management_add-back-references.txt |   2 +-
 ...management_generate-issue-content-providers.svg |   6 +-
 ...management_generate-issue-content-providers.txt |   2 +-
 ...e-management_prepare-provider-documentation.svg |   6 +-
 ...e-management_prepare-provider-documentation.txt |   2 +-
 ...elease-management_prepare-provider-packages.svg |   6 +-
 ...elease-management_prepare-provider-packages.txt |   2 +-
 .../output_release-management_publish-docs.svg     |   6 +-
 .../output_release-management_publish-docs.txt     |   2 +-
 ...output_sbom_generate-providers-requirements.svg |   6 +-
 ...output_sbom_generate-providers-requirements.txt |   2 +-
 dev/breeze/doc/images/output_shell.svg             |   2 +-
 dev/breeze/doc/images/output_shell.txt             |   2 +-
 dev/breeze/doc/images/output_start-airflow.svg     |   2 +-
 dev/breeze/doc/images/output_start-airflow.txt     |   2 +-
 .../images/output_testing_integration-tests.svg    |   2 +-
 .../images/output_testing_integration-tests.txt    |   2 +-
 dev/breeze/doc/images/output_testing_tests.svg     |   2 +-
 dev/breeze/doc/images/output_testing_tests.txt     |   2 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |  16 +-
 .../src/airflow_breeze/utils/reproducible.py       |   2 +
 .../changelog.rst                                  |   2 +-
 .../commits.rst                                    |   4 +-
 .../connections.rst                                |  34 ++-
 .../index.rst                                      |  56 +++--
 .../installing-providers-from-sources.rst          |   0
 .../operators/qdrant.rst}                          |  18 +-
 .../security.rst                                   |   0
 docs/apache-airflow/extra-packages-ref.rst         |   2 +
 docs/spelling_wordlist.txt                         |   3 +
 generated/provider_dependencies.json               |  10 +
 pyproject.toml                                     | 272 ++++++++++++++++++++-
 .../{backend-sqlite.yml => integration-qdrant.yml} |  20 +-
 scripts/in_container/check_environment.sh          |   7 +
 .../integration/providers/qdrant}/__init__.py      |   0
 .../providers/qdrant/hooks}/__init__.py            |   0
 .../providers/qdrant/hooks/test_qdrant.py          |  69 ++++++
 .../providers/qdrant/operators}/__init__.py        |   0
 .../qdrant/operators/test_qdrant_ingest.py         |  71 ++++++
 .../providers/qdrant}/__init__.py                  |   0
 .../providers/qdrant/hooks}/__init__.py            |   0
 tests/providers/qdrant/hooks/test_qdrant.py        | 129 ++++++++++
 .../providers/qdrant/operators}/__init__.py        |   0
 tests/providers/qdrant/operators/test_qdrant.py    |  64 +++++
 .../system/providers/qdrant}/__init__.py           |   0
 .../example_dag_qdrant.py}                         |  25 +-
 68 files changed, 1056 insertions(+), 146 deletions(-)
 copy airflow/providers/{fab => qdrant}/CHANGELOG.rst (90%)
 copy airflow/{api_connexion => providers/qdrant}/__init__.py (100%)
 copy airflow/{api_connexion => providers/qdrant/hooks}/__init__.py (100%)
 create mode 100644 airflow/providers/qdrant/hooks/qdrant.py
 copy airflow/{api_connexion => providers/qdrant/operators}/__init__.py (100%)
 create mode 100644 airflow/providers/qdrant/operators/qdrant.py
 copy airflow/providers/{cohere => qdrant}/provider.yaml (61%)
 copy docs/{apache-airflow-providers-fab => 
apache-airflow-providers-qdrant}/changelog.rst (93%)
 copy docs/{apache-airflow-providers-fab => 
apache-airflow-providers-qdrant}/commits.rst (90%)
 copy docs/{apache-airflow-providers-pinecone => 
apache-airflow-providers-qdrant}/connections.rst (50%)
 copy docs/{apache-airflow-providers-datadog => 
apache-airflow-providers-qdrant}/index.rst (62%)
 copy docs/{apache-airflow-providers-airbyte => 
apache-airflow-providers-qdrant}/installing-providers-from-sources.rst (100%)
 copy docs/{apache-airflow-providers-pinecone/operators/pinecone.rst => 
apache-airflow-providers-qdrant/operators/qdrant.rst} (62%)
 copy docs/{apache-airflow-providers-airbyte => 
apache-airflow-providers-qdrant}/security.rst (100%)
 copy scripts/ci/docker-compose/{backend-sqlite.yml => integration-qdrant.yml} 
(72%)
 copy {airflow/api_connexion => tests/integration/providers/qdrant}/__init__.py 
(100%)
 copy {airflow/api_connexion => 
tests/integration/providers/qdrant/hooks}/__init__.py (100%)
 create mode 100644 tests/integration/providers/qdrant/hooks/test_qdrant.py
 copy {airflow/api_connexion => 
tests/integration/providers/qdrant/operators}/__init__.py (100%)
 create mode 100644 
tests/integration/providers/qdrant/operators/test_qdrant_ingest.py
 copy {airflow/api_connexion => tests/providers/qdrant}/__init__.py (100%)
 copy {airflow/api_connexion => tests/providers/qdrant/hooks}/__init__.py (100%)
 create mode 100644 tests/providers/qdrant/hooks/test_qdrant.py
 copy {airflow/api_connexion => tests/providers/qdrant/operators}/__init__.py 
(100%)
 create mode 100644 tests/providers/qdrant/operators/test_qdrant.py
 copy {airflow/api_connexion => tests/system/providers/qdrant}/__init__.py 
(100%)
 copy tests/system/providers/{core/example_external_task_child_deferrable.py => 
qdrant/example_dag_qdrant.py} (60%)

Reply via email to