chore(deps): update dependency graphql-http to v1.22.1 - autoclosed #1612
ci.yaml
on: pull_request
build & test
23m 53s
graphql-over-http
6m 2s
config-json-schema / integrity
33s
rustfmt + clippy
3m 26s
panic-free-audit
48s
smoke test
7m 9s
Annotations
6 warnings
this expression creates a reference which is immediately dereferenced by the compiler:
libs/engine/src/schema_awareness.rs#L287
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> libs/engine/src/schema_awareness.rs:287:53
|
287 | let introspection = parse_introspection_str(&content).map_err(|source| {
| ^^^^^^^^ help: change this to: `content`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
|
this expression creates a reference which is immediately dereferenced by the compiler:
libs/engine/src/schema_awareness.rs#L207
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> libs/engine/src/schema_awareness.rs:207:30
|
207 | parse_graphql_schema(&content).map(|schema| (content.clone(), schema))
| ^^^^^^^^ help: change this to: `content`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
= note: `#[warn(clippy::needless_borrow)]` on by default
|
writing `&Vec` instead of `&[_]` involves a new object where a slice will do:
libs/federation_query_planner/src/lib.rs#L88
warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do
--> libs/federation_query_planner/src/lib.rs:88:18
|
88 | query_steps: &Vec<QueryStep>,
| ^^^^^^^^^^^^^^^ help: change this to: `&[QueryStep]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: `#[warn(clippy::ptr_arg)]` on by default
|
writing `&Vec` instead of `&[_]` involves a new object where a slice will do:
libs/tracing/src/otel_utils.rs#L46
warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do
--> libs/tracing/src/otel_utils.rs:46:11
|
46 | errors: &Vec<GraphQLError>,
| ^^^^^^^^^^^^^^^^^^ help: change this to: `&[GraphQLError]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: `#[warn(clippy::ptr_arg)]` on by default
|
rustfmt + clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rustfmt + clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|