tree: a103d9d5ad2633580387fb84115d724dcc159ea8 [path history] [tgz]
  1. breeze/
  2. chart/
  3. example_dags/
  4. images/
  5. mypy/
  6. perf/
  7. provider_packages/
  8. stats/
  9. system_tests/
  10. templates/
  11. __init__.py
  12. airflow-github
  13. airflow-license
  14. assign_cherry_picked_prs_with_milestone.py
  15. check_files.py
  16. CHERRY_PICK_SUMMARY.txt.jinja2
  17. ISSUE_TEMPLATE.md.jinja2
  18. MANUALLY_BUILDING_IMAGES.md
  19. prepare_bulk_issues.py
  20. prepare_release_issue.py
  21. PROJECT_GUIDELINES.md
  22. PROVIDER_PACKAGE_DETAILS.md
  23. README.md
  24. README_RELEASE_AIRFLOW.md
  25. README_RELEASE_AIRFLOW_UPGRADE_CHECK.md
  26. README_RELEASE_HELM_CHART.md
  27. README_RELEASE_PROVIDER_PACKAGES.md
  28. refresh_images.sh
  29. REFRESHING_CI_CACHE.md
  30. remove_artifacts.sh
  31. requirements.txt
  32. retag_docker_images.py
  33. send_email.py
  34. sign.sh
  35. validate_version_added_fields_in_config.py
dev/README.md

Table of contents

Apache Airflow source releases

The Apache Airflow releases are one of the two types:

  • Releases of the Apache Airflow package
  • Releases of the Providers Packages

Apache Airflow Package

This package contains sources that allow the user building fully-functional Apache Airflow 2.0 package. They contain sources for:

  • “apache-airflow” python package that installs “airflow” Python package and includes all the assets required to release the webserver UI coming with Apache Airflow
  • Dockerfile and corresponding scripts that build and use an official DockerImage
  • Breeze development environment that helps with building images and testing locally apache airflow built from sources
  • Provider packages - containing Airflow's providers - separate package per each service Airflow integrates with.

We also plan to release the official Helm Chart sources that will allow the user to install Apache Airflow via helm 3.0 chart in a distributed fashion.

The Source releases are the only “official” Apache Software Foundation releases, and they are distributed via Official Apache Download sources

Following source releases Apache Airflow release manager also distributes convenience packages:

Those convenience packages are not “official releases” of Apache Airflow, but the users who cannot or do not want to build the packages themselves can use them as a convenient way of installing Apache Airflow, however they are not considered as “official source releases”. You can read more details about it in the ASF Release Policy.

Detailed instruction of releasing Provider Packages can be found in the README_RELEASE_AIRFLOW.md

Provider packages

The Provider packages are packages (per provider) that make it possible to easily install Hooks, Operators, Sensors, and Secrets for different providers (external services used by Airflow).

Once you release the packages, you can simply install them with:

pip install apache-airflow-providers-<PROVIDER>[<EXTRAS>]

Where <PROVIDER> is the provider id and <EXTRAS> are optional extra packages to install. You can find the provider packages dependencies and extras in the README.md files in each provider package (in airflow/providers/<PROVIDER> folder) as well as in the PyPI installation page.

The sources released in SVN allow to build all the provider packages by the user, following the instructions and scripts provided. Those are also “official_source releases” as described in the ASF Release Policy and they are available via Official Apache Download for providers.

The full provider's list can be found here: Provider Packages Reference

There are also convenience packages released as “apache-airflow-providers”separately in PyPI. PyPI query for providers

We also have legacy backport providers available for Airflow 1.10.* series: Official Apache Download for backport-providers

And available in PyPI: PyPI query for backport providers.

Note that Backport Providers for Airflow 1.10.* series are not released any more. The last release of Backport Providers was done on March 17, 2021.

Detailed instruction of releasing Provider Packages can be found in the README_RELEASE_PROVIDER_PACKAGES.md

Prerequisites for the release manager preparing the release

The person acting as release manager has to fulfill certain pre-requisites. More details and FAQs are available in the ASF Release Policy but here some important pre-requisites are listed below. Note that release manager does not have to be a PMC - it is enough to be committer to assume the release manager role, but there are final steps in the process (uploading final releases to SVN) that can only be done by PMC member. If needed, the release manager can ask PMC to perform that final step of release.

Upload Public keys to id.apache.org

Make sure your public key is on id.apache.org and in KEYS. You will need to sign the release artifacts with your pgp key. After you have created a key, make sure you:

# Create PGP Key
gpg --gen-key

# Checkout ASF dist repo
svn checkout https://dist.apache.org/repos/dist/release/airflow
cd airflow


# Add your GPG pub key to KEYS file. Replace "Kaxil Naik" with your name
(gpg --list-sigs "Kaxil Naik" && gpg --armor --export "Kaxil Naik" ) >> KEYS


# Commit the changes
svn commit -m "Add PGP keys of Airflow developers"

See this for more detail on creating keys and what is required for signing releases.

http://www.apache.org/dev/release-signing.html#basic-facts

Configure PyPI uploads

In order to not reveal your password in plain text, it's best if you create and configure API Upload tokens. You can add and copy the tokens here:

Create a ~/.pypirc file:

[distutils]
index-servers =
  pypi
  pypitest

[pypi]
username=__token__
password=<API Upload Token>

[pypitest]
repository=https://test.pypi.org/legacy/
username=__token__
password=<API Upload Token>

Set proper permissions for the pypirc file:

chmod 600 ~/.pypirc
  • Install twine if you do not have it already (it can be done in a separate virtual environment).
pip install twine

(more details here.)

  • Set proper permissions for the pypirc file: $ chmod 600 ~/.pypirc

Hardware used to prepare and verify the packages

The best way to prepare and verify the releases is to prepare them on a hardware owned and controlled by the committer acting as release manager. While strictly speaking, releases must only be verified on hardware owned and controlled by the committer, for practical reasons it's best if the packages are prepared using such hardware. More information can be found in this FAQ