You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2023/12/15 16:18:34 UTC

(superset) 01/05: fix: bump pyarrow constraints (CVE-2023-47248) (#26187)

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

michaelsmolina pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/superset.git

commit c99c6301c7ba616cbb54dd235d71b97a781df627
Author: cwegener <cw...@users.noreply.github.com>
AuthorDate: Mon Dec 11 16:27:53 2023 +0000

    fix: bump pyarrow constraints (CVE-2023-47248) (#26187)
    
    (cherry picked from commit 2ac28927a326fee6431b5e01f7930e650c636c17)
---
 requirements/base.txt | 3 ++-
 setup.py              | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/requirements/base.txt b/requirements/base.txt
index 1d2d568efc..e4cb6eb58f 100644
--- a/requirements/base.txt
+++ b/requirements/base.txt
@@ -211,7 +211,7 @@ prison==0.2.1
     # via flask-appbuilder
 prompt-toolkit==3.0.38
     # via click-repl
-pyarrow==12.0.0
+pyarrow==14.0.1
     # via apache-superset
 pycparser==2.20
     # via cffi
@@ -310,6 +310,7 @@ werkzeug==2.3.3
     # via
     #   apache-superset
     #   flask
+    #   flask-appbuilder
     #   flask-jwt-extended
     #   flask-login
 wrapt==1.12.1
diff --git a/setup.py b/setup.py
index 612ba88922..89cd3f51f6 100644
--- a/setup.py
+++ b/setup.py
@@ -109,7 +109,7 @@ setup(
         "python-dateutil",
         "python-dotenv",
         "python-geohash",
-        "pyarrow>=12.0.0, <13",
+        "pyarrow>=14.0.1, <15",
         "pyyaml>=6.0.0, <7.0.0",
         "PyJWT>=2.4.0, <3.0",
         "redis>=4.5.4, <5.0",