Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync v2-9-stable with v2-9-test to release 2.9.3 #40546

Merged
merged 85 commits into from
Jul 12, 2024
Merged

Commits on Jul 1, 2024

  1. Improve trigger UI for string array format validation (#39993)

    * Improve trigger UI for string array format validation
    
    The schema argument in a Param definition is used to detemine the
    relevant UI element. When the type of a Param is `array` a simple
    textarea is rendered. When additionally a schema for the items of
    the array is provided, the UI element previously switched to a
    CodeMirror box that expects pure JSON inputs. For strings a textarea
    is presented now, to keep the same behaviour than without a format
    definition.
    
    Besides that the jinja template now accesses the `items` member of the
    schema correctly to avoid problems with empty `items` arrays.
    
    * Add details about the attribute `items` for the type `array`
    
    (cherry picked from commit 914bccc)
    techolga authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    d4d5cd6 View commit details
    Browse the repository at this point in the history
  2. Update index.rst (#40040)

    Remove the word "docker-compose" in PyPI section.
    
    (cherry picked from commit 32cf8cf)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    5d308b6 View commit details
    Browse the repository at this point in the history
  3. Fix typos in overview.rst (#40061)

    (cherry picked from commit 9bcf665)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    5f77291 View commit details
    Browse the repository at this point in the history
  4. Docs: Simpler command to check local scheduler is alive (#40074)

    (cherry picked from commit 16e0182)
    jedcunningham authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    d414c9e View commit details
    Browse the repository at this point in the history
  5. Fix grammar in dags.rst (#40085)

    * Fix grammer dags.rst
    
    To say "add Operator/Task to the DAG" even though DAG is an argument of Operator constructor, and use the word "with statement" explicitly instead of context manger to be friendly to Python beginner.
    
    * Fix grammer in dags.rst
    
    Because there is a direction in relationship, it's somehow confuse to say that they depend on each other.
    
    * Fix grammer in dags.rst
    
    (cherry picked from commit b03aa6c)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    5837721 View commit details
    Browse the repository at this point in the history
  6. fix typo in example_params_ui_tutorial (#40094)

    (cherry picked from commit a31b10e)
    noel-gallagher authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    e9d3722 View commit details
    Browse the repository at this point in the history
  7. Remove apt-transport-https because It is a dummy transitional package(#…

    …40015)
    
    Remove apt-transport-https because It is a dummy transitional package.
    
    (cherry picked from commit 0e8d823)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    2030b5f View commit details
    Browse the repository at this point in the history
  8. Use a join for TI notes in TI batch API endpoint (#40028)

    (cherry picked from commit 4723dbe)
    jedcunningham authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    60c0c7a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b868630 View commit details
    Browse the repository at this point in the history
  10. Upgrade to codecov@v4 (#40128)

    Codecov3 uses deprecated node version and generates warnings.
    
    (cherry picked from commit 27579cb)
    potiuk authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    67a3cb0 View commit details
    Browse the repository at this point in the history
  11. Fix highlight of example code in dags.rst (#40114)

    highlight task_group decorator and dependency between task and task group.
    
    (cherry picked from commit 340d6b0)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    be1c93e View commit details
    Browse the repository at this point in the history
  12. Fix typo in providers_manager.py (#40157)

    Signed-off-by: Kacper Muda <mudakacper@gmail.com>
    (cherry picked from commit 072c63b)
    kacpermuda authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    309440d View commit details
    Browse the repository at this point in the history
  13. Fix minor typo in dags.rst (#40169)

    (cherry picked from commit e9e3c93)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    a724ff5 View commit details
    Browse the repository at this point in the history
  14. Bump braces from 3.0.2 to 3.0.3 in /airflow/www (#40180)

    Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
    - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
    - [Commits](micromatch/braces@3.0.2...3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: braces
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    (cherry picked from commit 1533ba6)
    dependabot[bot] authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    56f2ee3 View commit details
    Browse the repository at this point in the history
  15. Ensures DAG params order regardless of backend (#40156)

    * Ensures DAG params order regardless of backend
    
    Fixes #40154
    
    This change adds an extra attribute to the serialized DAG param objects which helps us decide
    the order of the deserialized params dictionary later even if the backend messes with us.
    
    I decided not to limit this just to MySQL since the operation is inexpensive and may turn
    out to be helpful.
    
    I made sure the new test fails with the old implementation + MySQL. I assume this test will be
    executed with MySQL somewhere in the build actions?
    
    * Removes GitHub reference
    
    Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
    
    * Serialize DAG params as array of tuples to ensure ordering
    
    Alternative to previous approach: We serialize the DAG params dict as a list of tuples which _should_ keep their ordering regardless of backend.
    
    Backwards compatibility is ensured because if `encoded_params` is a `dict` (not the expected `list`) then `dict(encoded_params)` still works.
    
    * Make backwards compatibility more explicit
    
    Based on suggestions by @uranusjr with an additional fix to make mypy happy.
    
    ---------
    
    Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
    (cherry picked from commit 2149b4d)
    Usiel authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    92777ad View commit details
    Browse the repository at this point in the history
  16. doc: metrics allow_list complet example (#40120)

    Co-authored-by: raphaelauv <raphaelauv@users.noreply.github.com>
    (cherry picked from commit 205ad57)
    raphaelauv authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    d4fae59 View commit details
    Browse the repository at this point in the history
  17. Fix import future annotations in venv jinja template (#40208)

    (cherry picked from commit d5a7544)
    phi-friday authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    47b5bb6 View commit details
    Browse the repository at this point in the history
  18. Fix typo in tasks.rst (#40228)

    (cherry picked from commit 2587295)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    b6b076a View commit details
    Browse the repository at this point in the history
  19. Fix dag task scheduled and queued duration metrics (#37936)

    (cherry picked from commit bffb7b0)
    htpawel authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    4d94071 View commit details
    Browse the repository at this point in the history
  20. Add slightly more detailed guidance about upgrading to the docs (#40227)

    ---------
    
    Signed-off-by: merobi-hub <merobi@gmail.com>
    (cherry picked from commit 16b17f7)
    merobi-hub authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    800b63a View commit details
    Browse the repository at this point in the history
  21. Fix typo in index.rst (#40245)

    (cherry picked from commit f5079db)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    7202f27 View commit details
    Browse the repository at this point in the history
  22. Change httpx to requests in file_task_handler (#39799)

    * Change httpx to requests in file_task_handler
    
    - httpx does not support CIDRs in NO_PROXY
    - simply, convert httpx to requests, issues done
    - related issue: #39794
    
    * Add cidr no_proxy test test_log_handlers.py
    
    * Apply monkeypatch fixture
    
    ---------
    
    Co-authored-by: scott-py <scott.py@kakaocorp.com>
    (cherry picked from commit 1ddadf5)
    softyoungha authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    81dd423 View commit details
    Browse the repository at this point in the history
  23. Fix typo in xcoms.rst (#40265)

    (cherry picked from commit 5690439)
    bangjiehan authored and utkarsharma2 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    66d5369 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Swap dag run link from legacy graph to grid with graph tab (#40241)

    (cherry picked from commit 7ecbf39)
    bbovenzi authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    766f1c7 View commit details
    Browse the repository at this point in the history
  2. Add [webserver]update_fab_perms to deprecated configs (#40317)

    * Add `[webserver]update_fab_perms` to deprecated configs
    
    `[webserver]update_fab_perms` is deprecated in favour of `[fab]update_fab_perms` and has been a breaking change since 2.9.0. This PR adds the config to the deprecated config list to properly inform users and have both options work at the moment
    
    * Move provider config loading into init_appbuilder
    
    * Remove deprecated webserver config options from config.yml
    
    * Remove fallbacks
    
    * Remove update_fab_perms and return the provider initialization
    
    * Include FAB config in core configuration reference
    
    * Update docs/apache-airflow/faq.rst
    
    * Fix doc build error
    
    (cherry picked from commit e24b7c1)
    ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    d420d79 View commit details
    Browse the repository at this point in the history
  3. Fix TriggeredDagRunOperator triggered link (#40336)

    * Fix TriggeredDagRunOperator triggered link
    
    Link to the specific dag run id that was triggered, as opposed to the
    logical date, such that the instance that was triggered on the DAG grid
    UI.
    
    * Add comment regarding triggered dag xcom
    
    (cherry picked from commit 806bb80)
    fredthomsen authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    39da6ce View commit details
    Browse the repository at this point in the history
  4. fix typos in example of DAG parameters (#40400)

    * fix: typo in example_params_ui_tutorial.py (des -> does)
    
    Modify "des not allow" to "does not allow"
    
    * fix typo in example of DAG parameters
    
    Modify a line of example_params_ui_tutorial.py to remove a trailing '.e' at the end of a comment.
    Before:
    # Note: Value display mapping does not need to be complete.s
    After:
    # Note: Value display mapping does not need to be complete
    
    (cherry picked from commit e8a8208)
    le-chartreux authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    a3a6b81 View commit details
    Browse the repository at this point in the history
  5. docs: fix typo in upgrading.rst (#40399)

    (cherry picked from commit 3133c33)
    marekhanus authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    6f0cc67 View commit details
    Browse the repository at this point in the history
  6. fix(statsd): handle unsupport operand int + str when value of tag is …

    …int (job_id) (#40407)
    
    (cherry picked from commit 19baf9c)
    DLT1412 authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    a8a47b0 View commit details
    Browse the repository at this point in the history
  7. extra being passed to SQLalchemy (#40391)

    The edit prefills an empty extra field (None)
    with a empty dictionary, which is decoded
    to an extra field being passed in the con url.
    
    (cherry picked from commit a856ed4)
    aritra24 authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    7d2f50b View commit details
    Browse the repository at this point in the history
  8. Add more precise description of maskiing sensitive field names (#40512)

    (cherry picked from commit dc03889)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    def9c08 View commit details
    Browse the repository at this point in the history
  9. Fix dag (un)pausing won't work on environment where dag files are mis…

    …sing (#40345)
    
    closes: #38834
    
    #38265 added bulk pause and resume of DAGs. However, this PR seems to reuse the cli util method that collects DAGs from the default dag folder but not from the metadata DB. Hence, this would cause the unpause command to fail on environments where the dag folder is missing.
    (cherry picked from commit e3d62c3)
    boushphong authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    23ca6fa View commit details
    Browse the repository at this point in the history
  10. fix typo and path to licences folder (#40067)

    (cherry picked from commit fcb9f87)
    
    Update commands hashs
    uzhastik authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    0467c41 View commit details
    Browse the repository at this point in the history
  11. Fix compatibility with old MySQL 8.0 (#40314)

    (cherry picked from commit 5221196)
    
    Update diagram
    jedcunningham authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    cdc0da2 View commit details
    Browse the repository at this point in the history
  12. Validating provider description for urls in provider list view (#40475)

    * Validating provider description for urls in provider list view
    
    * adding unit tests
    
    ---------
    
    Co-authored-by: adesai <adesai@cloudera.com>
    (cherry picked from commit f18f484)
    amoghrajesh authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    6ca21da View commit details
    Browse the repository at this point in the history
  13. revamp some confusing log messages (#40334)

    (cherry picked from commit 34e7cab)
    RNHTTR authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    8673802 View commit details
    Browse the repository at this point in the history
  14. uv version bump to 0.2.3 (#39848)

    * uv version bump 0.2.3
    
    * uv version bump 0.2.3
    
    (cherry picked from commit cda4a86)
    dirrao authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    5745bdf View commit details
    Browse the repository at this point in the history
  15. Upgrade to latest installers (#40107)

    (cherry picked from commit 0c51bd6)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    596377b View commit details
    Browse the repository at this point in the history
  16. Fix openai 1.32 breaking openai tests (#40110)

    The new openai release adds new required parameter `parallel_tool_calls`
    and our mock did not have it. Bumping version and adding the parameter
    should solve the problem. It turned out also that uv==0.2.6 introduced
    a bug for lowest-direct resolution, so we need to limit it to 0.2.5.
    
    Details in astral-sh/uv#4136
    
    (cherry picked from commit 65dbf86)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    07322d8 View commit details
    Browse the repository at this point in the history
  17. Upgrade build installers and dependencies (#40177)

    We can now remove the 0.2.5 limit on uv after the issue we opened
    astral-sh/uv#4136 has been addressed in 0.2.10
    
    (cherry picked from commit 7c4ea23)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    09d2c33 View commit details
    Browse the repository at this point in the history
  18. Update to uv 0.2.11 (#40244)

    (cherry picked from commit 3014165)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    6f8749d View commit details
    Browse the repository at this point in the history
  19. Update uv to 0.2.13 (#40344)

    (cherry picked from commit 8217bec)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    d070bac View commit details
    Browse the repository at this point in the history
  20. Add notes about passing secrets via environment variables (#40519)

    (cherry picked from commit 07e6eb8)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    f261b48 View commit details
    Browse the repository at this point in the history
  21. Fix calendar view scroll (#40458)

    (cherry picked from commit acdac24)
    bbovenzi authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    4e2e651 View commit details
    Browse the repository at this point in the history
  22. fix: disable jinja2 rednering for doc_md (#40522)

    (cherry picked from commit 8159f6e)
    Lee-W authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    7feb494 View commit details
    Browse the repository at this point in the history
  23. Upgrade pip to just-released 24.1 (#40367)

    Beta versions have been tested previously with #40184
    
    (cherry picked from commit 9dc521e)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    09fb619 View commit details
    Browse the repository at this point in the history
  24. Update uv to 0.2.15 (#40411)

    (cherry picked from commit bd18585)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    ff4983b View commit details
    Browse the repository at this point in the history
  25. Upgrade to latest pip and uv version (#40463)

    (cherry picked from commit a956e30)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    9b3632b View commit details
    Browse the repository at this point in the history
  26. uv version bump 0.2.18 (#40501)

    (cherry picked from commit da5fed9)
    dirrao authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    89240ef View commit details
    Browse the repository at this point in the history
  27. Upgrade to latest version of hatchling as build dependency (#40387)

    (cherry picked from commit 0779d9f)
    potiuk authored and ephraimbuddy committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    8cefa62 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Update trove classifiers to the latest version as build dependency (#…

    …40542)
    
    (cherry picked from commit fb4bcaa)
    potiuk authored and utkarsharma2 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    6ebf86e View commit details
    Browse the repository at this point in the history
  2. Update version to 2.9.3

    utkarsharma2 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    698d819 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Rename "try_number" increments that are unrelated to the airflow conc…

    …ept (#39317)
    
    This avoids some confusion and false positives when looking for try_number mutation in the database.
    
    (cherry picked from commit 4fa9fe1)
    dstandish authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    e351579 View commit details
    Browse the repository at this point in the history
  2. Fixup python client release guide (#39182)

    This also fixes 1 line in the vote email for Airflow core.
    
    (cherry picked from commit 665da50)
    jedcunningham authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    4d23d6c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    920979e View commit details
    Browse the repository at this point in the history
  4. Update to latest pre-commit (#40529)

    (cherry picked from commit de60b7b)
    potiuk authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    1f12c1f View commit details
    Browse the repository at this point in the history
  5. Fix typing in telegram provider (#40255)

    The python-telegram-bot new version has typing added and we should
    pass the right dict type to it.
    
    (cherry picked from commit bc4ca9d)
    potiuk authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    bee97f1 View commit details
    Browse the repository at this point in the history
  6. Working fix for typing in telegram provider (#40258)

    The python-telegram-bot new version has typing added and we should
    pass the right dict type to it. The #40255 was an unsuccessful
    attempt to fix it, this one actually fixes it.
    
    (cherry picked from commit 1451bac)
    potiuk authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    4f3cb55 View commit details
    Browse the repository at this point in the history
  7. Introduce anonymous credentials in GCP base hook (#39695)

    (cherry picked from commit 27b3a22)
    shahar1 authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    9f5b2c1 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    40abcc2 View commit details
    Browse the repository at this point in the history
  9. Fix mypy problems in new waeviate client (#40330)

    The new waeviate client (4.6.5) has more typing information and it
    causes Waeviate Hook to fail mypy check. This PR fixes it.
    
    (cherry picked from commit d048122)
    potiuk authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    f94ea02 View commit details
    Browse the repository at this point in the history
  10. Add a note and an example clarifying the usage of DAG-level params (#…

    …40541)
    
    (cherry picked from commit 8bdd0e7)
    Dev-iL authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    dcea26c View commit details
    Browse the repository at this point in the history
  11. MSSQL-DOC-FIX (#40565)

    Co-authored-by: khalidzohaib <hello@zohaibkhalid.com>
    (cherry picked from commit 4d97461)
    khalidzohaib authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    b5598c0 View commit details
    Browse the repository at this point in the history
  12. Remove "experimental" banner for OTel Metrics (#40286)

    (cherry picked from commit d5c1fc2)
    ferruzzi authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    07ea2d3 View commit details
    Browse the repository at this point in the history
  13. uv version bump 0.2.22 (#40641)

    (cherry picked from commit 296187e)
    dirrao authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    7d1d4f4 View commit details
    Browse the repository at this point in the history
  14. Update pip to just upgraded 24.1.2 (#40647)

    (cherry picked from commit 9a8b2d2)
    potiuk authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    5f8012e View commit details
    Browse the repository at this point in the history
  15. Pin requests due to incompatibility with docker-py (#39740)

    * Pin requests due to incompatibility with docker-py
    
    * fix
    
    (cherry picked from commit 1da7f1f)
    eladkal authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    ba125b3 View commit details
    Browse the repository at this point in the history
  16. Limit requests in botocore upgrade test (#39747)

    The botocore upgrade test brings also requests to latest version
    even if it is limited in `[docker]` extra after #39740. This PR
    adds similar limit when botocore is upgraded.
    
    (cherry picked from commit 39269d6)
    potiuk authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    63353ea View commit details
    Browse the repository at this point in the history
  17. Bump docker version to 7.1.0 (#39839)

    * Bump docker and requests versions
    
    * fixup! Bump docker and requests versions
    
    ---------
    
    Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
    (cherry picked from commit aec3f80)
    eladkal authored and utkarsharma2 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    66ea83f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    344ec65 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Fix latest botocore tests to not conflict with apache-beam provider (#…

    …40502)
    
    The apache-beam provider has certain expectations about requests
    that need to be included when we manually bump botocore to the
    latest version - to test if the latest version still works with
    non-aiobotocore tests.
    
    Added the requests reqiurement from apache.beam and also improved
    the comment on botocore update to explain where the requirements
    come from - also added displaying the actual command that is
    run to upgrade botocore..
    
    (cherry picked from commit 54dfead)
    potiuk authored and utkarsharma2 committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    f759c6f View commit details
    Browse the repository at this point in the history
  2. Fix typo when uninstalling weaviate for Pydantic 1 tests (#40259)

    Weaviate 4 requires Pydantic v2, and we currently limit weaviate to
    4+. There was already removal of weaviate for Pydantic 1, but it
    had a typo which caused the weaviate-client not to be uninstalled.
    
    (cherry picked from commit cb372e5)
    potiuk authored and utkarsharma2 committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    9f2eda1 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Fix param order in PythonOperator docstring (#40122)

    (cherry picked from commit b49db97)
    jedcunningham authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    6e805ca View commit details
    Browse the repository at this point in the history
  2. Recognize quotes when parsing urls in logs (#40508)

    ---------
    
    Co-authored-by: Jacob Lee <seungmin_lee3@apple.com>
    (cherry picked from commit 2f9b23d)
    smlee729 authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    2179f2a View commit details
    Browse the repository at this point in the history
  3. Further clarify triage process (#40536)

    * Further clarify triage process
    
    * update
    
    * update
    
    (cherry picked from commit 90a6d7f)
    eladkal authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    b3b78e8 View commit details
    Browse the repository at this point in the history
  4. Update best-practices.rst (#40505)

    - minor rephrase of example
    
    (cherry picked from commit 5b2becb)
    simi authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    868e38b View commit details
    Browse the repository at this point in the history
  5. Remove logging for "blocked" events (#40446)

    (cherry picked from commit ed6849e)
    ayushjain2809 authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    6fdbe23 View commit details
    Browse the repository at this point in the history
  6. Fix bug in SchedulerJobRunner._process_executor_events (#40563)

    (cherry picked from commit a8c4830)
    vincbeck authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    21ed1bb View commit details
    Browse the repository at this point in the history
  7. Fix import statement for DatasetOrTimetable example (#40601)

    Fix import statement for DatasetOrTimetable example
    
    (cherry picked from commit a984d97)
    steffidlf authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    041ba02 View commit details
    Browse the repository at this point in the history
  8. Update serializers.rst (#40597)

    Mention that ``serialize`` cannot return bytes
    
    (cherry picked from commit 49ded9f)
    CaselIT authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    964abfd View commit details
    Browse the repository at this point in the history
  9. Updating airflow download links to CDN based links (#40618)

    (cherry picked from commit 77a9850)
    amoghrajesh authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    fac4962 View commit details
    Browse the repository at this point in the history
  10. Skip checking subdagslist if taskinstance state is skipped (#40578)

    * Skip checking subdagslist if taskinstance state is skipped
    
    * linter fixes
    
    (cherry picked from commit ec5da92)
    abhishekbhakat authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    7f7d638 View commit details
    Browse the repository at this point in the history
  11. Add warning about the PostgresOperator being deprecated (#40662)

    PostgresOperator's reference page says it's deprecated. I am not knowledgeable enough to write a tutorial. I think if someone reads the guide (I linked to in my change) they will be able to use this tutorial as well.
    
    (cherry picked from commit a10ac28)
    a1ea321 authored and utkarsharma2 committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    f0cb571 View commit details
    Browse the repository at this point in the history
  12. Update RELEASE_NOTES.rst

    Update release notes
    
    Update RELEASE_NOTES.rst
    
    Update release notes
    
    Update RELEASE_NOTES
    
    Fix static checks
    
    Update RELEASE_NOTES.rst
    
    Updated release date
    
    Fix static check
    
    update release notes
    utkarsharma2 authored and ephraimbuddy committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    e847879 View commit details
    Browse the repository at this point in the history
  13. Fix typing issue with new version of types-docutils released` (#40727)

    (cherry picked from commit 97b88fd)
    potiuk authored and ephraimbuddy committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    81845de View commit details
    Browse the repository at this point in the history