Skip to content

Commit ab3c145

Browse files
chore(deps): update backend
1 parent 3e47e0b commit ab3c145

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
lines changed

Dockerfile.backend

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
ENV APP_NAME=corpora-api
44
ENV EXPORT_ENV_VARS_TO_LAMBDA="APP_NAME DEPLOYMENT_STAGE"

Dockerfile.backend_de

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
ENV APP_NAME=corpora-api-de
44
ENV EXPORT_ENV_VARS_TO_LAMBDA="APP_NAME DEPLOYMENT_STAGE"

Dockerfile.backend_wmg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
ENV APP_NAME=corpora-api-wmg
44
ENV EXPORT_ENV_VARS_TO_LAMBDA="APP_NAME DEPLOYMENT_STAGE"

backend/api_server/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
/>
1010
<link
1111
rel="stylesheet"
12-
href="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.0.13/swagger-ui.css"
13-
integrity="sha256-Z7Z2kffooC4H3U4Myviypq5dO2IIGkmu7VRtd1YqNn8="
12+
href="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/5.20.1/swagger-ui.css"
13+
integrity="sha512-KBb32o+GN4eR1g6fWk0qpYDRaRe1Gh3nCGUh63HpW0lQF1krZGYwlb1MKOsjLrFHIjcDKTGCok3rA6/5ru71vg=="
1414
crossorigin="anonymous"
1515
/>
1616
<style>
@@ -84,13 +84,13 @@
8484
<div id="swagger-ui"></div>
8585

8686
<script
87-
src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.23.11/swagger-ui-bundle.js"
88-
integrity="sha256-wmWvmMbIQjnhA5qXYJAw60JjO3/zvM2T/BMnbdBD26w="
87+
src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/5.20.1/swagger-ui-bundle.js"
88+
integrity="sha512-qdxDabvU2Wt0T5AIYKip7xByhMBV/vkaVq8gjwF8vmGpzJXXk2ceSbv7yOBVBJVLr5nZkNjPiF8rPqMCXdSz5g=="
8989
crossorigin="anonymous"
9090
></script>
9191
<script
92-
src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.23.11/swagger-ui-standalone-preset.js"
93-
integrity="sha256-AGfcF/HKnhqGTZNL+pNGJ+yemAzr2tuvbP69pYbn+GU="
92+
src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/5.20.1/swagger-ui-standalone-preset.js"
93+
integrity="sha512-OpfRyVownaTZfFLyUMvwJsNA45Bx0lmyIcRHqQrq7KJfHoVSLBGpotGLSfkRFyFS6seeFfEyJFkVFtYNa9XjRg=="
9494
crossorigin="anonymous"
9595
></script>
9696
<script>
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
connexion[swagger-ui]~=2.14.2
2-
gunicorn[gevent]~=22.0.0
1+
connexion[swagger-ui]~=3.2.0
2+
gunicorn[gevent]~=23.0.0
33
furl~=2.1.2
44
Flask-Cors~=3.0.6
55
flask-server-timing~=0.1.2
6-
ddtrace~=2.8.5
6+
ddtrace~=3.2.1
77
python-json-logger
8-
boto3~=1.34.114
8+
boto3~=1.37.17
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
pandas~=2.2.2
2-
scipy~=1.13.1
2+
scipy~=1.15.2
33
pydantic<3
4-
numba~=0.59.1
5-
cellxgene-ontology-guide~=1.0.0
4+
numba~=0.61.0
5+
cellxgene-ontology-guide~=1.6.0
66
tiledb
7-
psutil~=5.9.8
8-
pyarrow==16.0.0
7+
psutil~=7.0.0
8+
pyarrow==19.0.1

python_dependencies/backend/requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
alembic==1.*
2-
Authlib==0.14.3
2+
Authlib==1.5.1
33
boto3>=1.11.17
44
botocore>=1.14.17
5-
connexion[swagger-ui]==2.14.2
6-
dataclasses-json==0.6.6
5+
connexion[swagger-ui]==3.2.0
6+
dataclasses-json==0.6.7
77
cellxgene-ontology-guide<2
88
# TODO: Check if this is really essential for APM tracing
99
# see ticket: https://github.com/chanzuckerberg/single-cell-data-portal/issues/5821
10-
datadog==0.49.1
11-
ddtrace>=2.1.4, <3
12-
Flask>=2.2.3, <3
10+
datadog==0.51.0
11+
ddtrace>=3.2.1, <4
12+
Flask>=3.1, <4
1313
Flask-Cors>=3.0.6
1414
flask-server-timing>=0.1.2
15-
gunicorn[gevent]==22.0.0
16-
matplotlib>=3.6.3, <3.7 # 3.7.0 isn't compatible with scanpy: https://github.com/scverse/scanpy/issues/2411
17-
psutil>=5.9.5, <6
15+
gunicorn[gevent]==23.0.0
16+
matplotlib>=3.10.1, <3.11 # 3.7.0 isn't compatible with scanpy: https://github.com/scverse/scanpy/issues/2411
17+
psutil>=7, <8
1818
psycopg2-binary==2.*
1919
pydantic<3
2020
python-jose[cryptography]>=3.1.0
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pandas~=2.2.2
22
pydantic<3
3-
numba~=0.59.1
4-
cellxgene-ontology-guide~=1.0.0
3+
numba~=0.61.0
4+
cellxgene-ontology-guide~=1.6.0
55
tiledb
6-
psutil~=5.9.8
7-
pyarrow==16.0.0
6+
psutil~=7.0.0
7+
pyarrow==19.0.1

0 commit comments

Comments
 (0)