You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2020/12/12 09:34:06 UTC

[airflow] branch v2-0-test updated (442f630 -> c77bc2c)

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

ash pushed a change to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.


 discard 442f630  Array declaration cannot be done inside function for DockerHub
 discard 7252935  Updates providers versions to 1.0.0 (#12955)
 discard 4527ddc  Update default versions v2-0-test in the 2.0 branch (#12962)
     add 4fe156f  Remove unused pre-commit and Fix CI (#12964)
     add 32971a1  Updates providers versions to 1.0.0 (#12955)
     add db166ba  Update CI to run tests againt v2-0-test branch (#10891)
     add 28b7ebc  Remove duplicate docs for check-hooks-apply pre-commit (#12973)
     add e5ce657  Cleaned up formatting for Upgrading doc (#12977)
     add fbd8348  Allow all default roles to view Profile page + allow editing profile/resetting password for DB-ModelView. (#12971)
     add 056fe81  Fix command to filter package provider when building docs (#12984)
     add a8ded09  Remove trailing back-tick from docs (#12986)
     add 1a0e0bc  Array declaration cannot be done inside function for DockerHub (#12967)
     add c43f87e  Enhanced doc to cover ignoring rules and adding custom rules (#12974)
     add 0b1bfac  Purge deleted files from S3 bucket (#12947)
     add d84faa3  Update Dockerfile.ci (#12988)
     add 2ec03cd  Update Dockerfile (#12987)
     add aa58ef1  Download inventories only once (#12989)
     add 5752821  Promote new flags in ./docs/build_docs.py (#12991)
     add 969d3ea  Add changes from 1.10.14 (#12993)
     add aadecf7  Less verbose output for docs build (#12994)
     add 1fafc8b  Display progress for docs build (#13000)
     add 81a1305  Trigger provider-yamls check on docs change (#12998)
     add 2efd9ff  Fix failing master (#13001)
     add 08faa9d  Detect invalid package fiiters (#12996)
     add 5495ab0  Fix broken build of docs/ by removing unused import (#13007)
     add 3fbc8e6  Add asctime to spelling wordlist (#13010)
     add 0ffd5fa  Added database upgrade information to upgrade doc (#13005)
     add ab250ec  Simplify release process for PyPI snapshots (#13020)
     add 5057f56  Handle None values properly when CLI output is YAML/JSON format (#13024)
     add 15fd1bc  Switching to standard --tag-build flag in setuptools in providers (#13021)
     add baa68ca  Adds customized_form_field_behaviours.schema.json to MANIFEST.in (#13031)
     add 1a56a58  Bump ini from 1.3.5 to 1.3.8 in /airflow/www (#13030)
     add b6678fa  Added information about currently supported Python versions (#13029)
     add f015296  Add more links to navbar for production docs (#12953)
     new c77bc2c  Update default versions v2-0-test in the 2.0 branch (#12962)

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   (442f630)
            \
             N -- N -- N   refs/heads/v2-0-test (c77bc2c)

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:
 .github/workflows/ci.yml                           | 22 +++--
 .gitignore                                         |  4 +-
 .pre-commit-config.yaml                            |  8 +-
 BREEZE.rst                                         | 10 +--
 CHANGELOG.txt                                      | 34 ++++++++
 CI.rst                                             |  8 +-
 Dockerfile                                         |  9 ++-
 Dockerfile.ci                                      |  4 +-
 IMAGES.rst                                         | 22 ++---
 MANIFEST.in                                        |  1 +
 README.md                                          | 10 +--
 STATIC_CODE_CHECKS.rst                             |  2 -
 UPDATING.md                                        | 73 +++++++++++++++--
 airflow/cli/simple_table.py                        |  2 +
 airflow/security/permissions.py                    | 12 +++
 airflow/www/security.py                            | 11 +++
 airflow/www/yarn.lock                              |  6 +-
 breeze                                             |  8 +-
 breeze-complete                                    |  1 +
 codecov.yml                                        |  2 +
 dev/README_RELEASE_AIRFLOW.md                      | 12 +--
 dev/README_RELEASE_PROVIDER_PACKAGES.md            | 12 +--
 dev/provider_packages/SETUP_TEMPLATE.py.jinja2     | 21 +----
 dev/provider_packages/prepare_provider_packages.py |  4 +-
 docs/apache-airflow/installation.rst               |  9 ++-
 docs/apache-airflow/production-deployment.rst      | 62 +++++++--------
 docs/apache-airflow/upgrade-check.rst              | 49 ++++++++++++
 docs/apache-airflow/upgrading-to-2.rst             | 50 ++++++++----
 docs/build_docs.py                                 | 79 +++++++++++++-----
 docs/conf.py                                       | 14 +++-
 docs/exts/airflow_intersphinx.py                   | 45 +++--------
 docs/exts/docs_build/docs_builder.py               | 26 ++++--
 docs/exts/docs_build/fetch_inventories.py          | 93 ++++++++++++++++++++++
 .../exts/docs_build/package_filter.py              | 34 ++++----
 docs/publish_docs.py                               |  8 +-
 docs/spelling_wordlist.txt                         |  3 +
 scripts/ci/constraints/ci_branch_constraints.sh    |  2 +
 scripts/in_container/_in_container_utils.sh        | 10 ++-
 .../in_container/run_prepare_provider_packages.sh  | 23 +++---
 39 files changed, 559 insertions(+), 246 deletions(-)
 create mode 100644 docs/exts/docs_build/fetch_inventories.py
 copy airflow/contrib/hooks/gcp_compute_hook.py => docs/exts/docs_build/package_filter.py (51%)


[airflow] 01/01: Update default versions v2-0-test in the 2.0 branch (#12962)

Posted by as...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c77bc2cfa5b0a2df085a8898328fcbb6c8fc0cd0
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Wed Dec 9 20:25:02 2020 +0100

    Update default versions v2-0-test in the 2.0 branch (#12962)
---
 Dockerfile                              | 2 +-
 scripts/ci/libraries/_initialization.sh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 3a4771a..4f82e87 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -160,7 +160,7 @@ ARG AIRFLOW_EXTRAS
 ARG ADDITIONAL_AIRFLOW_EXTRAS=""
 ENV AIRFLOW_EXTRAS=${AIRFLOW_EXTRAS}${ADDITIONAL_AIRFLOW_EXTRAS:+,}${ADDITIONAL_AIRFLOW_EXTRAS}
 
-ARG AIRFLOW_CONSTRAINTS_REFERENCE="constraints-master"
+ARG AIRFLOW_CONSTRAINTS_REFERENCE="constraints-2-0"
 ARG AIRFLOW_CONSTRAINTS_LOCATION="https://raw.githubusercontent.com/apache/airflow/${AIRFLOW_CONSTRAINTS_REFERENCE}/constraints-${PYTHON_MAJOR_MINOR_VERSION}.txt"
 ENV AIRFLOW_CONSTRAINTS_LOCATION=${AIRFLOW_CONSTRAINTS_LOCATION}
 
diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh
index fa138e1..097b960 100644
--- a/scripts/ci/libraries/_initialization.sh
+++ b/scripts/ci/libraries/_initialization.sh
@@ -185,8 +185,8 @@ function initialization::initialize_base_variables() {
 # Determine current branch
 function initialization::initialize_branch_variables() {
     # Default branch used - this will be different in different branches
-    export DEFAULT_BRANCH=${DEFAULT_BRANCH="master"}
-    export DEFAULT_CONSTRAINTS_BRANCH=${DEFAULT_CONSTRAINTS_BRANCH="constraints-master"}
+    export DEFAULT_BRANCH=${DEFAULT_BRANCH="v2-0-test"}
+    export DEFAULT_CONSTRAINTS_BRANCH=${DEFAULT_CONSTRAINTS_BRANCH="constraints-2-0"}
     readonly DEFAULT_BRANCH
     readonly DEFAULT_CONSTRAINTS_BRANCH