From e8eaf4e4de7429e4c142f5db4a9da5b94cb5efc9 Mon Sep 17 00:00:00 2001 From: socar-humphrey <80664723+socar-humphrey@users.noreply.github.com> Date: Thu, 9 Jun 2022 18:54:53 +0900 Subject: [PATCH] =?UTF-8?q?v2.3.2=EB=A1=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8=20=ED=95=9C=EB=8B=A4=20(#2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Doc: Add column names for DB Migration Reference (#23853) Before the automation: https://airflow.apache.org/docs/apache-airflow/2.2.5/migrations-ref.html Currently (with missing column names): https://airflow.apache.org/docs/apache-airflow/2.3.0/migrations-ref.html * Fix exception trying to display moved table warnings (#23837) If you still have an old dangling table from the 2.2 migration this would fail. Make it more resilient and cope with both styles of moved table name * Update sample dag and doc for RDS (#23651) * Fix DataprocJobBaseOperator not being compatible with dotted names (#23439). (#23791) * job_name parameter is now sanitized, replacing dots by underscores. * Upgrade `pip` to 22.1.1 version (just released) (#23854) * Add better feedback to Breeze users about expected action timing (#23827) There are a few actions in Breeze that might take more or less time when invoked. This is mostly when you need to upgrade Breeze or update to latest version of the image because some dependedncies were added or image was modified. While we have improved significantly the waiting time involved now (and caching problems have been fixed to make it as fast possible), there are still a few situations that you need to have a good connectivity and a little time to run the upgrade. Which is often not something you would like to loose your time on in a number of cases when you need to do things fast. Usually Breeeze does not force the user to perform such long actions - it allows to continue without doing them (either by timeout or by letting user answer "no" to question asked. Previously Breeze have not informed the user about the exepcted time of running such operation, but with this change it tells what is the expected delay - thus allowing the user to make informed action whether they want to run the upgrade or not. * Fix UnboundLocalError when sql is empty list in DbApiHook (#23816) * Fix UnboundLocalError when sql is empty list in DatabricksSqlHook (#23815) * Add number of node params only for single-node cluster in RedshiftCreateClusterOperator (#23839) * Sql to gcs with exclude columns (#23695) * Add support for associating custom tags to job runs submitted via EmrContainerOperator (#23769) Co-authored-by: Sandeep Kadyan * Add Deferrable Databricks operators (#19736) * Fix Amazon EKS example DAG raises warning during Imports (#23849) Co-authored-by: eladkal <45845474+eladkal@users.noreply.github.com> * Fix databricks tests (#23856) * Add __wrapped__ property to _TaskDecorator (#23830) Co-authored-by: Sanjay Pillai * Highlight task states by hovering on legend row (#23678) * Rework the legend row and add the hover effect. * Move horevedTaskState to state and fix merge conflicts. * Add tests. * Order of item in the LegendRow, add no_status support * Clean up f-strings in logging calls (#23597) * update K8S-KIND to 0.14.0 (#23859) * Replaced all days_ago functions with datetime functions (#23237) Co-authored-by: Dev232001 * Add clear DagRun endpoint. (#23451) * Ignore the DeprecationWarning in test_days_ago (#23875) Co-authored-by: alexkru * Speed up Breeze experience on Mac OS (#23866) This change should significantly speed up Breeze experience (and especially iterating over a change in Breeze for MacOS users - independently if you are using x86 or arm architecture. The problem with MacOS with docker is particularly slow filesystem used to map sources from Host to Docker VM. It is particularly bad when there are multiple small files involved. The improvement come from two areas: * removing duplicate pycache cleaning * moving MyPy cache to docker volume When entering breeze we are - just in case - cleaning .pyc and __pychache__ files potentially generated outside of the docker container - this is particularly useful if you use local IDE and you do not have bytecode generation disabled (we have it disabled in Breeze). Generating python bytecode might lead to various problems when you are switching branches and Python versions, so for Breeze development where the files change often anyway, disabling them and removing when they are found is important. This happens at entering breeze and it might take a second or two depending if you have locally generated. It could happen that __init script was called twice (depending which script was called - therefore the time could be double the one that was actually needed. Also if you ever generated provider packages, the time could be much longer, because node_modules generated in provider sources were not excluded from searching (and on MacOS it takes a LOT of time). This also led to duplicate time of exit as the initialization code installed traps that were also run twice. The traps however were rather fast so had no negative influence on performance. The change adds a guard so that initialization is only ever executed once. Second part of the change is moving the cache of mypy to a docker volume rather than being used from local source folder (default when complete sources are mounted). We were already using selective mount to make sure MacOS filesystem slowness affects us in minimal way - but with this change, the cache will be stored in docker volume that does not suffer from the same problems as mounting volumes from host. The Docker volume is preserved until the `docker stop` command is run - which means that iterating over a change should be WAY faster now - observed speed-up were around 5x speedups for MyPy pre-commit. * Add default task retry delay config (#23861) * Move MappedOperator tests to mirror code location (#23884) At some point during the development of AIP-42 we moved the code for MappedOperator out of baseoperator.py to mappedoperator.py, but we didn't move the tests at the same time * Enable clicking on DAG owner in autocomplete dropdown (#23804) PR#18991 introduced directly navigating to a DAG when selecting one from the typeahead search results. Unfortunately, the search results also includes DAG owner names, and selecting one of those navigates to a DAG with that name, which almost certainly doesn't exist. This extends the autocompletion endpoint to return the type of result, and adjusts the typeahead selection to use this to know which way to navigate. * Document LocalKubernetesExecutor support in chart (#23876) * Avoid extra questions in `breeze build image` command. (#23898) Fixes: #23867 * Update INTHEWILD.md (#23892) * Split contributor's quick start into separate guides. (#23762) The foldable parts were not good. They made links not to work as well as they were not too discoverable. Fixes: #23174 * Avoid printing exception when exiting tests command (#23897) Fixes: #23868 * Move string arg evals to `execute()` in `EksCreateClusterOperator` (#23877) Currently there are string-value evaluations of `compute`, `nodegroup_role_arn`, and `fargate_pod_execution_role_arn` args in the constructor of `EksCreateClusterOperator`. These args are all listed as a template fields so it's entirely possible that the value(s) passed in to the operator is a Jinja expression or an `XComArg`. Either of these value types could cause a false-negative `ValueError` (in the case of unsupported `compute` values) or a `false-positive` (in the the cases of explicit checks for the *arn values) since the values themselves have not been rendered. This PR moves the evaluations of these args to the `execute()` scope. * Update .readthedocs.yml (#23903) String instead of Int see https://docs.readthedocs.io/en/stable/config-file/v2.html * Make --file command in static-checks autocomplete file name (#23896) The --verbose and --dry-dun commands caused n --files command to fail and the flag was "artifficial" -it was equivalent to bool flag. the actual files were taken from arguments. This PR fixes it by turning the arguments into multiple ``--file`` commands - each with its own completioin for local files. * Chart: Update default airflow version to `2.3.1` (#23913) * Fix Breeze documentation typo (#23919) * Update environments documentation links (#23920) * `2.3.1` has been released (#23912) * Make CI and PROD image builds consistent (#23841) Simple refactoring to make the jobs more consistent. * Alphabetizes two tables (#23923) The rest of the page has consistently alphabetized tables. This commit fixes three `extras` that were not alphabetized. * Use "remote" pod when patching KPO pod as "checked" (#23676) When patching as "checked", we have to use the current version of the pod otherwise we may get an error when trying to patch it, e.g.: ``` Operation cannot be fulfilled on pods \"test-kubernetes-pod-db9eedb7885c40099dd40cd4edc62415\": the object has been modified; please apply your changes to the latest version and try again" ``` This error would not cause a failure of the task, since errors in `cleanup` are suppressed. However, it would fail to patch. I believe one scenario when the pod may be updated is when retrieving xcom, since the sidecar is terminated after extracting the value. Concerning some changes in the tests re the "already_checked" label, it was added to a few "expected pods" recently, when we changed it to patch even in the case of a successful pod. Since we are changing the "patch" code to patch with the latest read on the pod that we have (i.e. using the `remote_pod` variable), and no longer the pod object stored on `k.pod`, the label no longer shows up in those tests (that's because in k.pod isn't actually a read of the remote pod, but just happens to get mutated in the patch function before it is used to actually patch the pod). Further, since the `remote_pod` is a local variable, we can't observe it in tests. So we have to read the pod using k8s api. _But_, our "find pod" function excludes "already checked" pods! So we have to make this configurable. So, now we have a proper integration test for the "already_checked" behavior (there was already a unit test). * Clarify manual merging of PR in release doc (#23928) It was not clear to me what this really means * Fix broken main (#23940) main breaks with `Traceback: /usr/local/lib/python3.7/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) tests/providers/amazon/aws/hooks/test_cloud_formation.py:31: in class TestCloudFormationHook(unittest.TestCase): tests/providers/amazon/aws/hooks/test_cloud_formation.py:67: in TestCloudFormationHook @mock_cloudformation /usr/local/lib/python3.7/site-packages/moto/__init__.py:30: in f module = importlib.import_module(module_name, "moto") /usr/local/lib/python3.7/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/local/lib/python3.7/site-packages/moto/cloudformation/__init__.py:1: in from .models import cloudformation_backends /usr/local/lib/python3.7/site-packages/moto/cloudformation/models.py:18: in from .parsing import ResourceMap, OutputMap /usr/local/lib/python3.7/site-packages/moto/cloudformation/parsing.py:17: in from moto.apigateway import models # noqa # pylint: disable=all /usr/local/lib/python3.7/site-packages/moto/apigateway/__init__.py:1: in from .models import apigateway_backends /usr/local/lib/python3.7/site-packages/moto/apigateway/models.py:9: in from openapi_spec_validator import validate_spec E ModuleNotFoundError: No module named 'openapi_spec_validator' ` Fix is already in placed in moto https://github.com/spulec/moto/pull/5165 but version 3.1.11 wasn't released yet * Update INSTALL_PROVIDERS_FROM_SOURCES instructions. (#23938) * Add typing to Azure Cosmos Client Hook (#23941) New release of Azure Cosmos library has added typing information and it broke main builds with mypy verification. * Remove redundant register exit signals in `dag-processor` command (#23886) * Disable rebase workflow (#23943) The change of the release workflow in #23928 removed the reason why we should have rebase workflow possible. We only needed to do rebase when we merged test branch into stable branch and since we are doing it manually, there is no more reeason to have it in the GitHub UI. * Prevent UI from crashing if grid task instances are null (#23939) * UI fix for null task instances * improve tests without global vars * fix test data * Grid fix details button truncated and small UI tweaks (#23934) * Show details button and wrap on LegendRow. * Update following brent review * Fix display on small width * Rotate icon for a 'ReadLess' effect * Fix and speed up grid view (#23947) This fetches all TIs for a given task across dag runs, leading to signifincatly faster response times. It also fixes a bug where Nones were being passed to the UI when a new task was added to a DAG with exiting runs. * Removes duplicate code block (#23952) There's are two code blocks with identical text in the helm-chart docs. This commit removes one of them. * Update dep for databricks #23917 (#23927) * Use '--subdir' argument value for standalong dag processor. (#23864) * Revert "Add limit for JPype1 (#23847)" (#23953) This turned out to be mistake in manual submission. Fixed on JPype1 side. This reverts commit 3699be49b24ef5a0a8d8de81a149af2c5a7dc206. * Faster grid view (#23951) * Disallow calling expand with no arguments (#23463) * [FEATURE] KPO use K8S hook (#22086) * Add cascade to `dag_tag` to `dag` foreignkey (#23444) Bulk delete does not work if the cascade behaviour of a foreignkey is set on python side(relationship configuration). To allow bulk delete of dags we need to setup cascade deletion in the DB. The warning on query.delete at https://docs.sqlalchemy.org/en/14/orm/session_basics.html#selecting-a-synchronization-strategy stated that: The operations do not offer in-Python cascading of relationships - it is assumed that ON UPDATE CASCADE and/or ON DELETE CASCADE is configured for any foreign key references which require it, otherwise the database may emit an integrity violation if foreign key references are being enforced. Another alternative is avoiding bulk delete of dags but I prefer we support bulk deletes. This will break offline sql generation for mssql(already broken before now :) ). Also, since there's only one foreign key in `dag_tag` table, I assume that the foreign key would be named `dag_tag_ibfk_1` in `mysql`. This avoided having to query the db for the name. The foreignkey is explicitly named now, would be easy for future upgrades * DagFileProcessorManager: Start a new process group only if current process not a session leader (#23872) * Introduce `flake8-implicit-str-concat` plugin to static checks (#23873) * Fix UnboundLocalError when sql is empty list in ExasolHook (#23812) * Fix inverted section levels in best-practices.rst (#23968) This PR fixes inverted levels in the sections added to the "Best Practices" document in #21879. * Add support to specify language name in PapermillOperator (#23916) * Add support to specify language name in PapermillOperator * Replace getattr() with simple attribute access * [23945] Icons in grid view for different dag types (#23970) * Helm logo no longer a link (#23977) * Fix links in documentation (#23975) * fix links * added right link to breeze * Add TaskInstance State 'REMOVED' to finished states and success states (#23797) Now that we support dynamic task mapping, we should have the 'REMOVED' state of task instances as a finished state because for dynamic tasks with a removed task instance, the dagrun would be stuck in running state if 'REMOVED' state is not in finished states. * Remove `xcom_push` from `DockerOperator` (#23981) * Fix missing shorthand for docker buildx rm -f (#23984) Latest version of buildx removed -f as shorthand for --force flag. * use explicit --mount with types of mounts rather than --volume flags (#23982) The --volume flag is an old style of specifying mounts used by docker, the newer and more explicit version is --mount where you have to specify type, source, destination in the form of key/value pairs. This is more explicit and avoids some guesswork when volumes are mounted (for example seems that on WSL2 volume name might be guessed as path wrongly). The change explicitly specifies which of the mounts are bind mounts and which are volume mounts. Another nice side effect of this change is that when source is missing, docker will not automatically create directories with the missing name but it will fail. This is nicer because before it led to creating directories when they were missing (for example .bash_aliases and similar). This allows us to avoid some cleanups to account for those files being created - instead we simply skip those mounts if the file/folder does not exist. * Force colors in yarn test output in CI (#23986) * Fix breeze failures when there is no buildx installed on Mac (#23988) If you have no buildx plugin installed on Mac (for example when you use colima instead of Docker Desktop) the breeze check was failing - but buildx in fact is not needed to run typical breeze commands, and breeze already has support for it - it was just wrongly handled. * Replace generation of docker volumes to be done from python (#23985) The pre-commit to generate docker volumes in docker compose file is now written in Python and it also uses the newer "volume:" syntax to define the volumes mounted in the docker-compose. * Replace `use_task_execution_date` with `use_task_logical_date` (#23983) * Replace `use_task_execution_date` with `use_task_logical_date` We have some operators/sensors that use `*_execution_date` as the class parameters. This PR deprecate the usage of these parameters and replace it with `logical_date`. There is no change in functionality, under the hood the functionality already uses `logical_date` this is just about the parameters name as exposed to the users. * Remove pinning for xmltodict (#23992) We have now moto 3.1.9+ in constraints so we should remove the limit. Fixes: #23576 * Remove fixing cncf.kubernetes provider when generating constraints (#23994) When we yanked cncf.kubernetes provider, we pinned 3.1.2 temporarily for provider generation. This removes the pinning as we are already at 4.0.2 version * Add better diagnostics capabilities for pre-commits run via CI image (#23980) The pre-commits that require CI image run docker command under the hood that is highly optimized for performance (only mounts files that are necessary to be mounted) - in order to improve performance on Mac OS and make sure that artifacts are not left in the source code of Airflow. However that makes the command slightly more difficult to debug because they generate dynamically the docker command used, including the volumens that should be mounted when the docker command is run. This PR adds better diagnostics to the pre-commit scripts allowing VERBOSE="true" and DRY_RUN="true" variables that can help with diagnosing problems such as running the scripts on WSL2. It also fixes a few documentation bugs that have been missed after changing names of the image-related static checks and thanks to separating the common code to utility function it allows to set SKIP_IMAGE_PRE_COMMITS variable to true which will skip running all pre-commit checks that require breeze image to be available locally. * Disable fail-fast on pushing images to docker cache (#24005) There is an issue with pushing cache to docker registry that is connected to containerd bug but started to appear more frequently recently (as evidenced for example by https://g.nite07.orgmunity/t/buildx-failed-with-error-cannot-reuse-body-request-must-be-retried/253178 ). The issue is still open in containerd: https://github.com/containerd/containerd/issues/5978. Until it if fixed, we disable fail-fast on pushing cache so that even if it happens, we just have to re-run that single python version that actually failed. Currently there is a much lower chance of success because all 4 build have to succeed. * Add automated retries on retryable condition for building images in CI (#24006) There is a flakiness in pushing cache images to ghcr.io, therefore we want to add automated retries when the images fail intermittently. The root cause of the problem is tracked in containerd: https://github.com/containerd/containerd/issues/5978 * Ensure @contextmanager decorates generator func (#23103) * Revert "Add automated retries on retryable condition for building images in CI (#24006)" (#24016) This reverts commit 7cf0e43b70eb1c57a90ee7e2ff14b03487ffb018. * Cleanup `BranchDayOfWeekOperator` example dag (#24007) * Cleanup BranchDayOfWeekOperator example dag There is no need for `dag=dag` when using context manager. * Added missing project_id to the wait_for_job (#24020) * Only run separate per-platform build when preparing build cache (#24023) Apparently pushing multi-platform images when building cache on CI has some problems recently, connected with ghcr.io being more vulnerable to race condition described in this issue: https://github.com/containerd/containerd/issues/5978 Apparently when two, different platform layers are pushed about the same time to ghcr.io, the error "cannot reuse body, request must be retried" is generated. However we actually do not even need to build the multiplatform latest images because as of recently we have separate cache for each platform, and the ghcr.io/:latest images are not used any more not even for docker builds. We we always build images rather than pull and we use --from-cache for that - specific per platform. The only image pulling we do is when we pull the :COMMIT_HASH images in CI- but those are single-platform images (amd64) and even if we add tests for arm, they will have different tag. Hopefully we can still build release images without causing the race condition too frequently - this is more likely because when we build images for cache we use machines with different performance characteristics and the same layers are pushed at different times from different platforms. * Preparing buildx cache is allowed without --push-image flag (#24028) The previous version of buildx cache preparation implied --push-image flag, but now this is completely separated (we do not push image, we just prepare cache), so when mutli-platform buildx preparation is run we should also allow the cache to run without --push-image flag. * Add partition related methods to GlueCatalogHook: (#23857) * "get_partition" to retrieve a Partition * "create_partition" to create a Partition * Adds foldable CI group for command output (#24026) * Add foldable groups in CI outputs in commands that need it (#24035) This is follow-up after #24026 which added capability of selectively deciding for each breeze command, whether the output of the command should be "foldable" group. All CI output has been reviewed, and the commands which "need" it were identified. This also fixes a problem introduced there - that the command itself was not "foldable" group itself. * Increase size of ARM build instance (#24036) Our ARM cache builds started to hang recently at yarn prod step. The most likely reason are limited resources we had for the ARM instance to run the docker build - it was rather small instance with 2GB RAM and it is likely not nearly enought to cope with recent changes related to Grid View where we likely need much more memory during the yarn build step. This change increases the instance memory to 8 GB (c6g.xlarge). Also this instance type gives 70% cost saving and has very low probability of being evicted (it's not in high demand in Ohio Region of AWS. Also the AMI used is refreshed with latest software (docker) * Remove unused [github_enterprise] from ref docs (#24033) * Add enum validation for [webserver]analytics_tool (#24032) * Support impersonation service account parameter for Dataflow runner (#23961) * Fix closing connection dbapi.get_pandas_df (#23452) * Light Refactor and Clean-up AWS Provider (#23907) * Removing magic numbers from exceptions (#23997) * Removing magic numbers from exceptions * Running pre-commit * Upgrade to pip 22.1.2 (#24043) Pip has been upgraded to version 22.1.2 12 minutes ago. Time to catch up. * Shaves-off about 3 minutes from usage of ARM instances on CI (#24052) Preparing airflow packages and provider packages does not need to be done on ARM and actually the ARM instance is idle while they are prepared during cache building. This change moves preparation of the packages to before the ARM instance is started which saves about 3 minutes of ARM instance time. * SSL Bucket, Light Logic Refactor and Docstring Update for Alibaba Provider (#23891) * Use KubernetesHook to create api client in KubernetesPodOperator (#20578) Add support for k8s hook in KPO; use it always (even when no conn id); continue to consider the core k8s settings that KPO already takes into account but emit deprecation warning about them. KPO historically takes into account a few settings from core airflow cfg (e.g. verify ssl, tcp keepalive, context, config file, and in_cluster). So to use the hook to generate the client, somehow the hook has to take these settings into account. But we don't want the hook to consider these settings in general. So we read them in KPO and if necessary patch the hook and warn. * Re-add --force-build flag (#24061) After #24052 we also need to add --force-build flag as for Python 3.7 rebuilding CI cache would have been silently ignored as no image building would be needed * Fix grid view for mapped tasks (#24059) * Fix StatD timing metric units (#21106) Co-authored-by: Tzu-ping Chung Co-authored-by: Tzu-ping Chung * Drop Python 3.6 compatibility objects/modules (#24048) * Remove hack from BigQuery DTS hook (#23887) * Spanner assets & system tests migration (AIP-47) (#23957) * Run the `check_migration` loop at least once (#24068) This is broken since 2.3.0. that's if a user specifies a migration_timeout of 0 then no migration is run at all. * Bump eventsource from 1.0.7 to 1.1.1 in /airflow/ui (#24062) Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.0.7 to 1.1.1. - [Release notes](https://github.com/EventSource/eventsource/releases) - [Changelog](https://github.com/EventSource/eventsource/blob/master/HISTORY.md) - [Commits](https://github.com/EventSource/eventsource/compare/v1.0.7...v1.1.1) --- updated-dependencies: - dependency-name: eventsource dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Remove certifi limitations from eager upgrade limits (#23995) The certifi limitation was introduced to keep snowflake happy while performing eager upgrade because it added limits on certifi. However seems like it is not limitation any more in latest versions of snowflake python connector, so we can safely remove it from here. The only remaining limit is dill but this one still holds. * fix style of example block (#24078) * Handle occasional deadlocks in trigger with retries (#24071) Fixes: #23639 * Adds Pura Scents, edits The Dyrt (#24086) * Migrate Yandex example DAGs to new design AIP-47 (#24082) closes: #22470 * set color to operators in cloud_sql.py (#24000) * Migrate HTTP example DAGs to new design AIP-47 (#23991) closes: #22448 , #22431 * Make expand() error vague so it's not misleading (#24018) * Use github for postgres chart index (#24089) Bitnami's CloudFront CDN is seemingly having issues, so point at github direct instead until it is resolved. * Fix the link to google workplace (#24080) * Bring MappedOperator members in sync with BaseOperator (#24034) * Add note about Docker volume remount issues in WSL 2 (#24094) * Convert Athena Sample DAG to System Test (#24058) * Self-update pre-commit to latest versions (#24106) * Temporarily fix bitnami index problem (#24112) We started to experience "Internal Error" when installing Helm chart and apperently bitnami "solved" the problem by removing from their index software older than 6 months(!). This makes our CI fail but It is much worse. This renders all our charts useless for people to install This is terribly wrong, and I raised this in the issue here: https://github.com/bitnami/charts/issues/10539#issuecomment-1144869092 * Fix small typos in static code checks doc (#24113) - Trivial typo fix in the command to run static checks on the last commit - Update "run all tests" to "run all checks" where applicable for consistency * Really workaround bitnami chart problem (#24115) The original fix in #24112 did not work due to: * not updated lock * EOL characters at the end of multiline long URL This PR fixes it. * Reduce grid view API calls (#24083) * Reduce API calls from /grid - Separate /grid_data from /grid - Remove need for formatData - Increase default query stale time to prevent extra fetches - Fix useTask query keys * consolidate grid data functions * fix www tests test grid_data instead of /grid * Removing magic status code numbers from api_connecxion (#24050) * Do not support MSSQL less than v2017 in code (#24095) Our experimental support for MSSQL starts from v2017(in README.md) but we still support 2000 & 2005 in code. This PR removes this support, allowing us to use mssql.DATETIME2 in all MSSQL DB. * Rename Permissions to Permission Pairs. (#24065) * Note that yarn dev needs webserver in debug mode (#24119) * Note that yarn dev needs webserver -d * Update CONTRIBUTING.rst Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> * Use -D * Revert "Use -D" This reverts commit 94d63adcf36aac13f5d94c2d4cd651907d833794. Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> * fixing SSHHook bug when using allow_host_key_change param (#24116) * Adds mssql volumes to "all" backends selection (#24123) The "stop" command of Breeze uses "all" backend to remove all volumes - but mssql has special approach where the volumes defined depend on the filesystem used and we need to add the specific docker-compose files to list of files used when we use stop command. * Breeze must create `hooks\` and `dags\` directories for bind mounts (#24122) Now that breeze uses --mount instead of --volume (the former of which does not create missing mount dirs like the latter does see docs here: https://docs.docker.com/storage/bind-mounts/#differences-between--v-and---mount-behavior) we need to create these directories explicitly. * AIP-47 | Migrate Trino example DAGs to new design (#24118) * Update production-deployment.rst (#24121) The sql_alchemy_conn option is in the database section, not the core section. Simple typo fix. * Migrate Zendesk example DAGs to new design #22471 (#24129) * Migrate JDBC example DAGs to new design #22450 (#24137) * Migrate Jenkins example DAGs to new design #22451 (#24138) * Migrate Microsoft example DAGs to new design #22452 - mssql (#24139) * Migrate MySQL example DAGs to new design #22453 (#24142) * Migrate Opsgenie example DAGs to new design #22455 (#24144) * Migrate Presto example DAGs to new design #22459 (#24145) * Migrate Plexus example DAGs to new design #22457 (#24147) * Migrate SQLite example DAGs to new design #22461 (#24150) * Migrate Telegram example DAGs to new design #22468 (#24126) * AIP-47 - Migrate Tableau DAGs to new design (#24125) * Migrate Salesforce example DAGs to new design #22463 (#24127) * Update credentials when using ADC in Compute Engine (#23773) * Improve Windows development compatibility for breeze (#24098) * Migrate Asana example DAGs to new design #22440 (#24131) * Migrate Neo4j example DAGs to new design #22454 (#24143) * Workflows assets & system tests migration (AIP-47) (#24105) * Workflows assets & system tests migration (AIP-47) Co-authored-by: Wojciech Januszek * Add disabled_algorithms as an extra parameter for SSH connections (#24090) * Migrate Postgres example DAGs to new design #22458 (#24148) * Migrate Postgres example DAGs to new design #22458 * Fix static checks * Migrate Snowflake system tests to new design #22434 (#24151) * Migrate Snowflake system tests to new design #22434 * Fix flake8 * Migrate Qubole example DAGs to new design #22460 (#24149) * Migrate Qubole example DAGs to new design #22460 * Migrate Microsoft example DAGs to new design #22452 - azure (#24141) * Migrate Microsoft example DAGs to new design #22452 - azure * Migrate Microsoft example DAGs to new design #22452 - winrm (#24140) * Migrate Microsoft example DAGs to new design #22452 - winrm * Fix static checks * Migrate Influx example DAGs to new design #22449 (#24136) * Migrate Influx example DAGs to new design #22449 * Fix static checks * Migrate DingTalk example DAGs to new design #22443 (#24133) * Migrate DingTalk example DAGs to new design #22443 * Migrate Cncf.Kubernetes example DAGs to new design #22441 (#24132) * Migrate Cncf.Kubernetes example DAGs to new design #22441 * Migrate Alibaba example DAGs to new design #22437 (#24130) * Migrate Alibaba example DAGs to new design #22437 * Pass connection extra parameters to wasb BlobServiceClient (#24154) * fix BigQueryInsertJobOperator (#24165) * Migrate Singularity example DAGs to new design #22464 (#24128) * Better summary of status of AIP-47 (#24169) Result is here: https://github.com/apache/airflow/issues/24168 * Remove old Athena Sample DAG (#24170) * removed old files (#24172) * Chart: Default to Airflow 2.3.2 (#24184) * Update 'rich' to latest version across the board. (#24186) That Also includes regenerating the breeze output images. * Fix BigQuery system tests (#24013) * Change execution_date to data_interval_start in BigQueryInsertJobOperator job_id Change-Id: Ie1f3bba701169ceb2b39d693da320564de145c0c * Change jinja template path to relative path Change-Id: I6cced215124f69e9f4edf8ac08bb71d3ec3c8afc Co-authored-by: Bartlomiej Hirsz * `2.3.2` has been released (#24182) * Add verification step to image release process (#24177) * Added impersonation_chain for DataflowStartFlexTemplateOperator and DataflowStartSqlJobOperator (#24046) * Add key_secret_project_id parameter which specifies a project with KeyFile (#23930) * Add built-in Extrenal Link for ExternalTaskMarker operator (#23964) * fix: DatabricksSubmitRunOperator and DatabricksRunNowOperator cannot define .json as template_ext (#23622) (#23641) * fix: StepFunctionHook ignores explicit set `region_name` (#23976) * Remove `GithubOperator` use in `GithubSensor.__init__()`` (#24214) The constructor for `GithubSensor` was instantiating `GitHubOperator` to use its `execute()` method as the driver for the result of the sensor's `poke()` logic. However, this could yield a `DuplicateTaskIdFound` when used in DAGs. This PR updates the `GithubSensor` to use the `GithubHook` instead. * Mac M1 postgress and doc fix (#24200) * AIP-47 - Migrate dbt DAGs to new design #22472 (#24202) * AIP-47 - Migrate databricks DAGs to new design #22442 (#24203) * AIP-47 - Migrate hive DAGs to new design #22439 (#24204) * AIP-47 - Migrate kylin DAGs to new design #22439 (#24205) * AIP-47 - Migrate drill DAGs to new design #22439 (#24206) * AIP-47 - Migrate druid DAGs to new design #22439 (#24207) * AIP-47 - Migrate cassandra DAGs to new design #22439 (#24209) * AIP-47 - Migrate spark DAGs to new design #22439 (#24210) * AIP-47 - Migrate apache pig DAGs to new design #22439 (#24212) * Migrate GitHub example DAGs to new design #22446 (#24134) * Remove warnings when starting breeze (#24183) Breeze when started produced three warnings that were harmless, but we should fix them to remove "false positives". * AIP-47 - Migrate livy DAGs to new design #22439 (#24208) * Remove escaping which is wrong in latest rich version (#24217) Latest rich makes escaping not needed for extra `[` needed in Markdown URLs. * Parse error for task added to multiple groups (#23071) This raises an exception if a task already belonging to a task group (including added to a DAG, since such task is automatically added to the DAG's root task group). Also, according to the issue response, manually calling TaskGroup.add() is not considered a supported way to add a task to group. So a meta-marker is added to the function docstring to prevent it from showing up in documentation and users from trying to use it. * Fix xfail test in test_scheduler.py (#23731) * Migrate Papermill example DAGs to new design #22456 (#24146) * Migrate Asana system tests to new design AIP-47 (#24226) closes: #22428 related: #22440 * Migrate Microsoft system tests to new design AIP-47 (#24225) closes: #22432 related: #22452 * Migrate CNCF system tests to new design AIP-47 (#24224) closes: #22429 related: #22441 * Migrate Postgres system tests to new design (#24223) closes: #22433 related: #22458 * AIP-47 - Migrate beam DAGs to new design #22439 (#24211) * AIP-47 - Migrate beam DAGs to new design #22439 * Add explanatory note for contributors about updating Changelog (#24229) * Fix backwards-compatibility introduced by fixing mypy problems (#24230) There was a backwards-incompatibility introduced by #23716 in two providers by using get_mandatory_value config method. This PR corrects that backwards compatibility and updates 2.1 compatibility pre-commit to check for forbidden usage of get_mandatory_value. * Bump moto version (#24222) * Bump moto version version 3.1.10 broke main but the issue was fixed since in moto related: https://github.com/spulec/moto/pull/5165 * fix moto * Add `PrestoToSlackOperator` (#23979) * Add `PrestoToSlackOperator` Adding the funcitonality to run a single query against presto and send the result as slack message. Similar to `SnowflakeToSlackOperator` * Fix BigQuery Sensors system test (#24245) Co-authored-by: Bartlomiej Hirsz * adding AWS_DEFAULT_REGION to the docs, boto3 expects this to be in the env variables (#24181) * Unify return_code interface for task runner (#24093) * Update dbt.py (#24218) * Fix GCSToGCSOperator cannot copy a single file/folder without copying other files/folders with that prefix (#24039) * Adding fnmatch type regex to SFTPSensor (#24084) * docs: amazon-provider retry modes (#23906) * Cloud Storage assets & StorageLink update (#23865) Co-authored-by: Wojciech Januszek * Fix useTasks crash on error (#24152) * Prevent UI from crashing on Get API error * add test * don't show API errors in test logs * use setMinutes inline * Refactor GlueJobHook get_or_create_glue_job method. (#24215) When invoked, create_job takes into account the provided 'Command' argument instead of having it hardcoded. * Fix delete_cluster no use TriggerRule.ALL_DONE (#24213) related: #24082 * docker new system test (#23167) * chore: Refactoring and Cleaning Apache Providers (#24219) * Fix await_container_completion condition (#23883) * Migrate Apache Beam system tests to new design AIP-47 (#24256) closes: #22427 * Migrate Apache Beam system tests to new design #22427 (#24241) * Migrate Google leveldb system tests to new design AIP-47 (#24255) related: #22447, #22430 * Add param docs to KubernetesHook and KubernetesPodOperator (#23955) (#24054) * Enable dbt Cloud provider to interact with single tenant instances (#24264) * Enable provider to interact with single tenant * Define single tenant arg on Operator * Add test for single tenant endpoint * Enable provider to interact with single tenant * Define single tenant arg on Operator * Add test for single tenant endpoint * Code linting from black * Code linting from black * Pass tenant to dbtCloudHook in DbtCloudGetJobRunArtifactOperator class * Make Tenant a connection-level setting * Remove tenant arg from Operator * Make tenant connection-level param that defaults to 'cloud' * Remove tenant param from sensor * Remove leftover param string from hook * Update airflow/providers/dbt/cloud/hooks/dbt.py Co-authored-by: Josh Fell <48934154+josh-fell@users.noreply.github.com> * Parameterize test_init_hook to test single and multi tenant connections * Integrate test simplification suggestion * Add connection to TestDbtCloudJobRunSesnor Co-authored-by: Josh Fell <48934154+josh-fell@users.noreply.github.com> * Apply per-run log templates to log handlers (#24153) * AIP-47 - Migrate google leveldb DAGs to new design ##22447 (#24233) * Fix choosing backend versions in breeze's command line (#24228) Choosing version of backend were broken when command line switches were used. The _VERSION variables were "hard-coded" to defaults rather than taken from command line. This is a remnant of initial implementation and converting the parameters to "cacheable" ones. While looking at the versions we also found that PARAM_NAME_FLAG is not used any more so we took the opportunity to remove it. * Fix link broken after #24082 (#24276) https://github.com/apache/airflow/pull/24082 * Add command to regenerate breeze command output images (#24216) * Make numpy effectively an optional dependency for Oracle provider (#24272) Better fix to #23132 * Add SMAP Energy to list of companies using Airflow (#24268) * fix command and typo (#24282) * Update doc and sample dag for EMR Containers (#24087) * scheduleinterval nullable true added in openapi (#24253) * Check that edge nodes actually exist (#24166) * Prepare docs for May 2022 provider's release (#24231) This documentation update also (following the rule agreed in https://github.com/apache/airflow/blob/main/README.md#support-for-providers) bumps mininimum supported version of Airflow for all providers to 2.2 and it constitutes a breaking change and major version bump for all providers. * pydocstyle D202 added (#24221) * Update provider templates for new Airflow 2.2+ req (#24291) I imagine we could update this somewhat programmatically and/or add this update to instructions somewhere. Let me know what you think. * Update package description to remove double min-airflow specification (#24292) * Airflow UI fix vulnerabilities - Prototype Pollution (#24201) * Mention context variables and logging (#24304) * Mention context variables and logging * Fix static checks * Remove limit of presto-python-client version (#24305) * Fix langauge override in papermill operator (#24301) * Also mention airflow 2 only in readme template (#24296) * Fix permission issue for dag that has dot in name (#23510) How we determine if a DAG is a subdag in airflow.security.permissions.resource_name_for_dag is not right. If a dag_id contains a dot, the permission is not recorded correctly. The current solution makes a query every time we check for permission for dags that has a dot in the name. Not that I like it but I think it's better than other options I considered such as changing how we name dags for subdag. That's not good in UX. Another option I considered was making a query when parsing, that's not good and it's avoided by passing root_dag to resource_name_for_dag Co-authored-by: Ash Berlin-Taylor Co-authored-by: Tzu-ping Chung * Check bag DAG schedule_interval match tiemtable (#23113) This guards against the DAG's timetable or schedule_interval from being changed after it's created. Validation is done by creating a timetable and check its summary matches schedule_interval. The logic is not bullet-proof, especially if a custom timetable does not provide a useful summary. But this is the best we can do. * fix: patches #24215. Won't raise KeyError when 'create_job_kwargs' contains the 'Command' key. (#24308) * Fix D202 issue (#24322) * Check for run_id for grid group summaries (#24327) * Workaround job race bug on biguery to gcs transfer (#24330) Fixes: #24277 * Update release notes for RC2 release of Providers for May 2022 (#24307) Also updates links to example dags to work properly following #24331 * feat(README): 커스텀 리드미를 추가한다 (#1) * feat(README): 커스텀 리드미를 추가한다 * fix(README): 원본 readme 위에 커스텀 readme 내용을 추가하도록 수정한다 Co-authored-by: Kaxil Naik Co-authored-by: Ash Berlin-Taylor Co-authored-by: Vincent <97131062+vincbeck@users.noreply.github.com> Co-authored-by: Guilherme Martins Crocetti <24530683+gmcrocetti@users.noreply.github.com> Co-authored-by: Jarek Potiuk Co-authored-by: Dmytro Kazanzhy Co-authored-by: pankajastro <98807258+pankajastro@users.noreply.github.com> Co-authored-by: 서재권(Data Platform) <90180644+jaegwonseo@users.noreply.github.com> Co-authored-by: Sandeep Co-authored-by: Sandeep Kadyan Co-authored-by: Eugene Karimov <13220923+eskarimov@users.noreply.github.com> Co-authored-by: Vedant Bhamare <55763604+Dark-Knight11@users.noreply.github.com> Co-authored-by: eladkal <45845474+eladkal@users.noreply.github.com> Co-authored-by: pierrejeambrun Co-authored-by: sanjayp Co-authored-by: Josh Fell <48934154+josh-fell@users.noreply.github.com> Co-authored-by: raphaelauv Co-authored-by: Tzu-ping Chung Co-authored-by: Dev232001 Co-authored-by: Karthikeyan Singaravelan Co-authored-by: Alex Kruchkov <36231027+alexkruc@users.noreply.github.com> Co-authored-by: alexkru Co-authored-by: Sumit Maheshwari Co-authored-by: Mark Norman Francis Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com> Co-authored-by: Vincent Koc Co-authored-by: Ephraim Anierobi Co-authored-by: Igor Tavares Co-authored-by: Marty Jackson Co-authored-by: Daniel Standish <15932138+dstandish@users.noreply.github.com> Co-authored-by: Andrey Anshin Co-authored-by: Brent Bovenzi Co-authored-by: mhenc Co-authored-by: Kengo Seki Co-authored-by: John Green Co-authored-by: David Skoda Co-authored-by: Edith Puclla <58795858+edithturn@users.noreply.github.com> Co-authored-by: Łukasz Wyszomirski Co-authored-by: Kamil Breguła Co-authored-by: Hubert Pietroń <94397721+hubert-pietron@users.noreply.github.com> Co-authored-by: Bernardo Couto <35502483+bernardocouto@users.noreply.github.com> Co-authored-by: viktorvia <86823020+viktorvia@users.noreply.github.com> Co-authored-by: Tzu-ping Chung Co-authored-by: henriqueribeiro Co-authored-by: Wojciech Januszek Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ishiis Co-authored-by: Chenglong Yan Co-authored-by: François de Metz Co-authored-by: Paul Williams Co-authored-by: D. Ferruzzi Co-authored-by: James Timmins Co-authored-by: Niko Co-authored-by: chethanuk-plutoflume Co-authored-by: DataFusion4All <101581331+DataFusion4All@users.noreply.github.com> Co-authored-by: chethanuk-plutoflume Co-authored-by: Maksim Co-authored-by: Wojciech Januszek Co-authored-by: Paul Williams Co-authored-by: Tanel Kiis Co-authored-by: Bowrna Co-authored-by: Bartłomiej Hirsz Co-authored-by: Bartlomiej Hirsz Co-authored-by: Jonathan Simon Prates Co-authored-by: Rafael Carrasco Co-authored-by: Ping Zhang Co-authored-by: GitStart-AirFlow <101595287+gitstart-airflow@users.noreply.github.com> Co-authored-by: akakakakakaa Co-authored-by: Maria Sumedre Co-authored-by: Elize Papineau Co-authored-by: peter-volkov Co-authored-by: Hank Ehly Co-authored-by: Malthe Borch Co-authored-by: Ash Berlin-Taylor Co-authored-by: socar-dini <89070514+socar-dini@users.noreply.github.com> --- RELEASE_NOTES.rst | 10312 ---------------- airflow/compat/sqlalchemy.py | 35 - .../versions/0001_1_5_0_current_schema.py | 242 - .../0002_1_5_0_create_is_encrypted.py | 64 - .../versions/0003_1_5_0_for_compatibility.py | 40 - ...4_1_5_0_more_logging_into_task_isntance.py | 44 - .../versions/0005_1_5_2_job_id_indices.py | 41 - .../0006_1_6_0_adding_extra_to_log.py | 42 - .../versions/0007_1_6_0_add_dagrun.py | 56 - .../versions/0008_1_6_0_task_duration.py | 51 - .../versions/0009_1_6_0_dagrun_config.py | 42 - .../0010_1_6_2_add_password_column_to_user.py | 42 - .../versions/0011_1_6_2_dagrun_start_end.py | 45 - ...dd_notification_sent_column_to_sla_miss.py | 42 - ...0_add_a_column_to_track_the_encryption_.py | 43 - ..._0_add_is_encrypted_column_to_variable_.py | 42 - .../versions/0015_1_7_1_rename_user_table.py | 41 - .../versions/0016_1_7_1_add_ti_state_index.py | 41 - ...0017_1_7_1_add_task_fails_journal_table.py | 54 - .../0018_1_7_1_add_dag_stats_table.py | 51 - ..._add_fractional_seconds_to_mysql_tables.py | 122 - .../0020_1_7_1_xcom_dag_task_indices.py | 44 - ...021_1_7_1_add_pid_field_to_taskinstance.py | 45 - ...add_dag_id_state_index_on_dag_run_table.py | 41 - ...2_add_max_tries_column_to_task_instance.py | 127 - ...2_make_xcom_value_column_a_large_binary.py | 49 - .../0025_1_8_2_add_ti_job_id_index.py | 41 - ...0026_1_8_2_increase_text_size_for_mysql.py | 46 - .../0027_1_10_0_add_time_zone_awareness.py | 423 - ...0_add_kubernetes_resource_checkpointing.py | 70 - ..._0_add_executor_config_to_task_instance.py | 47 - ...0_0_add_kubernetes_scheduler_uniqueness.py | 60 - .../versions/0031_1_10_0_merge_heads.py | 39 - ...32_1_10_0_fix_mysql_not_null_constraint.py | 51 - .../0033_1_10_0_fix_sqlite_foreign_key.py | 73 - .../versions/0034_1_10_0_index_taskfail.py | 42 - .../versions/0035_1_10_2_add_idx_log_dag.py | 40 - .../0036_1_10_2_add_index_to_taskinstance.py | 42 - .../0037_1_10_2_add_task_reschedule_table.py | 72 - .../versions/0038_1_10_2_add_sm_dag_index.py | 41 - .../0039_1_10_2_add_superuser_field.py | 42 - .../versions/0040_1_10_3_add_fields_to_dag.py | 45 - ...041_1_10_3_add_schedule_interval_to_dag.py | 43 - ..._3_task_reschedule_fk_on_cascade_delete.py | 56 - ...0_4_make_taskinstance_pool_not_nullable.py | 102 - .../0044_1_10_7_add_serialized_dag_table.py | 96 - .../0045_1_10_7_add_root_dag_id_to_dag.py | 49 - ...hange_datetime_to_datetime2_6_on_mssql_.py | 343 - ...7_1_10_4_increase_queue_name_size_limit.py | 52 - .../0048_1_10_3_remove_dag_stat_table.py | 52 - .../versions/0049_1_10_7_merge_heads.py | 40 - ...increase_length_for_connection_password.py | 57 - .../versions/0051_1_10_8_add_dagtags_table.py | 56 - ...0_add_pool_slots_field_to_task_instance.py | 43 - ...add_rendered_task_instance_fields_table.py | 67 - .../0054_1_10_10_add_dag_code_table.py | 85 - ...dd_precision_to_execution_date_in_mysql.py | 56 - ..._add_dag_hash_column_to_serialized_dag_.py | 48 - .../versions/0057_1_10_13_add_fab_tables.py | 184 - ...13_increase_length_of_fab_ab_view_menu_.py | 96 - .../0059_2_0_0_drop_user_and_chart.py | 113 - .../0060_2_0_0_remove_id_column_from_xcom.py | 124 - ...0061_2_0_0_increase_length_of_pool_name.py | 50 - .../0062_2_0_0_add_dagrun_run_type.py | 93 - ...063_2_0_0_set_conn_type_as_non_nullable.py | 68 - ..._2_0_0_add_unique_constraint_to_conn_id.py | 56 - ...65_2_0_0_update_schema_for_smart_sensor.py | 80 - .../0066_2_0_0_add_queued_by_job_id_to_ti.py | 47 - ...67_2_0_0_add_external_executor_id_to_ti.py | 47 - ...068_2_0_0_drop_kuberesourceversion_and_.py | 107 - ..._add_scheduling_decision_to_dagrun_and_.py | 111 - ..._mssql_exec_date_rendered_task_instance.py | 77 - .../0071_2_0_0_add_job_id_to_dagrun_table.py | 45 - ..._0_0_add_k8s_yaml_to_rendered_templates.py | 53 - .../0073_2_0_0_prefix_dag_permissions.py | 239 - .../0074_2_0_0_resource_based_permissions.py | 351 - ...0_0_add_description_field_to_connection.py | 55 - ...fix_description_field_in_connection_to_.py | 79 - ..._change_field_in_dagcode_to_mediumtext_.py | 47 - ...1_remove_can_read_permission_on_config_.py | 71 - ...ncrease_size_of_connection_extra_field_.py | 57 - ...80_2_0_2_change_default_pool_slots_to_1.py | 47 - ..._2_0_2_rename_last_scheduler_run_column.py | 66 - ...increase_pool_name_size_in_taskinstance.py | 54 - ...2_1_0_add_description_field_to_variable.py | 47 - ...resource_based_permissions_for_default_.py | 203 - ..._3_add_queued_at_column_to_dagrun_table.py | 48 - ...add_max_active_runs_column_to_dagmodel_.py | 61 - ...4_add_index_on_state_dag_id_for_queued_.py | 53 - .../0088_2_2_0_improve_mssql_compatibility.py | 212 - ...2_0_make_xcom_pkey_columns_non_nullable.py | 59 - ...rename_concurrency_column_in_dag_table_.py | 64 - ...1_2_2_0_add_trigger_table_and_task_info.py | 70 - ...terval_start_end_to_dagmodel_and_dagrun.py | 57 - ...0093_2_2_0_taskinstance_keyed_to_dagrun.py | 404 - ...dd_has_import_errors_column_to_dagmodel.py | 46 - .../0095_2_2_4_add_session_table_to_db.py | 55 - ...96_2_2_4_adding_index_for_dag_id_in_job.py | 44 - ..._3_0_added_timetable_description_column.py | 52 - ..._0_add_task_log_filename_template_model.py | 64 - ..._add_taskmap_and_map_id_on_taskinstance.py | 126 - ...0_add_data_compressed_to_serialized_dag.py | 47 - ...2_2_3_0_switch_xcom_table_to_use_run_id.py | 174 - .../alibaba/cloud/log/__init__.py~merged | 11 - .../aws/example_dags/example_datasync.py | 81 - .../amazon/aws/example_dags/example_emr.py | 126 - .../aws/example_dags/example_emr_eks.py | 81 - .../example_google_api_sheets_to_s3.py | 48 - .../example_google_api_youtube_to_s3.py | 113 - .../aws/example_dags/example_mongo_to_s3.py | 48 - .../aws/example_dags/example_redshift_sql.py | 79 - airflow/ti_deps/deps/dagrun_backfill_dep.py | 47 - airflow/www/static/js/grid/api/useTasks.js | 35 - .../static/js/grid/components/Time.test.jsx | 83 + airflow/www/static/js/grid/dagRuns/Bar.jsx | 134 - .../www/static/js/grid/dagRuns/Tooltip.jsx | 55 - airflow/www/static/js/grid/dagRuns/index.jsx | 112 - .../www/static/js/grid/dagRuns/index.test.jsx | 121 - .../www/templates/airflow/variable_show.html | 28 - .../0003-bootstrapping-virtual-environment.md | 207 - .../airflow_breeze/params/doc_build_params.py | 44 - dev/breeze/src/airflow_breeze/utils/cache.py | 118 - .../src/airflow_breeze/utils/ci_group.py | 42 - .../airflow_breeze/utils/host_info_utils.py | 45 - .../src/airflow_breeze/utils/visuals.py | 133 - docker-context-files/.README.md | 32 - .../operators/transfer/ftp_to_s3.rst | 53 - .../installing-providers-from-sources.rst | 18 - .../installing-providers-from-sources.rst | 18 - docs/apache-airflow/release_notes.rst | 23 - .../docker-compose/backend-mssql-buster.yml | 60 - scripts/ci/images/ci_stop_arm_instance.sh | 34 - .../pre_commit_supported_versions.py | 63 - scripts/ci/testing/run_downgrade_test.sh | 23 - scripts/ci/testing/run_offline_sql_test.sh | 25 - scripts/docker/entrypoint_exec.sh | 27 - scripts/docker/entrypoint_prod.sh | 332 - scripts/docker/pip | 30 - tests/always/test_connection.py | 737 -- tests/charts/conftest.py | 57 - tests/charts/helm_template_generator.py | 160 - tests/charts/test_airflow_common.py | 340 - tests/charts/test_annotations.py | 353 - tests/charts/test_basic_helm_chart.py | 379 - .../charts/test_celery_kubernetes_executor.py | 48 - tests/charts/test_chart_quality.py | 38 - tests/charts/test_cleanup_pods.py | 201 - tests/charts/test_configmap.py | 115 - tests/charts/test_create_user_job.py | 270 - .../test_dags_persistent_volume_claim.py | 111 - tests/charts/test_elasticsearch_secret.py | 161 - tests/charts/test_extra_configmaps_secrets.py | 150 - tests/charts/test_extra_env_env_from.py | 126 - tests/charts/test_flower.py | 422 - tests/charts/test_git_sync_scheduler.py | 254 - tests/charts/test_git_sync_webserver.py | 172 - tests/charts/test_git_sync_worker.py | 114 - tests/charts/test_ingress_flower.py | 170 - tests/charts/test_ingress_web.py | 154 - tests/charts/test_keda.py | 136 - tests/charts/test_kerberos.py | 130 - tests/charts/test_limit_ranges.py | 36 - .../test_logs_persistent_volume_claim.py | 69 - .../charts/test_metadata_connection_secret.py | 126 - tests/charts/test_migrate_database_job.py | 269 - tests/charts/test_pdb_pgbouncer.py | 35 - tests/charts/test_pdb_scheduler.py | 35 - tests/charts/test_pgbouncer.py | 494 - tests/charts/test_pod_launcher_role.py | 49 - tests/charts/test_pod_template_file.py | 649 - tests/charts/test_rbac.py | 335 - tests/charts/test_rbac_pod_log_reader.py | 64 - tests/charts/test_redis.py | 329 - tests/charts/test_resource_quota.py | 47 - .../test_result_backend_connection_secret.py | 172 - tests/charts/test_scc_rolebinding.py | 116 - tests/charts/test_scheduler.py | 557 - tests/charts/test_security_context.py | 210 - tests/charts/test_statsd.py | 120 - tests/charts/test_triggerer.py | 411 - tests/charts/test_webserver.py | 731 -- tests/charts/test_worker.py | 556 - tests/config_templates/empty.cfg | 26 - tests/dags/test_only_empty_tasks.py | 54 - tests/dags_corrupted/test_nonstring_owner.py | 34 - tests/providers/amazon/aws/hooks/test_rds.py | 27 - .../cloud/operators/test_dataplex_system.py | 45 - .../providers/tableau/sensors/test_tableau.py | 65 - .../providers/alibaba/example_oss_bucket.py | 54 - .../providers/alibaba/example_oss_object.py | 75 - .../apache/cassandra/example_cassandra_dag.py | 53 - .../apache/drill/example_drill_dag.py | 52 - .../apache/druid/example_druid_dag.py | 60 - .../apache/hive/example_twitter_dag.py | 163 - .../providers/apache/livy/example_livy.py | 66 - .../providers/apache/pig/example_pig.py | 50 - .../apache/spark/example_spark_dag.py | 80 - tests/system/providers/asana/example_asana.py | 109 - .../cncf/kubernetes/example_kubernetes.py | 177 - .../kubernetes/example_spark_kubernetes.py | 83 - .../databricks/example_databricks.py | 90 - .../providers/dingding/example_dingding.py | 218 - .../providers/docker/example_docker_swarm.py | 52 - ...mple_taskflow_api_etl_docker_virtualenv.py | 124 - .../example_elasticsearch_query.py | 66 - .../bigquery/example_bigquery_queries.py | 239 - .../bigquery/example_bigquery_sensors.py | 131 - .../bigquery/example_bigquery_tables.py | 233 - .../google/cloud_sql/example_cloud_sql.py | 308 - .../google/gcs/example_gcs_to_bigquery.py | 91 - .../example_kubernetes_engine.py | 118 - .../google/leveldb/example_leveldb.py | 63 - .../google/spanner/example_spanner.py | 171 - .../speech_to_text/example_speech_to_text.py | 97 - .../google/stackdriver/example_stackdriver.py | 237 - .../providers/google/tasks/example_queue.py | 169 - .../text_to_speech/example_text_to_speech.py | 88 - .../google/workflows/example_workflows.py | 240 - tests/system/providers/http/example_http.py | 119 - .../providers/influxdb/example_influxdb.py | 72 - .../influxdb/example_influxdb_query.py | 48 - .../providers/jdbc/example_jdbc_queries.py | 75 - .../jenkins/example_jenkins_job_trigger.py | 76 - .../azure/example_adf_run_pipeline.py | 88 - .../microsoft/azure/example_adls_delete.py | 58 - .../azure/example_azure_blob_to_gcs.py | 72 - .../example_azure_container_instances.py | 57 - .../microsoft/azure/example_azure_cosmosdb.py | 73 - .../microsoft/azure/example_fileshare.py | 65 - .../microsoft/azure/example_local_to_adls.py | 58 - .../microsoft/azure/example_local_to_wasb.py | 53 - .../microsoft/azure/example_sftp_to_wasb.py | 85 - .../microsoft/winrm/example_winrm.py | 79 - tests/system/providers/mysql/example_mysql.py | 62 - tests/system/providers/neo4j/example_neo4j.py | 51 - .../opsgenie/example_opsgenie_alert.py | 56 - .../papermill/example_papermill_verify.py | 77 - .../system/providers/plexus/example_plexus.py | 55 - .../providers/postgres/example_postgres.py | 90 - .../providers/presto/example_gcs_to_presto.py | 54 - .../presto/example_presto_to_slack.py | 52 - .../system/providers/qubole/example_qubole.py | 235 - .../example_salesforce_apex_rest.py | 46 - .../singularity/example_singularity.py | 56 - .../providers/snowflake/example_snowflake.py | 138 - .../providers/tableau/example_tableau.py | 74 - .../example_tableau_refresh_workbook.py | 72 - .../providers/telegram/example_telegram.py | 50 - .../yandex/example_yandexcloud_dataproc.py | 172 - .../zendesk/example_zendesk_custom_get.py | 50 - tests/system/utils/__init__.py | 31 - 251 files changed, 83 insertions(+), 37681 deletions(-) delete mode 100644 RELEASE_NOTES.rst delete mode 100644 airflow/compat/sqlalchemy.py delete mode 100644 airflow/migrations/versions/0001_1_5_0_current_schema.py delete mode 100644 airflow/migrations/versions/0002_1_5_0_create_is_encrypted.py delete mode 100644 airflow/migrations/versions/0003_1_5_0_for_compatibility.py delete mode 100644 airflow/migrations/versions/0004_1_5_0_more_logging_into_task_isntance.py delete mode 100644 airflow/migrations/versions/0005_1_5_2_job_id_indices.py delete mode 100644 airflow/migrations/versions/0006_1_6_0_adding_extra_to_log.py delete mode 100644 airflow/migrations/versions/0007_1_6_0_add_dagrun.py delete mode 100644 airflow/migrations/versions/0008_1_6_0_task_duration.py delete mode 100644 airflow/migrations/versions/0009_1_6_0_dagrun_config.py delete mode 100644 airflow/migrations/versions/0010_1_6_2_add_password_column_to_user.py delete mode 100644 airflow/migrations/versions/0011_1_6_2_dagrun_start_end.py delete mode 100644 airflow/migrations/versions/0012_1_7_0_add_notification_sent_column_to_sla_miss.py delete mode 100644 airflow/migrations/versions/0013_1_7_0_add_a_column_to_track_the_encryption_.py delete mode 100644 airflow/migrations/versions/0014_1_7_0_add_is_encrypted_column_to_variable_.py delete mode 100644 airflow/migrations/versions/0015_1_7_1_rename_user_table.py delete mode 100644 airflow/migrations/versions/0016_1_7_1_add_ti_state_index.py delete mode 100644 airflow/migrations/versions/0017_1_7_1_add_task_fails_journal_table.py delete mode 100644 airflow/migrations/versions/0018_1_7_1_add_dag_stats_table.py delete mode 100644 airflow/migrations/versions/0019_1_7_1_add_fractional_seconds_to_mysql_tables.py delete mode 100644 airflow/migrations/versions/0020_1_7_1_xcom_dag_task_indices.py delete mode 100644 airflow/migrations/versions/0021_1_7_1_add_pid_field_to_taskinstance.py delete mode 100644 airflow/migrations/versions/0022_1_7_1_add_dag_id_state_index_on_dag_run_table.py delete mode 100644 airflow/migrations/versions/0023_1_8_2_add_max_tries_column_to_task_instance.py delete mode 100644 airflow/migrations/versions/0024_1_8_2_make_xcom_value_column_a_large_binary.py delete mode 100644 airflow/migrations/versions/0025_1_8_2_add_ti_job_id_index.py delete mode 100644 airflow/migrations/versions/0026_1_8_2_increase_text_size_for_mysql.py delete mode 100644 airflow/migrations/versions/0027_1_10_0_add_time_zone_awareness.py delete mode 100644 airflow/migrations/versions/0028_1_10_0_add_kubernetes_resource_checkpointing.py delete mode 100644 airflow/migrations/versions/0029_1_10_0_add_executor_config_to_task_instance.py delete mode 100644 airflow/migrations/versions/0030_1_10_0_add_kubernetes_scheduler_uniqueness.py delete mode 100644 airflow/migrations/versions/0031_1_10_0_merge_heads.py delete mode 100644 airflow/migrations/versions/0032_1_10_0_fix_mysql_not_null_constraint.py delete mode 100644 airflow/migrations/versions/0033_1_10_0_fix_sqlite_foreign_key.py delete mode 100644 airflow/migrations/versions/0034_1_10_0_index_taskfail.py delete mode 100644 airflow/migrations/versions/0035_1_10_2_add_idx_log_dag.py delete mode 100644 airflow/migrations/versions/0036_1_10_2_add_index_to_taskinstance.py delete mode 100644 airflow/migrations/versions/0037_1_10_2_add_task_reschedule_table.py delete mode 100644 airflow/migrations/versions/0038_1_10_2_add_sm_dag_index.py delete mode 100644 airflow/migrations/versions/0039_1_10_2_add_superuser_field.py delete mode 100644 airflow/migrations/versions/0040_1_10_3_add_fields_to_dag.py delete mode 100644 airflow/migrations/versions/0041_1_10_3_add_schedule_interval_to_dag.py delete mode 100644 airflow/migrations/versions/0042_1_10_3_task_reschedule_fk_on_cascade_delete.py delete mode 100644 airflow/migrations/versions/0043_1_10_4_make_taskinstance_pool_not_nullable.py delete mode 100644 airflow/migrations/versions/0044_1_10_7_add_serialized_dag_table.py delete mode 100644 airflow/migrations/versions/0045_1_10_7_add_root_dag_id_to_dag.py delete mode 100644 airflow/migrations/versions/0046_1_10_5_change_datetime_to_datetime2_6_on_mssql_.py delete mode 100644 airflow/migrations/versions/0047_1_10_4_increase_queue_name_size_limit.py delete mode 100644 airflow/migrations/versions/0048_1_10_3_remove_dag_stat_table.py delete mode 100644 airflow/migrations/versions/0049_1_10_7_merge_heads.py delete mode 100644 airflow/migrations/versions/0050_1_10_7_increase_length_for_connection_password.py delete mode 100644 airflow/migrations/versions/0051_1_10_8_add_dagtags_table.py delete mode 100644 airflow/migrations/versions/0052_1_10_10_add_pool_slots_field_to_task_instance.py delete mode 100644 airflow/migrations/versions/0053_1_10_10_add_rendered_task_instance_fields_table.py delete mode 100644 airflow/migrations/versions/0054_1_10_10_add_dag_code_table.py delete mode 100644 airflow/migrations/versions/0055_1_10_11_add_precision_to_execution_date_in_mysql.py delete mode 100644 airflow/migrations/versions/0056_1_10_12_add_dag_hash_column_to_serialized_dag_.py delete mode 100644 airflow/migrations/versions/0057_1_10_13_add_fab_tables.py delete mode 100644 airflow/migrations/versions/0058_1_10_13_increase_length_of_fab_ab_view_menu_.py delete mode 100644 airflow/migrations/versions/0059_2_0_0_drop_user_and_chart.py delete mode 100644 airflow/migrations/versions/0060_2_0_0_remove_id_column_from_xcom.py delete mode 100644 airflow/migrations/versions/0061_2_0_0_increase_length_of_pool_name.py delete mode 100644 airflow/migrations/versions/0062_2_0_0_add_dagrun_run_type.py delete mode 100644 airflow/migrations/versions/0063_2_0_0_set_conn_type_as_non_nullable.py delete mode 100644 airflow/migrations/versions/0064_2_0_0_add_unique_constraint_to_conn_id.py delete mode 100644 airflow/migrations/versions/0065_2_0_0_update_schema_for_smart_sensor.py delete mode 100644 airflow/migrations/versions/0066_2_0_0_add_queued_by_job_id_to_ti.py delete mode 100644 airflow/migrations/versions/0067_2_0_0_add_external_executor_id_to_ti.py delete mode 100644 airflow/migrations/versions/0068_2_0_0_drop_kuberesourceversion_and_.py delete mode 100644 airflow/migrations/versions/0069_2_0_0_add_scheduling_decision_to_dagrun_and_.py delete mode 100644 airflow/migrations/versions/0070_2_0_0_fix_mssql_exec_date_rendered_task_instance.py delete mode 100644 airflow/migrations/versions/0071_2_0_0_add_job_id_to_dagrun_table.py delete mode 100644 airflow/migrations/versions/0072_2_0_0_add_k8s_yaml_to_rendered_templates.py delete mode 100644 airflow/migrations/versions/0073_2_0_0_prefix_dag_permissions.py delete mode 100644 airflow/migrations/versions/0074_2_0_0_resource_based_permissions.py delete mode 100644 airflow/migrations/versions/0075_2_0_0_add_description_field_to_connection.py delete mode 100644 airflow/migrations/versions/0076_2_0_0_fix_description_field_in_connection_to_.py delete mode 100644 airflow/migrations/versions/0077_2_0_0_change_field_in_dagcode_to_mediumtext_.py delete mode 100644 airflow/migrations/versions/0078_2_0_1_remove_can_read_permission_on_config_.py delete mode 100644 airflow/migrations/versions/0079_2_0_2_increase_size_of_connection_extra_field_.py delete mode 100644 airflow/migrations/versions/0080_2_0_2_change_default_pool_slots_to_1.py delete mode 100644 airflow/migrations/versions/0081_2_0_2_rename_last_scheduler_run_column.py delete mode 100644 airflow/migrations/versions/0082_2_1_0_increase_pool_name_size_in_taskinstance.py delete mode 100644 airflow/migrations/versions/0083_2_1_0_add_description_field_to_variable.py delete mode 100644 airflow/migrations/versions/0084_2_1_0_resource_based_permissions_for_default_.py delete mode 100644 airflow/migrations/versions/0085_2_1_3_add_queued_at_column_to_dagrun_table.py delete mode 100644 airflow/migrations/versions/0086_2_1_4_add_max_active_runs_column_to_dagmodel_.py delete mode 100644 airflow/migrations/versions/0087_2_1_4_add_index_on_state_dag_id_for_queued_.py delete mode 100644 airflow/migrations/versions/0088_2_2_0_improve_mssql_compatibility.py delete mode 100644 airflow/migrations/versions/0089_2_2_0_make_xcom_pkey_columns_non_nullable.py delete mode 100644 airflow/migrations/versions/0090_2_2_0_rename_concurrency_column_in_dag_table_.py delete mode 100644 airflow/migrations/versions/0091_2_2_0_add_trigger_table_and_task_info.py delete mode 100644 airflow/migrations/versions/0092_2_2_0_add_data_interval_start_end_to_dagmodel_and_dagrun.py delete mode 100644 airflow/migrations/versions/0093_2_2_0_taskinstance_keyed_to_dagrun.py delete mode 100644 airflow/migrations/versions/0094_2_2_3_add_has_import_errors_column_to_dagmodel.py delete mode 100644 airflow/migrations/versions/0095_2_2_4_add_session_table_to_db.py delete mode 100644 airflow/migrations/versions/0096_2_2_4_adding_index_for_dag_id_in_job.py delete mode 100644 airflow/migrations/versions/0098_2_3_0_added_timetable_description_column.py delete mode 100644 airflow/migrations/versions/0099_2_3_0_add_task_log_filename_template_model.py delete mode 100644 airflow/migrations/versions/0100_2_3_0_add_taskmap_and_map_id_on_taskinstance.py delete mode 100644 airflow/migrations/versions/0101_2_3_0_add_data_compressed_to_serialized_dag.py delete mode 100644 airflow/migrations/versions/0102_2_3_0_switch_xcom_table_to_use_run_id.py rename tests/system/providers/google/gcs/resources/transform_script.py => airflow/providers/alibaba/cloud/log/__init__.py~merged (76%) delete mode 100644 airflow/providers/amazon/aws/example_dags/example_datasync.py delete mode 100644 airflow/providers/amazon/aws/example_dags/example_emr.py delete mode 100644 airflow/providers/amazon/aws/example_dags/example_emr_eks.py delete mode 100644 airflow/providers/amazon/aws/example_dags/example_google_api_sheets_to_s3.py delete mode 100644 airflow/providers/amazon/aws/example_dags/example_google_api_youtube_to_s3.py delete mode 100644 airflow/providers/amazon/aws/example_dags/example_mongo_to_s3.py delete mode 100644 airflow/providers/amazon/aws/example_dags/example_redshift_sql.py delete mode 100644 airflow/ti_deps/deps/dagrun_backfill_dep.py delete mode 100644 airflow/www/static/js/grid/api/useTasks.js create mode 100644 airflow/www/static/js/grid/components/Time.test.jsx delete mode 100644 airflow/www/static/js/grid/dagRuns/Bar.jsx delete mode 100644 airflow/www/static/js/grid/dagRuns/Tooltip.jsx delete mode 100644 airflow/www/static/js/grid/dagRuns/index.jsx delete mode 100644 airflow/www/static/js/grid/dagRuns/index.test.jsx delete mode 100644 airflow/www/templates/airflow/variable_show.html delete mode 100644 dev/breeze/doc/adr/0003-bootstrapping-virtual-environment.md delete mode 100644 dev/breeze/src/airflow_breeze/params/doc_build_params.py delete mode 100644 dev/breeze/src/airflow_breeze/utils/cache.py delete mode 100644 dev/breeze/src/airflow_breeze/utils/ci_group.py delete mode 100644 dev/breeze/src/airflow_breeze/utils/host_info_utils.py delete mode 100644 dev/breeze/src/airflow_breeze/utils/visuals.py delete mode 100644 docker-context-files/.README.md delete mode 100644 docs/apache-airflow-providers-amazon/operators/transfer/ftp_to_s3.rst delete mode 100644 docs/apache-airflow-providers-arangodb/installing-providers-from-sources.rst delete mode 100644 docs/apache-airflow-providers-dbt-cloud/installing-providers-from-sources.rst delete mode 100644 docs/apache-airflow/release_notes.rst delete mode 100644 scripts/ci/docker-compose/backend-mssql-buster.yml delete mode 100755 scripts/ci/images/ci_stop_arm_instance.sh delete mode 100755 scripts/ci/pre_commit/pre_commit_supported_versions.py delete mode 100755 scripts/ci/testing/run_downgrade_test.sh delete mode 100755 scripts/ci/testing/run_offline_sql_test.sh delete mode 100755 scripts/docker/entrypoint_exec.sh delete mode 100755 scripts/docker/entrypoint_prod.sh delete mode 100644 scripts/docker/pip delete mode 100644 tests/always/test_connection.py delete mode 100644 tests/charts/conftest.py delete mode 100644 tests/charts/helm_template_generator.py delete mode 100644 tests/charts/test_airflow_common.py delete mode 100644 tests/charts/test_annotations.py delete mode 100644 tests/charts/test_basic_helm_chart.py delete mode 100644 tests/charts/test_celery_kubernetes_executor.py delete mode 100644 tests/charts/test_chart_quality.py delete mode 100644 tests/charts/test_cleanup_pods.py delete mode 100644 tests/charts/test_configmap.py delete mode 100644 tests/charts/test_create_user_job.py delete mode 100644 tests/charts/test_dags_persistent_volume_claim.py delete mode 100644 tests/charts/test_elasticsearch_secret.py delete mode 100644 tests/charts/test_extra_configmaps_secrets.py delete mode 100644 tests/charts/test_extra_env_env_from.py delete mode 100644 tests/charts/test_flower.py delete mode 100644 tests/charts/test_git_sync_scheduler.py delete mode 100644 tests/charts/test_git_sync_webserver.py delete mode 100644 tests/charts/test_git_sync_worker.py delete mode 100644 tests/charts/test_ingress_flower.py delete mode 100644 tests/charts/test_ingress_web.py delete mode 100644 tests/charts/test_keda.py delete mode 100644 tests/charts/test_kerberos.py delete mode 100644 tests/charts/test_limit_ranges.py delete mode 100644 tests/charts/test_logs_persistent_volume_claim.py delete mode 100644 tests/charts/test_metadata_connection_secret.py delete mode 100644 tests/charts/test_migrate_database_job.py delete mode 100644 tests/charts/test_pdb_pgbouncer.py delete mode 100644 tests/charts/test_pdb_scheduler.py delete mode 100644 tests/charts/test_pgbouncer.py delete mode 100644 tests/charts/test_pod_launcher_role.py delete mode 100644 tests/charts/test_pod_template_file.py delete mode 100644 tests/charts/test_rbac.py delete mode 100644 tests/charts/test_rbac_pod_log_reader.py delete mode 100644 tests/charts/test_redis.py delete mode 100644 tests/charts/test_resource_quota.py delete mode 100644 tests/charts/test_result_backend_connection_secret.py delete mode 100644 tests/charts/test_scc_rolebinding.py delete mode 100644 tests/charts/test_scheduler.py delete mode 100644 tests/charts/test_security_context.py delete mode 100644 tests/charts/test_statsd.py delete mode 100644 tests/charts/test_triggerer.py delete mode 100644 tests/charts/test_webserver.py delete mode 100644 tests/charts/test_worker.py delete mode 100644 tests/config_templates/empty.cfg delete mode 100644 tests/dags/test_only_empty_tasks.py delete mode 100644 tests/dags_corrupted/test_nonstring_owner.py delete mode 100644 tests/providers/amazon/aws/hooks/test_rds.py delete mode 100644 tests/providers/google/cloud/operators/test_dataplex_system.py delete mode 100644 tests/providers/tableau/sensors/test_tableau.py delete mode 100644 tests/system/providers/alibaba/example_oss_bucket.py delete mode 100644 tests/system/providers/alibaba/example_oss_object.py delete mode 100644 tests/system/providers/apache/cassandra/example_cassandra_dag.py delete mode 100644 tests/system/providers/apache/drill/example_drill_dag.py delete mode 100644 tests/system/providers/apache/druid/example_druid_dag.py delete mode 100644 tests/system/providers/apache/hive/example_twitter_dag.py delete mode 100644 tests/system/providers/apache/livy/example_livy.py delete mode 100644 tests/system/providers/apache/pig/example_pig.py delete mode 100644 tests/system/providers/apache/spark/example_spark_dag.py delete mode 100644 tests/system/providers/asana/example_asana.py delete mode 100644 tests/system/providers/cncf/kubernetes/example_kubernetes.py delete mode 100644 tests/system/providers/cncf/kubernetes/example_spark_kubernetes.py delete mode 100644 tests/system/providers/databricks/example_databricks.py delete mode 100644 tests/system/providers/dingding/example_dingding.py delete mode 100644 tests/system/providers/docker/example_docker_swarm.py delete mode 100644 tests/system/providers/docker/example_taskflow_api_etl_docker_virtualenv.py delete mode 100644 tests/system/providers/elasticsearch/example_elasticsearch_query.py delete mode 100644 tests/system/providers/google/bigquery/example_bigquery_queries.py delete mode 100644 tests/system/providers/google/bigquery/example_bigquery_sensors.py delete mode 100644 tests/system/providers/google/bigquery/example_bigquery_tables.py delete mode 100644 tests/system/providers/google/cloud_sql/example_cloud_sql.py delete mode 100644 tests/system/providers/google/gcs/example_gcs_to_bigquery.py delete mode 100644 tests/system/providers/google/kubernetes_engine/example_kubernetes_engine.py delete mode 100644 tests/system/providers/google/leveldb/example_leveldb.py delete mode 100644 tests/system/providers/google/spanner/example_spanner.py delete mode 100644 tests/system/providers/google/speech_to_text/example_speech_to_text.py delete mode 100644 tests/system/providers/google/stackdriver/example_stackdriver.py delete mode 100644 tests/system/providers/google/tasks/example_queue.py delete mode 100644 tests/system/providers/google/text_to_speech/example_text_to_speech.py delete mode 100644 tests/system/providers/google/workflows/example_workflows.py delete mode 100644 tests/system/providers/http/example_http.py delete mode 100644 tests/system/providers/influxdb/example_influxdb.py delete mode 100644 tests/system/providers/influxdb/example_influxdb_query.py delete mode 100644 tests/system/providers/jdbc/example_jdbc_queries.py delete mode 100644 tests/system/providers/jenkins/example_jenkins_job_trigger.py delete mode 100644 tests/system/providers/microsoft/azure/example_adf_run_pipeline.py delete mode 100644 tests/system/providers/microsoft/azure/example_adls_delete.py delete mode 100644 tests/system/providers/microsoft/azure/example_azure_blob_to_gcs.py delete mode 100644 tests/system/providers/microsoft/azure/example_azure_container_instances.py delete mode 100644 tests/system/providers/microsoft/azure/example_azure_cosmosdb.py delete mode 100644 tests/system/providers/microsoft/azure/example_fileshare.py delete mode 100644 tests/system/providers/microsoft/azure/example_local_to_adls.py delete mode 100644 tests/system/providers/microsoft/azure/example_local_to_wasb.py delete mode 100644 tests/system/providers/microsoft/azure/example_sftp_to_wasb.py delete mode 100644 tests/system/providers/microsoft/winrm/example_winrm.py delete mode 100644 tests/system/providers/mysql/example_mysql.py delete mode 100644 tests/system/providers/neo4j/example_neo4j.py delete mode 100644 tests/system/providers/opsgenie/example_opsgenie_alert.py delete mode 100644 tests/system/providers/papermill/example_papermill_verify.py delete mode 100644 tests/system/providers/plexus/example_plexus.py delete mode 100644 tests/system/providers/postgres/example_postgres.py delete mode 100644 tests/system/providers/presto/example_gcs_to_presto.py delete mode 100644 tests/system/providers/presto/example_presto_to_slack.py delete mode 100644 tests/system/providers/qubole/example_qubole.py delete mode 100644 tests/system/providers/salesforce/example_salesforce_apex_rest.py delete mode 100644 tests/system/providers/singularity/example_singularity.py delete mode 100644 tests/system/providers/snowflake/example_snowflake.py delete mode 100644 tests/system/providers/tableau/example_tableau.py delete mode 100644 tests/system/providers/tableau/example_tableau_refresh_workbook.py delete mode 100644 tests/system/providers/telegram/example_telegram.py delete mode 100644 tests/system/providers/yandex/example_yandexcloud_dataproc.py delete mode 100644 tests/system/providers/zendesk/example_zendesk_custom_get.py delete mode 100644 tests/system/utils/__init__.py diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst deleted file mode 100644 index 366fbc8def3ace..00000000000000 --- a/RELEASE_NOTES.rst +++ /dev/null @@ -1,10312 +0,0 @@ - .. Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - .. http://www.apache.org/licenses/LICENSE-2.0 - - .. Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - -.. contents:: Apache Airflow Releases - :local: - :depth: 1 - -.. towncrier release notes start - -Airflow 2.3.2 (2021-06-04) --------------------------- - -No significant changes - -Bug Fixes -^^^^^^^^^ - -- Run the ``check_migration`` loop at least once -- Fix grid view for mapped tasks (#24059) -- Icons in grid view for different DAG run types (#23970) -- Faster grid view (#23951) -- Disallow calling expand with no arguments (#23463) -- Add missing ``is_mapped`` field to Task response. (#23319) -- DagFileProcessorManager: Start a new process group only if current process not a session leader (#23872) -- Mask sensitive values for not-yet-running TIs (#23807) -- Add cascade to ``dag_tag`` to ``dag`` foreign key (#23444) -- Use ``--subdir`` argument value for standalone dag processor. (#23864) -- Highlight task states by hovering on legend row (#23678) -- Fix and speed up grid view (#23947) -- Prevent UI from crashing if grid task instances are null (#23939) -- Remove redundant register exit signals in ``dag-processor`` command (#23886) -- Add ``__wrapped__`` property to ``_TaskDecorator`` (#23830) -- Fix UnboundLocalError when ``sql`` is empty list in DbApiHook (#23816) -- Enable clicking on DAG owner in autocomplete dropdown (#23804) -- Simplify flash message for ``_airflow_moved`` tables (#23635) -- Exclude missing tasks from the gantt view (#23627) - -Doc only changes -^^^^^^^^^^^^^^^^ - -- Add column names for DB Migration Reference (#23853) - -Misc/Internal -^^^^^^^^^^^^^ - -- Remove pinning for xmltodict (#23992) - - -Airflow 2.3.1 (2022-05-25) --------------------------- - -Significant Changes -^^^^^^^^^^^^^^^^^^^ -No significant changes. - -Bug Fixes -^^^^^^^^^ - -- Automatically reschedule stalled queued tasks in ``CeleryExecutor`` (#23690) -- Fix expand/collapse all buttons (#23590) -- Grid view status filters (#23392) -- Expand/collapse all groups (#23487) -- Fix retrieval of deprecated non-config values (#23723) -- Fix secrets rendered in UI when task is not executed. (#22754) -- Fix provider import error matching (#23825) -- Fix regression in ignoring symlinks (#23535) -- Fix ``dag-processor`` fetch metadata database config (#23575) -- Fix auto upstream dep when expanding non-templated field (#23771) -- Fix task log is not captured (#23684) -- Add ``reschedule`` to the serialized fields for the ``BaseSensorOperator`` (#23674) -- Modify db clean to also catch the ProgrammingError exception (#23699) -- Remove titles from link buttons (#23736) -- Fix grid details header text overlap (#23728) -- Ensure ``execution_timeout`` as timedelta (#23655) -- Don't run pre-migration checks for downgrade (#23634) -- Add index for event column in log table (#23625) -- Implement ``send_callback`` method for ``CeleryKubernetesExecutor`` and ``LocalKubernetesExecutor`` (#23617) -- Fix ``PythonVirtualenvOperator`` templated_fields (#23559) -- Apply specific ID collation to ``root_dag_id`` too (#23536) -- Prevent ``KubernetesJobWatcher`` getting stuck on resource too old (#23521) -- Fix scheduler crash when expanding with mapped task that returned none (#23486) -- Fix broken dagrun links when many runs start at the same time (#23462) -- Fix: Exception when parsing log #20966 (#23301) -- Handle invalid date parsing in webserver views. (#23161) -- Pools with negative open slots should not block other pools (#23143) -- Move around overflow, position and padding (#23044) -- Change approach to finding bad rows to LEFT OUTER JOIN. (#23528) -- Only count bad refs when ``moved`` table exists (#23491) -- Visually distinguish task group summary (#23488) -- Remove color change for highly nested groups (#23482) -- Optimize 2.3.0 pre-upgrade check queries (#23458) -- Add backward compatibility for ``core__sql_alchemy_conn__cmd`` (#23441) -- Fix literal cross product expansion (#23434) -- Fix broken task instance link in xcom list (#23367) -- Fix connection test button (#23345) -- fix cli ``airflow dags show`` for mapped operator (#23339) -- Hide some task instance attributes (#23338) -- Don't show grid actions if server would reject with permission denied (#23332) -- Use run_id for ``ti.mark_success_url`` (#23330) -- Fix update user auth stats (#23314) -- Use ``