This is an automated email from the ASF dual-hosted git repository. jedcunningham pushed a commit to branch v2-2-test in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-2-test by this push: new e698cc2 Add changelog for 2.2.1 e698cc2 is described below commit e698cc21dc221dfdbfb18de0f40af27623264ddc Author: Jed Cunningham <66968678+jedcunning...@users.noreply.github.com> AuthorDate: Wed Oct 20 18:10:16 2021 -0600 Add changelog for 2.2.1 --- CHANGELOG.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 13e58fe..abcead9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,37 @@ +Airflow 2.2.1, 2021-10-25 +------------------------- + +Bug Fixes +""""""""" + +- Update taskinstance REST API schema to include dag_run_id field (#19105) +- Fix catchup by limiting queued dagrun creation using max_active_runs (#18897) +- Prevent scheduler crash when serialized dag is missing (#19113) +- Don't install SQLAlchemy/Pendulum adapters for other DBs (#18745) +- Workaround libstdcpp TLS error (#19010) +- Change `ds`, `ts`, etc. back to use logical date (#19088) +- Ensure task state doesn't change when marked as failed/success/skipped (#19095) +- Relax packaging requirement (#19087) +- Rename trigger page label to Logical Date (#19061) +- Allow Param to support a default value of ``None`` (#19034) +- Upgrade old DAG/task param format when deserializing from the DB (#18986) +- Don't bake ENV and _cmd into tmp config for non-sudo (#18772) +- CLI: Fail ``backfill`` command before loading DAGs if missing args (#18994) +- BugFix: Null execution date on insert to ``task_fail`` violating NOT NULL (#18979) +- Try to move "dangling" rows in upgradedb (#18953) +- Row lock TI query in SchedulerJob._process_executor_events (#18975) +- Sentry before send fallback (#18980) +- Fix XCom.delete error in Airflow 2.2.0 (#18956) +- Check python version before starting triggerer (#18926) + +Doc only changes +"""""""""""""""" + +- Update access control documentation for TaskInstances and DagRuns (#18644) +- Add information about keepalives for managed Postgres (#18850) +- Doc: Add Callbacks Section to Logging & Monitoring (#18842) +- Group PATCH DAGrun together with other DAGRun endpoints (#18885) + Airflow 2.2.0, 2021-10-11 -------------------------