This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a change to branch v2-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.
discard c1dc3bf Bump version to 2.2.0b2
add f909ff5 Update changelog to the latest (#18811)
add 8e56ed2 Enable FTPToS3Operator to transfer several files (#17937)
add 39359b9 Add standard hook fields to pagerdutyHook to make hook show
up in UI (#18763)
add 4c9964c Install only devel packages (#18815)
add e6c56c4 Ensure that dag_id, run_id and execution_date are non-null on
DagRun (#18804)
add e0af0b9 AwsGlueJobOperator: add wait_for_completion to Glue job run
(#18814)
add e286ee6 Add unittest for #17305 (#18806)
add 42dc076 Remove unnecessary string concatenations in AirflowException
messages (#18817)
add e9a72a4 Add SalesforceApexRestOperator (#18819)
add 73a858f Update ``dagbag_size`` documentation (#18824)
add 1a35644 Add emr cluster link (#18691)
add cf98586 Update documentation about bundle extras (#18828)
add 069acde Fix wrong Postgres search_path set up instructions (#17600)
add 9344c34 Enable AWS Secrets Manager backend to retrieve conns using
different fields (#18764)
add ea8f478 Add AWS Fargate profile support (#18645)
add a680e87 Prepare documentation for RC2 Amazon Provider release for
September (#18830)
new 65b1b4f Bump version to 2.2.0
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 (c1dc3bf)
\
N -- N -- N refs/heads/v2-2-test (65b1b4f)
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:
CHANGELOG.txt | 13 +-
README.md | 14 +-
UPDATING.md | 3 +
airflow/jobs/backfill_job.py | 2 +
.../7b2661a43ba3_taskinstance_keyed_to_dagrun.py | 147 +++++--
airflow/models/dagrun.py | 6 +-
airflow/models/taskinstance.py | 6 +-
airflow/providers/amazon/CHANGELOG.rst | 27 +-
.../aws/example_dags/example_eks_templated.py | 16 +-
....py => example_eks_with_fargate_in_one_step.py} | 63 +--
...oups.py => example_eks_with_fargate_profile.py} | 87 ++--
...y => example_eks_with_nodegroup_in_one_step.py} | 15 +-
.../example_dags/example_eks_with_nodegroups.py | 17 +-
airflow/providers/amazon/aws/hooks/eks.py | 196 ++++++++-
airflow/providers/amazon/aws/operators/eks.py | 317 +++++++++++---
.../amazon/aws/operators/emr_create_job_flow.py | 26 +-
airflow/providers/amazon/aws/operators/glue.py | 23 +-
.../amazon/aws/secrets/secrets_manager.py | 43 +-
airflow/providers/amazon/aws/sensors/eks.py | 115 ++++-
.../providers/amazon/aws/transfers/ftp_to_s3.py | 113 +++--
airflow/providers/amazon/provider.yaml | 3 +
.../providers/apache/spark/hooks/spark_submit.py | 8 +-
airflow/providers/pagerduty/hooks/pagerduty.py | 5 +
airflow/providers/pagerduty/provider.yaml | 3 +
.../example_dags/example_salesforce_apex_rest.py} | 26 +-
airflow/providers/salesforce/hooks/salesforce.py | 2 -
.../salesforce/operators/salesforce_apex_rest.py | 66 +++
airflow/providers/salesforce/provider.yaml | 3 +
airflow/utils/db.py | 32 ++
breeze | 2 +-
docs/apache-airflow-providers-amazon/commits.rst | 16 +-
.../operators/eks.rst | 61 ++-
.../secrets-backends/aws-secrets-manager.rst | 11 +-
docs/apache-airflow-providers-salesforce/index.rst | 1 +
.../operators}/index.rst | 7 +-
.../operators/salesforce_apex_rest.rst | 39 ++
docs/apache-airflow/extra-packages-ref.rst | 30 +-
docs/apache-airflow/howto/set-up-database.rst | 13 +-
docs/apache-airflow/logging-monitoring/metrics.rst | 3 +-
docs/spelling_wordlist.txt | 2 +
.../run_install_and_test_provider_packages.sh | 2 +-
setup.py | 14 +-
tests/api_connexion/schemas/test_dag_run_schema.py | 9 +-
tests/core/test_providers_manager.py | 2 +-
tests/jobs/test_backfill_job.py | 10 +
tests/models/test_dagrun.py | 3 +
tests/providers/amazon/aws/hooks/test_eks.py | 463 ++++++++++++++++++++-
tests/providers/amazon/aws/operators/test_eks.py | 129 ++++--
.../aws/operators/test_emr_create_job_flow.py | 54 ++-
tests/providers/amazon/aws/operators/test_glue.py | 24 ++
.../amazon/aws/secrets/test_secrets_manager.py | 2 +-
tests/providers/amazon/aws/sensors/test_eks.py | 184 ++++++++
.../amazon/aws/transfers/test_ftp_to_s3.py | 99 ++++-
.../amazon/aws/utils/eks_test_constants.py | 37 +-
tests/providers/amazon/aws/utils/eks_test_utils.py | 66 ++-
.../providers/salesforce/hooks/test_salesforce.py | 4 +-
.../operators/test_salesforce_apex_rest.py | 49 +++
57 files changed, 2327 insertions(+), 406 deletions(-)
copy airflow/providers/amazon/aws/example_dags/{example_eks_using_defaults.py
=> example_eks_with_fargate_in_one_step.py} (60%)
copy airflow/providers/amazon/aws/example_dags/{example_eks_with_nodegroups.py
=> example_eks_with_fargate_profile.py} (57%)
rename
airflow/providers/amazon/aws/example_dags/{example_eks_using_defaults.py =>
example_eks_with_nodegroup_in_one_step.py} (90%)
copy airflow/{example_dags/example_time_delta_sensor_async.py =>
providers/salesforce/example_dags/example_salesforce_apex_rest.py} (63%)
create mode 100644
airflow/providers/salesforce/operators/salesforce_apex_rest.py
copy docs/{apache-airflow-providers-amazon/secrets-backends =>
apache-airflow-providers-salesforce/operators}/index.rst (92%)
create mode 100644
docs/apache-airflow-providers-salesforce/operators/salesforce_apex_rest.rst
create mode 100644 tests/providers/amazon/aws/sensors/test_eks.py
create mode 100644
tests/providers/salesforce/operators/test_salesforce_apex_rest.py