-
Notifications
You must be signed in to change notification settings - Fork 39
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
Upgrade Project Reactor 2023.0.2 -> 2023.0.3 #1034
Conversation
Suggested commit message:
|
Looks good. No mutations were possible for these changes. |
1 similar comment
Looks good. No mutations were possible for these changes. |
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.
I wanted to suggest adding this Refaster rule (plus a variant):
/** Prefer {@link Flux#using(Callable, Function)} over more verbose alternatives. */
static final class FluxUsing<R extends AutoCloseable, T> {
@BeforeTemplate
Flux<T> before(
Callable<? extends R> resourceSupplier,
Function<? super R, ? extends Publisher<? extends T>> sourceSupplier) {
return Flux.using(resourceSupplier, sourceSupplier, R::close);
}
@AfterTemplate
Flux<T> after(
Callable<? extends R> resourceSupplier,
Function<? super R, ? extends Publisher<? extends T>> sourceSupplier) {
return Flux.using(resourceSupplier, sourceSupplier);
}
}
... but because R::close
can throw an Exception
, this won't compile.
e2b1133
to
e002376
Compare
Quality Gate passedIssues Measures |
This PR contains the following updates:
2023.0.2
->2023.0.3
Release Notes
reactor/reactor (Project Reactor)
v2023.0.3
Compare Source
2023.0.3
release train is made of:reactor-core
3.6.3
reactor-netty
1.1.16
reactor-kafka
1.3.23
These artifacts didn't have any changes:
reactor-pool
1.0.5
reactor-addons
3.5.1
reactor-kotlin-extensions
1.2.2