Skip to content
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.18] 3.18.0 backports 1 #45759

Merged
merged 50 commits into from
Jan 22, 2025
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
337a8c7
Allow null for query parameters in Kotlin panache
LarsSven Jan 15, 2025
ec991d2
Replace JavaVersion.VERSION_11 with JavaVersion.VERSION_21
rsvoboda Jan 15, 2025
d47763e
Fix typo
metacosm Jan 15, 2025
02fe8a7
Fix missing addChannel flag usage
alesj Jan 16, 2025
b897387
Fix file handling in REST Client
geoand Jan 16, 2025
2e71d98
Use VertxLogDelegateFactory for internal Vert.x logging
geoand Jan 15, 2025
92b08ab
docs,tests(oidc): Use OidcTestClient with Dev Svc for OIDC
michalvavrik Jan 16, 2025
da51b6a
Enable public access to OidcProviderClientImpl#getWebClient
sberyozkin Jan 16, 2025
1dbb706
Update grafana image and remove dashboard hack
brunobat Jan 15, 2025
4ad5844
Getting Started with Security updates
sberyozkin Jan 16, 2025
d5a946d
Fix flaky otel quickstart test
brunobat Jan 16, 2025
2effce0
Update grafana image and remove dashboard hack
brunobat Jan 16, 2025
60bc7f9
Mark quarkus-oidc-client-registration as experimental in doc
gsmet Jan 16, 2025
562e3fb
Update to HTTP error outputs in getting Started with Security
sberyozkin Jan 16, 2025
16c0ed7
Gradle - Correctly pass platform.quarkus.* properties
gsmet Jan 16, 2025
581f2f7
Make sure to delegate to instance variable for releasing config of a …
holly-cummins Jan 16, 2025
8240476
Update drools.adoc
dcdh Jan 17, 2025
648777c
Add missing @ConfigItem to FilterConfig
gsmet Jan 17, 2025
b4fdc47
Do not prefix URL when URL is already absolute
gsmet Dec 27, 2024
0214f2d
Identify non application routes with a name
gsmet Jan 10, 2025
64156ec
Test for non app uris
brunobat Jan 15, 2025
dbb78f3
Avoid duplicates in FrameworkEndpointsBuildItem
gsmet Jan 16, 2025
aec727a
Simplify OpenTelemetrySuppressNonAppUriTest a bit
gsmet Jan 16, 2025
51095df
Use an HashSet contract for DropTargetsSamplerTest
gsmet Jan 16, 2025
c0d81ef
Let TestSpanExporter when we have at least X elements included
gsmet Jan 16, 2025
8586817
Fix wildcard dropping in DropTargetsSampler
gsmet Jan 16, 2025
f1d1740
Add a SuppressNonAppUri test when management interface is enabled
gsmet Jan 16, 2025
1892b91
Gradle - Resolve platform properties when possible
gsmet Jan 17, 2025
2dde199
Pass ApplicationModel to build configuration
gsmet Jan 17, 2025
ca23957
docs(security): CDI request context with HTTP perms and proactive auth
michalvavrik Jan 17, 2025
78f38d2
Don't allow requests into restarting application
stuartwdouglas Jan 17, 2025
d438959
Redis Client: fix NPE when constructing XPendingSummary
Ladicek Jan 17, 2025
740264a
Add props change to LGTM re-load test
alesj Jan 18, 2025
bb7e3ff
Add support for java.time.YearMonth as JAX-RS parameter
DeKoxD Jan 18, 2025
2ff5cce
Observability LGTM dev service filling up logs with services starting
edeandrea Jan 17, 2025
9912928
Polish RecordBeanParamExtractor
geoand Jan 20, 2025
abf815d
Fix @BeanParam handling during hot reload
geoand Jan 20, 2025
4910617
fix: do not check categories without named handlers
rquinio1A Jan 17, 2025
50c0013
Avoid recursive interceptor lookups when the REST Client full name ma…
radcortez Jan 20, 2025
b58dfd9
Adjust Caffeine extension description to drop Java 8 mention
rsvoboda Jan 20, 2025
4e33efd
Bump resteasy-microprofile.version from 3.0.0.Final to 3.0.1.Final
dependabot[bot] Jan 20, 2025
031da1a
Fix wait strategy usage, Grafana should not know about LGTM
alesj Jan 21, 2025
3fcba30
Bump grpc.version from 1.69.0 to 1.69.1
dependabot[bot] Jan 17, 2025
cf9a219
Enable new scripts config in Swagger UI
phillip-kruger Jan 21, 2025
d382c35
Add HTTP response to HttpServerMetricsTagsContributor.Context
geoand Jan 21, 2025
e0360ad
Add HTTP response to HttpClientMetricsTagsContributor.Context
geoand Jan 21, 2025
63463cb
Bump hibernate-reactive.version from 2.4.3.Final to 2.4.4.Final
DavideD Jan 21, 2025
d8f56cb
Bump hibernate-orm.version from 6.6.4.Final to 6.6.5.Final
dependabot[bot] Jan 20, 2025
b6bd029
Upgrade to ByteBuddy 1.15.11
yrodiere Dec 20, 2024
3a4cf41
Remove quarkus-extension-processor from cache-runtime-spi
gsmet Jan 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update drools.adoc
An IT is based on RestAssured only. The name should end by Test.

(cherry picked from commit 7aa12cb)
  • Loading branch information
dcdh authored and gsmet committed Jan 21, 2025
commit 8240476d563cff6966676c4bd528888fc8e0dcc8
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/drools.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ We can create a standard Quarkus and JUnit test to check the behaviour of the Ru
package org.drools.quarkus.quickstart.test;

@QuarkusTest
public class RuntimeIT {
public class RuntimeTest {

@Inject
RuleUnit<HomeRuleUnitData> ruleUnit;
Expand Down