-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose commit/rollback via bridge apis (#193)
# Goal The goal of this PR is to expose GraphSDK's commit/rollback functionality to the Bridge APIs (currently only available via native Rust API) * Add `disable_auto_commit` flag to `ActionOptions`, have `apply_actions` honor it * Expose commit/rollback to Node.js, Java, and C APIs Closes #192 # Checklist - [x] Tests added
- Loading branch information
1 parent
349055c
commit a04476c
Showing
30 changed files
with
590 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "dsnp-graph-sdk-common" | ||
version = "1.0.2" | ||
version = "1.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
publish = false | ||
|
||
[dependencies] | ||
dsnp-graph-core = { version = "1.0.2", path = "../../core" } | ||
dsnp-graph-config = { version = "1.0.2", path = "../../config" } | ||
dsnp-graph-core = { version = "1.1.0", path = "../../core" } | ||
dsnp-graph-config = { version = "1.1.0", path = "../../config" } | ||
libc = "0.2.153" | ||
protobuf = { version = "3.4.0", features = ["with-bytes"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.