-
Notifications
You must be signed in to change notification settings - Fork 5
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
Bump quarkus.version from 3.0.0.Final to 3.0.1.Final #161
Conversation
Bumps `quarkus.version` from 3.0.0.Final to 3.0.1.Final. Updates `quarkus-bom` from 3.0.0.Final to 3.0.1.Final - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@3.0.0.Final...3.0.1.Final) Updates `quarkus-maven-plugin` from 3.0.0.Final to 3.0.1.Final Updates `quarkus-extension-processor` from 3.0.0.Final to 3.0.1.Final Updates `quarkus-extension-maven-plugin` from 3.0.0.Final to 3.0.1.Final - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@3.0.0.Final...3.0.1.Final) --- updated-dependencies: - dependency-name: io.quarkus:quarkus-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-extension-processor dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-extension-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
Paging in @injectives and @gsmet and @maxandersen There are 2 reactive tests that fail since Quarkus 3.0.1 Here's one of them: The test: @Test
void getReactiveFruitsShouldWork() {
RestAssured.given()
.when().get("/reactivefruits/")
.then().statusCode(Status.OK.getStatusCode())
.statusCode(200)
.body(containsString("data:Apfel"));
} and the code under test: @GET
@Produces(MediaType.SERVER_SENT_EVENTS)
public Flow.Publisher<String> get() {
System.out.println("Hello");
// Create a stream from a resource we can close in a finalizer...
return Multi.createFrom().resource(() -> driver.session(ReactiveSession.class), // <.>
session -> session.executeRead(tx -> {
System.out.println("read executed");
var result = tx.run("MATCH (f:Fruit) RETURN f.name as name ORDER BY f.name");
return Multi.createFrom().publisher(result).flatMap(ReactiveResult::records)
.onItem().invoke(r -> {
System.out.println(r);
}).onCompletion().invoke(() -> {
System.out.println("records done");
});
}))
.withFinalizer(ReactiveFruitResource::sessionFinalizer) // <.>
.map(record -> record.get("name").asString());
} The code works perfectly fine with JVM and without any data present in the database both on native and JVM. However native starts to fail when there's data. I am a bit out of things I can try here. You need to build with
Required database
This works, as it has no data… Create some data
and do the reactive test again… I See
being logged and then the multi just does not complete. On JVM this works. |
Superseded by #164. |
The followup does not change things. |
Bumps
quarkus.version
from 3.0.0.Final to 3.0.1.Final.Updates
quarkus-bom
from 3.0.0.Final to 3.0.1.FinalRelease notes
Sourced from quarkus-bom's releases.
... (truncated)
Commits
eef6e01
[RELEASE] - Bump version to 3.0.1.Finalde7076d
Create update guide68a4be8
PLANNER-2861 Upgrate to OptaPlanner 989cd51c
Merge pull request #32878 from Sanne/backportsWithVertxAndHrc35fda7
Update to Vert.x 4.4.189e7933
Upgrade to Hibernate Reactive 2.0.0.CR14d50319
implement the config filter by extension8a766ef
Make dev-services hot reload706f084
Disable DEV UI for remote dev modee647665
Dev UI Fix labels not clearing outUpdates
quarkus-maven-plugin
from 3.0.0.Final to 3.0.1.FinalUpdates
quarkus-extension-processor
from 3.0.0.Final to 3.0.1.FinalUpdates
quarkus-extension-maven-plugin
from 3.0.0.Final to 3.0.1.FinalRelease notes
Sourced from quarkus-extension-maven-plugin's releases.
... (truncated)
Commits
eef6e01
[RELEASE] - Bump version to 3.0.1.Finalde7076d
Create update guide68a4be8
PLANNER-2861 Upgrate to OptaPlanner 989cd51c
Merge pull request #32878 from Sanne/backportsWithVertxAndHrc35fda7
Update to Vert.x 4.4.189e7933
Upgrade to Hibernate Reactive 2.0.0.CR14d50319
implement the config filter by extension8a766ef
Make dev-services hot reload706f084
Disable DEV UI for remote dev modee647665
Dev UI Fix labels not clearing outDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)