id
int64
0
10.2k
text_id
stringlengths
17
67
repo_owner
stringclasses
232 values
repo_name
stringclasses
295 values
issue_url
stringlengths
39
89
pull_url
stringlengths
37
87
comment_url
stringlengths
37
94
links_count
int64
1
2
link_keyword
stringclasses
12 values
issue_title
stringlengths
7
197
issue_body
stringlengths
45
21.3k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
diff_url
stringlengths
120
170
diff
stringlengths
478
132k
changed_files
stringlengths
47
2.6k
changed_files_exts
stringclasses
22 values
changed_files_count
int64
1
22
java_changed_files_count
int64
1
22
kt_changed_files_count
int64
0
0
py_changed_files_count
int64
0
0
code_changed_files_count
int64
1
22
repo_symbols_count
int64
32.6k
242M
repo_tokens_count
int64
6.59k
49.2M
repo_lines_count
int64
992
6.2M
repo_files_without_tests_count
int64
12
28.1k
changed_symbols_count
int64
0
36.1k
changed_tokens_count
int64
0
6.5k
changed_lines_count
int64
0
561
changed_files_without_tests_count
int64
1
17
issue_symbols_count
int64
45
21.3k
issue_words_count
int64
2
1.39k
issue_tokens_count
int64
13
4.47k
issue_lines_count
int64
1
325
issue_links_count
int64
0
19
issue_code_blocks_count
int64
0
31
pull_create_at
timestamp[s]
stars
int64
10
44.3k
language
stringclasses
8 values
languages
stringclasses
296 values
license
stringclasses
2 values
3,150
quarkusio/quarkus/6675/6519
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/6519
https://github.com/quarkusio/quarkus/pull/6675
https://github.com/quarkusio/quarkus/pull/6675
1
resolves
Qute - fix default template extensions for java.util.Map
`Map.get()` and `Map.containsKey()` are not handled correctly. A workaround exists: ```java @TemplateExtension static Object get(Map<?, ?> map, Object key) { return map.get(key); } @TemplateExtension static boolean containsKey(Map<?, ?> map, Object key) { return map.containsKey(key); } ```
3398d3663dbd2e88322e5ae488505ec436e9e4a8
40e102084eacb3b63ff582148c4da8a0533a5675
https://github.com/quarkusio/quarkus/compare/3398d3663dbd2e88322e5ae488505ec436e9e4a8...40e102084eacb3b63ff582148c4da8a0533a5675
diff --git a/extensions/qute/deployment/src/main/java/io/quarkus/qute/deployment/QuteProcessor.java b/extensions/qute/deployment/src/main/java/io/quarkus/qute/deployment/QuteProcessor.java index 3ee57fc28ec..8179de01cf6 100644 --- a/extensions/qute/deployment/src/main/java/io/quarkus/qute/deployment/QuteProcessor.java ...
['extensions/qute/runtime/src/main/java/io/quarkus/qute/runtime/DefaultTemplateExtensions.java', 'independent-projects/qute/core/src/main/java/io/quarkus/qute/ValueResolvers.java', 'extensions/qute/deployment/src/test/java/io/quarkus/qute/deployment/TemplateExtensionMethodsTest.java', 'extensions/qute/deployment/src/ma...
{'.java': 4}
4
4
0
0
4
6,858,325
1,326,877
177,926
1,907
669
101
10
3
313
36
69
12
0
1
2020-01-21T08:33:17
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,151
quarkusio/quarkus/6643/6641
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/6641
https://github.com/quarkusio/quarkus/pull/6643
https://github.com/quarkusio/quarkus/pull/6643
2
fixes
Panache entites are not marked as dirty after deserialization with Jackson
**Describe the bug** Using Jackson for JSON-Deserializiation Panache entities (w/out explicit setters) is problematic because generated getters & setters are marked "synthetic" by Quarkus and Jackson skips synthetic methods, i.e. it uses just the public fields. But that means that Hibernate's dirty tracking is bypasse...
bcd95553beb5e40ff824bb232f271eae815565d7
6ee371b5c336b5171d8443855085ee8ca321c92e
https://github.com/quarkusio/quarkus/compare/bcd95553beb5e40ff824bb232f271eae815565d7...6ee371b5c336b5171d8443855085ee8ca321c92e
diff --git a/extensions/panache/panache-common/deployment/src/main/java/io/quarkus/panache/common/deployment/PanacheEntityEnhancer.java b/extensions/panache/panache-common/deployment/src/main/java/io/quarkus/panache/common/deployment/PanacheEntityEnhancer.java index c26c31e49c7..59583cedb0c 100644 --- a/extensions/pana...
['extensions/panache/panache-common/deployment/src/main/java/io/quarkus/panache/common/deployment/PanacheEntityEnhancer.java']
{'.java': 1}
1
1
0
0
1
6,826,114
1,320,930
177,282
1,887
359
70
4
1
985
143
208
18
0
0
2020-01-20T12:54:40
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,152
quarkusio/quarkus/6602/6600
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/6600
https://github.com/quarkusio/quarkus/pull/6602
https://github.com/quarkusio/quarkus/pull/6602
1
resolves
Simple scheduler CRON triggers do not work correctly with JDK9+
It seems that since JDK9 the `ZonedDateTime.now()` method works with microsecond precision. This breaks our scheduling logic which expects milliseconds precision (JDK8 behavior). We need to make the extension logic more robust. NOTE: This bug does not apply to quartz extension which is using a different mechanism to...
3ab105c87613119f492c297d34a51bf31ee4a5b0
fa93c3b58ab26f1159b8988d10592228abf9e52b
https://github.com/quarkusio/quarkus/compare/3ab105c87613119f492c297d34a51bf31ee4a5b0...fa93c3b58ab26f1159b8988d10592228abf9e52b
diff --git a/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SimpleScheduler.java b/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SimpleScheduler.java index 28c0d73c088..ae723f248b0 100644 --- a/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/Sim...
['extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SimpleScheduler.java']
{'.java': 1}
1
1
0
0
1
6,701,766
1,294,979
173,721
1,830
2,382
435
42
1
339
50
64
3
0
0
2020-01-17T10:13:12
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,153
quarkusio/quarkus/6583/6566
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/6566
https://github.com/quarkusio/quarkus/pull/6583
https://github.com/quarkusio/quarkus/pull/6583
1
fixes
PanacheMongoRepository does not deal well with instants
When using the PanacheMongoRepository to query the database using Instants the Inventory does not find any results unless the query is written in mongo syntax. `fun getByCreationInstantBefore(time: Instant) = list("endAt < ?1", time)` Should return the Commands present in the database with endAt < time but retur...
64067b91deb0311c6833d93f49ec41fa91d06121
4c49673ece0d0d366a6e0c6530a9fba1b8be6bcc
https://github.com/quarkusio/quarkus/compare/64067b91deb0311c6833d93f49ec41fa91d06121...4c49673ece0d0d366a6e0c6530a9fba1b8be6bcc
diff --git a/extensions/panache/mongodb-panache/runtime/src/main/java/io/quarkus/mongodb/panache/runtime/CommonQueryBinder.java b/extensions/panache/mongodb-panache/runtime/src/main/java/io/quarkus/mongodb/panache/runtime/CommonQueryBinder.java index 8ab9230ad6d..f63874a48b4 100644 --- a/extensions/panache/mongodb-pana...
['extensions/panache/mongodb-panache/runtime/src/test/java/io/quarkus/mongodb/panache/runtime/MongoOperationsTest.java', 'extensions/panache/mongodb-panache/runtime/src/main/java/io/quarkus/mongodb/panache/runtime/CommonQueryBinder.java']
{'.java': 2}
2
2
0
0
2
6,705,750
1,295,800
173,834
1,832
279
60
6
1
577
86
131
11
0
0
2020-01-16T12:43:11
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,154
quarkusio/quarkus/6504/6485
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/6485
https://github.com/quarkusio/quarkus/pull/6504
https://github.com/quarkusio/quarkus/pull/6504
1
fixes
Adding Groovy plugin to Gradle project fails quarkusDev
When adding the Groovy plugin like: ``` plugins { id "java" id "groovy" id "io.quarkus" } ``` then `quarkusDev` fails with: ``` ❯ ./gradlew clean quarkusDev > Task :compileJava Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. ...
8c8670d1c0124575a160f7a7b1aec06cddf84609
e5e6e1e7d6d4392d55fd12b7c24920eda165aad6
https://github.com/quarkusio/quarkus/compare/8c8670d1c0124575a160f7a7b1aec06cddf84609...e5e6e1e7d6d4392d55fd12b7c24920eda165aad6
diff --git a/devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPluginExtension.java b/devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPluginExtension.java index 3e3a0c27bfe..d48acd6ec7d 100644 --- a/devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPluginExtension.java +++ b/devtools/gradle/src/main/ja...
['devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPluginExtension.java']
{'.java': 1}
1
1
0
0
1
6,637,370
1,282,892
172,089
1,811
117
23
4
1
1,025
119
262
35
0
2
2020-01-10T22:14:28
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,179
quarkusio/quarkus/5607/3721
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/3721
https://github.com/quarkusio/quarkus/pull/5607
https://github.com/quarkusio/quarkus/pull/5607
1
fixes
Unable to Run tests with non-standard maven settings
**Describe the bug** When using non-standard maven settings, typically the user maven repository is no configured at `$HOME/.m2`, the test fails with exception unable to find the project artifact at $HOME/.m2/repository **Expected behavior** Test should run successfully **Actual behavior** Test fails with the ...
1cfe29a8ea5030dbfbb078ad171ae4173e9d8f6e
6f4d610ea504fcbcfa253bc79a71e90859357ce8
https://github.com/quarkusio/quarkus/compare/1cfe29a8ea5030dbfbb078ad171ae4173e9d8f6e...6f4d610ea504fcbcfa253bc79a71e90859357ce8
diff --git a/independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/resolver/maven/MavenRepoInitializer.java b/independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/resolver/maven/MavenRepoInitializer.java index c88d79b6a6c..f002c3d65f8 100644 --- a/independent-projects/bootstrap/core/s...
['independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/resolver/maven/MavenRepoInitializer.java']
{'.java': 1}
1
1
0
0
1
5,972,153
1,157,573
154,078
1,598
746
177
8
1
3,272
289
871
44
3
1
2019-11-19T20:56:32
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,181
quarkusio/quarkus/5573/5569
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5569
https://github.com/quarkusio/quarkus/pull/5573
https://github.com/quarkusio/quarkus/pull/5573
1
fixes
MicroProfile TCK OpenTracing failures
I just stumbled upon this test failure in the TCK run on CI: ``` [ERROR] Failures: [ERROR] OpenTracingClassMethodNameClientTests>Arquillian.run:138->OpenTracingClientBaseTests.testNestedSpans:414->OpenTracingBaseTests.testNestedSpans:385->OpenTracingBaseTests.assertEqualTrees:227 expected [[ { span: "{ op...
1eb0423ee4ece41e025b3e74cb1028f00cca0c7a
6a4c53d1a5d63b19912ca036d53fc23f20844b16
https://github.com/quarkusio/quarkus/compare/1eb0423ee4ece41e025b3e74cb1028f00cca0c7a...6a4c53d1a5d63b19912ca036d53fc23f20844b16
diff --git a/extensions/resteasy/runtime/src/main/java/io/quarkus/resteasy/runtime/standalone/VertxHttpRequest.java b/extensions/resteasy/runtime/src/main/java/io/quarkus/resteasy/runtime/standalone/VertxHttpRequest.java index 1560a717b0b..a54586a1cfe 100644 --- a/extensions/resteasy/runtime/src/main/java/io/quarkus/re...
['extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/CurrentVertxRequest.java', 'extensions/resteasy/runtime/src/main/java/io/quarkus/resteasy/runtime/standalone/VertxHttpRequest.java', 'extensions/resteasy/runtime/src/main/java/io/quarkus/resteasy/runtime/standalone/VertxRequestHandler.java', 'e...
{'.java': 6}
6
6
0
0
6
5,974,655
1,157,984
154,162
1,598
6,117
918
145
5
3,410
182
953
48
9
1
2019-11-18T23:34:20
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,226
quarkusio/quarkus/3869/3790
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/3790
https://github.com/quarkusio/quarkus/pull/3869
https://github.com/quarkusio/quarkus/pull/3869
1
fixes
NPE in ArcTestRequestScopeProvider.setup() in native mode with dependency on deployment test jar
while working on the quarkus vault extension, I encountered a NPE in ArcTestRequestScopeProvider in native mode, after adding a test jar (which contains helper classes to start and configure vault for integration testing) as a test dependency of integration test jpa-postgresql. may be the issue is in the way I devel...
383767c14ae7705ba21aa81b1256914106e38f6a
ef82c09bfe08cde8f1942d141c459cacccf5cad7
https://github.com/quarkusio/quarkus/compare/383767c14ae7705ba21aa81b1256914106e38f6a...ef82c09bfe08cde8f1942d141c459cacccf5cad7
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/test/TestScopeSetup.java b/core/deployment/src/main/java/io/quarkus/deployment/test/TestScopeSetup.java index 3663d099a3e..29388b6b8ba 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/test/TestScopeSetup.java +++ b/core/deployment/src/main...
['test-framework/junit5/src/main/java/io/quarkus/test/junit/QuarkusTestExtension.java', 'core/deployment/src/main/java/io/quarkus/deployment/test/TestScopeSetup.java', 'extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/ArcTestRequestScopeProvider.java', 'test-framework/common/src/main/java/io/quarkus/te...
{'.java': 4}
4
4
0
0
4
4,716,828
909,904
121,006
1,211
889
163
26
1
8,348
389
1,904
96
2
2
2019-09-05T09:43:13
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,215
quarkusio/quarkus/4274/4248
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4248
https://github.com/quarkusio/quarkus/pull/4274
https://github.com/quarkusio/quarkus/pull/4274
1
fix
Native image - ClassNotFoundException: org.conscrypt.BufferAllocator
**Describe the bug** When upgrading from Quarkus 0.19.0 to 0.23.1 (GraalVM 19.0.2 to 19.2.0.1) I'm getting this error at native-image compilation: ``` [2019-09-26T17:55:00.105Z] [INFO] [io.quarkus.creator.phase.nativeimage.NativeImagePhase] Running Quarkus native-image plugin on OpenJDK 64-Bit GraalVM CE 19.2.0....
00f961719a1bdabd286bd900b263a77c79d0a903
5958a040c9fea55b6751a65eae656a549a0b0df3
https://github.com/quarkusio/quarkus/compare/00f961719a1bdabd286bd900b263a77c79d0a903...5958a040c9fea55b6751a65eae656a549a0b0df3
diff --git a/extensions/netty/runtime/src/main/java/io/quarkus/netty/runtime/graal/NettySubstitutions.java b/extensions/netty/runtime/src/main/java/io/quarkus/netty/runtime/graal/NettySubstitutions.java index ab2bb428f41..da0521e7f6e 100644 --- a/extensions/netty/runtime/src/main/java/io/quarkus/netty/runtime/graal/Net...
['extensions/netty/runtime/src/main/java/io/quarkus/netty/runtime/graal/NettySubstitutions.java']
{'.java': 1}
1
1
0
0
1
5,171,627
1,001,017
133,075
1,311
1,886
434
44
1
6,184
335
2,041
67
1
1
2019-09-30T08:49:44
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,206
quarkusio/quarkus/4753/4745
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4745
https://github.com/quarkusio/quarkus/pull/4753
https://github.com/quarkusio/quarkus/pull/4753
1
fixes
gradle wrapper not created when creating projects on windows
**Describe the bug** CreateProjectMojo calls gradle instead of gradle.bat/cmd thus on windows gradle wrappers are never created. https://github.com/quarkusio/quarkus/blob/8582422fd071d3ef152d861ab50de5ca1064e8cf/devtools/maven/src/main/java/io/quarkus/maven/CreateProjectMojo.java#L219
ea828fc47fbb02ec8073fb5044dfd33a6cc0c76b
0abfeafcba9b512a71a11a516d5e5cfb0ccb2356
https://github.com/quarkusio/quarkus/compare/ea828fc47fbb02ec8073fb5044dfd33a6cc0c76b...0abfeafcba9b512a71a11a516d5e5cfb0ccb2356
diff --git a/devtools/maven/src/main/java/io/quarkus/maven/CreateProjectMojo.java b/devtools/maven/src/main/java/io/quarkus/maven/CreateProjectMojo.java index 140e28bd265..7e089cd769d 100644 --- a/devtools/maven/src/main/java/io/quarkus/maven/CreateProjectMojo.java +++ b/devtools/maven/src/main/java/io/quarkus/maven/Cr...
['devtools/maven/src/main/java/io/quarkus/maven/CreateProjectMojo.java']
{'.java': 1}
1
1
0
0
1
5,541,144
1,075,389
142,833
1,477
604
130
8
1
295
18
84
7
1
0
2019-10-22T11:49:22
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,207
quarkusio/quarkus/4752/4749
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4749
https://github.com/quarkusio/quarkus/pull/4752
https://github.com/quarkusio/quarkus/pull/4752
1
fixes
Bootstrap maven repo initializer should take into account maven.repo.local property
At this point the local repository location can be configured using settings.xml and QUARKUS_LOCAL_REPO env var with the default pointing to the `~/.m2/repository`. It should also consult `maven.repo.local` system property.
ea828fc47fbb02ec8073fb5044dfd33a6cc0c76b
b03fca06dab05eec08be59de97998ec6418eca71
https://github.com/quarkusio/quarkus/compare/ea828fc47fbb02ec8073fb5044dfd33a6cc0c76b...b03fca06dab05eec08be59de97998ec6418eca71
diff --git a/independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/resolver/maven/MavenRepoInitializer.java b/independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/resolver/maven/MavenRepoInitializer.java index d064ba697d0..c88d79b6a6c 100644 --- a/independent-projects/bootstrap/core/s...
['independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/resolver/maven/MavenRepoInitializer.java']
{'.java': 1}
1
1
0
0
1
5,541,144
1,075,389
142,833
1,477
499
97
12
1
223
30
47
1
0
0
2019-10-22T11:41:23
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,208
quarkusio/quarkus/4727/4683
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4683
https://github.com/quarkusio/quarkus/pull/4727
https://github.com/quarkusio/quarkus/pull/4727
1
fixes
Class io.quarkus.kafka.client.serialization.JsonbSerializer not included in native image
**Describe the bug** After packaging/building my kafka producer-consumer application, when trying to run the docker container that contains the native application, I am facing the error: **Class io.quarkus.kafka.client.serialization.JsonbSerializer could not be found** > Note: running in dev mode and docker with JV...
4def43577e1ac5353643b96d4599a191bb549398
b174c671bef5843afc1521ed65459a2e3b56957e
https://github.com/quarkusio/quarkus/compare/4def43577e1ac5353643b96d4599a191bb549398...b174c671bef5843afc1521ed65459a2e3b56957e
diff --git a/extensions/kafka-client/deployment/src/main/java/io/quarkus/kafka/client/deployment/KafkaProcessor.java b/extensions/kafka-client/deployment/src/main/java/io/quarkus/kafka/client/deployment/KafkaProcessor.java index 69405b8b022..1f10d4f4273 100644 --- a/extensions/kafka-client/deployment/src/main/java/io/q...
['extensions/kafka-client/deployment/src/main/java/io/quarkus/kafka/client/deployment/KafkaProcessor.java']
{'.java': 1}
1
1
0
0
1
5,536,064
1,074,378
142,689
1,474
201
36
4
1
14,992
508
3,410
167
0
3
2019-10-21T23:34:36
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,209
quarkusio/quarkus/4652/4645
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4645
https://github.com/quarkusio/quarkus/pull/4652
https://github.com/quarkusio/quarkus/pull/4652
1
fixes
ClassLoader not closed
**Describe the bug** During builds, a classloader created by the quarkus maven plugin is not closed completely, thus not releasing the jars after the build. This can cause problems when embedding maven. This mainly happens when using concurrent builds and a maven daemon (this always occurs the second time). This mea...
381e7df4439f5dd9f7a83ae9ec2a5a7469512c1c
e463a4af098546fd2e2482a701fbc4ac3ab0d97e
https://github.com/quarkusio/quarkus/compare/381e7df4439f5dd9f7a83ae9ec2a5a7469512c1c...e463a4af098546fd2e2482a701fbc4ac3ab0d97e
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/util/ServiceUtil.java b/core/deployment/src/main/java/io/quarkus/deployment/util/ServiceUtil.java index d57d632b8cd..6ab6e390232 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/util/ServiceUtil.java +++ b/core/deployment/src/main/java/io/...
['core/deployment/src/main/java/io/quarkus/deployment/util/ServiceUtil.java']
{'.java': 1}
1
1
0
0
1
5,414,664
1,048,309
139,293
1,398
344
64
7
1
961
99
213
15
0
1
2019-10-18T08:55:23
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,211
quarkusio/quarkus/4567/4565
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4565
https://github.com/quarkusio/quarkus/pull/4567
https://github.com/quarkusio/quarkus/pull/4567
1
fixes
BuildStep utilizing InterceptorBindingRegistrarBuildItem results in IllegalArgumentException
**Describe the bug** I followed the example from the CDI guide for implementing [additional interceptor bindings](https://quarkus.io/guides/cdi-reference#additional-interceptor-bindings). It fails with: ``` java.lang.IllegalArgumentException: Build item class must be leaf (final) types: class io.quarkus.arc.depl...
f0375704930b06f7b9fa5ae50e648c2b0dbd88bc
3d21f2d3d87a799b6b555aaefa802c20be247f49
https://github.com/quarkusio/quarkus/compare/f0375704930b06f7b9fa5ae50e648c2b0dbd88bc...3d21f2d3d87a799b6b555aaefa802c20be247f49
diff --git a/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/InterceptorBindingRegistrarBuildItem.java b/extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/InterceptorBindingRegistrarBuildItem.java index cf48e4cf6b3..a399b05f5bb 100644 --- a/extensions/arc/deployment/src/main/java/io/qu...
['extensions/arc/deployment/src/main/java/io/quarkus/arc/deployment/InterceptorBindingRegistrarBuildItem.java']
{'.java': 1}
1
1
0
0
1
5,392,698
1,044,163
138,817
1,387
157
27
2
1
869
58
188
16
1
1
2019-10-15T10:53:13
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,212
quarkusio/quarkus/4546/4545
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4545
https://github.com/quarkusio/quarkus/pull/4546
https://github.com/quarkusio/quarkus/pull/4546
1
resolves
Shared lifecycle interceptor instances use wrong CreationalContext
Each interceptor instance should receive a new child `CreationalContext` from the CC of the intercepted bean. This issue follows up on #3530.
51c3476e97efc5b82f4689db4ece30b5ed945130
8f2b288b9b5c74398108225ea23829847826f252
https://github.com/quarkusio/quarkus/compare/51c3476e97efc5b82f4689db4ece30b5ed945130...8f2b288b9b5c74398108225ea23829847826f252
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanGenerator.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanGenerator.java index 31f2824a9c8..7a75c1d6662 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/B...
['independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanGenerator.java', 'independent-projects/arc/tests/src/test/java/io/quarkus/arc/test/interceptors/intercepted/InterceptedBeanInjectionTest.java', 'independent-projects/arc/runtime/src/main/java/io/quarkus/arc/InterceptedBeanMetadataProvider.j...
{'.java': 3}
3
3
0
0
3
5,380,672
1,041,870
138,470
1,383
618
97
9
2
141
22
30
1
0
0
2019-10-14T11:20:08
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,213
quarkusio/quarkus/4501/4499
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4499
https://github.com/quarkusio/quarkus/pull/4501
https://github.com/quarkusio/quarkus/pull/4501
1
fixes
quarkus.application.name is not taken into account in stop message
If I add this to my `application.properties`: ``` quarkus.application.name=MyApp ``` Startup message is OK: ``` 2019-10-10 14:39:15,327 INFO [io.quarkus] (main) MyApp 1.0-SNAPSHOT (running on Quarkus 999-SNAPSHOT) started in 0.612s. Listening on: http://0.0.0.0:8080 2019-10-10 14:39:15,333 INFO [io.quarkus] ...
239b5c7294f76af99244ea65cb59ec8ad41c9342
10df14c488bbca2d5a3bd6b85a00839672f12217
https://github.com/quarkusio/quarkus/compare/239b5c7294f76af99244ea65cb59ec8ad41c9342...10df14c488bbca2d5a3bd6b85a00839672f12217
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/steps/MainClassBuildStep.java b/core/deployment/src/main/java/io/quarkus/deployment/steps/MainClassBuildStep.java index 3c812874270..af9a314a80f 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/steps/MainClassBuildStep.java +++ b/core/depl...
['core/runtime/src/main/java/io/quarkus/runtime/Timing.java', 'core/runtime/src/main/java/io/quarkus/runtime/Application.java', 'core/deployment/src/main/java/io/quarkus/deployment/steps/MainClassBuildStep.java']
{'.java': 3}
3
3
0
0
3
5,305,005
1,026,862
136,510
1,364
1,130
237
22
3
857
105
286
22
2
3
2019-10-10T13:25:09
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,214
quarkusio/quarkus/4476/4469
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4469
https://github.com/quarkusio/quarkus/pull/4476
https://github.com/quarkusio/quarkus/pull/4476
1
fixes
CNFE on scope defining annotations in the default package
**Describe the bug** Quarkus fails ungracefully with scope-defining annotations on beans in the default package. The error: https://gist.github.com/michalszynkiewicz/c489af90ed958b4ff43c7236f4a1b09a **Expected behavior** Either just work or produce a user-friendly message. **To Reproduce** Steps to reproduce ...
409c1009303e76f2a116937ed63fb6d9c4fda79d
4e13d22e9b479351184f913b3fdf6bbb4de1af2e
https://github.com/quarkusio/quarkus/compare/409c1009303e76f2a116937ed63fb6d9c4fda79d...4e13d22e9b479351184f913b3fdf6bbb4de1af2e
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/AbstractGenerator.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/AbstractGenerator.java index e29f8dc6219..d3ba8c05e78 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/pro...
['independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/AbstractGenerator.java']
{'.java': 1}
1
1
0
0
1
5,269,069
1,019,777
135,555
1,352
280
58
4
1
538
53
156
13
2
0
2019-10-09T13:43:45
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,216
quarkusio/quarkus/4255/1893
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/1893
https://github.com/quarkusio/quarkus/pull/4255
https://github.com/quarkusio/quarkus/pull/4255
1
fixes
WWW-Authenticate Header missing
Given a protected method in a JAX-RS resource: @GET @Produces(MediaType.TEXT_HTML) @RolesAllowed("user-monitor") public String returnBootstrapHTML() { ... and Elytron configured to use the embedded Auth: quarkus.security.embedded.enabled=true ... ... ... quarkus.secu...
055bf49b117782130b5ccbe17509490b5defd80e
92232816ca786b8bdf6986854b662ac15eb16445
https://github.com/quarkusio/quarkus/compare/055bf49b117782130b5ccbe17509490b5defd80e...92232816ca786b8bdf6986854b662ac15eb16445
diff --git a/extensions/elytron-security/deployment/src/test/java/io/quarkus/security/test/BasicAuthTestCase.java b/extensions/elytron-security/deployment/src/test/java/io/quarkus/security/test/BasicAuthTestCase.java index 4324f093db7..8cc8c2e98e2 100644 --- a/extensions/elytron-security/deployment/src/test/java/io/qua...
['extensions/resteasy/runtime/src/main/java/io/quarkus/resteasy/runtime/standalone/VertxRequestHandler.java', 'extensions/elytron-security/deployment/src/test/java/io/quarkus/security/test/BasicAuthTestCase.java', 'extensions/resteasy/runtime/src/main/java/io/quarkus/resteasy/runtime/RequestFailer.java']
{'.java': 3}
3
3
0
0
3
5,184,303
1,003,652
133,380
1,313
2,694
475
60
2
935
104
268
38
1
0
2019-09-29T01:31:48
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,217
quarkusio/quarkus/4242/4241
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4241
https://github.com/quarkusio/quarkus/pull/4242
https://github.com/quarkusio/quarkus/pull/4242
1
fixes
100% CPU in epoll_wait
**Describe the bug** In some environments, using native image, all threads reading I/O can spend 100% CPU time polling `epoll_wait(..., timeout=0)`. Turns out this is an effect of `static final io.netty.util.concurrent.ScheduledFutureTask.START_TIME` being set to system-dependent `System.nanoTime()` during compilation...
c5daa866fb976baf2faa88ea7fb1c184f7a011fd
a80f970853e67a52e63b5082fe1a8a578584fc19
https://github.com/quarkusio/quarkus/compare/c5daa866fb976baf2faa88ea7fb1c184f7a011fd...a80f970853e67a52e63b5082fe1a8a578584fc19
diff --git a/extensions/netty/deployment/src/main/java/io/quarkus/netty/deployment/NettyProcessor.java b/extensions/netty/deployment/src/main/java/io/quarkus/netty/deployment/NettyProcessor.java index bcea7cd2864..eb190661974 100644 --- a/extensions/netty/deployment/src/main/java/io/quarkus/netty/deployment/NettyProces...
['extensions/netty/deployment/src/main/java/io/quarkus/netty/deployment/NettyProcessor.java', 'extensions/netty/runtime/src/main/java/io/quarkus/netty/runtime/graal/NettySubstitutions.java']
{'.java': 2}
2
2
0
0
2
5,172,853
1,001,310
133,103
1,311
1,232
266
35
2
522
69
109
4
0
0
2019-09-27T11:18:56
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,218
quarkusio/quarkus/4240/4239
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4239
https://github.com/quarkusio/quarkus/pull/4240
https://github.com/quarkusio/quarkus/pull/4240
1
fixes
High contention on @Transactional annotated methods
The interceptor we use to implement the `@Transactional` does a lookup of the TransactionManager on each need. Narayana implements this lookup with a synchronized method; however it should be totally fine to cache this lookup even in a constant.
9b52fcf67d0cace1a450485b8aed748a8a5d8061
89abf612d4fcc1732238fb0f8edbf27287426036
https://github.com/quarkusio/quarkus/compare/9b52fcf67d0cace1a450485b8aed748a8a5d8061...89abf612d4fcc1732238fb0f8edbf27287426036
diff --git a/extensions/narayana-jta/runtime/src/main/java/io/quarkus/narayana/jta/runtime/NarayanaJtaProducers.java b/extensions/narayana-jta/runtime/src/main/java/io/quarkus/narayana/jta/runtime/NarayanaJtaProducers.java index 2f0b8ee5cda..22b9f8c5feb 100644 --- a/extensions/narayana-jta/runtime/src/main/java/io/quar...
['extensions/narayana-jta/runtime/src/main/java/io/quarkus/narayana/jta/runtime/NarayanaJtaProducers.java']
{'.java': 1}
1
1
0
0
1
5,166,109
999,962
132,939
1,310
422
56
8
1
248
39
49
3
0
0
2019-09-27T10:22:33
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,219
quarkusio/quarkus/4179/4178
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4178
https://github.com/quarkusio/quarkus/pull/4179
https://github.com/quarkusio/quarkus/pull/4179
1
fixes
ClientProxyGenerator - handle thrown exception types correctly
Currently, we only expect a `ClassType`: https://github.com/quarkusio/quarkus/blob/0.22.0/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ClientProxyGenerator.java#L100
112ca87e55200ea80a3c48727eea361bc3963fd1
7739aa495e6c64b2d5f15a216c75a52dd01c41b4
https://github.com/quarkusio/quarkus/compare/112ca87e55200ea80a3c48727eea361bc3963fd1...7739aa495e6c64b2d5f15a216c75a52dd01c41b4
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ClientProxyGenerator.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ClientProxyGenerator.java index 4079941d1af..29f0e8172a5 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/a...
['independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ClientProxyGenerator.java']
{'.java': 1}
1
1
0
0
1
5,142,144
995,387
132,241
1,304
527
84
8
1
198
7
56
3
1
0
2019-09-24T13:46:26
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,221
quarkusio/quarkus/4153/4151
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4151
https://github.com/quarkusio/quarkus/pull/4153
https://github.com/quarkusio/quarkus/pull/4153
1
fixes
Can't run devmode with application which uses a ServletBuildItem
Happens on current master (ca11b856). To reproduce, simply add an extension that uses a `ServletBuildItem`, for example `smallrye-metrics`. Here a list of URL mappings is wrapped into unmodifiable list https://github.com/quarkusio/quarkus/blob/ca11b856b1dc82ae3ee5e33199ed116ebdbf2700/extensions/undertow/spi/src/main...
c972f05e0893ecd056e2af635324d3ac0fe04fe2
7387ff39b16535269677462412717ae6941bd62a
https://github.com/quarkusio/quarkus/compare/c972f05e0893ecd056e2af635324d3ac0fe04fe2...7387ff39b16535269677462412717ae6941bd62a
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/recording/BytecodeRecorderImpl.java b/core/deployment/src/main/java/io/quarkus/deployment/recording/BytecodeRecorderImpl.java index c5ec1b6d1df..a46ffa5f482 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/recording/BytecodeRecorderImpl.ja...
['core/deployment/src/test/java/io/quarkus/deployment/recording/BytecodeRecorderTestCase.java', 'core/deployment/src/main/java/io/quarkus/deployment/recording/BytecodeRecorderImpl.java']
{'.java': 2}
2
2
0
0
2
4,934,568
953,009
126,853
1,263
1,023
161
15
1
9,597
346
2,261
99
2
1
2019-09-23T09:06:43
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,222
quarkusio/quarkus/4101/4100
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4100
https://github.com/quarkusio/quarkus/pull/4101
https://github.com/quarkusio/quarkus/pull/4101
1
fixes
java.lang.IllegalStateException: Shutdown in progress exception while destroying Quarkus app
**Describe the bug** When CTRL+C'ing a Quarkus app, the following stacktrace appears in the console: ``` ^C2019-09-18 18:07:28,429 ERROR [io.qua.run.StartupContext] (main) Running a shutdown task failed: java.lang.IllegalStateException: Shutdown in progress at java.lang.ApplicationShutdownHooks.add(ApplicationSh...
2cb0ceeb2cfb0216cce0d290445c744d7f2ee99e
2f7010895a147d199730eaff3137de5dbc141ec2
https://github.com/quarkusio/quarkus/compare/2cb0ceeb2cfb0216cce0d290445c744d7f2ee99e...2f7010895a147d199730eaff3137de5dbc141ec2
diff --git a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java b/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java index 2df951413de..93d245f891e 100644 --- a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/r...
['extensions/vertx-core/runtime/src/test/java/io/quarkus/vertx/core/runtime/VertxCoreProducerTest.java', 'extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java']
{'.java': 2}
2
2
0
0
2
4,814,003
929,248
123,423
1,235
1,139
239
39
1
2,489
176
680
52
0
1
2019-09-18T21:32:21
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,223
quarkusio/quarkus/4096/4094
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4094
https://github.com/quarkusio/quarkus/pull/4096
https://github.com/quarkusio/quarkus/pull/4096
1
fixes
Random HTTP port is shown as zero in the startup logs
**Describe the bug** Quarkus 0.22.0 allowed starting a service in a random port by specifying 0 as the HTTP port. Quarkus 999-SNAPSHOT does not. **Expected behavior** The Quarkus application should start in a random port **Actual behavior** It starts in port 0 (?) and doesn't show the assigned port **To Rep...
3e01d6a96e8fa96e1e71f6edeccbc20573a2707d
6424196dc664805897e8c6ca1e6a70f1a57b9b21
https://github.com/quarkusio/quarkus/compare/3e01d6a96e8fa96e1e71f6edeccbc20573a2707d...6424196dc664805897e8c6ca1e6a70f1a57b9b21
diff --git a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java b/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java index 8f70d6b801d..c6c2e278fa9 100644 --- a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/r...
['extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java']
{'.java': 1}
1
1
0
0
1
4,814,073
929,263
123,423
1,235
928
162
18
1
1,617
190
534
43
2
4
2019-09-18T19:56:27
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,224
quarkusio/quarkus/4058/4049
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4049
https://github.com/quarkusio/quarkus/pull/4058
https://github.com/quarkusio/quarkus/pull/4058
1
resolves
@Produces annotated methods that are not consumed not ignored and result in failed build
**Describe the bug** Issue described [here](https://github.com/quarkusio/quarkus/issues/2770) persists under 0.20.0. **Expected behavior** When using a class with method annotated with `@Produces`, even if never "produced", expect successful build. **Actual behavior** Build fails with misleading error messag...
cf95687fc330a60972a1a76536052a9f9ea1c86a
65bae95137c63fb4ae9cbceaf9d7b4bee430e279
https://github.com/quarkusio/quarkus/compare/cf95687fc330a60972a1a76536052a9f9ea1c86a...65bae95137c63fb4ae9cbceaf9d7b4bee430e279
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanDeployment.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanDeployment.java index 0bec4732f01..82e2e66e3a0 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor...
['independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanDeployment.java', 'independent-projects/arc/tests/src/test/java/io/quarkus/arc/test/unused/RemoveUnusedBeansTest.java', 'independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ComponentsProviderGenerator.java']
{'.java': 3}
3
3
0
0
3
4,789,596
924,670
122,939
1,234
975
163
18
2
3,044
304
754
120
2
7
2019-09-17T07:54:38
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,225
quarkusio/quarkus/3982/3908
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/3908
https://github.com/quarkusio/quarkus/pull/3982
https://github.com/quarkusio/quarkus/pull/3982
1
fixes
MP CP integration doesn't allow for user defined custom contexts
I came across this while investigating execution of MP CP TCK on Quarkus. What the TCK does is define custom contexts (`ThreadContextProvider`s) that are registered via service loader mechanism. Here is a [link](https://github.com/eclipse/microprofile-context-propagation/blob/master/tck/src/main/java/org/eclipse/micr...
c431989b599ac3e68ccf42079c420128a102a0f3
7bddfa01156575bf218ea286f367f5ac9ac8b206
https://github.com/quarkusio/quarkus/compare/c431989b599ac3e68ccf42079c420128a102a0f3...7bddfa01156575bf218ea286f367f5ac9ac8b206
diff --git a/extensions/smallrye-context-propagation/deployment/src/main/java/io/quarkus/smallrye/context/deployment/SmallRyeContextPropagationProcessor.java b/extensions/smallrye-context-propagation/deployment/src/main/java/io/quarkus/smallrye/context/deployment/SmallRyeContextPropagationProcessor.java index 8d68e10e9...
['extensions/smallrye-context-propagation/deployment/src/main/java/io/quarkus/smallrye/context/deployment/SmallRyeContextPropagationProcessor.java']
{'.java': 1}
1
1
0
0
1
4,762,985
919,386
122,191
1,229
459
82
4
1
1,210
132
270
11
2
0
2019-09-12T07:34:42
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,204
quarkusio/quarkus/4813/4812
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4812
https://github.com/quarkusio/quarkus/pull/4813
https://github.com/quarkusio/quarkus/pull/4813
1
fixes
Hibernate ORM with Panache not shown as installed features
**Describe the bug** When using Hibernate ORM with Panache extension, the Installed features list displayed on the log didn't show `hibernate_orm-panache`. **Expected behavior** `hibernate_orm-panache` extension is shown in the extension list **To Reproduce** Steps to reproduce the behavior: 1. Start an app...
a225ca1494dd8d12932e081a6c35f2cfda4c9c3a
5c08f49046bce710fdd792a92d10711080272547
https://github.com/quarkusio/quarkus/compare/a225ca1494dd8d12932e081a6c35f2cfda4c9c3a...5c08f49046bce710fdd792a92d10711080272547
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/builditem/FeatureBuildItem.java b/core/deployment/src/main/java/io/quarkus/deployment/builditem/FeatureBuildItem.java index f5c16e4b988..f5bf2d9f167 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/builditem/FeatureBuildItem.java +++ b/cor...
['extensions/panache/hibernate-orm-panache/deployment/src/main/java/io/quarkus/hibernate/orm/panache/deployment/PanacheResourceProcessor.java', 'core/deployment/src/main/java/io/quarkus/deployment/builditem/FeatureBuildItem.java']
{'.java': 2}
2
2
0
0
2
5,583,227
1,083,675
143,978
1,493
283
74
7
2
612
84
140
17
0
0
2019-10-23T15:54:43
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,203
quarkusio/quarkus/4840/4838
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4838
https://github.com/quarkusio/quarkus/pull/4840
https://github.com/quarkusio/quarkus/pull/4840
1
fixes
HttpAuthenticationMechanism.ChallengeSender.apply - return true instead of null
HttpAuthenticationMechanism.ChallengeSender.apply should probably return `true` instead of `null` Issue for the discussion https://github.com/quarkusio/quarkus/commit/8f39da48551c27b6e3debc7b5683a704c74f8957#r35642382
7e5a87ab42e602949233a4f74b4879010fb7f2d4
0329b94b464bc81a5f98f5c1fa0357f33275ba4f
https://github.com/quarkusio/quarkus/compare/7e5a87ab42e602949233a4f74b4879010fb7f2d4...0329b94b464bc81a5f98f5c1fa0357f33275ba4f
diff --git a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpAuthenticationMechanism.java b/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpAuthenticationMechanism.java index 47af0f20216..fccef05e13d 100644 --- a/extensions/vertx-http/runtime...
['extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpAuthenticationMechanism.java']
{'.java': 1}
1
1
0
0
1
5,586,810
1,084,538
143,994
1,493
51
8
2
1
220
13
68
3
1
0
2019-10-24T13:56:07
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,202
quarkusio/quarkus/4899/4778
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4778
https://github.com/quarkusio/quarkus/pull/4899
https://github.com/quarkusio/quarkus/pull/4899
1
fixes
gradle listExtensions displays mvn instructions
**Describe the bug** In a project generated with Gradle, run `gradle listExtensions`. You should see in the end the following message: ``` To get more information, append -Dquarkus.extension.format=full to your command line. Add an extension to your project by adding the dependency to your project or use `mvn ...
c6625e95d46fc3b3510b443291d85215fa072624
f6388e08841129df8a50a92ad0bd0498b9a35660
https://github.com/quarkusio/quarkus/compare/c6625e95d46fc3b3510b443291d85215fa072624...f6388e08841129df8a50a92ad0bd0498b9a35660
diff --git a/independent-projects/tools/common/src/main/java/io/quarkus/cli/commands/ListExtensions.java b/independent-projects/tools/common/src/main/java/io/quarkus/cli/commands/ListExtensions.java index bcbd5c86433..96baee635ac 100644 --- a/independent-projects/tools/common/src/main/java/io/quarkus/cli/commands/ListE...
['independent-projects/tools/common/src/main/java/io/quarkus/cli/commands/ListExtensions.java']
{'.java': 1}
1
1
0
0
1
5,740,360
1,113,598
148,368
1,527
1,261
256
18
1
1,613
197
448
47
0
5
2019-10-27T08:12:12
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,184
quarkusio/quarkus/5502/5501
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5501
https://github.com/quarkusio/quarkus/pull/5502
https://github.com/quarkusio/quarkus/pull/5502
1
fixes
Platform resolver fails in offline mode when the local repo contains metadata but not the artifacts
In that case, the resolver is able to determine the latest version of the platform but fails to actually resolve it. Unless the user has requested explicitly the desired platform coordinates, the agreed upon behavior in this case is to log a warn and fallback to the platform bundled with the tools.
18b4bd11e39530ab0fb134f6c0e06e79a9758dbe
44b0146b90ce83269c30c1e6df7ac597b13e24f3
https://github.com/quarkusio/quarkus/compare/18b4bd11e39530ab0fb134f6c0e06e79a9758dbe...44b0146b90ce83269c30c1e6df7ac597b13e24f3
diff --git a/independent-projects/tools/platform-descriptor-resolver-json/src/main/java/io/quarkus/platform/descriptor/resolver/json/QuarkusJsonPlatformDescriptorResolver.java b/independent-projects/tools/platform-descriptor-resolver-json/src/main/java/io/quarkus/platform/descriptor/resolver/json/QuarkusJsonPlatformDes...
['independent-projects/tools/platform-descriptor-resolver-json/src/main/java/io/quarkus/platform/descriptor/resolver/json/QuarkusJsonPlatformDescriptorResolver.java']
{'.java': 1}
1
1
0
0
1
5,924,927
1,148,597
152,883
1,582
7,701
1,545
103
1
300
52
56
2
0
0
2019-11-15T00:16:08
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,185
quarkusio/quarkus/5466/3311
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/3311
https://github.com/quarkusio/quarkus/pull/5466
https://github.com/quarkusio/quarkus/pull/5466
1
resolves
ArC removes indirect referenced beans
Quarkus in version 19.1 removes indirect referenced beans. Lets have following scenario. You define an interface for your strategies and an services that depending on any argument, returns the appropriate strategy. These strategies are defined as beans. As these beans are not referenced directly with injections, but...
fe5a40bd9dcab5dfc70421ee3a2f5095679fd639
d7397dfd82e6ed2ff9a4830d00dda4c295070e78
https://github.com/quarkusio/quarkus/compare/fe5a40bd9dcab5dfc70421ee3a2f5095679fd639...d7397dfd82e6ed2ff9a4830d00dda4c295070e78
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanResolver.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanResolver.java index f2e494f0000..ee0aac6d692 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/Bea...
['independent-projects/arc/tests/src/test/java/io/quarkus/arc/test/unused/RemoveUnusedBeansTest.java', 'independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanResolver.java']
{'.java': 2}
2
2
0
0
2
5,927,786
1,149,110
152,945
1,582
125
26
2
1
1,348
147
281
32
0
1
2019-11-14T10:29:52
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,187
quarkusio/quarkus/5415/5406
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5406
https://github.com/quarkusio/quarkus/pull/5415
https://github.com/quarkusio/quarkus/pull/5415
2
fixes
Spring data Jpa extension : sort with Pageable does not work
When I use the extension of spring data Jpa, the sort with Pageable does not work. This is my exp: ``` @GET @Produces("application/json") public List<Fruit> findAll() { return fruitRepository.findAll(PageRequest.of(0,3, Sort.by(Sort.Direction.DESC, "id"))).getContent(); } ``` the me...
c4f1b99bcbe7f7fd5811e463f4a4af76f35dceb1
09bc0f97c7308d47c2730594c99bdc6eda6fc812
https://github.com/quarkusio/quarkus/compare/c4f1b99bcbe7f7fd5811e463f4a4af76f35dceb1...09bc0f97c7308d47c2730594c99bdc6eda6fc812
diff --git a/extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/generate/DerivedMethodsAdder.java b/extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/generate/DerivedMethodsAdder.java index 5f2dae7036f..a5b7438866c 100644 --- a/extensions/spring-dat...
['extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/generate/StockMethodsAdder.java', 'integration-tests/spring-data-jpa/src/test/java/io/quarkus/it/spring/data/jpa/PersonResourceTest.java', 'integration-tests/spring-data-jpa/src/test/java/io/quarkus/it/spring/data/jpa/CountryResourc...
{'.java': 7}
7
7
0
0
7
5,894,856
1,142,912
152,212
1,571
3,633
562
52
2
367
45
89
13
0
1
2019-11-12T17:32:23
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,188
quarkusio/quarkus/5396/5373
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5373
https://github.com/quarkusio/quarkus/pull/5396
https://github.com/quarkusio/quarkus/pull/5396
1
resolves
@InterceptorBinding no longer recognized/fired when they have additional fields
This interceptor binding is working fine, if there is an interceptor (having @Priority annotation or not, @AroundInvoke gets fired wherever @StorageThreadSession is annotated): ``` @Target({TYPE, METHOD}) @Retention(RUNTIME) @InterceptorBinding public @interface StorageThreadSession { } ``` adding a field t...
17faac6ceef7c286bd94be0c82c814a7a6f28b82
3bddda8d432754a505a37ac88ffd16c73bce7fff
https://github.com/quarkusio/quarkus/compare/17faac6ceef7c286bd94be0c82c814a7a6f28b82...3bddda8d432754a505a37ac88ffd16c73bce7fff
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/InterceptorResolver.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/InterceptorResolver.java index a56248fa9f4..03b31e778f7 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/arc...
['independent-projects/arc/tests/src/test/java/io/quarkus/arc/test/interceptors/bindingdefaultvalue/BindingDefaultValueTest.java', 'independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/InterceptorResolver.java']
{'.java': 2}
2
2
0
0
2
5,901,752
1,144,128
152,351
1,572
213
32
2
1
701
88
145
23
0
2
2019-11-12T09:53:51
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,189
quarkusio/quarkus/5347/5317
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5317
https://github.com/quarkusio/quarkus/pull/5347
https://github.com/quarkusio/quarkus/pull/5347
2
fixes
Exception when using a custom interface in Spring Data JPA
Mentioned in #4104, the issue is still in 1.0.0.CR1. Repository codes https://github.com/hantsy/quarkus-sandbox/blob/master/spring-post-service/src/main/java/com/example/PostRepository.java#L6 ```bash 12:31:52,971 ERROR [io.qua.dev.DevModeMain] Failed to start Quarkus: java.lang.RuntimeException: io.quarkus.bu...
60be0d9a6c03fe71a572e535bcd041140e58b592
e476a74d8dad90035ba2d3b811898261e7cad3aa
https://github.com/quarkusio/quarkus/compare/60be0d9a6c03fe71a572e535bcd041140e58b592...e476a74d8dad90035ba2d3b811898261e7cad3aa
diff --git a/extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/generate/SpringDataRepositoryCreator.java b/extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/generate/SpringDataRepositoryCreator.java index 7ae0f5aa90c..582a6d404bd 100644 --- a/exten...
['extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/generate/SpringDataRepositoryCreator.java', 'integration-tests/spring-data-jpa/src/main/java/io/quarkus/it/spring/data/jpa/PersonFragmentImpl.java']
{'.java': 2}
2
2
0
0
2
5,889,560
1,141,984
152,121
1,568
460
84
6
1
17,127
600
3,441
116
1
1
2019-11-09T10:10:47
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,190
quarkusio/quarkus/5328/5318
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5318
https://github.com/quarkusio/quarkus/pull/5328
https://github.com/quarkusio/quarkus/pull/5328
1
fixes
Unexpected behavior of path matching for configuration-based security policies
If I have a permission for a path like `quarkus.http.auth.permission.mypermission.paths=/a/*` Then requests to `/a/anything` should be matched to it, but they are not. If I change it to `quarkus.http.auth.permission.mypermission.paths=/a*` Only then requests to `/a/anything` will start getting authorization che...
5fea8c0bda93f85d403295eb0f5cb4b8791be0c6
fcbf465251be30a38c9b173a66c446e2ad4b4fde
https://github.com/quarkusio/quarkus/compare/5fea8c0bda93f85d403295eb0f5cb4b8791be0c6...fcbf465251be30a38c9b173a66c446e2ad4b4fde
diff --git a/extensions/vertx-http/deployment/src/test/java/io/quarkus/vertx/http/security/RolesAllowedTestCase.java b/extensions/vertx-http/deployment/src/test/java/io/quarkus/vertx/http/security/RolesAllowedTestCase.java index 7278e611a42..614fe67f4c8 100644 --- a/extensions/vertx-http/deployment/src/test/java/io/qua...
['extensions/vertx-http/deployment/src/test/java/io/quarkus/vertx/http/security/RolesAllowedTestCase.java', 'extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/PathMatchingHttpSecurityPolicy.java']
{'.java': 2}
2
2
0
0
2
5,887,252
1,141,509
152,057
1,564
325
61
5
1
452
50
105
9
1
0
2019-11-08T12:41:36
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,192
quarkusio/quarkus/5232/5231
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5231
https://github.com/quarkusio/quarkus/pull/5232
https://github.com/quarkusio/quarkus/pull/5232
1
fixes
Mailer extension replyTo doesn't work
**Describe the bug** If you call `setReplyTo` in a `Mail` object, the `ReactiveMailerImpl` doesn't add the corresponding header. **Expected behavior** The `ReactiveMailerImpl ` should add the replyTo attribute of `Mail` to the corresponding `MailMessage`, allowing mail clients (such as Outlook or Gmail) to reply ...
1c6d3aa1046ef72d590581686b72021a86f4b532
d616d51e91c60357afd3b342f6c4eb7145122e54
https://github.com/quarkusio/quarkus/compare/1c6d3aa1046ef72d590581686b72021a86f4b532...d616d51e91c60357afd3b342f6c4eb7145122e54
diff --git a/extensions/mailer/runtime/src/main/java/io/quarkus/mailer/runtime/ReactiveMailerImpl.java b/extensions/mailer/runtime/src/main/java/io/quarkus/mailer/runtime/ReactiveMailerImpl.java index 42e62ca9655..50eacf66a7b 100644 --- a/extensions/mailer/runtime/src/main/java/io/quarkus/mailer/runtime/ReactiveMailerI...
['extensions/mailer/runtime/src/main/java/io/quarkus/mailer/runtime/ReactiveMailerImpl.java', 'extensions/mailer/runtime/src/test/java/io/quarkus/mailer/runtime/MailerImplTest.java']
{'.java': 2}
2
2
0
0
2
5,898,070
1,143,828
152,315
1,567
305
84
6
1
903
128
210
15
0
0
2019-11-05T21:43:17
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,193
quarkusio/quarkus/5228/5224
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5224
https://github.com/quarkusio/quarkus/pull/5228
https://github.com/quarkusio/quarkus/pull/5228
1
fixes
Cannot add extensions to Gradle project with comma-separated extensions list
**Describe the bug** In the guide: https://quarkus.io/guides/gradle-tooling#dealing-with-extensions it looks like we can add extensions in a comma-separated list like so: `./gradlew addExtension --extensions="quarkus-artemis-jms,quarkus-vertx"` However, for my Gradle project, I get this message: ``` > Task :...
25fcaffdab0a965f9bec3468ce16986a1b7b8f85
a975e478bddf9b58984e10aa1ba936b2fd15e238
https://github.com/quarkusio/quarkus/compare/25fcaffdab0a965f9bec3468ce16986a1b7b8f85...a975e478bddf9b58984e10aa1ba936b2fd15e238
diff --git a/devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusAddExtension.java b/devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusAddExtension.java index ebb5051c2cc..9639f52ccfe 100644 --- a/devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusAddExtension.java +++ b/devtools/gradle/sr...
['devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusAddExtension.java']
{'.java': 1}
1
1
0
0
1
5,898,070
1,143,828
152,315
1,567
408
73
11
1
1,488
189
431
40
1
1
2019-11-05T20:00:10
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,194
quarkusio/quarkus/5187/5186
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5186
https://github.com/quarkusio/quarkus/pull/5187
https://github.com/quarkusio/quarkus/pull/5187
1
fixes
Unable to change debug port in dev mode
**Describe the bug** The DevMojo no longer respects the `debug` option when setting up the debug port it dev mode. Looks to be a result of commit https://github.com/quarkusio/quarkus/commit/66d25b78f0cd386b6deb7a3eeb20e3fb665bb01e **Expected behavior** `mvn compile quarkus:dev -Ddebug=5006` should listen on port ...
a69d94e99f4d522b4f8d1ea1d8559f250dad650d
6228504c9aedce3a5485f55a8125bfe9592d329d
https://github.com/quarkusio/quarkus/compare/a69d94e99f4d522b4f8d1ea1d8559f250dad650d...6228504c9aedce3a5485f55a8125bfe9592d329d
diff --git a/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java b/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java index e70d77a2c6d..a0d0607fa1d 100644 --- a/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java +++ b/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java @@ -264,15 +264,6 @...
['devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java']
{'.java': 1}
1
1
0
0
1
5,888,868
1,141,924
152,044
1,564
1,471
319
25
1
1,243
168
384
32
1
2
2019-11-04T20:58:31
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,195
quarkusio/quarkus/5179/5176
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5176
https://github.com/quarkusio/quarkus/pull/5179
https://github.com/quarkusio/quarkus/pull/5179
1
fixes
quarkus.vertx.max-worker-execute-time not picking up
**Describe the bug** The property `quarkus.vertx.max-worker-execute-time` is not recognized by the quarkus application. **Expected behavior** I would expect to see a the configuted value as time limit in the logs of the quarkus application. **Actual behavior** Still getting the warning with the default (?) va...
83e11852a2dad6a4769bb807f5166c09827fa8c5
4e3aec02d7517028da32fb64f62f421da9baad23
https://github.com/quarkusio/quarkus/compare/83e11852a2dad6a4769bb807f5166c09827fa8c5...4e3aec02d7517028da32fb64f62f421da9baad23
diff --git a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java b/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java index d86ffbe4544..e6af79f7d06 100644 --- a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/r...
['extensions/vertx/runtime/src/main/java/io/quarkus/vertx/runtime/VertxRecorder.java', 'extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxOptionsBuilder.java', 'extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java']
{'.java': 3}
3
3
0
0
3
5,893,251
1,142,861
152,129
1,565
7,831
1,607
171
3
1,322
147
358
39
0
2
2019-11-04T15:27:38
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,196
quarkusio/quarkus/5159/5158
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5158
https://github.com/quarkusio/quarkus/pull/5159
https://github.com/quarkusio/quarkus/pull/5159
1
fixes
Please add null check for LambdaHttpHandler.java line 84 -> request.getMultiValueHeaders()
Hi There, Could you please add a null value check in LambdaHttpHandler.java line 84 -> request.getMultiValueHeaders() I able to send a request with out any http headers from AWS Api gateway and it fails in the above mentioned class with null pointer exception. Thanks, Ravi
08e8878616c1fbb7d90daebb41a345892eeb5d19
92d296ea94e70df23418996b46b5d009b4cef303
https://github.com/quarkusio/quarkus/compare/08e8878616c1fbb7d90daebb41a345892eeb5d19...92d296ea94e70df23418996b46b5d009b4cef303
diff --git a/extensions/amazon-lambda-http/runtime/src/main/java/io/quarkus/amazon/lambda/http/LambdaHttpHandler.java b/extensions/amazon-lambda-http/runtime/src/main/java/io/quarkus/amazon/lambda/http/LambdaHttpHandler.java index b09b474a58a..2169542d9e1 100644 --- a/extensions/amazon-lambda-http/runtime/src/main/java...
['extensions/amazon-lambda-http/runtime/src/main/java/io/quarkus/amazon/lambda/http/LambdaHttpHandler.java']
{'.java': 1}
1
1
0
0
1
5,889,223
1,142,186
152,054
1,565
484
98
6
1
284
45
59
8
0
0
2019-11-04T07:10:16
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,197
quarkusio/quarkus/5112/5110
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5110
https://github.com/quarkusio/quarkus/pull/5112
https://github.com/quarkusio/quarkus/pull/5112
1
fixes
Native build fails when additionalBuildArg is commented out
Native build fails when `additionalBuildArg` is commented out. Thrown exception is: Failed to generate a native image: Failed to augment application classes: Property quarkus.native.additional-build-args not found It's happening with 0.26.1, 0.27.0 and master when using quarkus-maven-plugin - native-image goal defin...
84f50ef4834507997b27be461ab40ed268c954df
5061c0bdd5d538d8c27b91dc1f277383585e0f64
https://github.com/quarkusio/quarkus/compare/84f50ef4834507997b27be461ab40ed268c954df...5061c0bdd5d538d8c27b91dc1f277383585e0f64
diff --git a/devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusNative.java b/devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusNative.java index 5b9f3462fab..6bf9329ffaa 100644 --- a/devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusNative.java +++ b/devtools/gradle/src/main/java/io/qua...
['devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusNative.java', 'devtools/maven/src/main/java/io/quarkus/maven/NativeImageMojo.java']
{'.java': 2}
2
2
0
0
2
5,872,690
1,139,155
151,714
1,563
1,916
395
28
2
11,143
493
2,620
141
0
3
2019-11-01T10:30:10
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,198
quarkusio/quarkus/5077/5063
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/5063
https://github.com/quarkusio/quarkus/pull/5077
https://github.com/quarkusio/quarkus/pull/5077
1
resolves
ComponentsProviderGenerator - break the generated getComponents() method for large deployments into multiple methods
Otherwise we end up with `org.objectweb.asm.MethodTooLargeException`. `BytecodeRecorderImpl` already has something similar implemented.
cbdc08edf435b0048272e75ccef15369a3424ddb
ca77890b3277b6e1e7f567e290f1f1ad52e247c6
https://github.com/quarkusio/quarkus/compare/cbdc08edf435b0048272e75ccef15369a3424ddb...ca77890b3277b6e1e7f567e290f1f1ad52e247c6
diff --git a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanGenerator.java b/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanGenerator.java index 4f8c40e307d..8a638e6ad37 100644 --- a/independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/B...
['independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/BeanGenerator.java', 'independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/InterceptorGenerator.java', 'independent-projects/arc/processor/src/main/java/io/quarkus/arc/processor/ComponentsProviderGenerator.java']
{'.java': 3}
3
3
0
0
3
5,864,569
1,137,707
151,548
1,563
30,241
5,446
472
3
135
12
27
1
0
0
2019-10-31T13:52:54
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,200
quarkusio/quarkus/4950/4815
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4815
https://github.com/quarkusio/quarkus/pull/4950
https://github.com/quarkusio/quarkus/pull/4950
1
fixes
No hot reload on bad configuration wich block the quarkus startup and when http.port is overridden
**Describe the bug** If you configure a bad value that block the first application start, there is no way to have hot reload. If you start on a good value, but after plug a bbad config, the hot reload is ok. A configuration change will trigger the hot reload as wanted. **Expected behavior** The hot reload is t...
4aa96e528bf656de904e6a9796e757a5081409ef
30ec90bb116c60a77a98638dca3019914b4710e1
https://github.com/quarkusio/quarkus/compare/4aa96e528bf656de904e6a9796e757a5081409ef...30ec90bb116c60a77a98638dca3019914b4710e1
diff --git a/core/devmode/src/main/java/io/quarkus/dev/DevModeMain.java b/core/devmode/src/main/java/io/quarkus/dev/DevModeMain.java index 37aff77da4c..40092f8331d 100644 --- a/core/devmode/src/main/java/io/quarkus/dev/DevModeMain.java +++ b/core/devmode/src/main/java/io/quarkus/dev/DevModeMain.java @@ -96,10 +96,6 @@ ...
['core/devmode/src/main/java/io/quarkus/dev/DevModeMain.java']
{'.java': 1}
1
1
0
0
1
5,747,010
1,114,827
148,517
1,527
957
167
18
1
1,125
183
274
27
0
0
2019-10-28T22:32:47
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
3,201
quarkusio/quarkus/4914/4824
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/4824
https://github.com/quarkusio/quarkus/pull/4914
https://github.com/quarkusio/quarkus/pull/4914
1
fixes
Cannot use runtime quarkus.security.users.file.* config
**Describe the bug** I have successfully setup quarkus.security.users.file.* (enabled, users, roles, realm-name) config but the only place where I can have it to work is inside the application.properties file. I think this whould be overridable at startup using java -Dquarkus.security...... options. **Expected beha...
575042827160e63fdfa24c49e43ac97005ac8d3a
7d85723773770ee4c2d197f28b3d9877facc260a
https://github.com/quarkusio/quarkus/compare/575042827160e63fdfa24c49e43ac97005ac8d3a...7d85723773770ee4c2d197f28b3d9877facc260a
diff --git a/extensions/elytron-security-properties-file/runtime/src/main/java/io/quarkus/elytron/security/runtime/ElytronPropertiesFileRecorder.java b/extensions/elytron-security-properties-file/runtime/src/main/java/io/quarkus/elytron/security/runtime/ElytronPropertiesFileRecorder.java index d39d15f683a..fff0e886ec5 ...
['extensions/elytron-security-properties-file/runtime/src/main/java/io/quarkus/elytron/security/runtime/ElytronPropertiesFileRecorder.java']
{'.java': 1}
1
1
0
0
1
5,726,463
1,110,551
147,875
1,525
2,946
481
51
1
2,811
250
716
55
1
1
2019-10-28T02:39:24
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,695
quarkusio/quarkus/18948/18937
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18937
https://github.com/quarkusio/quarkus/pull/18948
https://github.com/quarkusio/quarkus/pull/18948
1
resolves
Deactivating Micrometer default binders
### Describe the bug It's not possible to deactivate the default Micrometer binders with a single property. ### Expected behavior Should be able to set: ``` quarkus.micrometer.binder-enabled-default=false ``` ### Actual behavior Needed to set: ``` quarkus.micrometer.binder-enabled-default=false quarkus.m...
86f9b20f100b7d90f982ffe57139c11b1953ee61
6b1c35532879e01152171f71e423df34ed61082f
https://github.com/quarkusio/quarkus/compare/86f9b20f100b7d90f982ffe57139c11b1953ee61...6b1c35532879e01152171f71e423df34ed61082f
diff --git a/extensions/micrometer/deployment/src/test/java/io/quarkus/micrometer/deployment/GlobalDefaultDisabledTest.java b/extensions/micrometer/deployment/src/test/java/io/quarkus/micrometer/deployment/GlobalDefaultDisabledTest.java index 1f311fabe1f..70464d7ad25 100644 --- a/extensions/micrometer/deployment/src/te...
['extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/config/MicrometerConfig.java', 'extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/MicrometerRecorder.java', 'extensions/micrometer/deployment/src/test/java/io/quarkus/micrometer/deployment/GlobalDefaultDisabledTest.java'...
{'.java': 4}
4
4
0
0
4
17,637,369
3,429,225
452,572
4,710
1,138
245
22
2
763
96
188
49
0
2
2021-07-22T17:44:01
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,686
quarkusio/quarkus/19225/18977
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18977
https://github.com/quarkusio/quarkus/pull/19225
https://github.com/quarkusio/quarkus/pull/19225
1
fixes
Reactive REST Client breaks Hibernate Reactive Transactions
### Describe the bug When combining the Reactive REST client with Hibernate Reactive, the Reactive REST client seems to break Context Propagation, leading to Hibernate Transactions not working as intended. ### Expected behavior Using Reactive REST Client does not have any negative effects on Hibernate Reactive ### ...
5ddaf8d13f01201f05da30d5750813bdc91b11b6
8dd0af4e8c0ad3ccd96d2035e0942ba3a3f7fd29
https://github.com/quarkusio/quarkus/compare/5ddaf8d13f01201f05da30d5750813bdc91b11b6...8dd0af4e8c0ad3ccd96d2035e0942ba3a3f7fd29
diff --git a/extensions/resteasy-reactive/rest-client-reactive/deployment/src/test/java/io/quarkus/rest/client/reactive/BasicRestClientTest.java b/extensions/resteasy-reactive/rest-client-reactive/deployment/src/test/java/io/quarkus/rest/client/reactive/BasicRestClientTest.java index 3e332a87d60..0256fd40771 100644 ---...
['extensions/resteasy-reactive/rest-client-reactive/deployment/src/test/java/io/quarkus/rest/client/reactive/provider/ProviderPriorityTest.java', 'extensions/resteasy-reactive/rest-client-reactive/deployment/src/test/java/io/quarkus/rest/client/reactive/HelloClient2.java', 'independent-projects/resteasy-reactive/client...
{'.java': 8}
8
8
0
0
8
18,302,551
3,559,693
468,906
4,812
496
87
10
1
2,204
321
508
50
2
0
2021-08-04T12:51:03
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,687
quarkusio/quarkus/19100/19051
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19051
https://github.com/quarkusio/quarkus/pull/19100
https://github.com/quarkusio/quarkus/pull/19100
1
fixes
Quarkus fails to report a correct exception when conflicting authentication mechanisms are used (was Quarkus: can't verify Auth0 token)
### Describe the bug I have the following OIDC configuration: ``` quarkus.oidc.auth-server-url=https://cognio.eu.auth0.com quarkus.oidc.client-id=<redacted> quarkus.oidc.credentials.secret=<redacted> quarkus.oidc.token.audience=<redacted> quarkus.oidc.authentication.scopes=openid,profile,email quarkus.http.au...
c83927e8e5eff69cd5f8c8f2f638b23714f3bf70
7c63f4da44faeeca8df9924b617f0cc9ed3d8865
https://github.com/quarkusio/quarkus/compare/c83927e8e5eff69cd5f8c8f2f638b23714f3bf70...7c63f4da44faeeca8df9924b617f0cc9ed3d8865
diff --git a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/OidcAuthenticationMechanism.java b/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/OidcAuthenticationMechanism.java index f3ec0c42821..1fdcbe9a246 100644 --- a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/OidcAuthe...
['extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/security/HttpCredentialTransport.java', 'extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/OidcAuthenticationMechanism.java']
{'.java': 2}
2
2
0
0
2
17,730,064
3,447,179
454,784
4,721
449
78
5
2
7,916
362
1,964
125
2
3
2021-07-29T15:59:14
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,688
quarkusio/quarkus/19070/19037
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19037
https://github.com/quarkusio/quarkus/pull/19070
https://github.com/quarkusio/quarkus/pull/19070
1
fixes
Multipart Class Defined Outside Resource Implementation Fails with CNFE "Populator"
### Describe the bug When I define a class meant to be used as a payload in both my REST client and resource I get a CNFE stating that the "populator" could not be located. If I put the class with the resource it works fine. Referencing a conversation with Michal on [Google Groups](https://groups.google.com/g/qu...
856d0c3fa707a813694e6c89323a2849daad00f3
c09a500dd7efba5284d2bf436b540bfa737711cf
https://github.com/quarkusio/quarkus/compare/856d0c3fa707a813694e6c89323a2849daad00f3...c09a500dd7efba5284d2bf436b540bfa737711cf
diff --git a/extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/src/main/java/io/quarkus/resteasy/reactive/server/deployment/QuarkusServerEndpointIndexer.java b/extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/src/main/java/io/quarkus/resteasy/reactive/server/deployment/QuarkusServerEndp...
['extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/src/main/java/io/quarkus/resteasy/reactive/server/deployment/QuarkusServerEndpointIndexer.java']
{'.java': 1}
1
1
0
0
1
17,711,042
3,443,710
454,287
4,718
255
48
3
1
1,740
240
431
50
3
0
2021-07-29T00:00:09
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,689
quarkusio/quarkus/19053/19049
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19049
https://github.com/quarkusio/quarkus/pull/19053
https://github.com/quarkusio/quarkus/pull/19053
1
close
CLI "quarkus dev" command is not working with gradle kotlin
### Describe the bug quarkus dev command is not working with gradle kotlin ### Expected behavior should work ### Actual behavior ``` [ERROR] ❗ Unable to launch project in dev mode: Was not able to find a build file in: /Users/ia3andy/Downloads/code-with-quarkus ```` ### How to Reproduce? 1. Generate some proj...
6ec78b90cc4b1e00b498fd0a123b10ad962c0637
5cbd3e736edc2378de9d5ad4998f54e469ec013b
https://github.com/quarkusio/quarkus/compare/6ec78b90cc4b1e00b498fd0a123b10ad962c0637...5cbd3e736edc2378de9d5ad4998f54e469ec013b
diff --git a/devtools/cli/src/main/java/io/quarkus/cli/build/GradleRunner.java b/devtools/cli/src/main/java/io/quarkus/cli/build/GradleRunner.java index faaa3c3b65d..d95bfecfcca 100644 --- a/devtools/cli/src/main/java/io/quarkus/cli/build/GradleRunner.java +++ b/devtools/cli/src/main/java/io/quarkus/cli/build/GradleRun...
['devtools/cli/src/main/java/io/quarkus/cli/build/GradleRunner.java']
{'.java': 1}
1
1
0
0
1
17,689,073
3,439,542
453,760
4,715
625
124
10
1
1,025
144
285
48
1
2
2021-07-28T09:29:17
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,690
quarkusio/quarkus/19007/19001
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19001
https://github.com/quarkusio/quarkus/pull/19007
https://github.com/quarkusio/quarkus/pull/19007
1
fixes
DevMode Runtime ClassLoader is never closed
### Describe the bug Tracing the constructors and `close` methods on `QuarkusClassLoader` one can see that during a live-reload this is the sequence of relevant events: - start a new "Deployment Class Loader: DEV" - stop a "Deployment Class Loader: DEV" - start a new "Quarkus Runtime ClassLoader: DEV" So at...
8377c6dc4783daa6390e7e58c0a1a9b865809f82
05d0462182b431c9e63af6b260b89898dacb1f01
https://github.com/quarkusio/quarkus/compare/8377c6dc4783daa6390e7e58c0a1a9b865809f82...05d0462182b431c9e63af6b260b89898dacb1f01
diff --git a/core/deployment/src/main/java/io/quarkus/runner/bootstrap/RunningQuarkusApplicationImpl.java b/core/deployment/src/main/java/io/quarkus/runner/bootstrap/RunningQuarkusApplicationImpl.java index 609c0433356..79a69b073fd 100644 --- a/core/deployment/src/main/java/io/quarkus/runner/bootstrap/RunningQuarkusApp...
['core/deployment/src/main/java/io/quarkus/runner/bootstrap/RunningQuarkusApplicationImpl.java']
{'.java': 1}
1
1
0
0
1
17,676,071
3,436,997
453,457
4,714
508
97
11
1
1,045
167
247
21
0
0
2021-07-26T21:39:52
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,693
quarkusio/quarkus/18965/18942
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18942
https://github.com/quarkusio/quarkus/pull/18965
https://github.com/quarkusio/quarkus/pull/18965
1
fixes
Should start a single Vertx instance, or guarantee unique thread names
### Describe the bug When starting Quarkus in dev mode, there are two independent Vert.x engined started: 1. One by `VertxCoreRecorder#initialize` triggered by `ResteasyStandaloneRecorder` 2. One by `DevConsoleProcessor#initializeVirtual`. This doesn't seem efficient (is it necessary?) and is extremely confu...
08afe29cd99d5e4719f966ef834d0e46219ce426
dbf29e890758038a2be68544253db2b42fe881c9
https://github.com/quarkusio/quarkus/compare/08afe29cd99d5e4719f966ef834d0e46219ce426...dbf29e890758038a2be68544253db2b42fe881c9
diff --git a/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/devmode/console/DevConsoleProcessor.java b/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/devmode/console/DevConsoleProcessor.java index 0af391b45bf..8a84e13f6da 100644 --- a/extensions/vertx-ht...
['extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/devmode/console/DevConsoleProcessor.java']
{'.java': 1}
1
1
0
0
1
17,643,683
3,430,672
452,715
4,712
1,722
362
37
1
800
110
190
21
0
0
2021-07-23T11:21:30
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,694
quarkusio/quarkus/18955/18954
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18954
https://github.com/quarkusio/quarkus/pull/18955
https://github.com/quarkusio/quarkus/pull/18955
1
fixes
quarkus:dependency-tree fails on conditional dependencies unless they are present in the local repo
### Describe the bug Assuming the local repo does not contain the `io.quarkiverse.logging.logback` artifacts, create a project using `qs create -x logback -S 2.1` then ```` [aloubyansky@lenora code-with-quarkus]$ mvn quarkus:dependency-tree [INFO] Scanning for projects... [INFO] [INFO] ---------------------<...
84fc1d02fb294a45b7d18326bad2849db48648bc
4e60b1d3c61979d996cf307d662cc5d4d00cc361
https://github.com/quarkusio/quarkus/compare/84fc1d02fb294a45b7d18326bad2849db48648bc...4e60b1d3c61979d996cf307d662cc5d4d00cc361
diff --git a/devtools/maven/src/main/java/io/quarkus/maven/DependencyTreeMojo.java b/devtools/maven/src/main/java/io/quarkus/maven/DependencyTreeMojo.java index f3b6e4d90c5..d8d2c28a287 100644 --- a/devtools/maven/src/main/java/io/quarkus/maven/DependencyTreeMojo.java +++ b/devtools/maven/src/main/java/io/quarkus/maven...
['devtools/maven/src/main/java/io/quarkus/maven/DependencyTreeMojo.java']
{'.java': 1}
1
1
0
0
1
17,640,751
3,430,059
452,639
4,711
202
39
2
1
2,660
163
745
29
6
1
2021-07-23T06:08:34
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,696
quarkusio/quarkus/18944/18943
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18943
https://github.com/quarkusio/quarkus/pull/18944
https://github.com/quarkusio/quarkus/pull/18944
1
fixes
dev-mode Classloader leak via Vert.x internal worker pool
### Describe the bug This is similar to #18911, but it turns out Vert.x has an additional internal pool which is keeping hold of previous classloaders: these threads are lazily started (so easy to miss in a simple app) and follow the naming scheme `vertx-internal-blocking-` N ### Expected behavior We should re...
86f9b20f100b7d90f982ffe57139c11b1953ee61
9d410c1edb7c1dd3c01a7c9dd4ad666cf99bd9c6
https://github.com/quarkusio/quarkus/compare/86f9b20f100b7d90f982ffe57139c11b1953ee61...9d410c1edb7c1dd3c01a7c9dd4ad666cf99bd9c6
diff --git a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java b/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java index c7c0357c730..8823f29604f 100644 --- a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/r...
['extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java']
{'.java': 1}
1
1
0
0
1
17,637,369
3,429,225
452,572
4,710
2,084
430
46
1
340
55
76
8
0
0
2021-07-22T16:50:03
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,684
quarkusio/quarkus/19291/19269
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19269
https://github.com/quarkusio/quarkus/pull/19291
https://github.com/quarkusio/quarkus/pull/19291
1
fixes
quarkus starts database testcontainer even if quarkus.datasource.start-container set to false
### Describe the bug There is testcontainers lib in classpath `quarkus.datasource.start-container` set to false in the application.properties when run tests without any tests that starts testcontainer and Docker available it fails because quarkus tries to run testcontainer. It's needed to completely decouple ...
626b2dce604661f2e0efd7150fb3897081225306
e8fe2d617506cba2f366360bf56c891e1ccf1562
https://github.com/quarkusio/quarkus/compare/626b2dce604661f2e0efd7150fb3897081225306...e8fe2d617506cba2f366360bf56c891e1ccf1562
diff --git a/extensions/datasource/runtime/src/main/java/io/quarkus/datasource/runtime/DataSourceRuntimeConfig.java b/extensions/datasource/runtime/src/main/java/io/quarkus/datasource/runtime/DataSourceRuntimeConfig.java index 843523b3b08..82c9f351e8c 100644 --- a/extensions/datasource/runtime/src/main/java/io/quarkus/...
['extensions/datasource/runtime/src/main/java/io/quarkus/datasource/runtime/DataSourceRuntimeConfig.java']
{'.java': 1}
1
1
0
0
1
17,783,703
3,457,545
456,154
4,733
348
75
9
1
4,743
359
1,145
80
1
1
2021-08-08T20:53:21
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,697
quarkusio/quarkus/18922/18887
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18887
https://github.com/quarkusio/quarkus/pull/18922
https://github.com/quarkusio/quarkus/pull/18922
1
fixes
Quarkus continuous test mode hides server output
### Describe the bug I am using the new continuous test mode, which is awesome. Now when I work on some test-driven coding, I write a test, write the code and then Quarkus runs my test and shows me that my code is not working: ``` 2021-07-21 12:26:16,957 ERROR [io.qua.test] (Test runner thread) ================...
efa085f98b499b8db3959e38c87f2169f4eb07bd
45e3b5c49c034f4eaad92e692485b36966839706
https://github.com/quarkusio/quarkus/compare/efa085f98b499b8db3959e38c87f2169f4eb07bd...45e3b5c49c034f4eaad92e692485b36966839706
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.java index 3ba2ce6afc4..019c1c0680a 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.ja...
['core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.java']
{'.java': 1}
1
1
0
0
1
17,629,060
3,427,566
452,370
4,707
254
54
3
1
1,922
265
502
62
0
1
2021-07-22T01:04:42
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,698
quarkusio/quarkus/18912/18911
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18911
https://github.com/quarkusio/quarkus/pull/18912
https://github.com/quarkusio/quarkus/pull/18912
1
fixes
dev-mode Classloader leaks via the vertx blocking executor pool
### Describe the bug The code in https://github.com/quarkusio/quarkus/blob/fadd877ddbe5dd32c57b0a2b67a342367714f7dd/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java#L129 isn't really doing what it's supposed to do as all tasks being passed to `executeBlocking` are bein...
d0555c781c15cbc684684b3d79f98f2507658a94
0e412f1cd8671480dcc6ccb58b95a5ab9d52df00
https://github.com/quarkusio/quarkus/compare/d0555c781c15cbc684684b3d79f98f2507658a94...0e412f1cd8671480dcc6ccb58b95a5ab9d52df00
diff --git a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java b/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java index ed799c7014c..c7c0357c730 100644 --- a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/r...
['extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java']
{'.java': 1}
1
1
0
0
1
17,622,798
3,426,319
452,242
4,707
1,940
350
46
1
486
55
125
6
1
0
2021-07-21T16:37:06
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,699
quarkusio/quarkus/18877/18864
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18864
https://github.com/quarkusio/quarkus/pull/18877
https://github.com/quarkusio/quarkus/pull/18877
1
fixes
Classloader leak in MP ContextManagerProvider / Smallrye SmallRyeContextManagerProvider
### Describe the bug When running a Quarkus application in dev-mode, at each code reload an additional copy of the application is loaded in memory, but old classloaders are not being released in full, leading to exhausting both heap memory and metaspace after some reloads. This is the patch to GC root, the classl...
0cea0e1b6a4d39734c047ff223b951d88f9a8ad2
78e5635337067e9135530e46465397fdf05d50ae
https://github.com/quarkusio/quarkus/compare/0cea0e1b6a4d39734c047ff223b951d88f9a8ad2...78e5635337067e9135530e46465397fdf05d50ae
diff --git a/extensions/smallrye-context-propagation/deployment/src/main/java/io/quarkus/smallrye/context/deployment/SmallRyeContextPropagationProcessor.java b/extensions/smallrye-context-propagation/deployment/src/main/java/io/quarkus/smallrye/context/deployment/SmallRyeContextPropagationProcessor.java index a74e825db...
['extensions/smallrye-context-propagation/deployment/src/main/java/io/quarkus/smallrye/context/deployment/SmallRyeContextPropagationProcessor.java', 'extensions/smallrye-context-propagation/runtime/src/main/java/io/quarkus/smallrye/context/runtime/SmallRyeContextPropagationRecorder.java']
{'.java': 2}
2
2
0
0
2
17,608,026
3,423,395
451,954
4,703
738
127
13
2
2,845
255
598
60
0
1
2021-07-21T01:15:18
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,700
quarkusio/quarkus/18867/16895
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/16895
https://github.com/quarkusio/quarkus/pull/18867
https://github.com/quarkusio/quarkus/pull/18867
1
fix
Unable to make the Vert.x cache directory in Windows
## Describe the bug When running a Quarkus application in Windows, this warning is sometimes printed: ``` {"timestamp":"2021-04-28 13:02:58","sequence":346,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus.vertx.core.runtime.VertxCoreRecorder","level":"WARN","message":"Unable to make the Vert.x...
41b53fba69ef0628588273b06f935b945f1699df
4a5221633c7f8f33fc98bbbdaf0471f9bdc9d4f2
https://github.com/quarkusio/quarkus/compare/41b53fba69ef0628588273b06f935b945f1699df...4a5221633c7f8f33fc98bbbdaf0471f9bdc9d4f2
diff --git a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java b/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java index ed799c7014c..7482133f4d3 100644 --- a/extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/r...
['extensions/vertx-core/runtime/src/main/java/io/quarkus/vertx/core/runtime/VertxCoreRecorder.java']
{'.java': 1}
1
1
0
0
1
17,610,442
3,423,735
451,995
4,703
767
129
11
1
1,414
117
399
29
3
1
2021-07-20T16:30:19
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,701
quarkusio/quarkus/18813/18767
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18767
https://github.com/quarkusio/quarkus/pull/18813
https://github.com/quarkusio/quarkus/pull/18813
1
fixes
quarkus projects does not have maven compiler configured
### Describe the bug `quarkus21 create --registry-client -S 2.1` create projects that when trying to run `quarkus dev` or `mvn quarkus:dev` fails with: ``` [WARNING] The quarkus-maven-plugin build goal was not configured for this project, skipping quarkus:dev as this is assumed to be a support library. If you wa...
be50aabb58ded4941fc710849951a2d62a80434d
fa96b729844730430dcf9e6737478a0aa22e6244
https://github.com/quarkusio/quarkus/compare/be50aabb58ded4941fc710849951a2d62a80434d...fa96b729844730430dcf9e6737478a0aa22e6244
diff --git a/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java b/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java index c1502b5df17..6897aa4e15a 100644 --- a/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java +++ b/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java @@ -88,7 +88,6 @@ ...
['independent-projects/tools/devtools-common/src/main/java/io/quarkus/maven/utilities/MojoUtils.java', 'devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java']
{'.java': 2}
2
2
0
0
2
17,555,507
3,413,257
450,728
4,692
1,955
380
44
2
969
143
240
45
0
1
2021-07-19T13:42:34
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,702
quarkusio/quarkus/18707/18522
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18522
https://github.com/quarkusio/quarkus/pull/18707
https://github.com/quarkusio/quarkus/pull/18707
1
fixes
Jacoco extensions results in java.lang.NoSuchMethodError: 'boolean[] ***.$jacocoInit()' for kotlin when panache repo is injected
## Describe the bug In [this reproduction project](https://github.com/languitar/quarkus-jacoco-kotlin-issue) `mvn verify` results in the following test error: ``` [ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.751 s <<< FAILURE! - in org.acme.rest.GreetingResourceTest [ERROR] org.acme...
9316b3c6cfafe79df6c155a766b0a678a357ce5b
26e3ac74788248dd2bd90116c15a2f61c198fe35
https://github.com/quarkusio/quarkus/compare/9316b3c6cfafe79df6c155a766b0a678a357ce5b...26e3ac74788248dd2bd90116c15a2f61c198fe35
diff --git a/extensions/panache/panache-common/deployment/src/main/java/io/quarkus/panache/common/deployment/visitors/KotlinPanacheClassOperationGenerationVisitor.java b/extensions/panache/panache-common/deployment/src/main/java/io/quarkus/panache/common/deployment/visitors/KotlinPanacheClassOperationGenerationVisitor....
['extensions/panache/panache-common/deployment/src/main/java/io/quarkus/panache/common/deployment/visitors/KotlinPanacheClassOperationGenerationVisitor.java']
{'.java': 1}
1
1
0
0
1
17,516,593
3,405,198
449,816
4,685
222
44
3
1
2,723
299
757
77
2
5
2021-07-15T06:38:29
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,703
quarkusio/quarkus/18686/18575
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18575
https://github.com/quarkusio/quarkus/pull/18686
https://github.com/quarkusio/quarkus/pull/18686
1
fixes
Custom OpenTelemetry SpanExporter breaks Jaeger exporter
## Describe the bug When using the quarkus-opentelemetry extension as well as the quarkus-opentelemetry-exporter-jaeger extension adding a custom `SpanExporter` makes the jaeger exporter stop working. ### Expected behavior Both exporters are able to export spans and no warning occurs. ### Actual behavior The j...
087e562a9f76af911c071423bcdaba6a2504e0e9
7ae4ba1d203419a8b9400907e2e79a0473256400
https://github.com/quarkusio/quarkus/compare/087e562a9f76af911c071423bcdaba6a2504e0e9...7ae4ba1d203419a8b9400907e2e79a0473256400
diff --git a/extensions/opentelemetry/opentelemetry-exporter-jaeger/runtime/src/main/java/io/quarkus/opentelemetry/exporter/jaeger/runtime/LateBoundBatchSpanProcessor.java b/extensions/opentelemetry/opentelemetry-exporter-jaeger/runtime/src/main/java/io/quarkus/opentelemetry/exporter/jaeger/runtime/LateBoundBatchSpanPr...
['extensions/opentelemetry/opentelemetry-exporter-otlp/runtime/src/main/java/io/quarkus/opentelemetry/exporter/otlp/runtime/LateBoundBatchSpanProcessor.java', 'extensions/opentelemetry/opentelemetry-exporter-jaeger/runtime/src/main/java/io/quarkus/opentelemetry/exporter/jaeger/runtime/LateBoundBatchSpanProcessor.java']
{'.java': 2}
2
2
0
0
2
17,510,727
3,404,171
449,672
4,685
104
16
4
2
1,697
163
369
50
0
2
2021-07-14T15:50:48
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,705
quarkusio/quarkus/18635/18492
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18492
https://github.com/quarkusio/quarkus/pull/18635
https://github.com/quarkusio/quarkus/pull/18635
1
fixes
Ctrl+C is broken if pressed within Transactional (Quarkus 2.0.1.Final)
## Describe the bug It seems that since Quarkus 2.0.1.Final, if Ctrl+C is pressed while in a `Transactional` block, quarkus:dev is not stopped. It is necessary to kill -9 the process. ### Expected behavior quarkus:dev should stop when Ctrl+C is pressed, application should terminate. ### Actual behavior When Ct...
eca263e861d18673ae500da1144fd68be59cb01a
8fcea3ea44701ac1a2a77fbc775f6778f6fc4858
https://github.com/quarkusio/quarkus/compare/eca263e861d18673ae500da1144fd68be59cb01a...8fcea3ea44701ac1a2a77fbc775f6778f6fc4858
diff --git a/extensions/narayana-jta/runtime/src/main/java/io/quarkus/narayana/jta/runtime/CDIDelegatingTransactionManager.java b/extensions/narayana-jta/runtime/src/main/java/io/quarkus/narayana/jta/runtime/CDIDelegatingTransactionManager.java index cf8c6fe7860..db0f965516b 100644 --- a/extensions/narayana-jta/runtime...
['extensions/narayana-jta/runtime/src/main/java/io/quarkus/narayana/jta/runtime/CDIDelegatingTransactionManager.java']
{'.java': 1}
1
1
0
0
1
17,448,156
3,392,062
448,202
4,668
676
121
14
1
1,651
227
483
45
1
2
2021-07-13T04:40:42
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,685
quarkusio/quarkus/19243/19242
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19242
https://github.com/quarkusio/quarkus/pull/19243
https://github.com/quarkusio/quarkus/pull/19243
1
fix
Deprecate usage of `@ConfigProperty` in ReactiveMessagingKafkaConfig
### Describe the bug The usage of `@ConfigProperty` in https://github.com/quarkusio/quarkus/blob/7820ff6111f97d82c5e5855bf4f503d59b4d4471/extensions/smallrye-reactive-messaging-kafka/runtime/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/ReactiveMessagingKafkaConfig.java#L16 is leading to have this warning ...
7820ff6111f97d82c5e5855bf4f503d59b4d4471
74ee51d94657628973ba2732663dcd911cde4cbc
https://github.com/quarkusio/quarkus/compare/7820ff6111f97d82c5e5855bf4f503d59b4d4471...74ee51d94657628973ba2732663dcd911cde4cbc
diff --git a/extensions/smallrye-reactive-messaging-kafka/runtime/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/ReactiveMessagingKafkaConfig.java b/extensions/smallrye-reactive-messaging-kafka/runtime/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/ReactiveMessagingKafkaConfig.java index 1e45d53a1...
['extensions/smallrye-reactive-messaging-kafka/runtime/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/ReactiveMessagingKafkaConfig.java']
{'.java': 1}
1
1
0
0
1
17,782,936
3,457,399
456,138
4,733
201
40
5
1
1,110
111
293
45
1
1
2021-08-05T07:21:51
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,683
quarkusio/quarkus/19315/19314
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19314
https://github.com/quarkusio/quarkus/pull/19315
https://github.com/quarkusio/quarkus/pull/19315
1
fixes
Performance: contention on Logger instance caused by Vertx warning
### Describe the bug Class `io.vertx.core.impl.ContextImpl` is logging a frequent warning about "You have disabled TCCL checks". This warning is now pointless (according to the vert.x team it's a legacy) and is being removed in upcoming Vert.x releases, but until we can upgrade this is causing significant content...
85142f9184f79d5f985e8268944145f73eb08095
4832547bad3663a417179a852d503822c0da6c97
https://github.com/quarkusio/quarkus/compare/85142f9184f79d5f985e8268944145f73eb08095...4832547bad3663a417179a852d503822c0da6c97
diff --git a/extensions/vertx-core/deployment/src/main/java/io/quarkus/vertx/core/deployment/VertxCoreProcessor.java b/extensions/vertx-core/deployment/src/main/java/io/quarkus/vertx/core/deployment/VertxCoreProcessor.java index e6f6e1fef3c..ef373c89186 100644 --- a/extensions/vertx-core/deployment/src/main/java/io/qua...
['extensions/vertx-core/deployment/src/main/java/io/quarkus/vertx/core/deployment/VertxCoreProcessor.java']
{'.java': 1}
1
1
0
0
1
17,800,252
3,460,658
456,597
4,737
749
155
13
1
507
75
105
8
0
0
2021-08-10T10:40:30
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,754
quarkusio/quarkus/17377/17327
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17327
https://github.com/quarkusio/quarkus/pull/17377
https://github.com/quarkusio/quarkus/pull/17377
1
fixes
WebSockets in Extensions
## Describe the bug From https://quarkusio.zulipchat.com/#narrow/stream/187030-users/topic/Dev.20UI.3A.20Log.20stream.20not.20working.20anymore Recent version of Quarkus (seems like 1.13.3 and 2.0.Alpha*) the extensions that use WebSockets sometimes get an error (Request already read) when trying to upgrade the req...
6c63c63237bcb7188c86adafe61a831cbc4cae8c
bc70b26f7814095868b76d8b9690cf95ac286e70
https://github.com/quarkusio/quarkus/compare/6c63c63237bcb7188c86adafe61a831cbc4cae8c...bc70b26f7814095868b76d8b9690cf95ac286e70
diff --git a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java b/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java index 971871c9e06..9a447378887 100644 --- a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/r...
['extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/VertxHttpRecorder.java']
{'.java': 1}
1
1
0
0
1
16,510,648
3,210,265
425,334
4,483
235
43
5
1
2,678
316
747
71
3
3
2021-05-19T22:35:46
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,671
quarkusio/quarkus/19520/19338
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19338
https://github.com/quarkusio/quarkus/pull/19520
https://github.com/quarkusio/quarkus/pull/19520
1
closes
CoreSerializationInGraalITCase of integration test Main fails with latest GraalVM
### Describe the bug CoreSerializationInGraalITCase of integration test Main fails with latest GraalVM. See https://github.com/graalvm/mandrel/runs/3296489189?check_suite_focus=true#step:9:440 ### Expected behavior Test should pass. ### Actual behavior Test fails with: ``` [ERROR] io.quarkus.it.main.CoreSe...
ed6f31b693cebc9839dc6667a0e830fd313f5583
4921b9fb9f076c1015de8603a45833e3d2c40357
https://github.com/quarkusio/quarkus/compare/ed6f31b693cebc9839dc6667a0e830fd313f5583...4921b9fb9f076c1015de8603a45833e3d2c40357
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageAutoFeatureStep.java b/core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageAutoFeatureStep.java index dacefc389d6..4709fdaac3a 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageAutoFeatureS...
['core/deployment/src/main/java/io/quarkus/deployment/steps/NativeImageAutoFeatureStep.java']
{'.java': 1}
1
1
0
0
1
17,920,080
3,484,053
459,442
4,761
6,309
1,250
86
1
8,494
367
2,121
121
4
1
2021-08-19T23:04:05
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,662
quarkusio/quarkus/19708/19621
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19621
https://github.com/quarkusio/quarkus/pull/19708
https://github.com/quarkusio/quarkus/pull/19708
1
fixes
Response head already sent Exception
### Describe the bug When using lazy JWT authentication with http permissions observing below exceptions if JWT token in the request is expired. ``` [io.ver.ext.web.RoutingContext] (vert.x-eventloop-thread-22) Unhandled exception in router: java.lang.IllegalStateException: Response head already sent or [io.ver.e...
0e58c45b82b3df7095544a34c6eb8be323f3442b
9c553639dd19035c4936c4f9ec89be16dac78d6f
https://github.com/quarkusio/quarkus/compare/0e58c45b82b3df7095544a34c6eb8be323f3442b...9c553639dd19035c4936c4f9ec89be16dac78d6f
diff --git a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/QuarkusErrorHandler.java b/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/QuarkusErrorHandler.java index 04fae63b0f3..6484de2a3f3 100644 --- a/extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/ht...
['extensions/vertx-web/deployment/src/test/java/io/quarkus/vertx/web/mutiny/NdjsonMultiRouteTest.java', 'extensions/vertx-http/runtime/src/main/java/io/quarkus/vertx/http/runtime/QuarkusErrorHandler.java', 'extensions/vertx-web/deployment/src/test/java/io/quarkus/vertx/web/mutiny/SSEMultiRouteTest.java']
{'.java': 3}
3
3
0
0
3
17,985,802
3,497,003
460,955
4,770
3,798
616
82
1
5,201
279
1,660
106
2
6
2021-08-27T02:00:29
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,663
quarkusio/quarkus/19706/19655
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19655
https://github.com/quarkusio/quarkus/pull/19706
https://github.com/quarkusio/quarkus/pull/19706
1
fixes
Index doesn't pick up new interface implementations during dev mode
### Describe the bug I'm encountering an issue with my extension (https://github.com/quarkiverse/quarkus-operator-sdk) and dev mode: the extension allows you to bypass a lot of boilerplate by only providing implementations of a given interface and does the wiring needed to create a functioning (CLI) application. ...
7db3b10ffb28b7691cd2af7f2a044a9257dfc08d
3935094e8c5a8b206dea0668ccf7d82bc2447b74
https://github.com/quarkusio/quarkus/compare/7db3b10ffb28b7691cd2af7f2a044a9257dfc08d...3935094e8c5a8b206dea0668ccf7d82bc2447b74
diff --git a/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java b/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java index abeab532960..c015ef36958 100644 --- a/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java +++ b/devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java @@ -653,22 +653,13 ...
['devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java', 'integration-tests/maven/src/test/java/io/quarkus/maven/it/DevMojoIT.java']
{'.java': 2}
2
2
0
0
2
17,968,197
3,493,728
460,562
4,770
612
97
13
1
2,704
361
716
49
2
0
2021-08-26T22:57:36
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,664
quarkusio/quarkus/19647/19645
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19645
https://github.com/quarkusio/quarkus/pull/19647
https://github.com/quarkusio/quarkus/pull/19647
1
closes
#19534 broke backwards compatibility with GraalVM/Mandrel 20.3
### Describe the bug https://github.com/quarkusio/quarkus/pull/19534 results in the following exception when using GraalVM/Mandrel 20.3 ``` java.lang.ClassNotFoundException: com.oracle.svm.core.jdk.JDK16OrEarlier ``` ### Expected behavior Tests and applications should build with GraalVM/Mandrel 20.3. ### Actua...
9fc6d6dac9e0d263fe70fbed117d72ff91070263
5efc4ca2fb9f884c09e350ac044154ad7b0f9247
https://github.com/quarkusio/quarkus/compare/9fc6d6dac9e0d263fe70fbed117d72ff91070263...5efc4ca2fb9f884c09e350ac044154ad7b0f9247
diff --git a/core/runtime/src/main/java/io/quarkus/runtime/graal/LCMSSubstitutions.java b/core/runtime/src/main/java/io/quarkus/runtime/graal/LCMSSubstitutions.java index 9557212c5dc..78f0fee74d7 100644 --- a/core/runtime/src/main/java/io/quarkus/runtime/graal/LCMSSubstitutions.java +++ b/core/runtime/src/main/java/io/...
['core/runtime/src/main/java/io/quarkus/runtime/graal/LCMSSubstitutionsJDK17.java', 'core/runtime/src/main/java/io/quarkus/runtime/graal/LCMSSubstitutions.java', 'core/runtime/src/main/java/io/quarkus/runtime/graal/Target_sun_security_jca_JCAUtil.java', 'core/runtime/src/main/java/io/quarkus/runtime/util/JavaVersionUti...
{'.java': 4}
4
4
0
0
4
17,952,335
3,490,618
460,195
4,767
1,631
414
42
4
5,045
202
1,150
91
1
2
2021-08-25T09:48:25
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,665
quarkusio/quarkus/19618/19467
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19467
https://github.com/quarkusio/quarkus/pull/19618
https://github.com/quarkusio/quarkus/pull/19618
1
fixes
Hibernate Multitenant project with a @RequestScoped TenantResolver throws javax.enterprise.context.ContextNotActiveException
### Describe the bug I'm using the `SCHEMA` hibernate multitenant option, implementing a `TenantResolver` that is `@RequestScoped` so that I can use an `@Inject`ed `JsonWebToken` At startup, the app logs a warning when trying to call the `getDefaultTenantId` method to get the connection metadata ( see below ). Th...
03b62587c858286a89652f51c2e2aa37e30d0a0d
dd99c0e8ba442d95264a8de62897a1c110ca0d99
https://github.com/quarkusio/quarkus/compare/03b62587c858286a89652f51c2e2aa37e30d0a0d...dd99c0e8ba442d95264a8de62897a1c110ca0d99
diff --git a/extensions/hibernate-orm/runtime/src/main/java/io/quarkus/hibernate/orm/runtime/tenant/HibernateMultiTenantConnectionProvider.java b/extensions/hibernate-orm/runtime/src/main/java/io/quarkus/hibernate/orm/runtime/tenant/HibernateMultiTenantConnectionProvider.java index ddf8000db0f..141965ec47b 100644 --- a...
['extensions/hibernate-orm/runtime/src/main/java/io/quarkus/hibernate/orm/runtime/tenant/HibernateMultiTenantConnectionProvider.java']
{'.java': 1}
1
1
0
0
1
17,944,205
3,488,847
460,011
4,765
1,421
245
27
1
8,633
474
2,020
118
3
3
2021-08-24T15:52:08
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,666
quarkusio/quarkus/19605/19599
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19599
https://github.com/quarkusio/quarkus/pull/19605
https://github.com/quarkusio/quarkus/pull/19605
1
closes
Setting quarkus.redis.devservices.enabled to false does not work
### Describe the bug Hi, Although I set quarkus.redis.devservices.enabled to false, looks like still redis database is tried to be started using docker and start up time goes up to 100 secs in a hello world application. Though, this does not prevent redis client connect to configured database on localhost. appli...
532a9d481378af60d188c6e5421cc9d478ea0298
0daa9c9dd0057c547654247b13b9f43c5bdbd531
https://github.com/quarkusio/quarkus/compare/532a9d481378af60d188c6e5421cc9d478ea0298...0daa9c9dd0057c547654247b13b9f43c5bdbd531
diff --git a/extensions/redis-client/deployment/src/main/java/io/quarkus/redis/client/deployment/DevServicesRedisProcessor.java b/extensions/redis-client/deployment/src/main/java/io/quarkus/redis/client/deployment/DevServicesRedisProcessor.java index 52a73e09abf..f0edb1dc239 100644 --- a/extensions/redis-client/deploym...
['extensions/redis-client/deployment/src/main/java/io/quarkus/redis/client/deployment/DevServicesRedisProcessor.java']
{'.java': 1}
1
1
0
0
1
17,931,300
3,486,128
459,730
4,764
732
153
15
1
2,269
298
643
60
1
0
2021-08-24T07:42:41
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,667
quarkusio/quarkus/19600/19596
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19596
https://github.com/quarkusio/quarkus/pull/19600
https://github.com/quarkusio/quarkus/pull/19600
1
fixes
Cannot toggle back to test mode after pause
### Describe the bug In dev mode, you cannot toggle back to test mode after pausing tests. ### Expected behavior _No response_ ### Actual behavior _No response_ ### How to Reproduce? // some of this is pseudo code 1. cli create app resteasy (from 999-SNAPSHOT bom) 2. mvn quarkus:dev 3. Press "r" to start ...
08b3740af835cb78e5a7d0aabde48944a420f191
68e85dd85bfd1a0ef71fafb22b4530cf82fb5dc1
https://github.com/quarkusio/quarkus/compare/08b3740af835cb78e5a7d0aabde48944a420f191...68e85dd85bfd1a0ef71fafb22b4530cf82fb5dc1
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.java index cdb39a59eb6..8367de53f34 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.ja...
['core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestConsoleHandler.java']
{'.java': 1}
1
1
0
0
1
17,920,080
3,484,053
459,442
4,761
289
46
9
1
809
136
213
48
0
0
2021-08-24T03:39:56
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,668
quarkusio/quarkus/19582/18642
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18642
https://github.com/quarkusio/quarkus/pull/19582
https://github.com/quarkusio/quarkus/pull/19582
1
fixes
Security provider BC + Native Mode not working in Quarkus v2.0
### Describe the bug Since upgrading Quarkus to version 2.0 the security provider Bouncy Castle seems not supported anymore. **Quarkus Platform (working):** 1.13.0.Final **Quarkus Platform (not working):** 2.0.1.Final _Related Dependencies:_ ``` <dependency> <groupId>org.bouncycastle</groupId> ...
de3c639bebf5893edc04b6272628c00c26f0a1e0
7cb7e1b169e6b973bd69479c6b7a1036349403d5
https://github.com/quarkusio/quarkus/compare/de3c639bebf5893edc04b6272628c00c26f0a1e0...7cb7e1b169e6b973bd69479c6b7a1036349403d5
diff --git a/extensions/security/deployment/src/main/java/io/quarkus/security/deployment/SecurityProcessor.java b/extensions/security/deployment/src/main/java/io/quarkus/security/deployment/SecurityProcessor.java index 726419f7d97..d6bd449991c 100644 --- a/extensions/security/deployment/src/main/java/io/quarkus/securit...
['extensions/security/deployment/src/main/java/io/quarkus/security/deployment/SecurityProcessor.java', 'integration-tests/bouncycastle/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleTestCase.java', 'integration-tests/bouncycastle/src/main/java/io/quarkus/it/bouncycastle/BouncyCastleEndpoint.java']
{'.java': 3}
3
3
0
0
3
17,917,989
3,483,661
459,382
4,761
477
102
6
1
6,783
316
1,647
122
1
2
2021-08-23T12:48:07
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,669
quarkusio/quarkus/19523/19519
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19519
https://github.com/quarkusio/quarkus/pull/19523
https://github.com/quarkusio/quarkus/pull/19523
1
fixes
BlockingOperationNotAllowedException is thrown when access database with panache in TenantConfigResolver
### Describe the bug The tenant configs are saved in database which will be loaded dynamically with `Panache` by `TenantConfigResolver`, but `resolve` is running in `IO thread` and `EntityManager` of `Panache` is expected to run in `worker thread` to not block the `IO` one. Thus the `BlockingOperationNotAllowedExcepti...
8445d007174e8882d385a74c26929549a2b724c9
02b4a5e1d7a239f0a27059e648668312c2405d42
https://github.com/quarkusio/quarkus/compare/8445d007174e8882d385a74c26929549a2b724c9...02b4a5e1d7a239f0a27059e648668312c2405d42
diff --git a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/TenantConfigResolver.java b/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/TenantConfigResolver.java index 06d81b2106f..c0f9143cef2 100644 --- a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/TenantConfigResolver.java +++ b/extensions/oidc...
['integration-tests/oidc-tenancy/src/main/java/io/quarkus/it/keycloak/CustomTenantConfigResolver.java', 'extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/CodeAuthenticationMechanism.java', 'extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/BearerAuthenticationMechanism.java', 'extensions/oidc/r...
{'.java': 6}
6
6
0
0
6
17,909,402
3,482,131
459,201
4,760
16,760
2,959
312
5
12,926
471
3,043
144
1
1
2021-08-20T03:57:19
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,670
quarkusio/quarkus/19522/19509
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19509
https://github.com/quarkusio/quarkus/pull/19522
https://github.com/quarkusio/quarkus/pull/19522
1
fixes
Unpredictable "Shutdown in progress" exception for code in dev mode
### Describe the bug We found, that sometimes our test runs fail with "java.lang.IllegalStateException: Shutdown in progress" exceptions. It appears randomly([1],[2],[3]) but it looks like more demanding tasks tend to provoke this behaviour more often. [1] https://github.com/quarkus-qe/quarkus-startstop/pull/102/...
0fe4312c225d35c0a048986770b0dd31bfb49de6
b6b1de095314b61273510ad8aae9baecb83eb2df
https://github.com/quarkusio/quarkus/compare/0fe4312c225d35c0a048986770b0dd31bfb49de6...b6b1de095314b61273510ad8aae9baecb83eb2df
diff --git a/extensions/apicurio-registry-avro/deployment/src/main/java/io/quarkus/apicurio/registry/avro/DevServicesApicurioRegistryProcessor.java b/extensions/apicurio-registry-avro/deployment/src/main/java/io/quarkus/apicurio/registry/avro/DevServicesApicurioRegistryProcessor.java index 5fa11139635..1147572ecc9 1006...
['extensions/oidc/deployment/src/main/java/io/quarkus/oidc/deployment/devservices/keycloak/KeycloakDevServicesProcessor.java', 'extensions/redis-client/deployment/src/main/java/io/quarkus/redis/client/deployment/DevServicesRedisProcessor.java', 'extensions/kafka-client/deployment/src/main/java/io/quarkus/kafka/client/d...
{'.java': 9}
9
9
0
0
9
17,862,754
3,472,972
458,128
4,751
2,974
515
49
8
5,220
485
1,298
95
5
1
2021-08-20T02:52:51
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,672
quarkusio/quarkus/19496/19480
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19480
https://github.com/quarkusio/quarkus/pull/19496
https://github.com/quarkusio/quarkus/pull/19496
1
fix
Warning about deprecated `quarkus.resteasy.metrics.enabled` is printed even when replacement setting is already used
### Describe the bug On every dev mode start of my application, I get this warning: ``` 2021-08-18 14:26:23,873 WARN [io.qua.sma.met.dep.SmallRyeMetricsProcessor] (build-42) `quarkus.resteasy.metrics.enabled` is deprecated and will be removed in a future version. Use `quarkus.smallrye-metrics.jaxrs.enabled` to enab...
0770982b22a5596a878051a22f938991200b73d1
6b70e67b982aa0b1e4746d8ffed12a7e51645bfd
https://github.com/quarkusio/quarkus/compare/0770982b22a5596a878051a22f938991200b73d1...6b70e67b982aa0b1e4746d8ffed12a7e51645bfd
diff --git a/extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcessor.java b/extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcesso...
['extensions/resteasy-classic/resteasy-server-common/deployment/src/main/java/io/quarkus/resteasy/server/common/deployment/ResteasyServerCommonProcessor.java', 'extensions/smallrye-metrics/deployment/src/main/java/io/quarkus/smallrye/metrics/deployment/JaxRsMetricsProcessor.java']
{'.java': 2}
2
2
0
0
2
17,863,509
3,473,107
458,138
4,751
920
194
13
2
2,724
326
902
59
2
2
2021-08-19T08:53:57
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,682
quarkusio/quarkus/19324/19323
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19323
https://github.com/quarkusio/quarkus/pull/19324
https://github.com/quarkusio/quarkus/pull/19324
1
fixes
Degredation in Dev mode startup time for project using quarkus-spring-jpa extension
### Describe the bug Time to first request has degraded for dev mode startup between 1.11.7.Final and 2.1.1.Final for projects that include a lot of extensions (i.e. many classes) that also include `quarkus-spring-data-jpa` Start times reported by the console; 1.11.7.Final | 2.1.1.Final -- | -- 3.954s. | 5.804...
cde75bce7ad3d3d8a3111aaddd1d5e69366a9451
1b56fa839ecfcfc6fac98e8691eb65965f945e84
https://github.com/quarkusio/quarkus/compare/cde75bce7ad3d3d8a3111aaddd1d5e69366a9451...1b56fa839ecfcfc6fac98e8691eb65965f945e84
diff --git a/extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/SpringDataJPAProcessor.java b/extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/SpringDataJPAProcessor.java index a41cfc8bfda..7ccfbb56485 100644 --- a/extensions/spring-data-jpa/deploy...
['extensions/spring-data-jpa/deployment/src/main/java/io/quarkus/spring/data/deployment/SpringDataJPAProcessor.java']
{'.java': 1}
1
1
0
0
1
17,800,989
3,460,813
456,610
4,737
1,002
194
21
1
3,118
222
948
75
1
0
2021-08-10T18:09:19
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,673
quarkusio/quarkus/19490/19471
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19471
https://github.com/quarkusio/quarkus/pull/19490
https://github.com/quarkusio/quarkus/pull/19490
1
fixes
SimpleQuarkusRestTestCase#testFormMap sometimes fails with NPE
See the run for this PR: https://github.com/quarkusio/quarkus/pull/19463 ``` 2021-08-17T19:37:29.9850663Z 2021-08-17 19:37:29,957 ERROR [io.qua.ver.htt.run.QuarkusErrorHandler] (executor-thread-0) HTTP Request to /simple/form-map failed, error id: e3672c38-a3f4-4013-876e-bdeec84f42f8-2: java.lang.NullPointerExcepti...
8017b6e9fa723f56b2aece7b2da7966c7e689961
b361dbe92322bf8e70ae70afb28a07a99689be8c
https://github.com/quarkusio/quarkus/compare/8017b6e9fa723f56b2aece7b2da7966c7e689961...b361dbe92322bf8e70ae70afb28a07a99689be8c
diff --git a/independent-projects/resteasy-reactive/common/runtime/src/main/java/org/jboss/resteasy/reactive/common/core/AbstractResteasyReactiveContext.java b/independent-projects/resteasy-reactive/common/runtime/src/main/java/org/jboss/resteasy/reactive/common/core/AbstractResteasyReactiveContext.java index 5af64f58d...
['independent-projects/resteasy-reactive/common/runtime/src/main/java/org/jboss/resteasy/reactive/common/core/AbstractResteasyReactiveContext.java']
{'.java': 1}
1
1
0
0
1
17,862,132
3,472,835
458,107
4,750
1,101
162
27
1
3,351
81
1,133
24
1
1
2021-08-19T03:46:07
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,674
quarkusio/quarkus/19475/19434
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19434
https://github.com/quarkusio/quarkus/pull/19475
https://github.com/quarkusio/quarkus/pull/19475
1
fix
Setting quarkus.resteasy.path not reflected in OpenAPI or Swagger
### Describe the bug When I set the "quarkus.resteast.path" it works making API calls directly but does not get reflected in the OpenAPI or Swagger. Using @ApplicationPath and setting eash @Path looks to work. ### Expected behavior OpenAPI and Swagger reflect the path set in the application properties. ### Actua...
1742e206dae65e7310bf97216f2005e79ec20195
f319f7fc4cad7f6d699e808dc9ad42a91d6a42ef
https://github.com/quarkusio/quarkus/compare/1742e206dae65e7310bf97216f2005e79ec20195...f319f7fc4cad7f6d699e808dc9ad42a91d6a42ef
diff --git a/extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java b/extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java index 2a96133a559..276e9e3619c 100644 --- a/extensions/smallr...
['extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java']
{'.java': 1}
1
1
0
0
1
17,865,728
3,473,519
458,199
4,751
804
163
17
1
820
128
190
41
0
0
2021-08-18T09:36:00
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,675
quarkusio/quarkus/19440/19045
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19045
https://github.com/quarkusio/quarkus/pull/19440
https://github.com/quarkusio/quarkus/pull/19440
1
fix
Kafka JMX registration causes issues with continuous testing
### Describe the bug Enable continuous testing + test output with kafka-avro-schema-quickstart and you get the following: ``` 2021-07-28 13:09:35,398 WARN [org.apa.kaf.com.uti.AppInfoParser] (Test runner thread) Error registering AppInfo mbean: javax.management.InstanceAlreadyExistsException: kafka.producer:type=...
89463784c6ca424eac7215fc262a580bf58b846f
843d1db33b64613a803c16c57b9aafa9f0b3acb9
https://github.com/quarkusio/quarkus/compare/89463784c6ca424eac7215fc262a580bf58b846f...843d1db33b64613a803c16c57b9aafa9f0b3acb9
diff --git a/extensions/smallrye-reactive-messaging-kafka/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/deployment/SmallRyeReactiveMessagingKafkaProcessor.java b/extensions/smallrye-reactive-messaging-kafka/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/deployment/SmallRyeRe...
['extensions/smallrye-reactive-messaging-kafka/deployment/src/main/java/io/quarkus/smallrye/reactivemessaging/kafka/deployment/SmallRyeReactiveMessagingKafkaProcessor.java']
{'.java': 1}
1
1
0
0
1
17,843,495
3,469,263
457,639
4,745
497
103
11
1
4,721
178
1,103
79
0
1
2021-08-17T06:38:59
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,676
quarkusio/quarkus/19403/19392
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19392
https://github.com/quarkusio/quarkus/pull/19403
https://github.com/quarkusio/quarkus/pull/19403
1
fixes
Dev mode freezes when quitting and console log colors are switched off
### Describe the bug That is a very strange bug and I'm not sure, if I got it right: If you - disable console log colors with `quarkus.log.console.color=false`, - start the application in dev mode, - wait for Quarkus to come up, - press `q` for termination the application, - then the application hangs/freeze...
d62cef5bfffff133b55f8275fda358ea2484f7a1
dfc8834cb48df9b008429577cb2b1e4ebde18d5a
https://github.com/quarkusio/quarkus/compare/d62cef5bfffff133b55f8275fda358ea2484f7a1...dfc8834cb48df9b008429577cb2b1e4ebde18d5a
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/console/AeshConsole.java b/core/deployment/src/main/java/io/quarkus/deployment/console/AeshConsole.java index c5aa2f85b85..e7b734ba2ea 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/console/AeshConsole.java +++ b/core/deployment/src/main...
['core/deployment/src/main/java/io/quarkus/deployment/console/AeshConsole.java']
{'.java': 1}
1
1
0
0
1
17,807,531
3,462,003
456,734
4,738
528
90
13
1
1,435
217
384
53
0
0
2021-08-15T07:20:43
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,677
quarkusio/quarkus/19400/19381
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19381
https://github.com/quarkusio/quarkus/pull/19400
https://github.com/quarkusio/quarkus/pull/19400
1
fixes
QuarkusDelayedHandler prints an error and throws a log message away even if the queue was compacted
### Describe the bug When the delayed log writer queue fills up and a compaction of the queue happens if the queue has space the method still returns and the logged message is lost no matter the log level. ### Expected behavior _No response_ ### Actual behavior _No response_ ### How to Reproduce? _No response_ ...
d62cef5bfffff133b55f8275fda358ea2484f7a1
c039d16f3a702f681df0f55f972e1bce329fb5ca
https://github.com/quarkusio/quarkus/compare/d62cef5bfffff133b55f8275fda358ea2484f7a1...c039d16f3a702f681df0f55f972e1bce329fb5ca
diff --git a/independent-projects/bootstrap/runner/src/main/java/io/quarkus/bootstrap/logging/QuarkusDelayedHandler.java b/independent-projects/bootstrap/runner/src/main/java/io/quarkus/bootstrap/logging/QuarkusDelayedHandler.java index 3d76d98d1e4..68e308b980e 100644 --- a/independent-projects/bootstrap/runner/src/mai...
['independent-projects/bootstrap/runner/src/main/java/io/quarkus/bootstrap/logging/QuarkusDelayedHandler.java']
{'.java': 1}
1
1
0
0
1
17,807,531
3,462,003
456,734
4,738
32
3
1
1
3,091
320
542
88
0
1
2021-08-14T12:37:17
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,678
quarkusio/quarkus/19357/19341
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19341
https://github.com/quarkusio/quarkus/pull/19357
https://github.com/quarkusio/quarkus/pull/19357
1
fixes
Reactive rest client doesn't support resource locator and subresource
### Describe the bug When I try to use resource locator with subresource an AbstractMethodError will be thrown. ### Expected behavior Reactive rest client will support resource locators and subresources like [here](https://github.com/stuartwdouglas/quarkus/blob/4f1b3b688a6752b51daa743b5a5b10f7e805bcc7/extensions/res...
701fd3ee8299b5241e70da041b02cec820545186
236586c7619e4a1be938afa809a19f90a85120c9
https://github.com/quarkusio/quarkus/compare/701fd3ee8299b5241e70da041b02cec820545186...236586c7619e4a1be938afa809a19f90a85120c9
diff --git a/extensions/resteasy-reactive/rest-client-reactive/deployment/src/main/java/io/quarkus/rest/client/reactive/deployment/RestClientReactiveProcessor.java b/extensions/resteasy-reactive/rest-client-reactive/deployment/src/main/java/io/quarkus/rest/client/reactive/deployment/RestClientReactiveProcessor.java ind...
['extensions/resteasy-reactive/rest-client-reactive/deployment/src/main/java/io/quarkus/rest/client/reactive/deployment/RestClientReactiveProcessor.java', 'extensions/resteasy-reactive/rest-client-reactive/deployment/src/test/java/io/quarkus/rest/client/reactive/subresource/SubResourceTest.java']
{'.java': 2}
2
2
0
0
2
17,800,556
3,460,729
456,601
4,737
112
24
2
1
1,160
115
356
41
2
0
2021-08-12T04:58:28
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,680
quarkusio/quarkus/19336/19195
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19195
https://github.com/quarkusio/quarkus/pull/19336
https://github.com/quarkusio/quarkus/pull/19336
1
fixes
Infinispan client cannot find `SaslServerFactory` in native mode
Testing the latest Camel Quarkus Infinispan SNAPSHOT with the latest Quarkus Infinispan SNAPSHOT reveals an error in native mode. Seems that Infinispan itests in Quarkus do not use authentication, so maybe this has gone unnoticed since the upgrade to GraalVM 21.2.0. The client configuration used in the Camel Infini...
57d1dae99a635b32951d7e1594f0969fc61dceb1
5443e823851db86ef071bf9eecfce0c207008117
https://github.com/quarkusio/quarkus/compare/57d1dae99a635b32951d7e1594f0969fc61dceb1...5443e823851db86ef071bf9eecfce0c207008117
diff --git a/extensions/infinispan-client/deployment/src/main/java/io/quarkus/infinispan/client/deployment/InfinispanClientProcessor.java b/extensions/infinispan-client/deployment/src/main/java/io/quarkus/infinispan/client/deployment/InfinispanClientProcessor.java index 6196debd6de..5c19dd18bdd 100644 --- a/extensions/...
['extensions/infinispan-client/deployment/src/main/java/io/quarkus/infinispan/client/deployment/InfinispanClientProcessor.java']
{'.java': 1}
1
1
0
0
1
17,800,845
3,460,789
456,603
4,737
389
72
4
1
3,149
138
684
33
1
1
2021-08-11T09:30:49
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,681
quarkusio/quarkus/19333/19317
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/19317
https://github.com/quarkusio/quarkus/pull/19333
https://github.com/quarkusio/quarkus/pull/19333
1
fixes
Resteasy Reactive: Headers manipulated in ServerRequestFilter are not injected properly into rest method
### Describe the bug When modifying or create a new header in a @ServerRequestFilter annotated method (with or without preMatching = true) does not have an effect on method paramteres injected with `@RestHeader` or `@HeaderParam`. E.g. for a method like ``` @GET @Produces(MediaType.TEXT_PLAIN) public Strin...
0d33b51c95474c512db8eb4fcaa98a8d0c889df8
db91a0386e0abf5cf8348fa8995e6ae42ca72d41
https://github.com/quarkusio/quarkus/compare/0d33b51c95474c512db8eb4fcaa98a8d0c889df8...db91a0386e0abf5cf8348fa8995e6ae42ca72d41
diff --git a/extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/src/test/java/io/quarkus/resteasy/reactive/server/test/simple/SimpleQuarkusRestResource.java b/extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/src/test/java/io/quarkus/resteasy/reactive/server/test/simple/SimpleQuarkusRestR...
['independent-projects/resteasy-reactive/server/runtime/src/main/java/org/jboss/resteasy/reactive/server/core/ResteasyReactiveRequestContext.java', 'extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/src/test/java/io/quarkus/resteasy/reactive/server/test/simple/SimpleQuarkusRestResource.java']
{'.java': 2}
2
2
0
0
2
17,800,845
3,460,789
456,603
4,737
890
156
21
1
1,960
250
476
62
2
1
2021-08-11T02:40:39
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,706
quarkusio/quarkus/18630/18503
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18503
https://github.com/quarkusio/quarkus/pull/18630
https://github.com/quarkusio/quarkus/pull/18630
1
fix
CORS is broken with Quarkus and http2
## Describe the bug Duplicate access-control* headers with http 2. Browsers do not allow these and so connections fail. ### Expected behavior Single access-control* headers for each type matching the Quarkus CORS configuration. Works as expected with http 1.1 ### Actual behavior Duplicate access-control* heade...
3455456d517e16a8733ada7851c31d619acbaf20
123a8985da8425b833c893c58691421f16410f54
https://github.com/quarkusio/quarkus/compare/3455456d517e16a8733ada7851c31d619acbaf20...123a8985da8425b833c893c58691421f16410f54
diff --git a/extensions/smallrye-openapi/runtime/src/main/java/io/quarkus/smallrye/openapi/runtime/OpenApiHandler.java b/extensions/smallrye-openapi/runtime/src/main/java/io/quarkus/smallrye/openapi/runtime/OpenApiHandler.java index 17490611311..c83b162277b 100644 --- a/extensions/smallrye-openapi/runtime/src/main/java...
['extensions/smallrye-openapi/runtime/src/main/java/io/quarkus/smallrye/openapi/runtime/OpenApiHandler.java']
{'.java': 1}
1
1
0
0
1
17,443,367
3,391,173
448,074
4,666
1,061
207
16
1
3,416
416
960
100
7
3
2021-07-12T18:58:40
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,707
quarkusio/quarkus/18625/18391
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18391
https://github.com/quarkusio/quarkus/pull/18625
https://github.com/quarkusio/quarkus/pull/18625
1
resolves
Quarkus CLI test are run even if `--no-tests` is specified
## Describe the bug When building using the CLI with command `quarkus build --no-tests` the tests are still executed. ### Expected behavior No tests should be run ### Actual behavior Tests are run ## To Reproduce Link to a small reproducer (preferably a Maven project if the issue is not Gradle-specif...
67aa11451e71ac22beee86182bbc11a9633f7c97
fef11c4141d8b6dad4ac888b4f221978691ef51f
https://github.com/quarkusio/quarkus/compare/67aa11451e71ac22beee86182bbc11a9633f7c97...fef11c4141d8b6dad4ac888b4f221978691ef51f
diff --git a/devtools/cli/src/main/java/io/quarkus/cli/Build.java b/devtools/cli/src/main/java/io/quarkus/cli/Build.java index 15968b8d693..bb0f29dbaa1 100644 --- a/devtools/cli/src/main/java/io/quarkus/cli/Build.java +++ b/devtools/cli/src/main/java/io/quarkus/cli/Build.java @@ -64,10 +64,7 @@ void dryRunBuild(Command...
['devtools/cli/src/main/java/io/quarkus/cli/Build.java', 'devtools/cli/src/main/java/io/quarkus/cli/build/JBangRunner.java', 'devtools/cli/src/test/java/io/quarkus/cli/CliNonProjectTest.java', 'devtools/cli/src/test/java/io/quarkus/cli/CliProjectMavenTest.java', 'devtools/cli/src/test/java/io/quarkus/cli/CliProjectJBan...
{'.java': 8}
8
8
0
0
8
17,441,514
3,390,855
448,034
4,666
1,032
222
23
3
1,405
192
416
52
0
1
2021-07-12T15:42:06
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,708
quarkusio/quarkus/18600/18598
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18598
https://github.com/quarkusio/quarkus/pull/18600
https://github.com/quarkusio/quarkus/pull/18600
1
fixes
Extension quarkus-vertx-graphql interferes with extension quarkus-resteasy-multipart
## Describe the bug After upgrading to Quarks 2.0 I discovered an issue with my application that uses the extensions quarkus-vertx-graphql and quarkus-resteasy-multipart. While running my application in devmode if I perform a multipart form data post to a JAX-RS endpoint none of the parts are received by the JAX-RS en...
c04f968d7aada70a93be6335756187c74955a9d0
22a495cb91bedb95ab76346bf7ce0d67702d9524
https://github.com/quarkusio/quarkus/compare/c04f968d7aada70a93be6335756187c74955a9d0...22a495cb91bedb95ab76346bf7ce0d67702d9524
diff --git a/extensions/vertx-graphql/deployment/src/main/java/io/quarkus/vertx/graphql/deployment/VertxGraphqlProcessor.java b/extensions/vertx-graphql/deployment/src/main/java/io/quarkus/vertx/graphql/deployment/VertxGraphqlProcessor.java index 3f19e383ca7..febf834c992 100644 --- a/extensions/vertx-graphql/deployment...
['extensions/vertx-graphql/runtime/src/main/java/io/quarkus/vertx/graphql/runtime/VertxGraphqlRecorder.java', 'extensions/vertx-graphql/deployment/src/main/java/io/quarkus/vertx/graphql/deployment/VertxGraphqlProcessor.java']
{'.java': 2}
2
2
0
0
2
17,438,030
3,390,240
447,965
4,666
945
185
23
2
2,469
307
682
50
2
1
2021-07-12T07:22:45
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,742
quarkusio/quarkus/17689/17592
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17592
https://github.com/quarkusio/quarkus/pull/17689
https://github.com/quarkusio/quarkus/pull/17689
1
fixes
re-augmentation causes information to get lost in 2.0.0.CR2
## Describe the bug Some of the generated code in `/quarkus-app/quarkus/generated-bytecode.jar` gets lost if the project is re-augmented after the build. ### Expected behavior I can run re-augmentation any number of time and will always get the original if no build time properties have changed. ### Actual behav...
2c069ce845d44be11da03d97303b3c528c20d841
2e28b511505d7fb819cff006e923eed6fc85122e
https://github.com/quarkusio/quarkus/compare/2c069ce845d44be11da03d97303b3c528c20d841...2e28b511505d7fb819cff006e923eed6fc85122e
diff --git a/independent-projects/bootstrap/app-model/src/main/java/io/quarkus/bootstrap/model/AppModel.java b/independent-projects/bootstrap/app-model/src/main/java/io/quarkus/bootstrap/model/AppModel.java index 453258db877..67983300d10 100644 --- a/independent-projects/bootstrap/app-model/src/main/java/io/quarkus/boo...
['independent-projects/bootstrap/app-model/src/main/java/io/quarkus/bootstrap/model/PersistentAppModel.java', 'independent-projects/bootstrap/app-model/src/main/java/io/quarkus/bootstrap/model/AppModel.java']
{'.java': 2}
2
2
0
0
2
16,738,185
3,252,928
430,509
4,535
303
51
5
2
2,531
258
720
63
3
2
2021-06-04T06:52:10
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,733
quarkusio/quarkus/17895/17893
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17893
https://github.com/quarkusio/quarkus/pull/17895
https://github.com/quarkusio/quarkus/pull/17895
1
fixes
MongoDB BSON types are not in the Jandex index
## Describe the bug When building Quarkus application that using `mongodb-client` and `mongodb-panache` extentions, ReflectiveHierarchyStep grumbles: ``` [WARNING] [io.quarkus.deployment.steps.ReflectiveHierarchyStep] Unable to properly register the hierarchy of the following classes for reflection as they are n...
47ccea85d4a934ec916dad0c2d1a0f7aa8a64c3a
431516215d6566ce00aa21b5ec38f9ce8fd5b9d9
https://github.com/quarkusio/quarkus/compare/47ccea85d4a934ec916dad0c2d1a0f7aa8a64c3a...431516215d6566ce00aa21b5ec38f9ce8fd5b9d9
diff --git a/extensions/mongodb-client/deployment/src/main/java/io/quarkus/mongodb/deployment/MongoClientProcessor.java b/extensions/mongodb-client/deployment/src/main/java/io/quarkus/mongodb/deployment/MongoClientProcessor.java index 7e1076053a7..8e39a69b417 100644 --- a/extensions/mongodb-client/deployment/src/main/j...
['extensions/mongodb-client/deployment/src/main/java/io/quarkus/mongodb/deployment/MongoClientProcessor.java']
{'.java': 1}
1
1
0
0
1
16,879,477
3,279,867
434,319
4,571
763
156
18
1
2,829
317
771
86
0
7
2021-06-14T16:33:54
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,736
quarkusio/quarkus/17823/17667
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17667
https://github.com/quarkusio/quarkus/pull/17823
https://github.com/quarkusio/quarkus/pull/17823
1
fixes
GraphQL handler blows up if request contains newline breaks
## Describe the bug When an incoming GraphQL query contains newline characters, the JSON parser that parses it blows up. ### Expected behavior Request with newlines is parsed, the newlines ignored ### Actual behavior The request processing blows up on something like ``` javax.json.stream.JsonParsingException...
d7ad0a109da2e53225228b17b524b10889fb1792
a2a0ac4731d58d45d62daca2211547d550e4a86a
https://github.com/quarkusio/quarkus/compare/d7ad0a109da2e53225228b17b524b10889fb1792...a2a0ac4731d58d45d62daca2211547d550e4a86a
diff --git a/extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/GraphQLTest.java b/extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/GraphQLTest.java index eeb0b5b1c11..cb5b0ae464c 100644 --- a/extensions/smallrye-graphql/deployment/src/...
['extensions/smallrye-graphql/runtime/src/main/java/io/quarkus/smallrye/graphql/runtime/SmallRyeGraphQLExecutionHandler.java', 'extensions/smallrye-graphql/deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/GraphQLTest.java']
{'.java': 2}
2
2
0
0
2
16,867,685
3,277,560
433,987
4,570
1,271
260
25
1
431
62
95
13
0
1
2021-06-10T07:57:02
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,737
quarkusio/quarkus/17798/17618
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17618
https://github.com/quarkusio/quarkus/pull/17798
https://github.com/quarkusio/quarkus/pull/17798
1
fixes
Live Coding (Regression): Warnings when the changing code contains `@ConfigProperty`
## Describe the bug Using DEV mode and live coding activated, given my resource as: ``` import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import org.eclipse.microprofile.config.inject.ConfigProperty; @Path("/hello") public class GreetingResou...
599c6f048c54c1e6d58181029c90de3315c0b3e5
deba854cda5525cb6d46c386185eb9f1225922c8
https://github.com/quarkusio/quarkus/compare/599c6f048c54c1e6d58181029c90de3315c0b3e5...deba854cda5525cb6d46c386185eb9f1225922c8
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/JavaCompilationProvider.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/JavaCompilationProvider.java index 2346fba5cbf..487a874b6f9 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/JavaCompilationProvider.java +++ b/...
['core/deployment/src/main/java/io/quarkus/deployment/dev/JavaCompilationProvider.java']
{'.java': 1}
1
1
0
0
1
16,865,684
3,277,185
433,934
4,570
2,127
375
36
1
2,928
314
804
60
1
2
2021-06-09T11:55:50
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,738
quarkusio/quarkus/17794/17793
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17793
https://github.com/quarkusio/quarkus/pull/17794
https://github.com/quarkusio/quarkus/pull/17794
1
fixes
quarkus:dev continuous testing stuck
## Describe the bug running mvn quarkus:dev on https://github.com/michalszynkiewicz/todos-with-rr-and-grpc results in: ``` [/tmp/todos]$ mvn clean quarkus:dev [INFO] Scanning for projects... [INFO] [INFO] -------------------------< com.example:todos >-------------------------- [INFO] Bu...
599c6f048c54c1e6d58181029c90de3315c0b3e5
3b20d40928af4bd3ca2e80aeec72cbd8f2facd5b
https://github.com/quarkusio/quarkus/compare/599c6f048c54c1e6d58181029c90de3315c0b3e5...3b20d40928af4bd3ca2e80aeec72cbd8f2facd5b
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestSupport.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestSupport.java index 7dd54e179f5..84c5b9cca19 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestSupport.java +++ b/core/deploym...
['core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestSupport.java']
{'.java': 1}
1
1
0
0
1
16,865,684
3,277,185
433,934
4,570
439
90
14
1
8,385
650
2,473
76
2
1
2021-06-09T11:00:59
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,739
quarkusio/quarkus/17763/17724
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17724
https://github.com/quarkusio/quarkus/pull/17763
https://github.com/quarkusio/quarkus/pull/17763
1
resolves
Scheduler is not triggered or triggered 2 times randomly with native image
## Describe the bug Randomly, scheduler is not triggered or triggered 2 times with native image This behavior is not observed in "jvm mode" ### Expected behavior Scheduler should trigger 1 time and doesn't miss any trigger event with native image ## To Reproduce https://github.com/jmpdev34/reproducer-schedu...
59852b2d39142236b3297b9042d80a61287fbb6e
ab144e268aa246a11f192a6fa56d053111e81ddb
https://github.com/quarkusio/quarkus/compare/59852b2d39142236b3297b9042d80a61287fbb6e...ab144e268aa246a11f192a6fa56d053111e81ddb
diff --git a/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SimpleScheduler.java b/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SimpleScheduler.java index 0d3e85c1db9..b82838afa88 100644 --- a/extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/Sim...
['extensions/scheduler/runtime/src/main/java/io/quarkus/scheduler/runtime/SimpleScheduler.java']
{'.java': 1}
1
1
0
0
1
16,801,208
3,264,663
432,281
4,540
3,591
670
53
1
1,687
243
447
47
1
1
2021-06-08T10:03:06
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,740
quarkusio/quarkus/17719/17717
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17717
https://github.com/quarkusio/quarkus/pull/17719
https://github.com/quarkusio/quarkus/pull/17719
1
fixes
Continuous testing quarkus:test goal requires @QuarkusTest annotation
## Describe the bug Maven's quarkus:test goal seems to require at least one @QuarkusTest annotated test to run the tests. If no test is annotated, they don't run. If at least one is annotated, all tests run. The quarkus:dev goal runs all the tests even without any annotation. ### Expected behavior mvn quarkus:tes...
c8cd44aad6e1fb8989f154ae264ce2dda742c07e
caecd6ffa4ecae76c294d0369c6eeb3db083076c
https://github.com/quarkusio/quarkus/compare/c8cd44aad6e1fb8989f154ae264ce2dda742c07e...caecd6ffa4ecae76c294d0369c6eeb3db083076c
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestHandler.java b/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestHandler.java index 84ca23784f7..c810bbb68ce 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestHandler.java +++ b/core/deploym...
['core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestTracingProcessor.java', 'core/deployment/src/main/java/io/quarkus/deployment/dev/testing/TestHandler.java']
{'.java': 2}
2
2
0
0
2
16,739,532
3,253,171
430,526
4,534
120
29
4
2
1,094
159
297
28
1
0
2021-06-06T23:56:54
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,741
quarkusio/quarkus/17716/17706
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17706
https://github.com/quarkusio/quarkus/pull/17716
https://github.com/quarkusio/quarkus/pull/17716
1
close
2.0.0.CR3 gradle `quarkus-generated-sources` in wrong place
## Describe the bug Building project with gradle with version 2.0.0.CR3 creates `quarkus-generated-sources` and `quarkus-test-generated-sources` empty directories at the module level. I believe they must be created under `build` directory ### Expected behavior All build directories appear under `build` directory ...
9d38a3bf636fdd6ebf3e0852d2e2fd708bdc07d2
d8fd0b974b89a36018995475a44f40fa04dcdd55
https://github.com/quarkusio/quarkus/compare/9d38a3bf636fdd6ebf3e0852d2e2fd708bdc07d2...d8fd0b974b89a36018995475a44f40fa04dcdd55
diff --git a/devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPlugin.java b/devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPlugin.java index f1a8c420e5b..68c30b0de12 100644 --- a/devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPlugin.java +++ b/devtools/gradle/src/main/java/io/quarkus/gradle/Quarku...
['devtools/gradle/src/main/java/io/quarkus/gradle/QuarkusPlugin.java', 'devtools/gradle/src/main/java/io/quarkus/gradle/tasks/QuarkusGenerateCode.java']
{'.java': 2}
2
2
0
0
2
16,739,816
3,253,223
430,530
4,534
744
144
12
2
718
94
171
17
1
0
2021-06-06T18:14:46
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,743
quarkusio/quarkus/17685/17527
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17527
https://github.com/quarkusio/quarkus/pull/17685
https://github.com/quarkusio/quarkus/pull/17685
1
fixes
Overriding SecurityContext doesn't work with quarkus-resteasy-reactive, but works with quarkus-resteasy
## Describe the bug I use AWS cognito to get a JWT token. I have the following code to override quarkus ContainerRequestContext's security context with my own with additional attributes from Cognito `@PreMatching public class SecurityFilter implements ContainerRequestFilter { @Inject AuthenticationContextI...
5f7622e96017a5e8d3b00f6744cb46cc594ca7c3
cf92218e162251b34d69b1aa03723682d8cb7ba4
https://github.com/quarkusio/quarkus/compare/5f7622e96017a5e8d3b00f6744cb46cc594ca7c3...cf92218e162251b34d69b1aa03723682d8cb7ba4
diff --git a/extensions/resteasy-reactive/quarkus-resteasy-reactive/runtime/src/main/java/io/quarkus/resteasy/reactive/server/runtime/security/SecurityContextOverrideHandler.java b/extensions/resteasy-reactive/quarkus-resteasy-reactive/runtime/src/main/java/io/quarkus/resteasy/reactive/server/runtime/security/SecurityC...
['extensions/resteasy-reactive/quarkus-resteasy-reactive/runtime/src/main/java/io/quarkus/resteasy/reactive/server/runtime/security/SecurityContextOverrideHandler.java']
{'.java': 1}
1
1
0
0
1
16,738,185
3,252,928
430,509
4,535
6,846
958
140
1
3,023
199
618
78
1
0
2021-06-03T23:30:02
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,709
quarkusio/quarkus/18578/18577
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/18577
https://github.com/quarkusio/quarkus/pull/18578
https://github.com/quarkusio/quarkus/pull/18578
1
fixes
DevServices crashes immediately on Fedora
## Describe the bug Any attempt to start a test on Fedora results in this exception, since #18505 : ``` Build failure: Build failed due to errors [error]: Build step io.quarkus.datasource.deployment.devservices.DevServicesDatasourceProcessor#launchDatabases threw an exception: java.lang.IllegalArgumentExceptio...
ba955f2a3f65e626a58f251fb9e4c94dd4602b3f
7dc747585bb44462a91325c0fd568b090c62e0bd
https://github.com/quarkusio/quarkus/compare/ba955f2a3f65e626a58f251fb9e4c94dd4602b3f...7dc747585bb44462a91325c0fd568b090c62e0bd
diff --git a/core/deployment/src/main/java/io/quarkus/deployment/IsDockerWorking.java b/core/deployment/src/main/java/io/quarkus/deployment/IsDockerWorking.java index 3a92377f1bf..1fce4a2260d 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/IsDockerWorking.java +++ b/core/deployment/src/main/java/io/qua...
['core/deployment/src/main/java/io/quarkus/deployment/IsDockerWorking.java']
{'.java': 1}
1
1
0
0
1
17,429,391
3,388,692
447,774
4,663
104
26
2
1
993
104
233
16
0
1
2021-07-09T17:05:58
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,744
quarkusio/quarkus/17663/17234
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17234
https://github.com/quarkusio/quarkus/pull/17663
https://github.com/quarkusio/quarkus/pull/17663
1
fixes
Building native images with quarkus-opentelemetry extension throw a Random/SplittableRandom initialized error at build time
## Describe the bug QuarkusVersion: Upstream Extensions: quarkus-opentelemetry, quarkus-opentelemetry-exporter-jaeger Reproducer: https://github.com/quarkus-qe/beefy-scenarios Command: `mvn clean verify -Dnative -pl 300-quarkus-vertx-webClient -Pnative -DskipTests` Error at native build time: ``` Caused by:...
577f3ac64974b382efd77a345041b1178dd6fe60
2ece816729c5484c422ad701d5e07c53f80ed585
https://github.com/quarkusio/quarkus/compare/577f3ac64974b382efd77a345041b1178dd6fe60...2ece816729c5484c422ad701d5e07c53f80ed585
diff --git a/extensions/grpc-common/deployment/src/main/java/io/quarkus/grpc/common/deployment/GrpcCommonProcessor.java b/extensions/grpc-common/deployment/src/main/java/io/quarkus/grpc/common/deployment/GrpcCommonProcessor.java index ebff9fee027..31d637e0535 100644 --- a/extensions/grpc-common/deployment/src/main/java...
['extensions/grpc-common/deployment/src/main/java/io/quarkus/grpc/common/deployment/GrpcCommonProcessor.java']
{'.java': 1}
1
1
0
0
1
16,723,215
3,249,947
430,111
4,531
246
45
3
1
1,232
136
275
19
2
1
2021-06-03T09:40:24
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0
2,745
quarkusio/quarkus/17660/17657
quarkusio
quarkus
https://github.com/quarkusio/quarkus/issues/17657
https://github.com/quarkusio/quarkus/pull/17660
https://github.com/quarkusio/quarkus/pull/17660
1
fixes
Using Vert.x Auth, Native image build failures on GraalVM 21.1 with Random/SplittableRandom initialized at build time
## Describe the bug Using the following Vert.x auth dependency: ``` <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-auth-jwt</artifactId> </dependency> ``` I'm aware that other community dependencies might not be working on Native, but unless we should provide workarounds for users to iss...
577f3ac64974b382efd77a345041b1178dd6fe60
7e7acd82e008cbd39719754c2841524be46420ce
https://github.com/quarkusio/quarkus/compare/577f3ac64974b382efd77a345041b1178dd6fe60...7e7acd82e008cbd39719754c2841524be46420ce
diff --git a/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/VertxHttpProcessor.java b/extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/VertxHttpProcessor.java index 73256e4db97..f2b3ce5928e 100644 --- a/extensions/vertx-http/deployment/src/main/java/io/qua...
['extensions/vertx-http/deployment/src/main/java/io/quarkus/vertx/http/deployment/VertxHttpProcessor.java']
{'.java': 1}
1
1
0
0
1
16,723,215
3,249,947
430,111
4,531
559
100
6
1
4,045
319
1,096
76
1
3
2021-06-03T08:54:33
12,047
Java
{'Java': 45174846, 'HTML': 1260641, 'Kotlin': 726044, 'JavaScript': 519044, 'Shell': 51146, 'Groovy': 25140, 'ANTLR': 23342, 'Batchfile': 13971, 'Mustache': 13199, 'Scala': 9778, 'FreeMarker': 8106, 'CSS': 5346, 'Dockerfile': 660, 'PLpgSQL': 109}
Apache License 2.0