Skip to content

Commit 4678b62

Browse files
author
Tristen Harr
committed
update sdk & dockerfile
1 parent 1b0e251 commit 4678b62

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ This changelog documents the changes between release versions.
44
## [Unreleased]
55
Changes 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
811
Update Dockerfile and entrypoint script
912

connector-definition/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ FROM ghcr.io/hasura/ndc-python-lambda:v{{VERSION}}
33
COPY requirements.txt /functions/
44

55
WORKDIR /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

910
COPY ./ /functions

connector-definition/template/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fastapi==0.110.2
99
googleapis-common-protos==1.63.0
1010
grpcio==1.62.2
1111
h11==0.14.0
12-
hasura-ndc==0.16
12+
hasura-ndc==0.17
1313
idna==3.7
1414
importlib-metadata==7.0.0
1515
opentelemetry-api==1.24.0

0 commit comments

Comments
 (0)