You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2023/08/14 14:42:25 UTC

[airflow] branch v2-7-test updated (56cc894a8e -> 66072ce433)

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

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


 discard 56cc894a8e fixup! Update RELEASE_NOTES.rst
     new 66072ce433 fixup! Update RELEASE_NOTES.rst

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   (56cc894a8e)
            \
             N -- N -- N   refs/heads/v2-7-test (66072ce433)

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:
 RELEASE_NOTES.rst | 1 +
 1 file changed, 1 insertion(+)


[airflow] 01/01: fixup! Update RELEASE_NOTES.rst

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

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

commit 66072ce43336276c0680e5e1d00d4f8575902121
Author: Ephraim Anierobi <sp...@gmail.com>
AuthorDate: Mon Aug 14 12:16:57 2023 +0100

    fixup! Update RELEASE_NOTES.rst
---
 RELEASE_NOTES.rst                   | 15 +++++++++++++--
 newsfragments/33351.significant.rst |  6 ------
 2 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst
index 6e0140da2f..3622efc36e 100644
--- a/RELEASE_NOTES.rst
+++ b/RELEASE_NOTES.rst
@@ -37,6 +37,13 @@ Old Graph View is removed (#32958)
 """"""""""""""""""""""""""""""""""
 The old Graph View is removed. The new Graph View is the default view now.
 
+The trigger UI form is skipped in web UI with 2.7.0 if no parameters are defined in a DAG (#33351)
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+
+If you are using ``dag_run.conf`` dictionary and web UI JSON entry to run your DAG you should either:
+
+* `Add params to your DAG <https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/params.html#use-params-to-provide-a-trigger-ui-form>`_
+* Enable the new configuration ``show_trigger_form_if_no_params`` to bring back old behaviour
 
 The "db init", "db upgrade" commands and "[database] load_default_connections" configuration options are deprecated (#33136).
 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@@ -141,7 +148,7 @@ New Features
 - Allows to choose SSL context for SMTP connection (#33070)
 - New gantt tab (#31806)
 - Load plugins from providers (#32692)
-- Add ``ExternalBranchPythonOperator`` (#32787)
+- Add ``BranchExternalPythonOperator`` (#32787, #33360)
 - Add option for storing configuration description in providers (#32629)
 - Add an option to use a direct DB connection in KEDA when ``pgbouncer`` is enabled (#32608)
 - Introduce Heartbeat Parameter to Allow ``Per-LocalTaskJob`` Configuration (#32313)
@@ -194,7 +201,7 @@ Improvements
 - Kubernetes Executor Load Time Optimizations (#30727)
 - Save DAG parsing time if dag is not schedulable (#30911)
 - Updates health check endpoint to include ``dag_processor`` status. (#32382)
-- Disable default allowing the testing of connections in UI, API and CLI (#32052)
+- Disable default allowing the testing of connections in UI, API and CLI (#32052, #33342)
 - Fix config var types under the scheduler section (#32132)
 - Allow to sort Grid View alphabetically (#32179)
 - Add hostname to triggerer metric ``[triggers.running]`` (#32050)
@@ -226,6 +233,7 @@ Improvements
 
 Bug Fixes
 """""""""
+- Remove user sessions when resetting password (#33347)
 - ``Gantt chart:`` Use earliest/oldest ti dates if different than dag run start/end (#33215)
 - Fix ``virtualenv`` detection for Python ``virtualenv`` operator (#33223)
 - Correctly log when there are problems trying to ``chmod`` ``airflow.cfg`` (#33118)
@@ -281,6 +289,7 @@ Bug Fixes
 
 Misc/Internal
 """""""""""""
+- Modify pathspec version restriction (#33349)
 - Refactor: Simplify code in ``dag_processing`` (#33161)
 - For now limit ``Pydantic`` to ``< 2.0.0`` (#33235)
 - Refactor: Simplify code in models (#33181)
@@ -332,6 +341,8 @@ Misc/Internal
 
 Docs only changes
 """""""""""""""""
+- Fix links in security docs (#33329)
+- Clarify UI user types in security model (#33021)
 - Add links to ``DAGRun / DAG / Task`` in templates-ref.rst (#33013)
 - Add docs of how to test for DAG Import Errors (#32811)
 - Clean-up of our new security page (#32951)
diff --git a/newsfragments/33351.significant.rst b/newsfragments/33351.significant.rst
deleted file mode 100644
index d8f91c4c20..0000000000
--- a/newsfragments/33351.significant.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-The trigger UI form is skipped in web UI with 2.7.0 if no parameters are defined in a DAG.
-
-If you are using ``dag_run.conf`` dictionary and web UI JSON entry to run your DAG you should either:
-
-* `Add params to your DAG <https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/params.html#use-params-to-provide-a-trigger-ui-form>`_
-* Enable the new configuration ``show_trigger_form_if_no_params`` to bring back old behaviour