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.
4
4
## [ Unreleased]
5
5
Changes to be included in the next upcoming release
6
6
7
+ ## [ 0.0.27] - 2024-07-18
8
+ Update SDK and fix Dockerfile
9
+
7
10
## [ 0.0.26] - 2024-07-18
8
11
Update Dockerfile and entrypoint script
9
12
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ FROM ghcr.io/hasura/ndc-python-lambda:v{{VERSION}}
3
3
COPY requirements.txt /functions/
4
4
5
5
WORKDIR /functions
6
- RUN --mount=type=cache,target=/root/.cache/pip \
6
+ RUN python3 -m venv venv && \
7
+ . venv/bin/activate && \
7
8
pip install -r requirements.txt
8
9
9
10
COPY ./ /functions
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ fastapi==0.110.2
9
9
googleapis-common-protos == 1.63.0
10
10
grpcio == 1.62.2
11
11
h11 == 0.14.0
12
- hasura-ndc == 0.16
12
+ hasura-ndc == 0.17
13
13
idna == 3.7
14
14
importlib-metadata == 7.0.0
15
15
opentelemetry-api == 1.24.0
You can’t perform that action at this time.
0 commit comments