Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/airflow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: apache/airflow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: providers-fab/v1-5
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 17 commits
  • 342 files changed
  • 8 contributors

Commits on Dec 22, 2024

  1. Configuration menu
    Copy the full SHA
    eca4ad2 View commit details
    Browse the repository at this point in the history
  2. [providers-fab/v1-5] Add build-images workflow triggering for provide…

    …r branches (#45167) (#45168)
    
    (cherry picked from commit 351ac28)
    potiuk authored Dec 22, 2024
    Configuration menu
    Copy the full SHA
    0b7751d View commit details
    Browse the repository at this point in the history
  3. Sort "opts" element in click option dictionary before hashing (#45156) (

    #45169)
    
    Some impleemntation details of click 8.1.8 caused instability in
    configuration directories that are produced by click config - the
    instability is in sequence of generated "opts" list - the sequence
    of options in it is random.
    
    While it can be likely fixed in later versions, better is to
    protect from it and sort the opts list before hashing the dict.
    
    (cherry picked from commit 1796c40)
    potiuk authored Dec 22, 2024
    Configuration menu
    Copy the full SHA
    7a07994 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2024

  1. [providers-fab/v1-5] Invalidate user session on password reset (#45139)

    * session expire on pass change
    
    * fix statis checks
    
    * add tests
    (cherry picked from commit cf401c4)
    
    Co-authored-by: Shubham Raj <[email protected]>
    shubhamraj-git authored and potiuk committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    c95b84c View commit details
    Browse the repository at this point in the history
  2. Fixing cli test failure in CI (#44679)

    * Fixing cli test failure in CI
    
    * review comments
    
    (cherry picked from commit 98e0977)
    amoghrajesh authored and potiuk committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    17aa106 View commit details
    Browse the repository at this point in the history
  3. Avoid 1.1.8 version of msgraph-core (#45044)

    The 1.1.8 version of msgraph-core is buggy - importing some basic
    classes causes import error "ABCMeta" is not subscriptable.
    
    We are removing the version from azure provider dependencies hoping
    that it will be fixed in the next version.
    
    microsoftgraph/msgraph-sdk-python-core#781
    (cherry picked from commit 3310b86)
    potiuk committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    36defe9 View commit details
    Browse the repository at this point in the history
  4. Fix Google Cloud Datacatalog test (#44037)

    This field (`dataplex_transfer_status`) got added in googleapis/google-cloud-python#13277 as part of `google-cloud-datacatalog==3.22.0`
    
    (cherry picked from commit 060f75f)
    kaxil authored and potiuk committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    2c7e849 View commit details
    Browse the repository at this point in the history
  5. fix google datacatalog operator tests (#44281)

    * fix google datacatalog operator tests
    
    * bump google-cloud-datacatalog
    
    (cherry picked from commit f6bbc63)
    gopidesupavan authored and potiuk committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    ac764d0 View commit details
    Browse the repository at this point in the history
  6. Correctly import isabs from os.path (#45178)

    The #45139 imported isabs from "airflow.www.app" - but isabs has
    been added there fairly recently and it is anyhow stdlib's os.path
    isabs - so it should be imported from there.
    
    This breaks fab 1.5.2 backport compatibility tests, so we need to
    cherry-pick it there alongside #45139
    
    (cherry picked from commit 7002966)
    potiuk committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    111e826 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2024

  1. Configuration menu
    Copy the full SHA
    dc37e55 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2025

  1. Synchronize build scripts with main (#45591)

    Co-authored-by: Jens Scheffler <[email protected]>
    potiuk and jscheffl authored Jan 12, 2025
    Configuration menu
    Copy the full SHA
    7cd571b View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2025

  1. Upgrade to FAB 4.5.3 (#45874) (#45918)

    (cherry picked from commit 573cd95)
    potiuk authored Jan 22, 2025
    Configuration menu
    Copy the full SHA
    bbc8611 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2025

  1. [providers-fab/v1-5] Use different default algorithms for different w…

    …erkzeug versions (#46384) (#46392)
    
    * [providers-fab/v1-5] Use different default algorithms for different werkzeug versions (#46384)
    
    Older werkzeug uses different algorithms for different versions - we
    should match the default algorithm for those versions.
    (cherry picked from commit dafd166)
    
    Co-authored-by: Jarek Potiuk <[email protected]>
    
    * Add evaluation extra to google-cloud-aiplatform (#46270)
    
    The scikit-learn is an optional dependency of the library from
    google and apparently we are using the `evaluation` optional
    feature of it. Adding the extra should make google provider
    depends on scikit-learn.
    
    Closes: #46258
    
    Co-authored-by: Amogh Desai <[email protected]>
    (cherry picked from commit baf54a8)
    
    ---------
    
    Co-authored-by: Jarek Potiuk <[email protected]>
    github-actions[bot] and potiuk authored Feb 4, 2025
    Configuration menu
    Copy the full SHA
    a8e9ca4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94d46c5 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2025

  1. Update dependencies for FAB provider to not be conflicting with 2.11.1 (

    #53029)
    
    There is an upcoming change in dependencies for Airflow 2.11 which
    involves bumping a number of dependencies - including Werkzeug and
    Flask - and we need to release FAB 1.5.4 to account for that.
    potiuk authored Oct 5, 2025
    Configuration menu
    Copy the full SHA
    77732d1 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2025

  1. Better version check for Werkzeug (#56408)

    Werkzeug 3.0.0 deprecated `__version__` and recommends to use
    importlib version to check for version.
    potiuk authored Oct 16, 2025
    Configuration menu
    Copy the full SHA
    3f7f727 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac96f66 View commit details
    Browse the repository at this point in the history
Loading