Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
3fcf26d
Fix the docs rendering (#1742)
pankajastro May 5, 2025
ab4d7b4
⬆ [pre-commit.ci] pre-commit autoupdate (#1744)
pre-commit-ci[bot] May 6, 2025
4bf48f0
Re-enable integration tests durations to troubleshoot performance deg…
tatiana May 6, 2025
0f9fd21
Run listener tests in Airflow 3 (#1743)
pankajastro May 6, 2025
b72ed3a
Fix `full_refresh` parameter in `AIRFLOW_ASYNC` execution config mode…
tuantran0910 May 6, 2025
6150452
[Bugfix Docs]: Custom Callback Example Corrected (#1747)
walter9388 May 6, 2025
2758364
Fix dbt ls invocation method log message (#1749)
tatiana May 7, 2025
98998be
Add Airflow3 db files to ignore from git tracking (#1755)
pankajkoti May 8, 2025
d7b4512
⬆ [pre-commit.ci] pre-commit autoupdate (#1765)
pre-commit-ci[bot] May 13, 2025
38e9e88
Ensure remote target directory are created when copying files when us…
tuantran0910 May 19, 2025
51ae8ab
Support custom `packages-install-path` (#1768)
tatiana May 19, 2025
b0103bf
⬆ [pre-commit.ci] pre-commit autoupdate (#1770)
pre-commit-ci[bot] May 20, 2025
fa5b8db
Log contents of `packages.yml` when `AIRFLOW__LOGGING__LOGGING_LEVEL=…
tatiana May 20, 2025
8e6c08f
Disable dbt static parser during Airflow task execution using dbt run…
pankajkoti May 20, 2025
a3a4532
Fix Airflow dependencies in the CI (#1773)
tatiana May 20, 2025
0facfdf
Fix `ExecutionMode.LOCAL` to leverage `ProjectConfig.manifest_path` (…
tatiana May 20, 2025
f0c2e92
Refactor `AIRFLOW_ASYNC` so that the path in the remote object store …
tuantran0910 May 21, 2025
ba90c9b
Optimise memory usage with optional explicit imports (#1769)
pankajkoti May 21, 2025
430be00
Add Changelog for 1.10.1
pankajkoti May 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ dev/dags/.airflowignore
# Local Airflow standalone
airflow.cfg
airflow.db
airflow.db-shm
airflow.db-wal
standalone_admin_password.txt
simple_auth_manager_passwords.json.generated
webserver_config.py
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ repos:
- --py37-plus
- --keep-runtime-typing
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.7
rev: v0.11.10
hooks:
- id: ruff
args:
Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
Changelog
=========

1.10.1 (2025-05-21)
---------------------

Bug Fixes

* Fix ``full_refresh`` parameter in ``AIRFLOW_ASYNC`` ``ExecutionConfig`` mode by @tuantran0910 in #1738
* Fix dbt ls invocation method log message by @tatiana and @dstandish in #1749
* Ensure remote target directory is created when copying files when using local directory by @tuantran0910 and @corsettigyg in #1740
* Support custom ``packages-install-path`` by @tatiana in #1768
* Disable dbt static parser during Airflow task execution using dbt runner by @pankajkoti and @tatiana in #1760
* Fix ``ExecutionMode.LOCAL`` to leverage ``ProjectConfig.manifest_path`` by @tatiana in #1772
* Refactor ``AIRFLOW_ASYNC`` so that the path in the remote object store is specific per DAG run by @tuantran0910 in #1741
* Optimise memory usage with optional explicit imports by @pankajkoti and @tatiana in #1769

Documentation

* Fix documentation rendering for ``use_dataset_airflow3_uri_standard`` by @pankajastro in #1742
* Correct custom callback example by @walter9388 in #1747

Others

* Re-enable integration tests durations to troubleshoot performance degradation by @tatiana in #1735
* Run listener tests for Airflow 3 by @pankajastro in #1743
* Add Airflow 3 db files to ignore from git tracking by @pankajkoti in #1755
* Log contents of ``packages.yml`` when ``AIRFLOW__LOGGING__LOGGING_LEVEL=DEBUG`` by @tatiana in #1764
* Fix Airflow dependencies in the CI by @tatiana in #1773
* Pre-commit updates: #1744, #1765, #1770


1.10.0 (2025-05-01)
---------------------

Expand Down
Loading
Loading