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

make uri optional for cli initialize command #116

Merged
merged 8 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from 7 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
133 changes: 53 additions & 80 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@

### Fixed

## [v0.1.0] - 2024-04-27
## [v0.1.0] - 2024-04-30

Initial release.
- Initial release with support of ndc-spec v0.1.2 (beta)
- Support for CLI plugin for Hasura v3 CLI, which allows the CLI to
automatically introspect the database on demand.
codingkarthik marked this conversation as resolved.
Show resolved Hide resolved
- Query explain endpoint has been changed from `/explain` to `/query/explain`.
- The default port was changed from 8100 to 8080.

<!-- end -->

Expand Down
10 changes: 5 additions & 5 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ workspace = true
[dependencies]
ndc-sqlserver = { path = "../ndc-sqlserver" }

anyhow = "1.0.81"
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive", "env"] }
schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.115", features = ["raw_value"] }
serde = { version = "1.0.198", features = ["derive"] }
serde_json = { version = "1.0.116", features = ["raw_value"] }
serde_yaml = "0.9.34"
thiserror = "1.0.58"
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["full"] }

[build-dependencies]
build-data = "0.1.5"
build-data = "0.2.1"

[dev-dependencies]
insta = "1.38.0"
Expand Down
Loading
Loading