Skip to content

Commit

Permalink
Version 1.1.0 (#98)
Browse files Browse the repository at this point in the history
* Release version 1.1.0

* Review feedback

* Updates from cargo audit
  • Loading branch information
codedmart authored Aug 16, 2024
1 parent 079e759 commit eab7265
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 24 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
This changelog documents the changes between release versions.

## [Unreleased]

## [1.1.0] - 2024-08-16

- Accept predicate arguments in native mutations and native queries ([#92](https://github.com/hasura/ndc-mongodb/pull/92))
- Serialize aggregate results as simple JSON (instead of Extended JSON) for
consistency with non-aggregate result serialization ([#96](https://github.com/hasura/ndc-mongodb/pull/96))
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.0.0"
version = "1.1.0"

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion crates/configuration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "configuration"
version = "0.1.0"
edition = "2021"
version.workspace = true

[dependencies]
mongodb-support = { path = "../mongodb-support" }
Expand Down
2 changes: 1 addition & 1 deletion crates/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "integration-tests"
version = "0.1.0"
edition = "2021"
version.workspace = true

[features]
integration = []
Expand Down
4 changes: 2 additions & 2 deletions crates/mongodb-agent-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "mongodb-agent-common"
description = "logic that is common to v2 and v3 agent versions"
version = "0.1.0"
edition = "2021"
version.workspace = true

[dependencies]
configuration = { path = "../configuration" }
Expand All @@ -12,7 +12,7 @@ ndc-query-plan = { path = "../ndc-query-plan" }
anyhow = "1.0.71"
async-trait = "^0.1"
axum = { version = "0.6", features = ["headers"] }
bytes = "^1"
bytes = "^1.6.1"
enum-iterator = "^2.0.0"
futures = "0.3.28"
futures-util = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion crates/mongodb-connector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mongodb-connector"
version = "0.1.0"
edition = "2021"
version.workspace = true

[dependencies]
configuration = { path = "../configuration" }
Expand Down
2 changes: 1 addition & 1 deletion crates/mongodb-support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mongodb-support"
version = "0.1.0"
edition = "2021"
version.workspace = true

[dependencies]
enum-iterator = "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/ndc-query-plan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ndc-query-plan"
version = "0.1.0"
edition = "2021"
version.workspace = true

[dependencies]
derivative = "2"
Expand Down
2 changes: 1 addition & 1 deletion crates/ndc-test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ndc-test-helpers"
version = "0.1.0"
edition = "2021"
version.workspace = true

[dependencies]
indexmap = { workspace = true }
Expand Down

0 comments on commit eab7265

Please sign in to comment.