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

potiuk pushed a commit to branch v2-8-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit f3eeeca20d514e3fcd2fcf449cddd27d401153e0
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Jan 9 21:41:45 2024 +0100

    Get rid of pyarrow-hotfix for CVE-2023-47248 (#36697)
    
    The #35650 introduced a hotfix for Pyarrow CVE-2023-47248. So far
    we have been blocked from removing it by Apache Beam that limited
    Airflow from bumping pyarrow to a version that was not vulnerable.
    
    This is now possible since Apache Beam relesed 2.53.0 version on
    4th of January 2023 that allows to use non-vulnerable pyarrow.
    
    We are now bumping both Pyarrow and Beam minimum versions to
    reflect that and remove pyarrow hotfix.
    
    (cherry picked from commit d105c7115f56f88d48a2888484a0ed7d1c01576f)
---
 setup.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/setup.py b/setup.py
index 0628f3aacf..1c831fb98d 100644
--- a/setup.py
+++ b/setup.py
@@ -903,6 +903,8 @@ class AirflowDistribution(Distribution):
                 self.package_data["airflow"].append(provider_relative_path)
             # Add python_kubernetes_script.jinja2 to package data
             
self.package_data["airflow"].append("providers/cncf/kubernetes/python_kubernetes_script.jinja2")
+            # Add default email template to package data
+            
self.package_data["airflow"].append("providers/smtp/notifications/templates/email.html")
         else:
             self.install_requires.extend(
                 [

Reply via email to