Skip to content

Commit

Permalink
Fix docs build re aws changelog (apache#40488)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstandish authored Jun 28, 2024
1 parent 8d5dbaa commit 5ec81b6
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions airflow/providers/amazon/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,16 @@ Bug Fixes
~~~~~~~~~

* Reduce memory footprint of s3 key trigger (#40473)
- Decorator ``provide_bucket_name_async`` removed
* We do not need a separate decorator for async. The old one is removed and users can use ``provide_bucket_name``
for coroutine functions, async iterators, and normal synchronous functions.
- Hook method ``get_file_metadata_async`` is now an async iterator
* Previously, the metadata objects were accumulated in a list. Now the objects are yielded as we page
through the results. To get a list you may use ``async for`` in a list comprehension.
- S3KeyTrigger avoids loading all positive matches into memory in some circumstances

* Decorator ``provide_bucket_name_async`` removed

* We do not need a separate decorator for async. The old one is removed and users can use ``provide_bucket_name`` for coroutine functions, async iterators, and normal synchronous functions.

* Hook method ``get_file_metadata_async`` is now an async iterator

* Previously, the metadata objects were accumulated in a list. Now the objects are yielded as we page through the results. To get a list you may use ``async for`` in a list comprehension.

* S3KeyTrigger avoids loading all positive matches into memory in some circumstances


8.25.0
Expand Down

0 comments on commit 5ec81b6

Please sign in to comment.