File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ This changelog documents the changes between release versions.
44## [ Unreleased]
55Changes to be included in the next upcoming release
66
7+ ## [ 0.0.27] - 2024-07-18
8+ Update SDK and fix Dockerfile
9+
710## [ 0.0.26] - 2024-07-18
811Update Dockerfile and entrypoint script
912
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM ghcr.io/hasura/ndc-python-lambda:v{{VERSION}}
33COPY requirements.txt /functions/
44
55WORKDIR /functions
6- RUN --mount=type=cache,target=/root/.cache/pip \
6+ RUN python3 -m venv venv && \
7+ . venv/bin/activate && \
78 pip install -r requirements.txt
89
910COPY ./ /functions
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ fastapi==0.110.2
99googleapis-common-protos == 1.63.0
1010grpcio == 1.62.2
1111h11 == 0.14.0
12- hasura-ndc == 0.16
12+ hasura-ndc == 0.17
1313idna == 3.7
1414importlib-metadata == 7.0.0
1515opentelemetry-api == 1.24.0
You can’t perform that action at this time.
0 commit comments