This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 83d6c6c1543 fix: microsoft azure provider filesystem metadata (#58568)
83d6c6c1543 is described below

commit 83d6c6c15431151b0e3978ede676cccae8d1190d
Author: Lucas Roesler <[email protected]>
AuthorDate: Mon Nov 24 15:52:50 2025 +0100

    fix: microsoft azure provider filesystem metadata (#58568)
    
    * fix: microsoft azure provider filesystem metadata
    
    Fix the import path for the msgraph filesystem. It is actually at
    `airflow.providers.microsoft.azure.fs.msgraph`, not
    `airflow.providers.microsoft.azure.fs.msgraphfs`
    
    Signed-off-by: Lucas Roesler <[email protected]>
    
    * chore: update azure provider metadata
    
    Run the release generator to ensure the provider metadata is updated
    with the new filesystem path.
    
    Signed-off-by: Lucas Roesler <[email protected]>
    
    * revert: change to providers release date
    
    Signed-off-by: Lucas Roesler <[email protected]>
    
    ---------
    
    Signed-off-by: Lucas Roesler <[email protected]>
---
 providers/microsoft/azure/provider.yaml                                 | 2 +-
 .../azure/src/airflow/providers/microsoft/azure/get_provider_info.py    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/providers/microsoft/azure/provider.yaml 
b/providers/microsoft/azure/provider.yaml
index 75a01269dbf..4a262d738ef 100644
--- a/providers/microsoft/azure/provider.yaml
+++ b/providers/microsoft/azure/provider.yaml
@@ -233,7 +233,7 @@ sensors:
 
 filesystems:
   - airflow.providers.microsoft.azure.fs.adls
-  - airflow.providers.microsoft.azure.fs.msgraphfs
+  - airflow.providers.microsoft.azure.fs.msgraph
 
 hooks:
   - integration-name: Microsoft Azure Container Instances
diff --git 
a/providers/microsoft/azure/src/airflow/providers/microsoft/azure/get_provider_info.py
 
b/providers/microsoft/azure/src/airflow/providers/microsoft/azure/get_provider_info.py
index 5c9ef3ab15a..1966efa4fcb 100644
--- 
a/providers/microsoft/azure/src/airflow/providers/microsoft/azure/get_provider_info.py
+++ 
b/providers/microsoft/azure/src/airflow/providers/microsoft/azure/get_provider_info.py
@@ -200,7 +200,7 @@ def get_provider_info():
         ],
         "filesystems": [
             "airflow.providers.microsoft.azure.fs.adls",
-            "airflow.providers.microsoft.azure.fs.msgraphfs",
+            "airflow.providers.microsoft.azure.fs.msgraph",
         ],
         "hooks": [
             {

Reply via email to