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

Prepare v0.23 release #91

Merged
merged 2 commits into from
Jan 18, 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ This changelog documents the changes between release versions.

Changes to be included in the next upcoming release.

## v0.23

Update TS SDK dependency to v1.2.8.

* Fixed issue where query response format was incorrect when variables were used in the request
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Useful Links:
* [TypeScript Deno Connector on the NDC Hub](https://hasura.io/connectors/typescript-deno)
* [TypeScript Deno Connector on deno.com](https://deno.land/x/hasura_typescript_connector)
* [Hasura V3 Documentation](https://hasura.io/docs/3.0)
* [Hasura CLI](https://github.com/hasura/v3-cli#hasura-v3-cli)
* [Hasura CLI](https://hasura.io/docs/3.0/cli/installation/)
* [CLI Connector Plugin](https://hasura.io/docs/latest/hasura-cli/connector-plugin/)
* [Hasura VSCode Extension](https://marketplace.visualstudio.com/items?itemName=HasuraHQ.hasura)
* [Deno](https://deno.com)
Expand All @@ -35,7 +35,7 @@ Note: The Deno runtime is used and this connector assumes that dependencies are

It is recommended that you:

* Install the [Hasura3 CLI](https://github.com/hasura/v3-cli#hasura-v3-cli)
* Install the [Hasura3 CLI](https://hasura.io/docs/3.0/cli/installation/)
* Log in via the CLI
* Install the [connector plugin](https://hasura.io/docs/latest/hasura-cli/connector-plugin/)
* Install [VSCode](https://code.visualstudio.com)
Expand Down Expand Up @@ -155,7 +155,7 @@ deno run -A --watch=./functions --check https://deno.land/x/hasura_typescript_co


## Local Development of your Functions (Docker)
You can also perform local development with rapid feedback by using the Docker container instead
You can also perform local development with rapid feedback by using the Docker container instead
of `deno run`. You don't need a `config.json` in this case.

* Have a `./functions/` directory in your project
Expand Down Expand Up @@ -195,7 +195,7 @@ This means that your functions volume will have to be mounted to `/functions/src

You will need:

* [V3 CLI](https://github.com/hasura/v3-cli) (With Logged in Session)
* [V3 CLI](https://hasura.io/docs/3.0/cli/installation/) (With Logged in Session)
* [Connector Plugin](https://hasura.io/docs/latest/hasura-cli/connector-plugin/)
* (Optionally) A value to use with `SERVICE_TOKEN_SECRET`
* a typescript sources directory. E.g. `--volume ./my_functions_directory:/functions`
Expand Down