Skip to content

Commit 30c985a

Browse files
authored
Merge branch 'quarkusio:main' into new-ai-java-guide-laura
2 parents f9d7131 + 2022a95 commit 30c985a

File tree

1,435 files changed

+32500
-11993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,435 files changed

+32500
-11993
lines changed

.forbiddenapis/banned-signatures-common.txt

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,51 @@ org.wildfly.common.os.**
1616
io.smallrye.common.Assert.assertTrue(**)
1717
io.smallrye.common.Assert.assertFalse(**)
1818
io.smallrye.common.Assert.assertNotNull(**)
19+
20+
@defaultMessage Use JBoss Logging
21+
# Forbid all logging methods in java.util.logging.Logger
22+
# Simple message logging methods:
23+
java.util.logging.Logger#severe(java.lang.String)
24+
java.util.logging.Logger#warning(java.lang.String)
25+
java.util.logging.Logger#info(java.lang.String)
26+
java.util.logging.Logger#config(java.lang.String)
27+
java.util.logging.Logger#fine(java.lang.String)
28+
java.util.logging.Logger#finer(java.lang.String)
29+
java.util.logging.Logger#finest(java.lang.String)
30+
# Methods with Supplier<String>:
31+
java.util.logging.Logger#severe(java.util.function.Supplier)
32+
java.util.logging.Logger#warning(java.util.function.Supplier)
33+
java.util.logging.Logger#info(java.util.function.Supplier)
34+
java.util.logging.Logger#config(java.util.function.Supplier)
35+
java.util.logging.Logger#fine(java.util.function.Supplier)
36+
java.util.logging.Logger#finer(java.util.function.Supplier)
37+
java.util.logging.Logger#finest(java.util.function.Supplier)
38+
# Generic log methods:
39+
java.util.logging.Logger#log(java.util.logging.Level,java.lang.String)
40+
java.util.logging.Logger#log(java.util.logging.Level,java.util.function.Supplier)
41+
java.util.logging.Logger#log(java.util.logging.Level,java.lang.String,java.lang.Object)
42+
java.util.logging.Logger#log(java.util.logging.Level,java.lang.String,java.lang.Object[])
43+
java.util.logging.Logger#log(java.util.logging.Level,java.lang.String,java.lang.Throwable)
44+
45+
@defaultMessage Use org.jboss.logging.Logger in Quarkus itself
46+
io.quarkus.logging.Log#trace(**)
47+
io.quarkus.logging.Log#tracef(**)
48+
io.quarkus.logging.Log#tracev(**)
49+
io.quarkus.logging.Log#debug(**)
50+
io.quarkus.logging.Log#debugf(**)
51+
io.quarkus.logging.Log#debugv(**)
52+
io.quarkus.logging.Log#info(**)
53+
io.quarkus.logging.Log#infof(**)
54+
io.quarkus.logging.Log#infov(**)
55+
io.quarkus.logging.Log#warn(**)
56+
io.quarkus.logging.Log#warnf(**)
57+
io.quarkus.logging.Log#warnv(**)
58+
io.quarkus.logging.Log#error(**)
59+
io.quarkus.logging.Log#errorf(**)
60+
io.quarkus.logging.Log#errorv(**)
61+
io.quarkus.logging.Log#fatal(**)
62+
io.quarkus.logging.Log#fatalf(**)
63+
io.quarkus.logging.Log#fatalv(**)
64+
io.quarkus.logging.Log#log(**)
65+
io.quarkus.logging.Log#logf(**)
66+
io.quarkus.logging.Log#logv(**)

.github/dependabot.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,20 @@ updates:
7575
- dependency-name: org.hamcrest:hamcrest
7676
- dependency-name: org.junit:junit-bom
7777
- dependency-name: org.junit.jupiter:*
78+
- dependency-name: org.junit.platform:*
7879
- dependency-name: org.assertj:assertj-core
7980
- dependency-name: org.testcontainers:*
8081
- dependency-name: org.mockito:*
8182
- dependency-name: org.awaitility:awaitility
8283
- dependency-name: com.thoughtworks.xstream:xstream
8384
- dependency-name: org.jacoco:*
84-
# Maven plugins
85+
# Maven plugins and extensions
8586
- dependency-name: org.apache.maven.plugins:*
8687
- dependency-name: org.codehaus.mojo:*
8788
- dependency-name: io.fabric8:docker-maven-plugin
8889
- dependency-name: net.revelc.code.formatter:formatter-maven-plugin
8990
- dependency-name: net.revelc.code:impsort-maven-plugin
91+
- dependency-name: eu.maveniverse.maven.njord:*
9092
# Narayana
9193
- dependency-name: org.jboss.narayana.jta:*
9294
- dependency-name: org.jboss.narayana.jts:*
@@ -176,7 +178,7 @@ updates:
176178
- dependency-name: org.jboss.jdeparser:jdeparser
177179
- dependency-name: com.github.javaparser:javaparser-core
178180
- dependency-name: com.h2database:h2
179-
- dependency-name: io.github.crac:org-crac
181+
- dependency-name: org.crac:crac
180182
- dependency-name: com.dajudge.kindcontainer:kindcontainer
181183
- dependency-name: jakarta.*:*
182184
- dependency-name: org.eclipse.*:*

