This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-3-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 4d2ec8444be937f9e85e7f1ba3540f6f81694bf8 Author: Ephraim Anierobi <[email protected]> AuthorDate: Tue Jul 5 15:44:34 2022 +0100 Update the release note --- RELEASE_NOTES.rst | 21 ++++++++++++++++++++- docs/docker-stack/index.rst | 4 ++-- docs/spelling_wordlist.txt | 1 + newsfragments/23647.bugfix.rst | 1 - 4 files changed, 23 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index ed9ea874af..3791ac7dcd 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -64,8 +64,23 @@ Here is the list of breaking changes in dependencies that comes together with FA Bug Fixes ^^^^^^^^^ +- Fix exception in mini task scheduler (#24865) +- Fix cycle bug with attaching label to task group (#24847) +- Fix timestamp defaults for ``sensorinstance`` (#24638) +- Move fallible ``ti.task.dag`` assignment back inside ``try/except`` block (#24533) (#24592) +- Add missing types to ``FSHook`` (#24470) +- Mask secrets in ``stdout`` for ``airflow tasks test`` (#24362) +- ``DebugExecutor`` use ``ti.run()`` instead of ``ti._run_raw_task`` (#24357) +- Fix bugs in ``URI`` constructor for ``MySQL`` connection (#24320) +- Missing ``scheduleinterval`` nullable true added in ``openapi`` (#24253) +- Unify ``return_code`` interface for task runner (#24093) +- Handle occasional deadlocks in trigger with retries (#24071) +- Remove special serde logic for mapped ``op_kwargs`` (#23860) +- ``ExternalTaskSensor`` respects ``soft_fail`` if the external task enters a ``failed_state`` (#23647) +- Fix ``StatD`` timing metric units (#21106) +- Add ``cache_ok`` flag to sqlalchemy TypeDecorators. (#24499) - Allow for ``LOGGING_LEVEL=DEBUG`` (#23360) -- Fix grid date ticks (#24738) +- Fix grid date ticks (#24738, #24849) - Debounce status highlighting in Grid view (#24710) - Fix Grid vertical scrolling (#24684) - don't try to render child rows for closed groups (#24637) @@ -107,6 +122,7 @@ Bug Fixes Doc only changes ^^^^^^^^^^^^^^^^ +- Fix doc description of ``[core]`` parallelism config setting (#23768) - Update templates doc to mention ``extras`` and format Airflow ``Vars`` / ``Conns`` (#24735) - Document built in Timetables (#23099) - Alphabetizes two tables (#23923) @@ -121,6 +137,9 @@ Doc only changes Misc/Internal ^^^^^^^^^^^^^ +- Do not support ``MSSQL`` less than ``v2017`` in code (#24095) +- Drop Python ``3.6`` compatibility objects/modules (#24048) +- Remove upper-binding for SQLAlchemy (#24819) - Remove internet explorer support (#24495) - Removing magic status code numbers from ``api_connexion`` (#24050) - Upgrade FAB to ``4.1.2`` (#24619) diff --git a/docs/docker-stack/index.rst b/docs/docker-stack/index.rst index ed52625031..87e1f4088c 100644 --- a/docs/docker-stack/index.rst +++ b/docs/docker-stack/index.rst @@ -59,7 +59,7 @@ Those are "reference" regular images. They contain the most common set of extras often used by the users and they are good to "try-things-out" when you want to just take Airflow for a spin, You can also use "slim" images that contain only core airflow and are about half the size of the "regular" images -but you need to add all the :doc:`extra-packages-ref` and providers that you need separately +but you need to add all the extra packages and providers that you need separately via :ref:`Building the image <build:build_image>`. * :subst-code:`apache/airflow:slim-latest` - the latest released Airflow image with default Python version (3.7 currently) @@ -69,7 +69,7 @@ via :ref:`Building the image <build:build_image>`. The Apache Airflow image provided as convenience package is optimized for size, and it provides just a bare minimal set of the extras and dependencies installed and in most cases -you want to either extend or customize the image. You can see all possible extras in :doc:`extra-packages-ref`. +you want to either extend or customize the image. You can see all possible extras in :doc:`apache-airflow:extra-packages-ref`. The set of extras used in Airflow Production image are available in the `Dockerfile <https://github.com/apache/airflow/blob/2c6c7fdb2308de98e142618836bdf414df9768c8/Dockerfile#L37>`_. diff --git a/docs/spelling_wordlist.txt b/docs/spelling_wordlist.txt index fd7a57694d..33a6acdc50 100644 --- a/docs/spelling_wordlist.txt +++ b/docs/spelling_wordlist.txt @@ -1319,6 +1319,7 @@ seealso seedlist segmentGranularity sendgrid +serde serialise serializable serverless diff --git a/newsfragments/23647.bugfix.rst b/newsfragments/23647.bugfix.rst deleted file mode 100644 index d12c1d7046..0000000000 --- a/newsfragments/23647.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -``ExternalTaskSensor`` now supports the ``soft_fail`` flag to skip if external task or DAG enters a failed state.
