[3.33] 3.33.3 backports 4#55400
Merged
Merged
Conversation
…available (cherry picked from commit d543d9c)
…ain source set resources When the org.kordamp.gradle.jandex or com.github.vlsi.jandex plugin is applied, its jandex/processJandexIndex task writes into build/resources/main. Every Quarkus task that calls configureQuarkusBuildTask() receives mainSourceSet.getResources() — which resolves to the same directory — as part of its compile classpath input. Gradle 9 task-validation detects this as an implicit dependency and fails with WorkValidationException. PR quarkusio#48363 already fixed this for quarkusDependenciesBuild and quarkusDev using addDependencyOnJandexIfConfigured() + afterEvaluate(). This change applies the same pattern to all remaining affected tasks: imageBuild, imagePush (reported in quarkusio#54729), quarkusAppPartsBuild, deploy, buildAotEnhancedImage, and quarkusShowEffectiveConfig. Fixes quarkusio#54729 (cherry picked from commit 97b1380)
…ernetes-client Signed-off-by: xstefank <xstefank122@gmail.com> (cherry picked from commit 3b2e8a0)
Signed-off-by: Ahmed El amraouiyine <ahmed.elamraouiyine@vilavi.fr> (cherry picked from commit 28d7008)
(cherry picked from commit ad076e1)
Fixes: quarkusio#54604 Co-authored-by: xstefank <xstefank122@gmail.com> (cherry picked from commit b551fb1)
(cherry picked from commit 6ea2068)
There were essentially two leaks that seemed to only show up when `Multi#transformToUniAndConcatenate` was used (or at least the first does for sure). 1. Context chaining via `newNestedContext`: In a reactive pipeline, the next REST client call runs on the previous call's duplicated context. `newNestedContext` stores a `__PARENT_CONTEXT__` reference to it, forming an unbounded chain where no context can be GC'd. 2. Context retention via `Response`: The `Response` object retains the `RestClientRequestContext`, which holds the duplicated context through both the clientRequestContext field and the properties map. These references outlive the handler chain. Closes: quarkusio#54639 (cherry picked from commit 2febb03)
(cherry picked from commit bd5d634)
(cherry picked from commit 02fea44)
This is done in order to give users a way to always have `ContainerResponseFilter`, regardless of whether the connection is still open Closes: quarkusio#54889 (cherry picked from commit 0195bf4)
Closes: quarkusio#55008 Signed-off-by: Michal Vavřík <dev@michalvavrik.net> (cherry picked from commit a2001a7)
Add the banDuplicatePomDependencyVersions rule to fail the build when a dependency is declared more than once in a pom.xml. (cherry picked from commit 654e274)
(cherry picked from commit 3a5a046)
The regression was introduced by quarkusio#53885. When using AOT, AotQuarkusEntryPoint.class.getResource(AotQuarkusEntryPoint.class.getSimpleName() + ".class") is actually quite costly so we should avoid calling it when it's not needed. Which should always be the case at some point, once the bug we are working around is fixed. (cherry picked from commit c0cc814)
Bumps [com.ongres.scram:scram-client](https://github.com/ongres/scram) from 3.2 to 3.3. - [Release notes](https://github.com/ongres/scram/releases) - [Changelog](https://github.com/ongres/scram/blob/main/CHANGELOG.md) - [Commits](ongres/scram@3.2...3.3) --- updated-dependencies: - dependency-name: com.ongres.scram:scram-client dependency-version: '3.3' dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> (cherry picked from commit 66e4884)
(cherry picked from commit b2e84c6)
The SmallRye GraphQL extension ships MaxQueryDepthInstrumentation but the instrumentation-query-depth property had no default, leaving applications with cyclic type graphs exposed to memory exhaustion from a single deeply nested query. A default of 10 covers virtually all legitimate query patterns. Users can override via quarkus.smallrye-graphql.instrumentation-query-depth. (cherry picked from commit 7b01e8f)
Bumps [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from 42.7.11 to 42.7.13. - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](pgjdbc/pgjdbc@REL42.7.11...REL42.7.13) --- updated-dependencies: - dependency-name: org.postgresql:postgresql dependency-version: 42.7.13 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> (cherry picked from commit a1f9b50)
|
/cc @aloubyansky (3.33), @jmartisk (3.33), @rsvoboda (3.33) |
Status for workflow
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.