.github/filter-jvm-tests-json.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ if [[ "${GITHUB_REPOSITORY:-DEFINED_ON_CI}" != "quarkusio/quarkus" ]]; then
1919
JSON=$(echo -n "$JSON" | jq 'map(. | select(.["os-name"]!="macos-arm64-latest"))')
2020
fi
2121

22+
JSON=$(echo "$JSON" | jq '
23+
map(
24+
. + {
25+
tag: (
26+
.name
27+
| ascii_downcase
28+
| gsub(" "; "-")
29+
| gsub("-+"; "-")
30+
)
31+
}
32+
)
33+
')
34+
2235
# Step 0: print unfiltered json and exit in case the parameter is '_all_' (full build) or print nothing if empty (no changes)
2336
if [ "$1" == '_all_' ]
2437
then
@@ -58,5 +71,4 @@ else
5871
JSON=$(echo -n $JSON | jq --arg category Integration --arg modules "${INTEGRATION_TESTS_COMMAND}" '( .[] | select(.category == $category) ).modules = $modules')
5972
fi
6073

61-
6274
echo \{java: ${JSON}\}

.github/filter-native-tests-json.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@ PRG_PATH=$( cd "$(dirname "$0")" ; pwd -P )
1313

1414
JSON=$(cat ${PRG_PATH}/native-tests.json)
1515

16+
JSON=$( echo "$JSON" | jq '
17+
.include |= map(
18+
. + {
19+
tag: (
20+
"native-" +
21+
(.category
22+
| ascii_downcase
23+
| gsub(" "; "-")
24+
| gsub("-+"; "-")
25+
)
26+
)
27+
}
28+
)
29+
')
30+
1631
# Step 0: print unfiltered json and exit in case the parameter is '_all_' (full build) or print nothing if empty (no changes)
1732
if [ "$1" == '_all_' ]
1833
then

.github/filter-virtual-threads-tests-json.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@ PRG_PATH=$( cd "$(dirname "$0")" ; pwd -P )
1313

1414
JSON=$(cat ${PRG_PATH}/virtual-threads-tests.json)
1515

16+
JSON=$( echo "$JSON" | jq '
17+
.include |= map(
18+
. + {
19+
tag: (
20+
"virtual-threads-" +
21+
(.category
22+
| ascii_downcase
23+
| gsub(" "; "-")
24+
| gsub("-+"; "-")
25+
)
26+
)
27+
}
28+
)
29+
')
30+
1631
# Step 0: print unfiltered json and exit in case the parameter is '_all_' (full build) or print nothing if empty (no changes)
1732
if [ "$1" == '_all_' ]
1833
then

.github/native-tests.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
},
3333
{
3434
"category": "Data5",
35-
"timeout": 70,
36-
"test-modules": "jpa-postgresql, jpa-postgresql-withxml, narayana-stm, narayana-jta, reactive-pg-client, hibernate-reactive-postgresql, hibernate-orm-tenancy/schema",
35+
"timeout": 75,
36+
"test-modules": "jpa-postgresql, jpa-postgresql-withxml, narayana-stm, narayana-jta, reactive-pg-client, hibernate-reactive-postgresql, hibernate-orm-tenancy/schema, hibernate-orm-tenancy/schema-mariadb",
3737
"os-name": "ubuntu-latest"
3838
},
3939
{
@@ -93,7 +93,7 @@
9393
{
9494
"category": "Cache",
9595
"timeout": 75,
96-
"test-modules": "infinispan-cache-jpa, infinispan-client, cache, redis-cache, infinispan-cache",
96+
"test-modules": "infinispan-cache-jpa, infinispan-client, cache, redis-cache, redis-devservices, infinispan-cache",
9797
"os-name": "ubuntu-latest"
9898
},
9999
{

.github/quarkus-github-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ triage:
4949
- id: amazon-lambda
5050
labels: [area/amazon-lambda]
5151
title: "lambda"
52-
notify: [patriot1burke, matejvasek]
52+
notify: [patriot1burke]
5353
directories:
5454
- extensions/amazon-lambda
5555
- integration-tests/amazon-lambda

.github/quarkus-github-lottery.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,20 @@ participants:
9191
maxIssues: 10
9292
stale:
9393
maxIssues: 5
94+
- username: "beikov"
95+
timezone: "Europe/Berlin"
96+
maintenance:
97+
labels: [ "area/hibernate-orm", "area/jdbc" ]
98+
days: [ "WEDNESDAY" ]
99+
created:
100+
maxIssues: 3
101+
feedback:
102+
needed:
103+
maxIssues: 10
104+
provided:
105+
maxIssues: 10
106+
stale:
107+
maxIssues: 5
94108
- username: "gsmet"
95109
timezone: "Europe/Paris"
96110
triage:

0 commit comments

Comments
 (0)