Commit Graph

242 Commits

Author SHA1 Message Date
Sunli
a74e5decb3 Remove unnecessary Cargo configuration items. 2020-10-18 10:40:09 +08:00
Koxiaet
79d8e8a437 Fix documentation links 2020-10-17 15:27:03 +01:00
Sunli
174dffdba7 Release 2.0.4
async-graphql@2.0.4
async-graphql-actix-web@2.0.4
async-graphql-derive@2.0.4
async-graphql-parser@2.0.4
async-graphql-tide@2.0.4
async-graphql-value@2.0.4
async-graphql-warp@2.0.4
graphql-benchmark@2.0.4

Generated by cargo-workspaces
2020-10-17 08:01:10 +08:00
Koxiaet
db312a372d Replace futures with futures_util 2020-10-16 07:49:22 +01:00
Sunli
a95422fd87 Fixed all tests. 2020-10-16 09:01:19 +08:00
Koxiaet
664f077be3 Update dependencies and make examples submodule 2020-10-15 20:48:06 +01:00
Koxiaet
5c47f1ec57 Require POST for GraphQL requests 2020-10-15 18:42:09 +01:00
Koxiaet
2756c2cd5b Require JSON content-type 2020-10-15 18:30:16 +01:00
Koxiaet
7caff6beee Improve Rocket integration
This is breaking, but since updating Rocket is also breaking I think
it's fine not to bump the major version number.
2020-10-15 18:19:20 +01:00
Koxiaet
1a1e2b376f Improve Warp integration
This contains a breaking change; BadRequest now contains a
ParseRequestError instead of an anyhow::Error, so it's implementation is
what the documentation says. I'm not sure whether it's worth bumping
the major version number though.
2020-10-15 14:18:57 +01:00
Koxiaet
1a9f90d83e Improve Tide integration 2020-10-15 11:52:15 +01:00
Koxiaet
0683b5a6be Support GET requests in actix-web integration 2020-10-15 10:33:38 +01:00
Sunli
b4587b7ce9 Release 2.0.3
async-graphql@2.0.3
async-graphql-actix-web@2.0.3
async-graphql-derive@2.0.3
async-graphql-parser@2.0.3
async-graphql-rocket@2.0.3
async-graphql-tide@2.0.3
async-graphql-value@2.0.3
async-graphql-warp@2.0.3
chat@2.0.3
graphql-benchmark@2.0.3
simple@2.0.3

