diff --git a/CHANGELOG.md b/CHANGELOG.md index 80789d5..71b279d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] + - Implement foreach capability. Instead of producing multiple parallel requests, we produce a single, larger request to send to the target endpoint. - Fix bug where introspection including interfaces would fail to parse in some circumstances - Config now defaults to asking for a `GRAPHQL_ENDPOINT` env var - Fix a bug where default values were not parsed as graphql values, and instead used as string literals - CLI: Implement `print-schema-and-capabilities` command, allowing local dev to update config & schema without starting a connector instance +- Update to latest connector SDK version (0.4.0) ## [0.1.3] diff --git a/Cargo.lock b/Cargo.lock index 7d6584e..3e4c2d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -367,7 +367,7 @@ dependencies = [ [[package]] name = "common" -version = "0.1.3" +version = "0.2.0" dependencies = [ "async-trait", "glob-match", @@ -1192,7 +1192,7 @@ dependencies = [ [[package]] name = "ndc-graphql" -version = "0.1.3" +version = "0.2.0" dependencies = [ "async-trait", "common", @@ -1212,7 +1212,7 @@ dependencies = [ [[package]] name = "ndc-graphql-cli" -version = "0.1.3" +version = "0.2.0" dependencies = [ "clap", "common", diff --git a/Cargo.toml b/Cargo.toml index 8f78d73..26981a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = ["crates/ndc-graphql", "crates/ndc-graphql-cli", "crates/common"] resolver = "2" -package.version = "0.1.3" +package.version = "0.2.0" package.edition = "2021" # insta performs better in release mode