You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/10/26 16:11:02 UTC

[airflow] branch python-3-11 updated (d2d831713d -> cf340d758d)

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

potiuk pushed a change to branch python-3-11
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit d2d831713d Attempt to add Python 3.11 support
     add 662a8aaac3 SFTP Provider: Fix default folder permissions  (#26593)
     add 571ffeff7c Remove UI selective check output (#27254)
     add aa31110bd8 Add Andrey as member of the triage team (#27278)
     add 833a9ee748 Use all-python-versions-list-as-string in build-images.yml (#27271)
     add 3938b28ef2 Mark azure sdist warning as knowing when installing (#27258)
     add 7ad82e3384 Chart: Default airflow version to 2.4.2 (#27230)
     add 21cc5316be Update airflow release note to export AIRFLOW_RELEASE_SVN before use (#27253)
     add 0dd65b9cf6 pRint important information outside of the folded output in CI (#27260)
     add 104cd1ed76 Add logging back to Sagemaker system test (#27277)
     add d3691fdb63 Fix emr_eks system test (#27279)
     add c8b2737ab1 Enable string normalization for docs (#27269)
     add 7653c61df8 Make GSheetsHook return an empty list when there are no values (#27261)
     add d83a1aaa68 Add Blackify commits to blame ignore file (#27224)
     add b9c30b2e51 Sorting plugins custom menu links by category before name (#27152)
     add a2dd000bad Add Openverse to INTHEWILD.md (#27101)
     add e361be74cd Fix system test for Cloud Build Trigger (#26990)
     add 09c045f081 Bump Trino version to fix non-working DML queries (#27168)
     add c3940b40f8 timetable text clarifications (#27283)
     add ced2925fc3 Add dynamic attr check for ast.unparse method in pre-commit (#27280)
     add 6a1a6f7bef Adds s3_key_prefix to template fields (#27207)
     add a8a67a3f40 Added environment to templated SSHOperator fields (#26824)
     add d544e8fbeb Remove deprecated Tableau classes (#27288)
     add 777b57f0c6 Adding `preserve_file_name` param to `S3Hook.download_file` method (#26886)
     add 1af25809b1 Fix a typo in Breeze doc (#27293)
     add cf340d758d Attempt to add Python 3.11 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   (d2d831713d)
            \
             N -- N -- N   refs/heads/python-3-11 (cf340d758d)

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:
 .asf.yaml                                          |  1 +
 .git-blame-ignore-revs                             |  6 +-
 .github/workflows/build-images.yml                 |  2 +-
 .github/workflows/ci.yml                           |  1 -
 .pre-commit-config.yaml                            |  1 -
 BREEZE.rst                                         |  2 +-
 INTHEWILD.md                                       |  1 +
 RELEASE_NOTES.rst                                  | 16 ++--
 airflow/providers/amazon/aws/hooks/s3.py           | 48 +++++++++--
 .../amazon/aws/transfers/dynamodb_to_s3.py         |  1 +
 airflow/providers/google/suite/hooks/sheets.py     |  2 +-
 airflow/providers/sftp/hooks/sftp.py               | 12 +--
 airflow/providers/ssh/operators/ssh.py             |  7 +-
 airflow/providers/tableau/CHANGELOG.rst            |  8 ++
 .../tableau/operators/tableau_refresh_workbook.py  | 93 ----------------------
 airflow/providers/tableau/provider.yaml            |  2 -
 .../tableau/sensors/tableau_job_status.py          | 28 -------
 airflow/providers/trino/provider.yaml              |  2 +-
 airflow/utils/db.py                                |  4 +-
 airflow/www/extensions/init_views.py               |  4 +-
 chart/Chart.yaml                                   | 24 +++---
 chart/newsfragments/27230.significant.rst          |  3 +
 chart/values.schema.json                           |  4 +-
 chart/values.yaml                                  |  4 +-
 dev/README_RELEASE_AIRFLOW.md                      |  3 +-
 dev/breeze/SELECTIVE_CHECKS.md                     |  1 -
 .../commands/release_management_commands.py        |  9 ++-
 .../airflow_breeze/commands/testing_commands.py    |  3 +
 dev/breeze/src/airflow_breeze/utils/parallel.py    | 32 +++++++-
 .../src/airflow_breeze/utils/selective_checks.py   | 10 ---
 .../operators/submit_run.rst                       | 16 ++--
 docs/apache-airflow/best-practices.rst             |  4 +-
 docs/apache-airflow/concepts/datasets.rst          | 12 +--
 docs/apache-airflow/concepts/timetable.rst         |  9 ++-
 generated/provider_dependencies.json               |  2 +-
 .../pre_commit/pre_commit_sync_init_decorator.py   |  2 +-
 scripts/in_container/verify_providers.py           |  8 +-
 tests/providers/amazon/aws/hooks/test_s3.py        | 89 ++++++++++++++++++---
 tests/providers/google/suite/hooks/test_sheets.py  | 22 +++++
 tests/providers/sftp/hooks/test_sftp.py            |  8 ++
 .../operators/test_tableau_refresh_workbook.py     | 81 -------------------
 .../system/providers/amazon/aws/example_emr_eks.py |  2 +-
 .../providers/amazon/aws/example_sagemaker.py      |  9 ++-
 .../cloud_build/example_cloud_build_trigger.py     |  6 +-
 44 files changed, 299 insertions(+), 305 deletions(-)
 delete mode 100644 airflow/providers/tableau/operators/tableau_refresh_workbook.py
 delete mode 100644 airflow/providers/tableau/sensors/tableau_job_status.py
 create mode 100644 chart/newsfragments/27230.significant.rst
 delete mode 100644 tests/providers/tableau/operators/test_tableau_refresh_workbook.py