-
Notifications
You must be signed in to change notification settings - Fork 434
Resolve some todos in async-await branch #452
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
Merged
LegNeato
merged 53 commits into
graphql-rust:async-await
from
instrumentisto:async-await-resolve-some-todos
Nov 7, 2019
Merged
Changes from 49 commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
dd424f3
Bubble up scalar error (#434)
andy128k 9be274a
Update CHANGELOG.md
LegNeato 8628ddd
Make EmptyMutation `Send`
LegNeato 6b7977b
Update CHANGELOG.md
LegNeato 252f7b4
Release juniper_codegen 0.14.1
LegNeato c434bdd
Release juniper 0.14.1
LegNeato 012c0b1
Release juniper_hyper 0.5.1
LegNeato 0421f9a
Release juniper_iron 0.6.1
LegNeato 7c98eaf
Release juniper_rocket 0.5.1
LegNeato 91a9752
Release juniper_warp 0.5.1
LegNeato bd3d289
Resolve RFC 2565 related todos
nWacky 0f4e998
Remove __juniper_extract_generic macro
nWacky 13bbbe2
Start adding `async-trait` to `GraphQLTypeAsync`
nWacky 563e44c
Merge remote-tracking branch 'upstream/async-await' into async-await
nWacky 737c4c7
Add `resolve_into_type_async`
nWacky 9e2a63a
Refactor `GraphQLTypeAsync` to use `async-trait`
nWacky 9478b6c
Remove useless todo
nWacky 91dc55b
Resolve better error message with field/type name todo, update other …
nWacky afd92cd
Format
nWacky 2404b81
Rebase onto master
nWacky 09d1077
Merge branch 'async-await-resolve-some-todos' of https://github.com/i…
nWacky 503bb63
Format
nWacky e2ebaee
Merge import in `async_await`
nWacky 3e5e2ae
Format
nWacky 779208e
Bubble up scalar error (#434)
andy128k 7230efc
Update CHANGELOG.md
LegNeato 665c3d2
Make EmptyMutation `Send`
LegNeato bb99076
Update CHANGELOG.md
LegNeato 7b18bd2
Release juniper_codegen 0.14.1
LegNeato 191468b
Release juniper 0.14.1
LegNeato fed6950
Release juniper_hyper 0.5.1
LegNeato bf88826
Release juniper_iron 0.6.1
LegNeato c298697
Release juniper_rocket 0.5.1
LegNeato c24687d
Release juniper_warp 0.5.1
LegNeato d22b5c6
Resolve RFC 2565 related todos
nWacky bfe6c7a
Remove __juniper_extract_generic macro
nWacky e03e525
Start adding `async-trait` to `GraphQLTypeAsync`
nWacky 820f472
Add `resolve_into_type_async`
nWacky 52c3e28
Refactor `GraphQLTypeAsync` to use `async-trait`
nWacky b1970ae
Remove useless todo
nWacky 00dd1dc
Resolve better error message with field/type name todo, update other …
nWacky e3c12e3
Format
nWacky dbcaf30
Rebase onto master
nWacky 554ba34
Format
nWacky 9506272
Merge import in `async_await`
nWacky 7135c07
Format
nWacky ec76bf5
Fix cargo.toml in `warp_async`
nWacky 99c0d26
Comment out `attr_arg_descr` and `attr_arg_descr_collapse` tests
nWacky e151026
Merge branch 'async-await-resolve-some-todos' of https://github.com/i…
nWacky 4834349
Rebase onto `async-await`
nWacky 09d9513
Rebase onto `master`
nWacky e344f1c
Merge branch 'async-await-resolve-some-todos' of https://github.com/i…
nWacky 778606c
Fix bad merge [skip ci]
nWacky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,4 +1 @@ | ||
|
||
|
||
|
||
|
This file contains hidden or 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 hidden or 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,6 +1,6 @@ | ||
[package] | ||
name = "juniper" | ||
version = "0.14.0" | ||
version = "0.14.1" | ||
authors = [ | ||
"Magnus Hallin <[email protected]>", | ||
"Christoph Herzog <[email protected]>", | ||
|
@@ -33,20 +33,19 @@ default = [ | |
] | ||
|
||
[dependencies] | ||
juniper_codegen = { version = "0.14.0", path = "../juniper_codegen" } | ||
juniper_codegen = { version = "0.14.1", path = "../juniper_codegen" } | ||
|
||
async-trait = "0.1.16" | ||
chrono = { version = "0.4.0", optional = true } | ||
fnv = "1.0.3" | ||
futures-preview = { version = "=0.3.0-alpha.19", optional = true } | ||
indexmap = { version = "1.0.0", features = ["serde-1"] } | ||
serde = { version = "1.0.8" } | ||
serde_derive = { version = "1.0.2" } | ||
|
||
chrono = { version = "0.4.0", optional = true } | ||
serde_json = { version="1.0.2", optional = true } | ||
url = { version = "2", optional = true } | ||
uuid = { version = "0.7", optional = true } | ||
|
||
futures-preview = { version = "=0.3.0-alpha.19", optional = true } | ||
|
||
[dev-dependencies] | ||
bencher = "0.1.2" | ||
serde_json = { version = "1.0.2" } | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like you need to rebase or a bad merge?