Bump nightly version used for ui tests (#2805)

This commit is contained in:
Jonas Platte 2024-09-11 20:41:44 +02:00 committed by GitHub
parent 6efcb75d99
commit 8b1cad656f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 108 additions and 84 deletions

View File

@ -1 +1 @@
nightly-2024-03-13 nightly-2024-06-22

View File

@ -6,15 +6,15 @@ error[E0277]: the trait bound `bool: FromRequest<(), axum_core::extract::private
| |
= note: Function argument is not a valid axum extractor. = note: Function argument is not a valid axum extractor.
See `https://docs.rs/axum/0.7/axum/extract/index.html` for details See `https://docs.rs/axum/0.7/axum/extract/index.html` for details
= help: the following other types implement trait `FromRequest<S, M>`: = help: the following other types implement trait `FromRequestParts<S>`:
axum::body::Bytes `()` implements `FromRequestParts<S>`
Body `(T1, T2)` implements `FromRequestParts<S>`
Form<T> `(T1, T2, T3)` implements `FromRequestParts<S>`
Json<T> `(T1, T2, T3, T4)` implements `FromRequestParts<S>`
axum::http::Request<Body> `(T1, T2, T3, T4, T5)` implements `FromRequestParts<S>`
RawForm `(T1, T2, T3, T4, T5, T6)` implements `FromRequestParts<S>`
String `(T1, T2, T3, T4, T5, T6, T7)` implements `FromRequestParts<S>`
Option<T> `(T1, T2, T3, T4, T5, T6, T7, T8)` implements `FromRequestParts<S>`
and $N others and $N others
= note: required for `bool` to implement `FromRequest<(), axum_core::extract::private::ViaParts>` = note: required for `bool` to implement `FromRequest<(), axum_core::extract::private::ViaParts>`
note: required by a bound in `__axum_macros_check_handler_0_from_request_check` note: required by a bound in `__axum_macros_check_handler_0_from_request_check`

View File

@ -5,14 +5,14 @@ error[E0277]: the trait bound `NonCloneType: Clone` is not satisfied
| ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `NonCloneType`, which is required by `Extension<NonCloneType>: FromRequest<(), _>` | ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `NonCloneType`, which is required by `Extension<NonCloneType>: FromRequest<(), _>`
| |
= help: the following other types implement trait `FromRequest<S, M>`: = help: the following other types implement trait `FromRequest<S, M>`:
axum::body::Bytes (T1, T2)
Body (T1, T2, T3)
Form<T> (T1, T2, T3, T4)
Json<T> (T1, T2, T3, T4, T5)
axum::http::Request<Body> (T1, T2, T3, T4, T5, T6)
RawForm (T1, T2, T3, T4, T5, T6, T7)
String (T1, T2, T3, T4, T5, T6, T7, T8)
Option<T> (T1, T2, T3, T4, T5, T6, T7, T8, T9)
and $N others and $N others
= note: required for `Extension<NonCloneType>` to implement `FromRequestParts<()>` = note: required for `Extension<NonCloneType>` to implement `FromRequestParts<()>`
= note: required for `Extension<NonCloneType>` to implement `FromRequest<(), axum_core::extract::private::ViaParts>` = note: required for `Extension<NonCloneType>` to implement `FromRequest<(), axum_core::extract::private::ViaParts>`

View File

@ -7,19 +7,22 @@ error[E0277]: the trait bound `for<'de> Struct: serde::de::Deserialize<'de>` is
= note: for local types consider adding `#[derive(serde::Deserialize)]` to your `Struct` type = note: for local types consider adding `#[derive(serde::Deserialize)]` to your `Struct` type
= note: for types from other crates check whether the crate offers a `serde` feature flag = note: for types from other crates check whether the crate offers a `serde` feature flag
= help: the following other types implement trait `serde::de::Deserialize<'de>`: = help: the following other types implement trait `serde::de::Deserialize<'de>`:
bool &'a [u8]
char &'a serde_json::raw::RawValue
isize &'a std::path::Path
i8 &'a str
i16 ()
i32 (T,)
i64 (T0, T1)
i128 (T0, T1, T2)
and $N others and $N others
= note: required for `Struct` to implement `serde::de::DeserializeOwned` = note: required for `Struct` to implement `serde::de::DeserializeOwned`
= note: required for `Json<Struct>` to implement `FromRequest<()>` = note: required for `Json<Struct>` to implement `FromRequest<()>`
= help: see issue #48214 = help: see issue #48214
= help: add `#![feature(trivial_bounds)]` to the crate attributes to enable help: add `#![feature(trivial_bounds)]` to the crate attributes to enable
|
1 + #![feature(trivial_bounds)]
|
error[E0277]: the trait bound `for<'de> Struct: serde::de::Deserialize<'de>` is not satisfied error[E0277]: the trait bound `for<'de> Struct: serde::de::Deserialize<'de>` is not satisfied
--> tests/debug_handler/fail/json_not_deserialize.rs:7:24 --> tests/debug_handler/fail/json_not_deserialize.rs:7:24
@ -30,14 +33,14 @@ error[E0277]: the trait bound `for<'de> Struct: serde::de::Deserialize<'de>` is
= note: for local types consider adding `#[derive(serde::Deserialize)]` to your `Struct` type = note: for local types consider adding `#[derive(serde::Deserialize)]` to your `Struct` type
= note: for types from other crates check whether the crate offers a `serde` feature flag = note: for types from other crates check whether the crate offers a `serde` feature flag
= help: the following other types implement trait `serde::de::Deserialize<'de>`: = help: the following other types implement trait `serde::de::Deserialize<'de>`:
bool &'a [u8]
char &'a serde_json::raw::RawValue
isize &'a std::path::Path
i8 &'a str
i16 ()
i32 (T,)
i64 (T0, T1)
i128 (T0, T1, T2)
and $N others and $N others
= note: required for `Struct` to implement `serde::de::DeserializeOwned` = note: required for `Struct` to implement `serde::de::DeserializeOwned`
= note: required for `Json<Struct>` to implement `FromRequest<()>` = note: required for `Json<Struct>` to implement `FromRequest<()>`

View File

@ -5,14 +5,14 @@ error[E0277]: the trait bound `NotIntoResponse: IntoResponse` is not satisfied
| ^^^^^^^^^^^^^^^^^ the trait `IntoResponse` is not implemented for `NotIntoResponse` | ^^^^^^^^^^^^^^^^^ the trait `IntoResponse` is not implemented for `NotIntoResponse`
| |
= help: the following other types implement trait `IntoResponse`: = help: the following other types implement trait `IntoResponse`:
Box<str> &'static [u8; N]
Box<[u8]> &'static [u8]
axum::body::Bytes &'static str
Body ()
axum::extract::rejection::FailedToBufferBody (R,)
axum::extract::rejection::LengthLimitError (Response<()>, R)
axum::extract::rejection::UnknownBodyError (Response<()>, T1, R)
axum::extract::rejection::InvalidUtf8 (Response<()>, T1, T2, R)
and $N others and $N others
note: required by a bound in `__axum_macros_check_handler_into_response::{closure#0}::check` note: required by a bound in `__axum_macros_check_handler_into_response::{closure#0}::check`
--> tests/debug_handler/fail/single_wrong_return_tuple.rs:6:23 --> tests/debug_handler/fail/single_wrong_return_tuple.rs:6:23

View File

@ -11,17 +11,20 @@ error[E0277]: the trait bound `CustomIntoResponse: IntoResponseParts` is not sat
| ^^^^^^^^^^^^^^^^^^ the trait `IntoResponseParts` is not implemented for `CustomIntoResponse` | ^^^^^^^^^^^^^^^^^^ the trait `IntoResponseParts` is not implemented for `CustomIntoResponse`
| |
= help: the following other types implement trait `IntoResponseParts`: = help: the following other types implement trait `IntoResponseParts`:
AppendHeaders<I>
HeaderMap
Extension<T>
Extensions
Option<T>
[(K, V); N]
() ()
(T1,) (T1, T2)
(T1, T2, T3)
(T1, T2, T3, T4)
(T1, T2, T3, T4, T5)
(T1, T2, T3, T4, T5, T6)
(T1, T2, T3, T4, T5, T6, T7)
(T1, T2, T3, T4, T5, T6, T7, T8)
and $N others and $N others
= help: see issue #48214 = help: see issue #48214
= help: add `#![feature(trivial_bounds)]` to the crate attributes to enable help: add `#![feature(trivial_bounds)]` to the crate attributes to enable
|
3 + #![feature(trivial_bounds)]
|
error[E0277]: the trait bound `CustomIntoResponse: IntoResponseParts` is not satisfied error[E0277]: the trait bound `CustomIntoResponse: IntoResponseParts` is not satisfied
--> tests/debug_handler/fail/wrong_return_tuple.rs:24:5 --> tests/debug_handler/fail/wrong_return_tuple.rs:24:5
@ -30,14 +33,14 @@ error[E0277]: the trait bound `CustomIntoResponse: IntoResponseParts` is not sat
| ^^^^^^^^^^^^^^^^^^ the trait `IntoResponseParts` is not implemented for `CustomIntoResponse` | ^^^^^^^^^^^^^^^^^^ the trait `IntoResponseParts` is not implemented for `CustomIntoResponse`
| |
= help: the following other types implement trait `IntoResponseParts`: = help: the following other types implement trait `IntoResponseParts`:
AppendHeaders<I>
HeaderMap
Extension<T>
Extensions
Option<T>
[(K, V); N]
() ()
(T1,) (T1, T2)
(T1, T2, T3)
(T1, T2, T3, T4)
(T1, T2, T3, T4, T5)
(T1, T2, T3, T4, T5, T6)
(T1, T2, T3, T4, T5, T6, T7)
(T1, T2, T3, T4, T5, T6, T7, T8)
and $N others and $N others
note: required by a bound in `__axum_macros_check_custom_type_into_response_parts_1_check` note: required by a bound in `__axum_macros_check_custom_type_into_response_parts_1_check`
--> tests/debug_handler/fail/wrong_return_tuple.rs:24:5 --> tests/debug_handler/fail/wrong_return_tuple.rs:24:5

View File

@ -5,14 +5,14 @@ error[E0277]: the trait bound `bool: IntoResponse` is not satisfied
| ^^^^ the trait `IntoResponse` is not implemented for `bool` | ^^^^ the trait `IntoResponse` is not implemented for `bool`
| |
= help: the following other types implement trait `IntoResponse`: = help: the following other types implement trait `IntoResponse`:
Box<str> &'static [u8; N]
Box<[u8]> &'static [u8]
axum::body::Bytes &'static str
Body ()
axum::extract::rejection::FailedToBufferBody (R,)
axum::extract::rejection::LengthLimitError (Response<()>, R)
axum::extract::rejection::UnknownBodyError (Response<()>, T1, R)
axum::extract::rejection::InvalidUtf8 (Response<()>, T1, T2, R)
and $N others and $N others
note: required by a bound in `__axum_macros_check_handler_into_response::{closure#0}::check` note: required by a bound in `__axum_macros_check_handler_into_response::{closure#0}::check`
--> tests/debug_handler/fail/wrong_return_type.rs:4:23 --> tests/debug_handler/fail/wrong_return_type.rs:4:23

View File

@ -14,8 +14,8 @@ error[E0277]: the trait bound `fn(Extractor<()>) -> impl Future<Output = ()> {fo
| |
= note: Consider using `#[axum::debug_handler]` to improve the error message = note: Consider using `#[axum::debug_handler]` to improve the error message
= help: the following other types implement trait `Handler<T, S>`: = help: the following other types implement trait `Handler<T, S>`:
<Layered<L, H, T, S> as Handler<T, S>> `Layered<L, H, T, S>` implements `Handler<T, S>`
<MethodRouter<S> as Handler<(), S>> `MethodRouter<S>` implements `Handler<(), S>`
note: required by a bound in `axum::routing::get` note: required by a bound in `axum::routing::get`
--> $WORKSPACE/axum/src/routing/method_routing.rs --> $WORKSPACE/axum/src/routing/method_routing.rs
| |

View File

@ -14,8 +14,8 @@ error[E0277]: the trait bound `fn(Extractor<()>) -> impl Future<Output = ()> {fo
| |
= note: Consider using `#[axum::debug_handler]` to improve the error message = note: Consider using `#[axum::debug_handler]` to improve the error message
= help: the following other types implement trait `Handler<T, S>`: = help: the following other types implement trait `Handler<T, S>`:
<Layered<L, H, T, S> as Handler<T, S>> `Layered<L, H, T, S>` implements `Handler<T, S>`
<MethodRouter<S> as Handler<(), S>> `MethodRouter<S>` implements `Handler<(), S>`
note: required by a bound in `axum::routing::get` note: required by a bound in `axum::routing::get`
--> $WORKSPACE/axum/src/routing/method_routing.rs --> $WORKSPACE/axum/src/routing/method_routing.rs
| |

View File

@ -14,8 +14,8 @@ error[E0277]: the trait bound `fn(MyExtractor) -> impl Future<Output = ()> {hand
| |
= note: Consider using `#[axum::debug_handler]` to improve the error message = note: Consider using `#[axum::debug_handler]` to improve the error message
= help: the following other types implement trait `Handler<T, S>`: = help: the following other types implement trait `Handler<T, S>`:
<Layered<L, H, T, S> as Handler<T, S>> `Layered<L, H, T, S>` implements `Handler<T, S>`
<MethodRouter<S> as Handler<(), S>> `MethodRouter<S>` implements `Handler<(), S>`
note: required by a bound in `axum::routing::get` note: required by a bound in `axum::routing::get`
--> $WORKSPACE/axum/src/routing/method_routing.rs --> $WORKSPACE/axum/src/routing/method_routing.rs
| |
@ -36,8 +36,8 @@ error[E0277]: the trait bound `fn(Result<MyExtractor, MyRejection>) -> impl Futu
| |
= note: Consider using `#[axum::debug_handler]` to improve the error message = note: Consider using `#[axum::debug_handler]` to improve the error message
= help: the following other types implement trait `Handler<T, S>`: = help: the following other types implement trait `Handler<T, S>`:
<Layered<L, H, T, S> as Handler<T, S>> `Layered<L, H, T, S>` implements `Handler<T, S>`
<MethodRouter<S> as Handler<(), S>> `MethodRouter<S>` implements `Handler<(), S>`
note: required by a bound in `MethodRouter::<S>::post` note: required by a bound in `MethodRouter::<S>::post`
--> $WORKSPACE/axum/src/routing/method_routing.rs --> $WORKSPACE/axum/src/routing/method_routing.rs
| |

View File

@ -7,12 +7,12 @@ error[E0277]: the trait bound `String: FromRequestParts<S>` is not satisfied
= note: Function argument is not a valid axum extractor. = note: Function argument is not a valid axum extractor.
See `https://docs.rs/axum/0.7/axum/extract/index.html` for details See `https://docs.rs/axum/0.7/axum/extract/index.html` for details
= help: the following other types implement trait `FromRequestParts<S>`: = help: the following other types implement trait `FromRequestParts<S>`:
<Extractor as FromRequestParts<S>> `()` implements `FromRequestParts<S>`
<HeaderMap as FromRequestParts<S>> `(T1, T2)` implements `FromRequestParts<S>`
<Extension<T> as FromRequestParts<S>> `(T1, T2, T3)` implements `FromRequestParts<S>`
<Method as FromRequestParts<S>> `(T1, T2, T3, T4)` implements `FromRequestParts<S>`
<axum::http::request::Parts as FromRequestParts<S>> `(T1, T2, T3, T4, T5)` implements `FromRequestParts<S>`
<Uri as FromRequestParts<S>> `(T1, T2, T3, T4, T5, T6)` implements `FromRequestParts<S>`
<Version as FromRequestParts<S>> `(T1, T2, T3, T4, T5, T6, T7)` implements `FromRequestParts<S>`
<Extensions as FromRequestParts<S>> `(T1, T2, T3, T4, T5, T6, T7, T8)` implements `FromRequestParts<S>`
and $N others and $N others

View File

@ -4,7 +4,16 @@ error[E0277]: the trait bound `MyPath: serde::de::DeserializeOwned` is not satis
3 | #[derive(TypedPath)] 3 | #[derive(TypedPath)]
| ^^^^^^^^^ the trait `for<'de> serde::de::Deserialize<'de>` is not implemented for `MyPath`, which is required by `axum::extract::Path<MyPath>: FromRequestParts<S>` | ^^^^^^^^^ the trait `for<'de> serde::de::Deserialize<'de>` is not implemented for `MyPath`, which is required by `axum::extract::Path<MyPath>: FromRequestParts<S>`
| |
= help: the trait `FromRequestParts<S>` is implemented for `axum::extract::Path<T>` = help: the following other types implement trait `serde::de::Deserialize<'de>`:
&'a [u8]
&'a serde_json::raw::RawValue
&'a std::path::Path
&'a str
()
(T,)
(T0, T1)
(T0, T1, T2)
and $N others
= note: required for `MyPath` to implement `serde::de::DeserializeOwned` = note: required for `MyPath` to implement `serde::de::DeserializeOwned`
= note: required for `axum::extract::Path<MyPath>` to implement `FromRequestParts<S>` = note: required for `axum::extract::Path<MyPath>` to implement `FromRequestParts<S>`
= note: this error originates in the derive macro `TypedPath` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the derive macro `TypedPath` (in Nightly builds, run with -Z macro-backtrace for more info)
@ -15,7 +24,16 @@ error[E0277]: the trait bound `MyPath: serde::de::DeserializeOwned` is not satis
3 | #[derive(TypedPath)] 3 | #[derive(TypedPath)]
| ^^^^^^^^^ the trait `for<'de> serde::de::Deserialize<'de>` is not implemented for `MyPath`, which is required by `axum::extract::Path<MyPath>: FromRequestParts<S>` | ^^^^^^^^^ the trait `for<'de> serde::de::Deserialize<'de>` is not implemented for `MyPath`, which is required by `axum::extract::Path<MyPath>: FromRequestParts<S>`
| |
= help: the trait `FromRequestParts<S>` is implemented for `axum::extract::Path<T>` = help: the following other types implement trait `serde::de::Deserialize<'de>`:
&'a [u8]
&'a serde_json::raw::RawValue
&'a std::path::Path
&'a str
()
(T,)
(T0, T1)
(T0, T1, T2)
and $N others
= note: required for `MyPath` to implement `serde::de::DeserializeOwned` = note: required for `MyPath` to implement `serde::de::DeserializeOwned`
= note: required for `axum::extract::Path<MyPath>` to implement `FromRequestParts<S>` = note: required for `axum::extract::Path<MyPath>` to implement `FromRequestParts<S>`
= note: this error originates in the attribute macro `::axum::async_trait` (in Nightly builds, run with -Z macro-backtrace for more info) = note: this error originates in the attribute macro `::axum::async_trait` (in Nightly builds, run with -Z macro-backtrace for more info)