Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Fastify dependency version #92

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This changelog documents the changes between release versions.

Changes to be included in the next upcoming release.

## v0.24

* Pinned the Fastify version used to avoid using the latest version which does not work with Deno

## v0.23

Update TS SDK dependency to v1.2.8.
Expand Down
5 changes: 3 additions & 2 deletions src/sdk.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

// This pins the fastify version (transitively used by the ndc-sdk-typescript)
// because 4.26.0 introduces a deno-incompatible change
import fastify from "npm:[email protected]"
// Have this dependency defined in one place

export * as sdk from 'npm:@hasura/[email protected]';
Loading