-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
3.2.3 backports 1 #35091
Merged
Merged
3.2.3 backports 1 #35091
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fix event type. (cherry picked from commit 6ac3b3e)
This is useful when we want to restart a failed build. It usually happens in the next few days and we need the artifact to be around. (cherry picked from commit e39263d)
We know properly report the root path whereas previously it was being ignored Fixes: quarkusio#34778 (cherry picked from commit aa2a35a)
Signed-off-by: Phillip Kruger <[email protected]> (cherry picked from commit 2ab4057)
Fixes: quarkusio#34896 (cherry picked from commit a43fd01)
This should fix a problem in downstream documentation and it doesn't hurt. (cherry picked from commit d934496)
RabbitMQ 3.9 is out of general support. This updates the dev services container to 3.12 series. It also fixes a copy/paste error I made long ago. (cherry picked from commit 32dfdd5)
There were two issues: - The resources were not found when using the container image openshift and container image s2i. - The resources were not found at installing them in the cluster. Fix quarkusio#34673 (cherry picked from commit 7357d78)
(cherry picked from commit a773986)
Relates to: quarkusio#34934 (cherry picked from commit b87954f)
(cherry picked from commit 95573e1)
…n with name 'annotationProcessor' not found" problem. fixes quarkusio#32767 (cherry picked from commit 9f832ee)
(cherry picked from commit dac533f)
(cherry picked from commit 9579485)
Quarkus enables the inclusion or exclusion of Jakarta REST Resources, Providers and Features directly thanks to build time conditions in the same that it does for CDI beans. Thus, the REST Data with Panache interfaces can be annotated with profile conditions (`@io.quarkus.arc.profile.IfBuildProfile` or `@io.quarkus.arc.profile.UnlessBuildProfile`) and/or with property conditions (`io.quarkus.arc.properties.IfBuildProperty` or `io.quarkus.arc.properties.UnlessBuildProperty`) to indicate to Quarkus at build time under which conditions the generated Jakarta REST classes should be included. In the following example, Quarkus will include the generated resource from the `PeopleResource` interface if and only if the build profile `app1` has been enabled. ```java @IfBuildProfile("app1") public interface PeopleResource extends PanacheEntityResource<Person, Long> { } ``` === Using a runtime property IMPORTANT: This option is only available when using the RESTEasy Reactive Quarkus extension. Quarkus can also conditionally disable the generated Jakarta REST Resources based on the value of runtime properties using the `@io.quarkus.resteasy.reactive.server.EndpointDisabled` annotation. In the following example, Quarkus will exclude the generated resource from the `PeopleResource` interface at runtime if the application has `some.property` configured to `"disable"`. ```java @EndpointDisabled(name = "some.property", stringValue = "disable") public interface PeopleResource extends PanacheEntityResource<Person, Long> { } ``` Fix quarkusio#34938 (cherry picked from commit 1f85a3c)
(cherry picked from commit f48c359)
Before these changes, the resource requirements limits/requests were ignored for the sidecars containers. Note that these changes include a workaround for dekorateio/dekorate#1234. Fix quarkusio#35006 (cherry picked from commit 5312cd3)
Fixes: quarkusio#35011 (cherry picked from commit 00b1746)
Fixes: quarkusio#34992 (cherry picked from commit 894da5c)
(cherry picked from commit 2841144)
(cherry picked from commit e476492)
(cherry picked from commit 7a703c8)
... when using the `quarkus.kubernetes.output-directory`. In gradle, when users set the output-directory property, the K8s resources were generated at `$HOME/.gradle/workers`. I tried these changes in Maven and Gradle and now, it works. Fix quarkusio#34827 (cherry picked from commit 3ee917b)
…rkus Relates to: quarkusio#35038 (cherry picked from commit fb59156)
There should be a "joined" message on user joining, but no message is acctually sent. No "ready" message is generated on user joining, so move this message to user incoming. (cherry picked from commit f6c54f4)
(cherry picked from commit 836c21c)
(cherry picked from commit a215b60)
…cturing according to the diataxis framework (cherry picked from commit 41da754)
(cherry picked from commit dad6e5a)
(cherry picked from commit 16d067d)
Apply suggestions from code review Co-authored-by: Ladislav Thon <[email protected]> Signed-off-by: Michal Maléř <[email protected]> (cherry picked from commit 6abe8c9)
Co-authored-by: Michal Maléř <[email protected]> (cherry picked from commit b5c545e)
Co-authored by Ladislav Thon Apply suggestions from code review Co-authored-by: Michelle Purcell <[email protected]> Apply suggestions from code review Co-authored-by: Michelle Purcell <[email protected]> Co-authored-by: Ladislav Thon <[email protected]> (cherry picked from commit d77413f)
Signed-off-by: Michal Maléř <[email protected]> (cherry picked from commit 50d6678)
quarkus-bot
bot
added
area/arc
Issue related to ARC (dependency injection)
area/core
area/dependencies
Pull requests that update a dependency file
area/devtools
Issues/PR related to maven, gradle, platform and cli tooling/plugins
area/docstyle
issues related for manual docstyle review
area/documentation
area/gradle
Gradle
area/infra-automation
anything related to CI, bots, etc. that are used to automated our infrastructure
area/kubernetes
area/logging
area/oidc
area/panache
area/platform
Issues related to definition and interaction with Quarkus Platform
area/reactive-messaging
area/rest
area/scheduler
area/smallrye
area/spring
Issues relating to the Spring integration
area/tracing
labels
Jul 28, 2023
…idation Fixes quarkusio#35081 (cherry picked from commit 2e75e4c)
🙈 The PR is closed and the preview is expired. |
Failing Jobs - Building 87d9902
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/arc
Issue related to ARC (dependency injection)
area/core
area/dependencies
Pull requests that update a dependency file
area/devtools
Issues/PR related to maven, gradle, platform and cli tooling/plugins
area/docstyle
issues related for manual docstyle review
area/documentation
area/gradle
Gradle
area/hibernate-validator
Hibernate Validator
area/infra
internal and infrastructure related issues
area/infra-automation
anything related to CI, bots, etc. that are used to automated our infrastructure
area/kubernetes
area/logging
area/oidc
area/panache
area/platform
Issues related to definition and interaction with Quarkus Platform
area/reactive-messaging
area/rest
area/scheduler
area/smallrye
area/spring
Issues relating to the Spring integration
area/tracing
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please don't merge, I will merge it myself.