Generated by cargo-workspaces
2020-10-15 08:56:49 +08:00
Sunli
b331681fe1 2.0.2 2020-10-14 11:11:52 +08:00
Sunli
b1ecc6b8a9 2.0.1 2020-10-14 10:25:41 +08:00
Sunli
11bb21f367 2.0.0 2020-10-13 10:31:19 +08:00
Sunli
b3695cf9da 2.0.0-alpha.30 2020-10-12 21:10:27 +08:00
Sunli
23787cb6c5 2.0.0-alpha.29 2020-10-12 15:13:37 +08:00
Sunli
2e94ddaa26 2.0.0-alpha.28 2020-10-12 11:08:54 +08:00
Sunli
35bbba7990 2.0.0-alpha.27 2020-10-12 07:54:01 +08:00
Sunli
b6b6e5aa05 2.0.0-alpha.26 2020-10-11 21:36:28 +08:00
Sunli
269c1257da 2.0.0-alpha.25 2020-10-11 20:42:23 +08:00
Sunli
78341f2392 2.0.0-alpha.24 2020-10-10 16:30:42 +08:00
Sunli
10cd868f4c Some improvements. 2020-10-10 16:28:07 +08:00
Sunli
8d8e8946ad
Merge pull request #294 from qwtsc/test_dev
Add actix-web test
2020-10-02 22:28:38 +08:00
qwtsc
67489400c4 Add actix-web test 2020-10-02 21:17:47 +08:00
Sunli
87bcf055ac 2.0.0-alpha.23 2020-10-02 15:00:59 +08:00
Sunli
ee90130b2c 2.0.0-alpha.22 2020-10-01 11:26:58 +08:00
Sunli
e6108352b9 Merge branch 'master' into rework-errors 2020-10-01 09:07:19 +08:00
Koxiaet
ab82460b81 Merge master 2020-09-30 18:24:24 +01:00
Sunli
79d0c80d8b Update Cargo.toml 2020-09-30 08:00:48 +08:00
Sunli
6492629e71 Improve trait for GraphQL types. 2020-09-30 07:45:48 +08:00
Koxiaet
2ddaaaa07f Rework errors
This completely overhauls the error system used in async-graphql.
- `Error` has been renamed to `ServerError` and `FieldError` has been
renamed to just `Error`. This is because `FieldError` is by far the most
common error that users will have to use so it makes sense to use the
most obvious error name. Also, the current name didn't make sense as it
was used for things other than field errors, such as the data callback
for websockets.
- `ServerError` has been made completely opaque. Before it was an enum
of all the possible errors, but now it just contains an error message,
the locations, the path and extensions. It is a shame that we lose
information, it makes more sense as _conceptually_ GraphQL does not
provide that information. It also frees us to change the internals of
async-graphql a lot more.
- The path of errors is no longer an opaque JSON value but a regular
type, `Vec<PathSegment>`. The type duplication of `PathSegment` and
`QueryPathSegment` is unfortunate, I plan to work on this in the future.
- Now that `ServerError` is opaque, `RuleError` has been removed from
the public API, making it simpler.
- Additionally `QueryError` has been completely removed. Instead the
error messages are constructed ad-hoc; I took care to never repeat an
error message.
- Instead of constructing field-not-found errors inside the
implementations of field resolvers they now return `Option`s, where a
`None` value is representative of the field not being found.
- As an unfortunate consequence of the last change, self-referential
types based on the output of a subscription resolver can no longer be
created. This does not mean anything for users, but causes lifetime
issues in the implementation of merged objects. I fixed it with a bit of
a hack, but this'll have to be looked into further.
- `InputValueError` now has a generic parameter - it's kind of weird but
it's necessary for ergonomics. It also improves error messages.
- The `ErrorExtensions` trait has been removed. I didn't think the
`extend` method was necessary since `From` impls exist. But the
ergonomics are still there with a new trait `ExtendError`, which
is implemented for both errors and results.
- `Response` now supports serializing multiple errors. This allows for
nice things like having multiple validation errors not be awkwardly
shoved into a single error.
- When an error occurs in execution, data is sent as `null`. This is
slightly more compliant with the spec but the algorithm described in
<https://spec.graphql.org/June2018/#sec-Errors-and-Non-Nullability> has
yet to be implemented.
2020-09-29 20:06:44 +01:00
Sunli
c0ddf55132 Keep pin-project-lite dependent on async-graphql-tide at v0.1.8. 2020-09-29 17:04:27 +08:00
Sunli
f23942d798 2.0.0-alpha.21 2020-09-29 16:40:35 +08:00
Sunli
8c5d8f0324 Rework async-graphql-derive. #288 2020-09-29 16:06:10 +08:00
Sunli
fb026588ad 2.0.0-alpha.20 2020-09-28 11:33:58 +08:00
Sunli
fc495d1439 2.0.0-alpha.19 2020-09-27 10:22:13 +08:00
Sunli
3b24499db2 2.0.0-alpha.18 2020-09-26 12:36:56 +08:00
Sunli
d851964a53 2.0.0-alpha.17 2020-09-26 09:38:07 +08:00
Sunli
1cab6d0186 Remove unnecessary features for tide and warp integrations. 2020-09-26 08:35:17 +08:00
Koxiaet
c55e82bc80
Merge pull request #279 from robjtede/patch-1
do not include default features for actix-web
2020-09-25 19:54:21 +01:00
Koxiaet
dbbf0c1969 Fix Tide tests 2020-09-25 19:50:04 +01:00
Rob Ede
809b99384c
do not include default features for actix-web 2020-09-25 19:16:15 +01:00
Koxiaet
0351342822 Add integrations README 2020-09-25 18:25:52 +01:00
Koxiaet
7b18bd5f80 Support batch requests in Tide 2020-09-25 18:03:51 +01:00
Koxiaet
38c9c718d6 Reduce code duplication in batches in actix web 2020-09-25 17:38:12 +01:00
Sunli
8b97141779 2.0.0-alpha.16 2020-09-25 17:02:15 +08:00
Sunli
8188c7129c 2.0.0-alpha.15 2020-09-24 18:29:48 +08:00
Koxiaet
7f35fbca4c Big improvements to tide integration 2020-09-23 18:30:03 +01:00
Koxiaet
79869b5032 Small improvements to actix-web integration 2020-09-23 17:30:22 +01:00
Sunli
37e21c54fa Add BatchRequest support for actixweb and warp integrations. 2020-09-21 14:57:33 +08:00
Sunli
ebb7c90461 Remove all GQL prefix. #208 2020-09-20 13:44:20 +08:00
Sunli
a9cb781084 2.0.0-alpha.14 2020-09-20 13:31:46 +08:00
Koxiaet
f873c9ac5a Warp: Replace BoxedFilter with impl Filter 2020-09-19 18:10:46 +01:00
Sunli
e5c9d56887 Update authors 2020-09-18 20:36:05 +08:00
Sunli
8f5c388894 Fix the problem that async_graphql_warp::graphql_subscription cannot be combined with other filters. 2020-09-18 19:21:35 +08:00
Sunli
4ca3955a8e 2.0.0-alpha.13 2020-09-18 15:17:43 +08:00
Sunli
019241ac22 2.0.0-alpha.12 2020-09-18 15:05:07 +08:00
Sunli
322e296a24 Remove the GQL prefix of all macros. #208 2020-09-18 09:10:24 +08:00
Koxiaet
5cf527aeef Merge branch 'master' of github.com-koxiaet:async-graphql/async-graphql into master 2020-09-17 19:23:15 +01:00
Koxiaet
88be6bca61 Improve websockets 2020-09-17 19:22:54 +01:00
Sunli
10c74fcb66 2.0.0-alpha.11 2020-09-17 20:07:54 +08:00
Sunli
acc1a6f515 Add support for batch queries. 2020-09-17 19:54:12 +08:00
Sunli
e8c000763f 2.0.0-alpha.10 2020-09-17 13:24:53 +08:00
Sunli
80cae2e06d 2.0.0-alpha.9 2020-09-16 11:26:01 +08:00
Sunli
509c92a11f Move http::websocket::create and http::websocket::create_with_initializer function to http::WebSocketStream. 2020-09-15 20:07:59 +08:00
Sunli
d03289ac04 2.0.0-alpha.8 2020-09-15 19:50:14 +08:00
Sunli
059128e9c5 http::websocket::create function now returns the WebSocketStream type. 2020-09-15 11:19:00 +08:00
Sunli
ebbd47e235 2.0.0-alpha.7 2020-09-15 09:35:42 +08:00
Sunli
f133b07600 2.0.0-alpha.6 2020-09-14 20:10:50 +08:00
Sunli
d67a511a07 2.0.0-alpha.5 2020-09-14 09:46:22 +08:00
Koxiaet
55753983a9 Move websockets to http module and fix doc tests 2020-09-13 07:40:34 +01:00
Sunli
d9a4e9a96e 2.0.0-alpha.4 2020-09-13 12:18:40 +08:00
Sunli
d88f7e7060 2.0.0-alpha.3 2020-09-13 11:44:26 +08:00
Sunli
f530d01bf4 Remove all attribute macros that can be replaced by derive. 2020-09-13 11:41:15 +08:00
Koxiaet
8796c5e1a7 Replace http::GQLRequest with Request 2020-09-12 17:07:46 +01:00
Sunli
bbf784fe42 Remove async_graphql::http::StreamBody
l:
2020-09-12 21:44:34 +08:00
Sunli
99efe7d6b7 2.0.0-alpha.2 2020-09-12 20:34:29 +08:00
Sunli
4a08663f84 Upgrade for actix-web 3.0 2020-09-12 20:04:50 +08:00
Koxiaet
1aa36819eb Create resolver_utils 2020-09-12 10:29:52 +01:00
Sunli
ddf9470ea4 Bump version to 2.0.0-alpha.1 2020-09-12 07:47:13 +08:00
Sunli
8d3ae2d465 Update book. 2020-09-11 23:38:18 +08:00
Sunli
68ae3fb5c5 Bump version to 2.0.0-alpha.0 2020-09-11 22:57:52 +08:00
Sunli
c9bb388e0e async-graphql-rocket 2.0 2020-09-11 22:55:01 +08:00
Sunli
6f3fd03443 async-graphql-warp 2.0 2020-09-11 22:37:48 +08:00
Sunli
a0b55a9e43 async-graphql-tide 2.0 2020-09-11 22:17:17 +08:00
Sunli
394f45252f async-graphql-actix-web 2.0 2020-09-11 17:52:06 +08:00
Sunli
7a90069cad Continue to refactor. 2020-09-10 16:39:43 +08:00
Sunli
9bc837da9e Initial attempt. 2020-09-10 12:49:08 +08:00
Sunli
035e7c27c9 Release 1.18.0 2020-09-09 15:27:45 +08:00
Sunli
25e1339d5e Remove prefixes and add integrations subdirectory #259 2020-09-09 10:08:17 +08:00