forked from apache/camel-quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
2332 lines (2109 loc) · 265 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Changelog
## [Unreleased](https://github.com/apache/camel-quarkus/tree/HEAD)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.8.1...HEAD)
**Closed issues:**
- Adapt examples to the merger of main into core [\#2377](https://github.com/apache/camel-quarkus/issues/2377)
- Show deprecation info in Extensions reference [\#2266](https://github.com/apache/camel-quarkus/issues/2266)
**Merged pull requests:**
- Show deprecation info in Extensions reference [\#2444](https://github.com/apache/camel-quarkus/pull/2444) ([ppalaga](https://github.com/ppalaga))
- openstack: added nova server and swift tests \#1943 [\#2438](https://github.com/apache/camel-quarkus/pull/2438) ([aldettinger](https://github.com/aldettinger))
- DigitalOcean native support \#1594 [\#2387](https://github.com/apache/camel-quarkus/pull/2387) ([zbendhiba](https://github.com/zbendhiba))
## [1.8.1](https://github.com/apache/camel-quarkus/tree/1.8.1) (2021-04-01)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.8.0...1.8.1)
**Fixed bugs:**
- Spring RabbitMQ integration test fails in native mode with Camel 3.9.0 [\#2340](https://github.com/apache/camel-quarkus/issues/2340)
**Closed issues:**
- Stop CI testing on Java 8 [\#2287](https://github.com/apache/camel-quarkus/issues/2287)
- camel-nats intermittently failing on quarkus-platform [\#2061](https://github.com/apache/camel-quarkus/issues/2061)
- Make camel-quarkus-xml-io work again after we broke it with camel-quarkus-xml-io-dsl in 1.8.0 [\#2431](https://github.com/apache/camel-quarkus/issues/2431)
- Consume kubernetes-client-bom via Quarkus BoM [\#2426](https://github.com/apache/camel-quarkus/issues/2426)
- docs: add xref support for adoc file sourced from javadoc [\#2417](https://github.com/apache/camel-quarkus/issues/2417)
- bindy: do not embed useless resources [\#2413](https://github.com/apache/camel-quarkus/issues/2413)
- NPE if Qute template can't be found [\#2410](https://github.com/apache/camel-quarkus/issues/2410)
- Document the process for maintaining \(quarkus | camel\)-master branches [\#2406](https://github.com/apache/camel-quarkus/issues/2406)
- Upgrade to the latest Quarkiverse Google Cloud Services [\#2405](https://github.com/apache/camel-quarkus/issues/2405)
- Intermittent failure in camel-quarkus-master-integration-test [\#2384](https://github.com/apache/camel-quarkus/issues/2384)
- Add test coverage for health check interval and failure-threshold [\#2366](https://github.com/apache/camel-quarkus/issues/2366)
- Add test coverage for a custom HealthCheckRepository [\#2365](https://github.com/apache/camel-quarkus/issues/2365)
- Use camel-servicenow-maven-plugin to generate model classes [\#2316](https://github.com/apache/camel-quarkus/issues/2316)
- \[Camel 3.9\] Azure Storage Data Lake appends newline to the file content [\#2302](https://github.com/apache/camel-quarkus/issues/2302)
- MLLP native support [\#1731](https://github.com/apache/camel-quarkus/issues/1731)
**Merged pull requests:**
- Azure Storage Data Lake appends newline to the file content [\#2437](https://github.com/apache/camel-quarkus/pull/2437) ([ppalaga](https://github.com/ppalaga))
- Fix NPE if Qute template can't be found [\#2434](https://github.com/apache/camel-quarkus/pull/2434) ([jamesnetherton](https://github.com/jamesnetherton))
- Make camel-quarkus-xml-io work again after we broke it with camel-qua… [\#2432](https://github.com/apache/camel-quarkus/pull/2432) ([ppalaga](https://github.com/ppalaga))
- Split misc test category into new networking-dataformats category [\#2430](https://github.com/apache/camel-quarkus/pull/2430) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade quarkus-google-cloud-services to 0.5.0 [\#2429](https://github.com/apache/camel-quarkus/pull/2429) ([jamesnetherton](https://github.com/jamesnetherton))
- MLLP Native support [\#2428](https://github.com/apache/camel-quarkus/pull/2428) ([jamesnetherton](https://github.com/jamesnetherton))
- Consume kubernetes-client-bom via Quarkus BoM [\#2427](https://github.com/apache/camel-quarkus/pull/2427) ([ppalaga](https://github.com/ppalaga))
- docs: add xref support for adoc file sourced from javadoc [\#2420](https://github.com/apache/camel-quarkus/pull/2420) ([ppalaga](https://github.com/ppalaga))
- Fix intermittent failure in camel-quarkus-master-integration-test [\#2419](https://github.com/apache/camel-quarkus/pull/2419) ([jamesnetherton](https://github.com/jamesnetherton))
- core: Removed the href in core javadoc as it does not generate a corr… [\#2418](https://github.com/apache/camel-quarkus/pull/2418) ([aldettinger](https://github.com/aldettinger))
- Fix of Spring RabbitMQ integration test failures after spring update [\#2415](https://github.com/apache/camel-quarkus/pull/2415) ([JiriOndrusek](https://github.com/JiriOndrusek))
- bindy: do not embed useless resources \#2413 [\#2414](https://github.com/apache/camel-quarkus/pull/2414) ([aldettinger](https://github.com/aldettinger))
- Document the process for maintaining \(quarkus | camel\)-master branches [\#2412](https://github.com/apache/camel-quarkus/pull/2412) ([jamesnetherton](https://github.com/jamesnetherton))
- bindy: created a test to show the locale issue in native and document… [\#2408](https://github.com/apache/camel-quarkus/pull/2408) ([aldettinger](https://github.com/aldettinger))
- Remove Camel 3.9.0 staging repository [\#2404](https://github.com/apache/camel-quarkus/pull/2404) ([jamesnetherton](https://github.com/jamesnetherton))
- Revert Disable doc xref checks as there is no camel-3.9.x branch yet [\#2394](https://github.com/apache/camel-quarkus/pull/2394) ([jamesnetherton](https://github.com/jamesnetherton))
- Quarkiverse dependency upgrades [\#2390](https://github.com/apache/camel-quarkus/pull/2390) ([ppalaga](https://github.com/ppalaga))
- Increase MicroProfile health extension test coverage [\#2369](https://github.com/apache/camel-quarkus/pull/2369) ([jamesnetherton](https://github.com/jamesnetherton))
## [1.8.0](https://github.com/apache/camel-quarkus/tree/1.8.0) (2021-03-26)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.7.0...1.8.0)
**Fixed bugs:**
- Unable to use Salesforce DTOs in native mode [\#2312](https://github.com/apache/camel-quarkus/issues/2312)
**Closed issues:**
- Direct component example [\#2363](https://github.com/apache/camel-quarkus/issues/2363)
- Test autowiring of beans available in the CDI container to CamelContext and components [\#2350](https://github.com/apache/camel-quarkus/issues/2350)
- quarkus 1.7.0 DocumentBuilderFactoryImpl not found [\#2323](https://github.com/apache/camel-quarkus/issues/2323)
- Camel DSL Azure - Storage Blob Service doesn't work as native build. [\#2318](https://github.com/apache/camel-quarkus/issues/2318)
- Azure Storage Data Lake listFileSystem operation causes an infinte loop of requests [\#2304](https://github.com/apache/camel-quarkus/issues/2304)
- CI job integration-tests-alternative-jvm \(15\) failing against a valid PR [\#2300](https://github.com/apache/camel-quarkus/issues/2300)
- plugin update-extension-doc-page fails when running extensions-jvm tests [\#2276](https://github.com/apache/camel-quarkus/issues/2276)
- Perform basic testing of aws extension through localstack [\#1071](https://github.com/apache/camel-quarkus/issues/1071)
- LRA native support [\#793](https://github.com/apache/camel-quarkus/issues/793)
- Think about consolidating enforcing rules [\#293](https://github.com/apache/camel-quarkus/issues/293)
- Freemarker native support [\#223](https://github.com/apache/camel-quarkus/issues/223)
- Merge camel-quarkus-main into camel-quarkus-core [\#2358](https://github.com/apache/camel-quarkus/issues/2358)
- Make Solr extension automatically register classes with @Field annotations for reflection [\#2341](https://github.com/apache/camel-quarkus/issues/2341)
- Document that AtlasMap user classes may need to be registered for reflection [\#2319](https://github.com/apache/camel-quarkus/issues/2319)
- Investigate integration test usage of quarkus.ssl.native [\#2306](https://github.com/apache/camel-quarkus/issues/2306)
- Azure extension native build fails with Quarkus 1.13 [\#2299](https://github.com/apache/camel-quarkus/issues/2299)
- SQL integration tests fail with Quarkus 1.13 - Multiple DataSources found in the registry [\#2296](https://github.com/apache/camel-quarkus/issues/2296)
- Replace hbase-testing-util with docker container [\#2295](https://github.com/apache/camel-quarkus/issues/2295)
- \[camel-master\] Support for YAML DSL [\#2294](https://github.com/apache/camel-quarkus/issues/2294)
- main: add an option to ignore command line arguments [\#2293](https://github.com/apache/camel-quarkus/issues/2293)
- bindy: @DataField\(method=\*\) is not supported [\#2282](https://github.com/apache/camel-quarkus/issues/2282)
- Prefer SyntheticBeanBuildItem to initializing bean producers via volatile fields [\#2273](https://github.com/apache/camel-quarkus/issues/2273)
- Bindy - Do not rely on quarkus-resteasy-jackson to register reflective classes [\#2268](https://github.com/apache/camel-quarkus/issues/2268)
- Remove support for Webocket JSR 356 [\#2262](https://github.com/apache/camel-quarkus/issues/2262)
- Camel Quarkus OptaPlanner does not work as of Quarkus 1.12 in apps generated by code.quarkus.io [\#2253](https://github.com/apache/camel-quarkus/issues/2253)
- Optaplanner : upgrade to 8.x extension [\#2243](https://github.com/apache/camel-quarkus/issues/2243)
- Optimise the camel-quarkus-examples CI build [\#2147](https://github.com/apache/camel-quarkus/issues/2147)
- Paho MQTT 5 support [\#2145](https://github.com/apache/camel-quarkus/issues/2145)
- Move Netty related BuildItems to Quarkus Netty extension [\#2142](https://github.com/apache/camel-quarkus/issues/2142)
- Revisit transaction support [\#1918](https://github.com/apache/camel-quarkus/issues/1918)
- HL7 Terser language native support [\#1747](https://github.com/apache/camel-quarkus/issues/1747)
- Splunk native support [\#1698](https://github.com/apache/camel-quarkus/issues/1698)
- Add tests to example projects [\#1501](https://github.com/apache/camel-quarkus/issues/1501)
- Nitrite native support [\#1298](https://github.com/apache/camel-quarkus/issues/1298)
**Merged pull requests:**
- Replace hbase-testing-util with docker container \#2295 [\#2379](https://github.com/apache/camel-quarkus/pull/2379) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Upgrade to Camel 3.9.0 [\#2378](https://github.com/apache/camel-quarkus/pull/2378) ([jamesnetherton](https://github.com/jamesnetherton))
- Only invoke completed method on unknown arguments if the failure remedy is FAIL [\#2373](https://github.com/apache/camel-quarkus/pull/2373) ([jamesnetherton](https://github.com/jamesnetherton))
- openstack: added neutron port, subnet and nova flavor tests \#1943 [\#2372](https://github.com/apache/camel-quarkus/pull/2372) ([aldettinger](https://github.com/aldettinger))
- Merge camel-quarkus-main into camel-quarkus-core \#2358 [\#2371](https://github.com/apache/camel-quarkus/pull/2371) ([ppalaga](https://github.com/ppalaga))
- Upgrade to Quarkus 1.13.0.Final [\#2370](https://github.com/apache/camel-quarkus/pull/2370) ([ppalaga](https://github.com/ppalaga))
- Use AbstractHealthCheck for custom health checks [\#2364](https://github.com/apache/camel-quarkus/pull/2364) ([jamesnetherton](https://github.com/jamesnetherton))
- openstack: added neutron network tests \#1943 [\#2359](https://github.com/apache/camel-quarkus/pull/2359) ([aldettinger](https://github.com/aldettinger))
- Add test coverage for FTPS [\#2357](https://github.com/apache/camel-quarkus/pull/2357) ([jamesnetherton](https://github.com/jamesnetherton))
- Deprecate camel-quarkus-componentdsl and camel-quarkus-endpointdsl ex… [\#2355](https://github.com/apache/camel-quarkus/pull/2355) ([ppalaga](https://github.com/ppalaga))
- Add a link to a blog post about Camel Quarkus command line applications [\#2352](https://github.com/apache/camel-quarkus/pull/2352) ([ppalaga](https://github.com/ppalaga))
- Fix some deprecation warnings [\#2348](https://github.com/apache/camel-quarkus/pull/2348) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Kotlin to 1.4.31 [\#2347](https://github.com/apache/camel-quarkus/pull/2347) ([jamesnetherton](https://github.com/jamesnetherton))
- openstack: added keystone tests \#1943 [\#2346](https://github.com/apache/camel-quarkus/pull/2346) ([aldettinger](https://github.com/aldettinger))
- Remove AWS SDK v1 extensions after they have been removed from Camel [\#2345](https://github.com/apache/camel-quarkus/pull/2345) ([ppalaga](https://github.com/ppalaga))
- Upgrade to Quarkus 1.13.0.CR1 [\#2343](https://github.com/apache/camel-quarkus/pull/2343) ([jamesnetherton](https://github.com/jamesnetherton))
- Register classes with Solr Field annotations for reflection [\#2342](https://github.com/apache/camel-quarkus/pull/2342) ([jamesnetherton](https://github.com/jamesnetherton))
- Add configuration option to ignore unknown arguments [\#2338](https://github.com/apache/camel-quarkus/pull/2338) ([jamesnetherton](https://github.com/jamesnetherton))
- Disable OptaplannerTest.solveSync on CI [\#2337](https://github.com/apache/camel-quarkus/pull/2337) ([jamesnetherton](https://github.com/jamesnetherton))
- openstack: added cinder snapshots and glance tests \#1943 [\#2335](https://github.com/apache/camel-quarkus/pull/2335) ([aldettinger](https://github.com/aldettinger))
- Fix wrong format of RouteBuilder [\#2334](https://github.com/apache/camel-quarkus/pull/2334) ([llowinge](https://github.com/llowinge))
- openstack: added cinder volume tests \#1943 [\#2330](https://github.com/apache/camel-quarkus/pull/2330) ([aldettinger](https://github.com/aldettinger))
- Upgrade Quarkus to 1.12.2.Final [\#2329](https://github.com/apache/camel-quarkus/pull/2329) ([jamesnetherton](https://github.com/jamesnetherton))
- Document that AtlasMap user classes may need to be registered for ref… [\#2328](https://github.com/apache/camel-quarkus/pull/2328) ([zbendhiba](https://github.com/zbendhiba))
- HL7 Native support [\#2325](https://github.com/apache/camel-quarkus/pull/2325) ([jamesnetherton](https://github.com/jamesnetherton))
- Updated link in testing doc [\#2324](https://github.com/apache/camel-quarkus/pull/2324) ([mmuzikar](https://github.com/mmuzikar))
- Workaround \#2207 in Azure Storage Data Lake test [\#2322](https://github.com/apache/camel-quarkus/pull/2322) ([ppalaga](https://github.com/ppalaga))
- Use camel-servicenow-maven-plugin to generate model classes [\#2321](https://github.com/apache/camel-quarkus/pull/2321) ([jamesnetherton](https://github.com/jamesnetherton))
- Unable to use Salesforce DTOs in native mode [\#2315](https://github.com/apache/camel-quarkus/pull/2315) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.12.1.Final [\#2313](https://github.com/apache/camel-quarkus/pull/2313) ([jamesnetherton](https://github.com/jamesnetherton))
- Adjust references to the runner JAR for the fast-jar format [\#2311](https://github.com/apache/camel-quarkus/pull/2311) ([jamesnetherton](https://github.com/jamesnetherton))
- Paho MQTT 5 support [\#2310](https://github.com/apache/camel-quarkus/pull/2310) ([ppalaga](https://github.com/ppalaga))
- Stitch and Huawei SMN JVM support [\#2309](https://github.com/apache/camel-quarkus/pull/2309) ([ppalaga](https://github.com/ppalaga))
- Review usage of quarkus.ssl.native in integration tests [\#2307](https://github.com/apache/camel-quarkus/pull/2307) ([jamesnetherton](https://github.com/jamesnetherton))
- Azure Storage Data Lake JVM support \#2289 [\#2305](https://github.com/apache/camel-quarkus/pull/2305) ([ppalaga](https://github.com/ppalaga))
- Move HTTP send-dynamic test to HTTP itest module [\#2303](https://github.com/apache/camel-quarkus/pull/2303) ([jamesnetherton](https://github.com/jamesnetherton))
- bindy: added native support for methods registered with @DataField [\#2298](https://github.com/apache/camel-quarkus/pull/2298) ([aldettinger](https://github.com/aldettinger))
- Use azure-sdk-bom instead of individual azure artifact versions [\#2297](https://github.com/apache/camel-quarkus/pull/2297) ([ppalaga](https://github.com/ppalaga))
- Test AWS 2 SES [\#2288](https://github.com/apache/camel-quarkus/pull/2288) ([ppalaga](https://github.com/ppalaga))
- LRA native support [\#2286](https://github.com/apache/camel-quarkus/pull/2286) ([jamesnetherton](https://github.com/jamesnetherton))
- Test AWS 2 Lambda [\#2283](https://github.com/apache/camel-quarkus/pull/2283) ([ppalaga](https://github.com/ppalaga))
- bindy: fixed reflective classes registration, fixes \#2268 [\#2281](https://github.com/apache/camel-quarkus/pull/2281) ([aldettinger](https://github.com/aldettinger))
- Test AWS 2 CloudWatch [\#2280](https://github.com/apache/camel-quarkus/pull/2280) ([ppalaga](https://github.com/ppalaga))
- Improve the release guide [\#2279](https://github.com/apache/camel-quarkus/pull/2279) ([ppalaga](https://github.com/ppalaga))
- Prefer SyntheticBeanBuildItem to initializing bean producers via volatile fields [\#2277](https://github.com/apache/camel-quarkus/pull/2277) ([ppalaga](https://github.com/ppalaga))
- Next is 1.8.0 [\#2274](https://github.com/apache/camel-quarkus/pull/2274) ([ppalaga](https://github.com/ppalaga))
- Nitrite native support \#1298 [\#2254](https://github.com/apache/camel-quarkus/pull/2254) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Freemarker native support [\#2184](https://github.com/apache/camel-quarkus/pull/2184) ([ppalaga](https://github.com/ppalaga))
## [1.7.0](https://github.com/apache/camel-quarkus/tree/1.7.0) (2021-02-19)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.6.0...1.7.0)
**Closed issues:**
- Building native fails for Quarkus 1.11.3.Final [\#2250](https://github.com/apache/camel-quarkus/issues/2250)
- \[camel-master\] azure-storage-\* integration tests fail [\#2215](https://github.com/apache/camel-quarkus/issues/2215)
- FHIR tests don't work with all possible options [\#2201](https://github.com/apache/camel-quarkus/issues/2201)
- Red [\#2188](https://github.com/apache/camel-quarkus/issues/2188)
- Figure out how we could leverage Quarkus Developer Console [\#2007](https://github.com/apache/camel-quarkus/issues/2007)
- XML Tokenize language native support [\#780](https://github.com/apache/camel-quarkus/issues/780)
- Docs xref checks failure with Camel 3.8.0 [\#2226](https://github.com/apache/camel-quarkus/issues/2226)
- \[camel-master\] azure-eventhubs: discovered unresolved type during parsing [\#2213](https://github.com/apache/camel-quarkus/issues/2213)
- \[camel-master\] nats: failure running integration tests [\#2211](https://github.com/apache/camel-quarkus/issues/2211)
- camel-quarkus-git: integration test fail if gpg signing is enabled [\#2210](https://github.com/apache/camel-quarkus/issues/2210)
- camel 3.8 - Removed reflection in 9 components [\#2209](https://github.com/apache/camel-quarkus/issues/2209)
- Azure EventHubs native build fails with Quarkus 1.12 [\#2204](https://github.com/apache/camel-quarkus/issues/2204)
- OAI-PMH: Get rid of the JettyTestServer class for tests [\#2192](https://github.com/apache/camel-quarkus/issues/2192)
- Re-introduce Changelog GH Action [\#2189](https://github.com/apache/camel-quarkus/issues/2189)
- Netty UDP does not work in native mode [\#2187](https://github.com/apache/camel-quarkus/issues/2187)
- \[camel 3.8\] create an extension for the kamelet component [\#2174](https://github.com/apache/camel-quarkus/issues/2174)
- Require Java 11 in examples [\#2152](https://github.com/apache/camel-quarkus/issues/2152)
- Reimplement creation of minio client to avoid minio extension limitations [\#2134](https://github.com/apache/camel-quarkus/issues/2134)
- camel-spring-rabbitmq - new component [\#2128](https://github.com/apache/camel-quarkus/issues/2128)
- Hazelcast integration tests : random failing tests on CI [\#2127](https://github.com/apache/camel-quarkus/issues/2127)
- Align Kubernetes client version with Quarkus [\#2126](https://github.com/apache/camel-quarkus/issues/2126)
- FOP integration tests fail in native mode with GraalVM 20.3.0 [\#2113](https://github.com/apache/camel-quarkus/issues/2113)
- ReplicatedMap : The Hazelcast consumer is not notified on its listener [\#2095](https://github.com/apache/camel-quarkus/issues/2095)
- OAI-PMH support [\#2081](https://github.com/apache/camel-quarkus/issues/2081)
- Azure Event Hubs support [\#2079](https://github.com/apache/camel-quarkus/issues/2079)
- AtlasMap native support [\#1989](https://github.com/apache/camel-quarkus/issues/1989)
- AWS2 EventBridge native support [\#1976](https://github.com/apache/camel-quarkus/issues/1976)
- PubNub native support [\#1944](https://github.com/apache/camel-quarkus/issues/1944)
- Remove JtaProcessor.registerNarayanaReflectiveClass when quarkusio/quarkus\#10180 gets fixed [\#1895](https://github.com/apache/camel-quarkus/issues/1895)
- CBOR data format native support [\#1754](https://github.com/apache/camel-quarkus/issues/1754)
- StAX native support [\#1696](https://github.com/apache/camel-quarkus/issues/1696)
- XML Security native support [\#1617](https://github.com/apache/camel-quarkus/issues/1617)
- Azure Storage Queue Service native support [\#1574](https://github.com/apache/camel-quarkus/issues/1574)
- AWS 2 Kinesis native support [\#1571](https://github.com/apache/camel-quarkus/issues/1571)
- CassandraQL native support [\#1355](https://github.com/apache/camel-quarkus/issues/1355)
- IPFS native support [\#770](https://github.com/apache/camel-quarkus/issues/770)
- Syslog data format native support [\#595](https://github.com/apache/camel-quarkus/issues/595)
**Merged pull requests:**
- Azure EventHubs test fixup [\#2271](https://github.com/apache/camel-quarkus/pull/2271) ([ppalaga](https://github.com/ppalaga))
- Upgrade Quarkus Qpid JMS to 0.23.0 [\#2270](https://github.com/apache/camel-quarkus/pull/2270) ([jamesnetherton](https://github.com/jamesnetherton))
- Make git tests ignore local configuration [\#2269](https://github.com/apache/camel-quarkus/pull/2269) ([jamesnetherton](https://github.com/jamesnetherton))
- Disable ryuk on CI builds [\#2267](https://github.com/apache/camel-quarkus/pull/2267) ([jamesnetherton](https://github.com/jamesnetherton))
- Deprecate Webocket JSR 356 \#2262 [\#2265](https://github.com/apache/camel-quarkus/pull/2265) ([ppalaga](https://github.com/ppalaga))
- Add basic Netty UDP tests [\#2264](https://github.com/apache/camel-quarkus/pull/2264) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.12.0.Final [\#2263](https://github.com/apache/camel-quarkus/pull/2263) ([jamesnetherton](https://github.com/jamesnetherton))
- JFR JVM only support [\#2259](https://github.com/apache/camel-quarkus/pull/2259) ([jamesnetherton](https://github.com/jamesnetherton))
- Added CBOR data format native support \#1754 [\#2257](https://github.com/apache/camel-quarkus/pull/2257) ([aldettinger](https://github.com/aldettinger))
- Test AWS 2 Firehose [\#2256](https://github.com/apache/camel-quarkus/pull/2256) ([ppalaga](https://github.com/ppalaga))
- AWS 2 Kinesis native support [\#2252](https://github.com/apache/camel-quarkus/pull/2252) ([ppalaga](https://github.com/ppalaga))
- Remove Camel 3.8.0 staging repository [\#2251](https://github.com/apache/camel-quarkus/pull/2251) ([jamesnetherton](https://github.com/jamesnetherton))
- Enable FOP native integration tests [\#2247](https://github.com/apache/camel-quarkus/pull/2247) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix intermittent failure of SpringRabbitmqTest [\#2246](https://github.com/apache/camel-quarkus/pull/2246) ([jamesnetherton](https://github.com/jamesnetherton))
- await for consumer fixes \#2205 [\#2245](https://github.com/apache/camel-quarkus/pull/2245) ([zbendhiba](https://github.com/zbendhiba))
- Remove outdated extensions README [\#2244](https://github.com/apache/camel-quarkus/pull/2244) ([jamesnetherton](https://github.com/jamesnetherton))
- Test AWS 2 DynamoDB Streams [\#2242](https://github.com/apache/camel-quarkus/pull/2242) ([ppalaga](https://github.com/ppalaga))
- Docs xref checks failure with Camel 3.8.0 [\#2240](https://github.com/apache/camel-quarkus/pull/2240) ([jamesnetherton](https://github.com/jamesnetherton))
- Test AWS 2 DynamoDB properly [\#2238](https://github.com/apache/camel-quarkus/pull/2238) ([ppalaga](https://github.com/ppalaga))
- AtlasMap native support \#1989 [\#2237](https://github.com/apache/camel-quarkus/pull/2237) ([zbendhiba](https://github.com/zbendhiba))
- \[update\] Upgrade testcontainers version [\#2236](https://github.com/apache/camel-quarkus/pull/2236) ([llowinge](https://github.com/llowinge))
- Add Kamelet component extension [\#2235](https://github.com/apache/camel-quarkus/pull/2235) ([jamesnetherton](https://github.com/jamesnetherton))
- Removing unnecessary exclusions in test for CassandaQL [\#2234](https://github.com/apache/camel-quarkus/pull/2234) ([JiriOndrusek](https://github.com/JiriOndrusek))
- camel-spring-rabbitmq - new component \#2128 [\#2233](https://github.com/apache/camel-quarkus/pull/2233) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Remove redundant Netty reflective class configuration [\#2232](https://github.com/apache/camel-quarkus/pull/2232) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to Quarkus 1.12.0.CR1 [\#2231](https://github.com/apache/camel-quarkus/pull/2231) ([jamesnetherton](https://github.com/jamesnetherton))
- Allow running AWS 2 tests both grouped and isolated [\#2230](https://github.com/apache/camel-quarkus/pull/2230) ([ppalaga](https://github.com/ppalaga))
- Use Java 15 as 14 is EOL [\#2229](https://github.com/apache/camel-quarkus/pull/2229) ([jamesnetherton](https://github.com/jamesnetherton))
- Ensure integration tests have enough free disk space [\#2228](https://github.com/apache/camel-quarkus/pull/2228) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to Camel 3.8.0 [\#2227](https://github.com/apache/camel-quarkus/pull/2227) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix camel-master CI branch build [\#2224](https://github.com/apache/camel-quarkus/pull/2224) ([jamesnetherton](https://github.com/jamesnetherton))
- Test AWS 2 SNS properly [\#2222](https://github.com/apache/camel-quarkus/pull/2222) ([ppalaga](https://github.com/ppalaga))
- PubNub native support [\#2218](https://github.com/apache/camel-quarkus/pull/2218) ([jamesnetherton](https://github.com/jamesnetherton))
- Test AWS 2 SQS properly [\#2217](https://github.com/apache/camel-quarkus/pull/2217) ([ppalaga](https://github.com/ppalaga))
- Replaced the JettyTestServer class with MockOaipmhServer based on wir… [\#2214](https://github.com/apache/camel-quarkus/pull/2214) ([aldettinger](https://github.com/aldettinger))
- Azure EventHubs native build fails with Quarkus 1.12 [\#2208](https://github.com/apache/camel-quarkus/pull/2208) ([ppalaga](https://github.com/ppalaga))
- Replace the deprecated VanillaUuidGenerator with DefaultUuidGenerator [\#2203](https://github.com/apache/camel-quarkus/pull/2203) ([lburgazzoli](https://github.com/lburgazzoli))
- Upgrade SmallRye Reactive Messaging Camel to 2.8.0 [\#2199](https://github.com/apache/camel-quarkus/pull/2199) ([jamesnetherton](https://github.com/jamesnetherton))
- Test AWS 2 S3 properly [\#2198](https://github.com/apache/camel-quarkus/pull/2198) ([ppalaga](https://github.com/ppalaga))
- Syslog native support [\#2197](https://github.com/apache/camel-quarkus/pull/2197) ([jamesnetherton](https://github.com/jamesnetherton))
- Changelog is back [\#2195](https://github.com/apache/camel-quarkus/pull/2195) ([oscerd](https://github.com/oscerd))
- AWS2 EventBridge native support [\#2193](https://github.com/apache/camel-quarkus/pull/2193) ([oscerd](https://github.com/oscerd))
- Added OAI-PMH support [\#2190](https://github.com/apache/camel-quarkus/pull/2190) ([aldettinger](https://github.com/aldettinger))
- XML Security native support [\#2186](https://github.com/apache/camel-quarkus/pull/2186) ([jamesnetherton](https://github.com/jamesnetherton))
- Import quarkus-qpid-jms-bom to our BoM instead of importing quarkus-q… [\#2181](https://github.com/apache/camel-quarkus/pull/2181) ([ppalaga](https://github.com/ppalaga))
- Some JVM-only extensions falsely advertized as supporting native [\#2179](https://github.com/apache/camel-quarkus/pull/2179) ([ppalaga](https://github.com/ppalaga))
- Azure Event Hubs support [\#2178](https://github.com/apache/camel-quarkus/pull/2178) ([ppalaga](https://github.com/ppalaga))
- StAX native support [\#2177](https://github.com/apache/camel-quarkus/pull/2177) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.11.1.Final [\#2173](https://github.com/apache/camel-quarkus/pull/2173) ([jamesnetherton](https://github.com/jamesnetherton))
- XML Tokenize language native support [\#2169](https://github.com/apache/camel-quarkus/pull/2169) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#1895 to remove registerNarayanaReflectiveClass [\#2165](https://github.com/apache/camel-quarkus/pull/2165) ([zhfeng](https://github.com/zhfeng))
- Improvement for first-steps docs [\#2162](https://github.com/apache/camel-quarkus/pull/2162) ([tstuber](https://github.com/tstuber))
- IPFS native support [\#2159](https://github.com/apache/camel-quarkus/pull/2159) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Camel to 3.7.1 [\#2158](https://github.com/apache/camel-quarkus/pull/2158) ([jamesnetherton](https://github.com/jamesnetherton))
- Avoid usage of deprecated capabilities string constants [\#2154](https://github.com/apache/camel-quarkus/pull/2154) ([jamesnetherton](https://github.com/jamesnetherton))
- Improve the release docs [\#2150](https://github.com/apache/camel-quarkus/pull/2150) ([ppalaga](https://github.com/ppalaga))
- Upgrade to cq-maven-plugin 0.27, stop using mvnd.rules altogether [\#2148](https://github.com/apache/camel-quarkus/pull/2148) ([ppalaga](https://github.com/ppalaga))
- add Awaitility + suppress warnings \#2127 [\#2146](https://github.com/apache/camel-quarkus/pull/2146) ([zbendhiba](https://github.com/zbendhiba))
- Azure Storage Queue Service native support [\#2143](https://github.com/apache/camel-quarkus/pull/2143) ([ppalaga](https://github.com/ppalaga))
- Improve the release docs [\#2141](https://github.com/apache/camel-quarkus/pull/2141) ([ppalaga](https://github.com/ppalaga))
- Avoid automatic minio client autowiring \#2134 [\#2140](https://github.com/apache/camel-quarkus/pull/2140) ([JiriOndrusek](https://github.com/JiriOndrusek))
## [1.6.0](https://github.com/apache/camel-quarkus/tree/1.6.0) (2021-01-15)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.5.0...1.6.0)
**Closed issues:**
- Document the correct usage of BoMs [\#2135](https://github.com/apache/camel-quarkus/issues/2135)
- camel-quarkus-csimple package not exists but presented in documentation [\#2131](https://github.com/apache/camel-quarkus/issues/2131)
- Could not find artifact com.google.protobuf:protoc:exe:osx-x86\_64:3.13.0 in nexus [\#2097](https://github.com/apache/camel-quarkus/issues/2097)
- Release: Update Apache Committee Report Helper for camel-quarkus-1.6.0 released on 2021-01-18 [\#2149](https://github.com/apache/camel-quarkus/issues/2149)
- Minio: Observe issue in quarkiverse-minio [\#2120](https://github.com/apache/camel-quarkus/issues/2120)
- Remove changelog gh action [\#2119](https://github.com/apache/camel-quarkus/issues/2119)
- Geocoder tests with external service are not working [\#2112](https://github.com/apache/camel-quarkus/issues/2112)
- antora/xref-validator failure after a component was removed from Camel [\#2109](https://github.com/apache/camel-quarkus/issues/2109)
- CSimple NPE even if CSimple language is not used [\#2098](https://github.com/apache/camel-quarkus/issues/2098)
- Add more integration tests for camel-hazelcast extension [\#2094](https://github.com/apache/camel-quarkus/issues/2094)
- Skipped tests on CI \(eg. hystrix\) [\#2091](https://github.com/apache/camel-quarkus/issues/2091)
- Twitter itest doesn't work in native mode [\#2090](https://github.com/apache/camel-quarkus/issues/2090)
- Redis support [\#2085](https://github.com/apache/camel-quarkus/issues/2085)
- Vert.x Kafka support [\#2082](https://github.com/apache/camel-quarkus/issues/2082)
- JSONata support [\#2080](https://github.com/apache/camel-quarkus/issues/2080)
- Create ASF distribution [\#2045](https://github.com/apache/camel-quarkus/issues/2045)
- Minio native support [\#2040](https://github.com/apache/camel-quarkus/issues/2040)
- BigQuery native support [\#2014](https://github.com/apache/camel-quarkus/issues/2014)
- camel-quarkus-kafka: Reconnection issues when working with schema registry [\#1960](https://github.com/apache/camel-quarkus/issues/1960)
- Hazelcast native support [\#1647](https://github.com/apache/camel-quarkus/issues/1647)
- Azure Storage Blob native support [\#1573](https://github.com/apache/camel-quarkus/issues/1573)
- Require Java 11 [\#1299](https://github.com/apache/camel-quarkus/issues/1299)
- Debezium MongoDB Connector native support [\#1190](https://github.com/apache/camel-quarkus/issues/1190)
**Merged pull requests:**
- Azure Storage Blob native support [\#2139](https://github.com/apache/camel-quarkus/pull/2139) ([ppalaga](https://github.com/ppalaga))
- Upgrade Quarkus Qpid JMS to 0.22.0 [\#2138](https://github.com/apache/camel-quarkus/pull/2138) ([jamesnetherton](https://github.com/jamesnetherton))
- Hazelcast integration tests : switch to testcontainers \#2127 [\#2137](https://github.com/apache/camel-quarkus/pull/2137) ([zbendhiba](https://github.com/zbendhiba))
- Upgrade Quarkus to 1.11.0.Final [\#2133](https://github.com/apache/camel-quarkus/pull/2133) ([jamesnetherton](https://github.com/jamesnetherton))
- Allow running the Azure test against the real Azure API in addition to [\#2132](https://github.com/apache/camel-quarkus/pull/2132) ([ppalaga](https://github.com/ppalaga))
- Add notes on enabling Geolocation APIs for geocoder extension integration tests [\#2130](https://github.com/apache/camel-quarkus/pull/2130) ([jamesnetherton](https://github.com/jamesnetherton))
- add missing QuarkusTestResource [\#2129](https://github.com/apache/camel-quarkus/pull/2129) ([zbendhiba](https://github.com/zbendhiba))
- Add vertx-kafka component support [\#2125](https://github.com/apache/camel-quarkus/pull/2125) ([jamesnetherton](https://github.com/jamesnetherton))
- Remove changelog generation workflow [\#2124](https://github.com/apache/camel-quarkus/pull/2124) ([jamesnetherton](https://github.com/jamesnetherton))
- Debezium MongoDB Connector native support [\#2123](https://github.com/apache/camel-quarkus/pull/2123) ([ppalaga](https://github.com/ppalaga))
- Switch back to AdoptOpenJDK/install-jdk action [\#2121](https://github.com/apache/camel-quarkus/pull/2121) ([jamesnetherton](https://github.com/jamesnetherton))
- Align Kotlin and SmallRye Reactive Messaging Camel with Quarkus [\#2118](https://github.com/apache/camel-quarkus/pull/2118) ([jamesnetherton](https://github.com/jamesnetherton))
- Remove docker.io prefix for images [\#2117](https://github.com/apache/camel-quarkus/pull/2117) ([llowinge](https://github.com/llowinge))
- Minio native support \#2040 [\#2116](https://github.com/apache/camel-quarkus/pull/2116) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Add more integration tests for camel-hazelcast extension \#2094 [\#2115](https://github.com/apache/camel-quarkus/pull/2115) ([zbendhiba](https://github.com/zbendhiba))
- antora/xref-validator failure after a component was removed from Camel [\#2114](https://github.com/apache/camel-quarkus/pull/2114) ([ppalaga](https://github.com/ppalaga))
- Upgrade Quarkus to 1.11.0.CR1 [\#2111](https://github.com/apache/camel-quarkus/pull/2111) ([jamesnetherton](https://github.com/jamesnetherton))
- Temporary workaround for \#2109 antora/xref-validator after a componen… [\#2110](https://github.com/apache/camel-quarkus/pull/2110) ([ppalaga](https://github.com/ppalaga))
- CSimple NPE even if CSimple language is not used [\#2108](https://github.com/apache/camel-quarkus/pull/2108) ([ppalaga](https://github.com/ppalaga))
- Added Redis Aggregation Repository support in JVM mode only \#2085 [\#2106](https://github.com/apache/camel-quarkus/pull/2106) ([aldettinger](https://github.com/aldettinger))
- Remove hystrix from test-categories.yaml [\#2105](https://github.com/apache/camel-quarkus/pull/2105) ([llowinge](https://github.com/llowinge))
- Temporarily switch to actions/setup-java [\#2104](https://github.com/apache/camel-quarkus/pull/2104) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade SmallRye Reactive Messaging Camel to 2.7.0 [\#2100](https://github.com/apache/camel-quarkus/pull/2100) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix twitter itest in native mode using ConfigProvider insted of Confi… [\#2096](https://github.com/apache/camel-quarkus/pull/2096) ([llowinge](https://github.com/llowinge))
- Hazelcast native support fixes \#1647 [\#2093](https://github.com/apache/camel-quarkus/pull/2093) ([zbendhiba](https://github.com/zbendhiba))
- Removed loadsApplicationClasses = true as it has no more effect [\#2092](https://github.com/apache/camel-quarkus/pull/2092) ([aldettinger](https://github.com/aldettinger))
- Upgrade to Quarkus 1.11.0.Beta1 [\#2089](https://github.com/apache/camel-quarkus/pull/2089) ([ppalaga](https://github.com/ppalaga))
- Added JSONata extension [\#2088](https://github.com/apache/camel-quarkus/pull/2088) ([aldettinger](https://github.com/aldettinger))
- CAMEL-15948: examples.json instead of .adoc files [\#2087](https://github.com/apache/camel-quarkus/pull/2087) ([zregvart](https://github.com/zregvart))
- Last release is 1.5.0 [\#2086](https://github.com/apache/camel-quarkus/pull/2086) ([ppalaga](https://github.com/ppalaga))
- Next is 1.6.0 [\#2076](https://github.com/apache/camel-quarkus/pull/2076) ([ppalaga](https://github.com/ppalaga))
- Documented the Camel Quarkus testing approach \#1981 [\#2075](https://github.com/apache/camel-quarkus/pull/2075) ([aldettinger](https://github.com/aldettinger))
- Require Java 11 [\#2073](https://github.com/apache/camel-quarkus/pull/2073) ([ppalaga](https://github.com/ppalaga))
## [1.5.0](https://github.com/apache/camel-quarkus/tree/1.5.0) (2020-12-14)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.4.0...1.5.0)
**Closed issues:**
- Camel import not working [\#2068](https://github.com/apache/camel-quarkus/issues/2068)
- FastHeadersMapFactory ClassNotFoundException since 1.0.0-M6 [\#1086](https://github.com/apache/camel-quarkus/issues/1086)
- JSch native support [\#797](https://github.com/apache/camel-quarkus/issues/797)
- Protobuf dataformat native support [\#789](https://github.com/apache/camel-quarkus/issues/789)
- \[Camel 3.7\] Test with camel.main.lightweight=true [\#2063](https://github.com/apache/camel-quarkus/issues/2063)
- CSimple language support [\#2036](https://github.com/apache/camel-quarkus/issues/2036)
- Micrometer component support [\#2034](https://github.com/apache/camel-quarkus/issues/2034)
- Polish how we pass -Djavax.net.ssl.trustStore to the Solr test [\#2029](https://github.com/apache/camel-quarkus/issues/2029)
- timer-log-main example: The example is not working in dev mode [\#2024](https://github.com/apache/camel-quarkus/issues/2024)
- \[Camel 3.7\] Camel main autowire properties by type has been removed [\#2002](https://github.com/apache/camel-quarkus/issues/2002)
- Antora xref check fails on camel-master branch [\#1996](https://github.com/apache/camel-quarkus/issues/1996)
- \[Camel 3.7\] Investigate reason of the explicit registration of some resources in CamelProcessor [\#1995](https://github.com/apache/camel-quarkus/issues/1995)
- Make UpdateExtensionDocPageMojo generate cross reference URLs [\#1986](https://github.com/apache/camel-quarkus/issues/1986)
- NATS integration test failure - Unable to connect to NATS servers [\#1978](https://github.com/apache/camel-quarkus/issues/1978)
- \[Camel 3.7\] JSON-B data format support [\#1973](https://github.com/apache/camel-quarkus/issues/1973)
- Olingo integration test is throwing SSLPeerUnverifiedException [\#1972](https://github.com/apache/camel-quarkus/issues/1972)
- LevelDB extension does not compile with Camel 3.7.0-SNAPSHOT [\#1948](https://github.com/apache/camel-quarkus/issues/1948)
- Camel Avro RPC component native support [\#1941](https://github.com/apache/camel-quarkus/issues/1941)
- Remove Camel AS2 configuration class reflection registration [\#1874](https://github.com/apache/camel-quarkus/issues/1874)
- OptaPlanner native support [\#1721](https://github.com/apache/camel-quarkus/issues/1721)
- Solr native support [\#1703](https://github.com/apache/camel-quarkus/issues/1703)
- Google pubsub extension native support [\#1041](https://github.com/apache/camel-quarkus/issues/1041)
**Merged pull requests:**
- Upgrade to Quarkus 1.10.3.Final [\#2062](https://github.com/apache/camel-quarkus/pull/2062) ([ppalaga](https://github.com/ppalaga))
- Polish how we pass -Djavax.net.ssl.trustStore to the Solr test \#2029 [\#2056](https://github.com/apache/camel-quarkus/pull/2056) ([ppalaga](https://github.com/ppalaga))
- Fix persistence of WireMock mappings [\#2054](https://github.com/apache/camel-quarkus/pull/2054) ([jamesnetherton](https://github.com/jamesnetherton))
- Updated the release guide in order to publish sources [\#2053](https://github.com/apache/camel-quarkus/pull/2053) ([aldettinger](https://github.com/aldettinger))
- Use camel-dependencies as parent pom to inherit camel version properties [\#2051](https://github.com/apache/camel-quarkus/pull/2051) ([jamesnetherton](https://github.com/jamesnetherton))
- Micrometer component support [\#2050](https://github.com/apache/camel-quarkus/pull/2050) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.10.2.Final [\#2047](https://github.com/apache/camel-quarkus/pull/2047) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix GeocoderNominationTest postalCode field assertion failure [\#2043](https://github.com/apache/camel-quarkus/pull/2043) ([jamesnetherton](https://github.com/jamesnetherton))
- Fixup 94ef785 Next is 1.5.0-SNAPSHOT [\#2041](https://github.com/apache/camel-quarkus/pull/2041) ([ppalaga](https://github.com/ppalaga))
- Add JVM only extensions for minio [\#2039](https://github.com/apache/camel-quarkus/pull/2039) ([github-actions[bot]](https://github.com/apps/github-actions))
- JSch native support [\#2038](https://github.com/apache/camel-quarkus/pull/2038) ([jamesnetherton](https://github.com/jamesnetherton))
- Add Nitrite tests [\#2035](https://github.com/apache/camel-quarkus/pull/2035) ([ppalaga](https://github.com/ppalaga))
- Upgrade Quarkus to 1.10.1.Final [\#2032](https://github.com/apache/camel-quarkus/pull/2032) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus Qpid JMS to 0.21.0 [\#2030](https://github.com/apache/camel-quarkus/pull/2030) ([jamesnetherton](https://github.com/jamesnetherton))
- Test the Freemarker extension properly, although only in JVM mode for [\#2028](https://github.com/apache/camel-quarkus/pull/2028) ([ppalaga](https://github.com/ppalaga))
- Solr native support fixes \#1703 [\#2026](https://github.com/apache/camel-quarkus/pull/2026) ([zbendhiba](https://github.com/zbendhiba))
- Camel Avro RPC component native support \#1941 [\#2025](https://github.com/apache/camel-quarkus/pull/2025) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Fix protobuf itest dependency on deployment [\#2021](https://github.com/apache/camel-quarkus/pull/2021) ([llowinge](https://github.com/llowinge))
- Fix debezium itest pom dependencies to deployments [\#2020](https://github.com/apache/camel-quarkus/pull/2020) ([llowinge](https://github.com/llowinge))
- Leverage Quarkus plugin's generate-code mojo instead of protobuf-maven-plugin to generate protobuf stubs [\#2018](https://github.com/apache/camel-quarkus/pull/2018) ([ppalaga](https://github.com/ppalaga))
- OptaPlanner native support fixes \#1721 [\#1822](https://github.com/apache/camel-quarkus/pull/1822) ([zbendhiba](https://github.com/zbendhiba))
## [1.4.0](https://github.com/apache/camel-quarkus/tree/1.4.0) (2020-11-19)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.3.0...1.4.0)
**Fixed bugs:**
- AdviceWithRouteBuilder replaceFromWith and microprofile-metrics conflict [\#1894](https://github.com/apache/camel-quarkus/issues/1894)
- Main extension cannot load rest XML definitions [\#1852](https://github.com/apache/camel-quarkus/issues/1852)
- quarkus-spring-web breaks startup of camel-quarkus-activemq [\#1759](https://github.com/apache/camel-quarkus/issues/1759)
**Closed issues:**
- Data Format : Unable marshal LinkedHashMap to Protobuf [\#1983](https://github.com/apache/camel-quarkus/issues/1983)
- How to add startHistoryId queryParameter to google-mail:history/list \(camel-quarkus-google-mail\) [\#1927](https://github.com/apache/camel-quarkus/issues/1927)
- SnappyCompression fails while building native image [\#1910](https://github.com/apache/camel-quarkus/issues/1910)
- Log with KafkaProducer does not work [\#1862](https://github.com/apache/camel-quarkus/issues/1862)
- Hipchat native support [\#1652](https://github.com/apache/camel-quarkus/issues/1652)
- Need an archetype for Camel Quarkus [\#1173](https://github.com/apache/camel-quarkus/issues/1173)
- PDF integration tests failing with Camel 3.7.0-SNAPSHOT [\#1979](https://github.com/apache/camel-quarkus/issues/1979)
- Configuration option \(not\) to start the runtime [\#1969](https://github.com/apache/camel-quarkus/issues/1969)
- json-validator native build fails with Camel 3.7.0-SNAPSHOT [\#1961](https://github.com/apache/camel-quarkus/issues/1961)
- lumberjack : move client payload sending to test [\#1949](https://github.com/apache/camel-quarkus/issues/1949)
- ActiveMQ Default XPath evaluator could not be loaded [\#1933](https://github.com/apache/camel-quarkus/issues/1933)
- FOP tests fail in Quarkus Platform [\#1930](https://github.com/apache/camel-quarkus/issues/1930)
- Document Spark peculiarities [\#1928](https://github.com/apache/camel-quarkus/issues/1928)
- Unreleased Resource: Streams [\#1913](https://github.com/apache/camel-quarkus/issues/1913)
- PostgresSQL Event : add usage of Quarkus AgroalDatasource [\#1909](https://github.com/apache/camel-quarkus/issues/1909)
- \[Camel Quarkus 1.2\] Remove quarkus.camel.native.resources.include-patterns = routes/\*.xml in examples [\#1901](https://github.com/apache/camel-quarkus/issues/1901)
- Crypto extension requires reflective access to DigitalSignatureConstants [\#1881](https://github.com/apache/camel-quarkus/issues/1881)
- Fix usage of deprecated GitHub actions commands [\#1876](https://github.com/apache/camel-quarkus/issues/1876)
- \[Quarkus 1.9\] leverage Quarkus JAXP extension where applicable [\#1806](https://github.com/apache/camel-quarkus/issues/1806)
- JSLT native support [\#1740](https://github.com/apache/camel-quarkus/issues/1740)
- Lumberjack native support [\#1732](https://github.com/apache/camel-quarkus/issues/1732)
- MSV native support [\#1728](https://github.com/apache/camel-quarkus/issues/1728)
- Nagios native support [\#1726](https://github.com/apache/camel-quarkus/issues/1726)
- Revert PR \#1667 once kudu-client stops shading Netty [\#1669](https://github.com/apache/camel-quarkus/issues/1669)
- Twilio native support [\#1633](https://github.com/apache/camel-quarkus/issues/1633)
- Zendesk native support [\#1613](https://github.com/apache/camel-quarkus/issues/1613)
- Provide a quick profile [\#1607](https://github.com/apache/camel-quarkus/issues/1607)
- Automate the process of creating jvm only extensions [\#1561](https://github.com/apache/camel-quarkus/issues/1561)
- Leverage camel-platform-http-vertx in platform-http extension [\#1144](https://github.com/apache/camel-quarkus/issues/1144)
- Saga native support [\#819](https://github.com/apache/camel-quarkus/issues/819)
**Merged pull requests:**
- Upgrade Quarkus Qpid JMS to 0.20.0 [\#2017](https://github.com/apache/camel-quarkus/pull/2017) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.10.0.Final [\#2016](https://github.com/apache/camel-quarkus/pull/2016) ([jamesnetherton](https://github.com/jamesnetherton))
- Added key [\#2015](https://github.com/apache/camel-quarkus/pull/2015) ([aldettinger](https://github.com/aldettinger))
- Added JSLT native support \#1740 [\#2010](https://github.com/apache/camel-quarkus/pull/2010) ([aldettinger](https://github.com/aldettinger))
- Fix github itest to use oauth token instead username/password [\#2009](https://github.com/apache/camel-quarkus/pull/2009) ([llowinge](https://github.com/llowinge))
- Kudu: unshade and remove embedded netty and use quarkus-netty instead [\#2008](https://github.com/apache/camel-quarkus/pull/2008) ([ppalaga](https://github.com/ppalaga))
- Upgrade to Quarkus 1.10.0.CR1 [\#2004](https://github.com/apache/camel-quarkus/pull/2004) ([jamesnetherton](https://github.com/jamesnetherton))
- Added MSV native support [\#2000](https://github.com/apache/camel-quarkus/pull/2000) ([aldettinger](https://github.com/aldettinger))
- Configurable Debezium itest timeout [\#1999](https://github.com/apache/camel-quarkus/pull/1999) ([llowinge](https://github.com/llowinge))
- Upgrade Quarkus to 1.9.2.Final [\#1994](https://github.com/apache/camel-quarkus/pull/1994) ([jamesnetherton](https://github.com/jamesnetherton))
- Migrate ServiceNow, Slack, Geocoder & Telegram tests to WireMock [\#1993](https://github.com/apache/camel-quarkus/pull/1993) ([jamesnetherton](https://github.com/jamesnetherton))
- Added nagios native support \#1726 [\#1991](https://github.com/apache/camel-quarkus/pull/1991) ([aldettinger](https://github.com/aldettinger))
- core: allign BaseModel with org.apache.camel.impl.DefaultModel [\#1985](https://github.com/apache/camel-quarkus/pull/1985) ([lburgazzoli](https://github.com/lburgazzoli))
- PostgresSQL Event : add usage of Quarkus AgroalDatasource fixes \#1909 [\#1982](https://github.com/apache/camel-quarkus/pull/1982) ([zbendhiba](https://github.com/zbendhiba))
- Reenable Olingo4 integration test [\#1980](https://github.com/apache/camel-quarkus/pull/1980) ([jamesnetherton](https://github.com/jamesnetherton))
- Configuration option \(not\) to start the runtime \#1969 [\#1977](https://github.com/apache/camel-quarkus/pull/1977) ([ppalaga](https://github.com/ppalaga))
- Add JVM only extensions for aws2-eventbridge [\#1975](https://github.com/apache/camel-quarkus/pull/1975) ([github-actions[bot]](https://github.com/apps/github-actions))
- Automate the process of creating jvm only extensions [\#1974](https://github.com/apache/camel-quarkus/pull/1974) ([jamesnetherton](https://github.com/jamesnetherton))
- Fixup Provide a quick profile \#1607 [\#1968](https://github.com/apache/camel-quarkus/pull/1968) ([ppalaga](https://github.com/ppalaga))
- Zendesk native support [\#1967](https://github.com/apache/camel-quarkus/pull/1967) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.9.1.Final [\#1966](https://github.com/apache/camel-quarkus/pull/1966) ([jamesnetherton](https://github.com/jamesnetherton))
- Twilio native support [\#1964](https://github.com/apache/camel-quarkus/pull/1964) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#819 saga native support [\#1963](https://github.com/apache/camel-quarkus/pull/1963) ([zhfeng](https://github.com/zhfeng))
- Provide a quickly profile [\#1962](https://github.com/apache/camel-quarkus/pull/1962) ([ppalaga](https://github.com/ppalaga))
- Leverage Quarkus JAXP extension where applicable \#1806 [\#1958](https://github.com/apache/camel-quarkus/pull/1958) ([ppalaga](https://github.com/ppalaga))
- Document Spark peculiarities \#1928 [\#1957](https://github.com/apache/camel-quarkus/pull/1957) ([ppalaga](https://github.com/ppalaga))
- Leverage camel-platform-http-vertx in platform-http extension [\#1954](https://github.com/apache/camel-quarkus/pull/1954) ([jamesnetherton](https://github.com/jamesnetherton))
- Replace ${camel.quarkus.project.root} set by directory-maven-plugin w… [\#1953](https://github.com/apache/camel-quarkus/pull/1953) ([ppalaga](https://github.com/ppalaga))
- lumberjack : move client payload sending to test fixes \#1949 [\#1950](https://github.com/apache/camel-quarkus/pull/1950) ([zbendhiba](https://github.com/zbendhiba))
- ActiveMQ Default XPath evaluator could not be loaded [\#1947](https://github.com/apache/camel-quarkus/pull/1947) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix usage of deprecated GitHub actions commands [\#1946](https://github.com/apache/camel-quarkus/pull/1946) ([jamesnetherton](https://github.com/jamesnetherton))
- Camel 3.6.0 upgrade leftovers [\#1940](https://github.com/apache/camel-quarkus/pull/1940) ([jamesnetherton](https://github.com/jamesnetherton))
- Exclude glassfish dependencies from hbase-testing-util [\#1939](https://github.com/apache/camel-quarkus/pull/1939) ([jamesnetherton](https://github.com/jamesnetherton))
- Lumberjack native support fixes \#1732 [\#1938](https://github.com/apache/camel-quarkus/pull/1938) ([zbendhiba](https://github.com/zbendhiba))
- Enable Spring dependent extensions to work with Quarkus Spring [\#1937](https://github.com/apache/camel-quarkus/pull/1937) ([jamesnetherton](https://github.com/jamesnetherton))
- Set retention-days parameter on upload-artifact action [\#1936](https://github.com/apache/camel-quarkus/pull/1936) ([jamesnetherton](https://github.com/jamesnetherton))
- Remove Camel 3.6.0 staging repository [\#1934](https://github.com/apache/camel-quarkus/pull/1934) ([jamesnetherton](https://github.com/jamesnetherton))
- Increase test coverage for Spring dependent extensions [\#1932](https://github.com/apache/camel-quarkus/pull/1932) ([jamesnetherton](https://github.com/jamesnetherton))
- FOP tests fail in Quarkus Platform \#1930 [\#1931](https://github.com/apache/camel-quarkus/pull/1931) ([ppalaga](https://github.com/ppalaga))
- Jenkinsfile build: changed the JDK name following INFRA new approach [\#1929](https://github.com/apache/camel-quarkus/pull/1929) ([oscerd](https://github.com/oscerd))
## [1.3.0](https://github.com/apache/camel-quarkus/tree/1.3.0) (2020-10-16)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.2.0...1.3.0)
**Closed issues:**
- HBase integration tests fail with Camel 3.6.0 [\#1914](https://github.com/apache/camel-quarkus/issues/1914)
- Test Geocoder with Google maps mock API if GOOGLE\_GEOCODER\_API\_KEY is not provided [\#1860](https://github.com/apache/camel-quarkus/issues/1860)
- Shiro native support [\#1844](https://github.com/apache/camel-quarkus/issues/1844)
- \[Camel 3.6\] Remove workaround for CAMEL-15518 [\#1769](https://github.com/apache/camel-quarkus/issues/1769)
- \[Camel 3.6?\] Remove createEndpoint method override in QuarkusVertxWebsocketComponent [\#1737](https://github.com/apache/camel-quarkus/issues/1737)
- \[Camel 3.6?\] Improve the camel-bean extension by not using an alias for BeanAnnotationExpressionFactory [\#1725](https://github.com/apache/camel-quarkus/issues/1725)
- \[Camel 3.6\] Remove QuarkusVertxHttpBinding [\#1675](https://github.com/apache/camel-quarkus/issues/1675)
**Merged pull requests:**
- Align jackson-dataformat-xml version with Quarkus jackson [\#1925](https://github.com/apache/camel-quarkus/pull/1925) ([jamesnetherton](https://github.com/jamesnetherton))
- Spark JVM support [\#1916](https://github.com/apache/camel-quarkus/pull/1916) ([ppalaga](https://github.com/ppalaga))
## [1.2.0](https://github.com/apache/camel-quarkus/tree/1.2.0) (2020-10-15)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.1.0...1.2.0)
**Implemented enhancements:**
- Suggestion: Add column for native supported version in camel quarkus extensions list [\#1781](https://github.com/apache/camel-quarkus/issues/1781)
**Fixed bugs:**
- pgevent : config issue [\#1917](https://github.com/apache/camel-quarkus/issues/1917)
- The stream has no active subscriptions when using camel-quarkus-smallrye-reactive-messaging [\#1851](https://github.com/apache/camel-quarkus/issues/1851)
- NoSuchMethodException: org.apache.camel.service.lra.LRASagaRoutes.\<init\>\(\) [\#1840](https://github.com/apache/camel-quarkus/issues/1840)
- Intermittent failure of AhcWsProducerConsumer [\#1815](https://github.com/apache/camel-quarkus/issues/1815)
- 1.1.0 Main fails to start in IntelliJ [\#1800](https://github.com/apache/camel-quarkus/issues/1800)
- Camel-Quarkus Kafka: Failed to configure SaslClientAuthenticator [\#1687](https://github.com/apache/camel-quarkus/issues/1687)
**Closed issues:**
- IllegalArgumentException thrown on itest application startup [\#1891](https://github.com/apache/camel-quarkus/issues/1891)
- NATS tests do not work on the platform [\#1803](https://github.com/apache/camel-quarkus/issues/1803)
- Add more examples [\#310](https://github.com/apache/camel-quarkus/issues/310)
- Add Camel-Aws-SSM extension [\#108](https://github.com/apache/camel-quarkus/issues/108)
- \[QUARKUS 1.9\] Remove the driver registration workaround from Postgres Replication Slot extension [\#1885](https://github.com/apache/camel-quarkus/issues/1885)
- Duplicate license headers in Velocity test templates [\#1843](https://github.com/apache/camel-quarkus/issues/1843)
- LevelDB native support [\#1839](https://github.com/apache/camel-quarkus/issues/1839)
- Headersmap native support [\#1838](https://github.com/apache/camel-quarkus/issues/1838)
- List of misc. components empty after the recent docs generation changes [\#1834](https://github.com/apache/camel-quarkus/issues/1834)
- Document all ways to start a new project [\#1824](https://github.com/apache/camel-quarkus/issues/1824)
- A user guide page informing about various ways to define routes [\#1823](https://github.com/apache/camel-quarkus/issues/1823)
- Run verify for the docs module on the CI [\#1819](https://github.com/apache/camel-quarkus/issues/1819)
- Camel quarkus disable auto route discovery not working [\#1816](https://github.com/apache/camel-quarkus/issues/1816)
- Configure NativeImageResourceBuildItem for camel route classpath resources [\#1812](https://github.com/apache/camel-quarkus/issues/1812)
- allowContextMapAll requires template engines to have reflective access to camel core classess [\#1807](https://github.com/apache/camel-quarkus/issues/1807)
- Find a proper place for registering SAXMessages native resource bundle [\#1796](https://github.com/apache/camel-quarkus/issues/1796)
- Generate partials instead of pages for the individual Camel bits [\#1795](https://github.com/apache/camel-quarkus/issues/1795)
- \[Quarkus 1.9\] Caffeine: remove CacheLoader processor [\#1790](https://github.com/apache/camel-quarkus/issues/1790)
- Wrong jira component version definition in camel-quarkus-bom 1.0.1 file [\#1775](https://github.com/apache/camel-quarkus/issues/1775)
- Adding Changelog generated automatically through gh action [\#1772](https://github.com/apache/camel-quarkus/issues/1772)
- Component counts not shown on the website [\#1770](https://github.com/apache/camel-quarkus/issues/1770)
- \[Quarkus 1.9\] Move httpmine from our BOM to Quarkus BOM [\#1763](https://github.com/apache/camel-quarkus/issues/1763)
- uniVocity data formats native support [\#1756](https://github.com/apache/camel-quarkus/issues/1756)
- Jing native support [\#1741](https://github.com/apache/camel-quarkus/issues/1741)
- NSQ native support [\#1722](https://github.com/apache/camel-quarkus/issues/1722)
- PostgresSQL Replication Slot native support [\#1720](https://github.com/apache/camel-quarkus/issues/1720)
- PostgresSQL Event native support [\#1719](https://github.com/apache/camel-quarkus/issues/1719)
- Be able to determine that the test was run against external service or not [\#1717](https://github.com/apache/camel-quarkus/issues/1717)
- RSS component native support [\#1711](https://github.com/apache/camel-quarkus/issues/1711)
- Stop managing httpclient-cache as it is managed by Quarkus [\#1704](https://github.com/apache/camel-quarkus/issues/1704)
- String template native support [\#1694](https://github.com/apache/camel-quarkus/issues/1694)
- Move examples to a separate git repository [\#1691](https://github.com/apache/camel-quarkus/issues/1691)
- Make mvn -N cq:format remove empty application.properties files [\#1676](https://github.com/apache/camel-quarkus/issues/1676)
- Document cq:create -Dcq.nativeSupported=false for creating JVM-only extensions [\#1662](https://github.com/apache/camel-quarkus/issues/1662)
- camel-quarkus-activemq extension broker url configuration [\#1661](https://github.com/apache/camel-quarkus/issues/1661)
- Geocoder native support [\#1645](https://github.com/apache/camel-quarkus/issues/1645)
- FOP native support [\#1642](https://github.com/apache/camel-quarkus/issues/1642)
- SmallRyeReactiveMessagingIT fails intermittently [\#1632](https://github.com/apache/camel-quarkus/issues/1632)
- MongoClientName annotation class not available when using camel-quarkus-mongodb extension [\#1608](https://github.com/apache/camel-quarkus/issues/1608)
- Disruptor native support [\#1597](https://github.com/apache/camel-quarkus/issues/1597)
- Crypto \(JCE\) native support [\#1593](https://github.com/apache/camel-quarkus/issues/1593)
- Atom native support [\#1560](https://github.com/apache/camel-quarkus/issues/1560)
- Use asciidoctor-antora-indexer to produce lists of extensions and components on the reference pages [\#1557](https://github.com/apache/camel-quarkus/issues/1557)
- Add styles for Quarkus config options fixed at build time [\#1410](https://github.com/apache/camel-quarkus/issues/1410)
- File specific issues for TODOs where necessary [\#1285](https://github.com/apache/camel-quarkus/issues/1285)
- Velocity Support [\#837](https://github.com/apache/camel-quarkus/issues/837)
- Browse native support [\#816](https://github.com/apache/camel-quarkus/issues/816)
- SSH support [\#798](https://github.com/apache/camel-quarkus/issues/798)
- Caffeine native support [\#794](https://github.com/apache/camel-quarkus/issues/794)
- gRPC native support [\#762](https://github.com/apache/camel-quarkus/issues/762)
**Merged pull requests:**
- Upgrade Quarkus Qpid JMS to 0.19.0 [\#1924](https://github.com/apache/camel-quarkus/pull/1924) ([jamesnetherton](https://github.com/jamesnetherton))
- Trigger changelog generation on workflow\_dispatch [\#1923](https://github.com/apache/camel-quarkus/pull/1923) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.9.0.Final [\#1921](https://github.com/apache/camel-quarkus/pull/1921) ([jamesnetherton](https://github.com/jamesnetherton))
- Added nsq native support fixes \#1722 [\#1920](https://github.com/apache/camel-quarkus/pull/1920) ([aldettinger](https://github.com/aldettinger))
- pgevent: correct service name [\#1919](https://github.com/apache/camel-quarkus/pull/1919) ([zbendhiba](https://github.com/zbendhiba))
- Workaround AdviceWithRouteBuilder and MicroprofileMetrics conflict [\#1915](https://github.com/apache/camel-quarkus/pull/1915) ([jamesnetherton](https://github.com/jamesnetherton))
- HBase JVM support [\#1906](https://github.com/apache/camel-quarkus/pull/1906) ([ppalaga](https://github.com/ppalaga))
- PostgresSQL Event native support fixes \#1719 [\#1905](https://github.com/apache/camel-quarkus/pull/1905) ([zbendhiba](https://github.com/zbendhiba))
- Prevent CI workflows running on forks [\#1904](https://github.com/apache/camel-quarkus/pull/1904) ([jamesnetherton](https://github.com/jamesnetherton))
- Document all ways to start a new project [\#1903](https://github.com/apache/camel-quarkus/pull/1903) ([jamesnetherton](https://github.com/jamesnetherton))
- LevelDB native support \#1839 [\#1902](https://github.com/apache/camel-quarkus/pull/1902) ([JiriOndrusek](https://github.com/JiriOndrusek))
- camel-quarkus-jira: Add resteasy-common dependency [\#1899](https://github.com/apache/camel-quarkus/pull/1899) ([mmelko](https://github.com/mmelko))
- File specific issues for TODOs where necessary \#1285 [\#1897](https://github.com/apache/camel-quarkus/pull/1897) ([ppalaga](https://github.com/ppalaga))
- Restrict changelog workflow to only run on apache/camel-quarkus repo [\#1893](https://github.com/apache/camel-quarkus/pull/1893) ([jamesnetherton](https://github.com/jamesnetherton))
- Quarkus 1.9.0 post upgrade fixes [\#1890](https://github.com/apache/camel-quarkus/pull/1890) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.9.0.CR1 [\#1887](https://github.com/apache/camel-quarkus/pull/1887) ([jamesnetherton](https://github.com/jamesnetherton))
- Crypto extension requires reflective access to DigitalSignatureConstants [\#1883](https://github.com/apache/camel-quarkus/pull/1883) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to Debezium 1.3.0.Final [\#1882](https://github.com/apache/camel-quarkus/pull/1882) ([ppalaga](https://github.com/ppalaga))
- CAMEL-QUARKUS-1720: Added Postgres replication slot native support [\#1880](https://github.com/apache/camel-quarkus/pull/1880) ([aldettinger](https://github.com/aldettinger))
- Crypto \(JCE\) native support [\#1878](https://github.com/apache/camel-quarkus/pull/1878) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix twitter itest so it initially waits when start polling tweets [\#1877](https://github.com/apache/camel-quarkus/pull/1877) ([llowinge](https://github.com/llowinge))
- Add an Examples step to the release guide [\#1875](https://github.com/apache/camel-quarkus/pull/1875) ([ppalaga](https://github.com/ppalaga))
- NoSuchMethodException: org.apache.camel.service.lra.LRASagaRoutes.\<init\>\(\) [\#1873](https://github.com/apache/camel-quarkus/pull/1873) ([ppalaga](https://github.com/ppalaga))
- Headersmap native support [\#1872](https://github.com/apache/camel-quarkus/pull/1872) ([jamesnetherton](https://github.com/jamesnetherton))
- Generate the list of examples from the AsciiDoc pages generated in the [\#1870](https://github.com/apache/camel-quarkus/pull/1870) ([ppalaga](https://github.com/ppalaga))
- Let's see if removing -Dmaven.wagon.http.pool=false solves the Maven … [\#1867](https://github.com/apache/camel-quarkus/pull/1867) ([ppalaga](https://github.com/ppalaga))
- Upgrade SmallRye Reactive Messaging Camel to 2.4.0 [\#1866](https://github.com/apache/camel-quarkus/pull/1866) ([jamesnetherton](https://github.com/jamesnetherton))
- Move examples to a separate git repository [\#1864](https://github.com/apache/camel-quarkus/pull/1864) ([ppalaga](https://github.com/ppalaga))
- Fix platform-http handler exception handling [\#1863](https://github.com/apache/camel-quarkus/pull/1863) ([jamesnetherton](https://github.com/jamesnetherton))
- Turn of Maven connection pooling to avoid connection issues on the CI… [\#1859](https://github.com/apache/camel-quarkus/pull/1859) ([ppalaga](https://github.com/ppalaga))
- Tidy up pom.xml files [\#1858](https://github.com/apache/camel-quarkus/pull/1858) ([ppalaga](https://github.com/ppalaga))
- platform-http: handle requests using a thread from the worker pool [\#1857](https://github.com/apache/camel-quarkus/pull/1857) ([lburgazzoli](https://github.com/lburgazzoli))
- Geocoder native support fixes \#1645 [\#1856](https://github.com/apache/camel-quarkus/pull/1856) ([zbendhiba](https://github.com/zbendhiba))
- Document allowContextMapAll native mode limitations [\#1855](https://github.com/apache/camel-quarkus/pull/1855) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to cq-maven-plugin 0.20.0, set nativeSince property when prom… [\#1854](https://github.com/apache/camel-quarkus/pull/1854) ([ppalaga](https://github.com/ppalaga))
- Document camel main xml configuration properties [\#1853](https://github.com/apache/camel-quarkus/pull/1853) ([jamesnetherton](https://github.com/jamesnetherton))
- Shiro, Ribbon, JCache JVM support [\#1849](https://github.com/apache/camel-quarkus/pull/1849) ([ppalaga](https://github.com/ppalaga))
- Duplicate license headers in Velocity test templates \#1843 [\#1847](https://github.com/apache/camel-quarkus/pull/1847) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Ensure InputStream is closed after reading rome.properties [\#1842](https://github.com/apache/camel-quarkus/pull/1842) ([jamesnetherton](https://github.com/jamesnetherton))
- AWS XRay, Headersmap, Jasypt, LevelDB, LRA JVM support [\#1841](https://github.com/apache/camel-quarkus/pull/1841) ([ppalaga](https://github.com/ppalaga))
- RSS native support [\#1836](https://github.com/apache/camel-quarkus/pull/1836) ([jamesnetherton](https://github.com/jamesnetherton))
- List of misc. components empty after the recent docs generation chang… [\#1835](https://github.com/apache/camel-quarkus/pull/1835) ([ppalaga](https://github.com/ppalaga))
- Exclude .idea directory from license checks [\#1833](https://github.com/apache/camel-quarkus/pull/1833) ([jamesnetherton](https://github.com/jamesnetherton))
- Use distinct descriptions for the for the various JSON data formats [\#1832](https://github.com/apache/camel-quarkus/pull/1832) ([ppalaga](https://github.com/ppalaga))
- Atom native support [\#1831](https://github.com/apache/camel-quarkus/pull/1831) ([jamesnetherton](https://github.com/jamesnetherton))
- String template native support \#1694 [\#1828](https://github.com/apache/camel-quarkus/pull/1828) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Fix intermittent failure of AHC-WS itest [\#1827](https://github.com/apache/camel-quarkus/pull/1827) ([jamesnetherton](https://github.com/jamesnetherton))
- Remove redundant skip of maven-enforcer-plugin execution [\#1825](https://github.com/apache/camel-quarkus/pull/1825) ([jamesnetherton](https://github.com/jamesnetherton))
- Configure NativeImageResourceBuildItem for camel route classpath resources [\#1821](https://github.com/apache/camel-quarkus/pull/1821) ([jamesnetherton](https://github.com/jamesnetherton))
- Run verify for the docs module on the CI \#1819 [\#1820](https://github.com/apache/camel-quarkus/pull/1820) ([ppalaga](https://github.com/ppalaga))
- Improve mock backend logging [\#1818](https://github.com/apache/camel-quarkus/pull/1818) ([llowinge](https://github.com/llowinge))
- Camel quarkus disable auto route discovery not working [\#1817](https://github.com/apache/camel-quarkus/pull/1817) ([lburgazzoli](https://github.com/lburgazzoli))
- Use partials instead of pages for the individual Camel bits [\#1814](https://github.com/apache/camel-quarkus/pull/1814) ([ppalaga](https://github.com/ppalaga))
- Added UniVocity data formats native support \#1756 [\#1813](https://github.com/apache/camel-quarkus/pull/1813) ([aldettinger](https://github.com/aldettinger))
- Align guava & google-http-client versions with Quarkus [\#1811](https://github.com/apache/camel-quarkus/pull/1811) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade Quarkus to 1.8.1.Final [\#1809](https://github.com/apache/camel-quarkus/pull/1809) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix launch of camel main applications from IntelliJ [\#1808](https://github.com/apache/camel-quarkus/pull/1808) ([jamesnetherton](https://github.com/jamesnetherton))
- Velocity Support \#837 [\#1804](https://github.com/apache/camel-quarkus/pull/1804) ([JiriOndrusek](https://github.com/JiriOndrusek))
- feat\(ssh\): promoting native extension [\#1802](https://github.com/apache/camel-quarkus/pull/1802) ([squakez](https://github.com/squakez))
- Browse native support [\#1801](https://github.com/apache/camel-quarkus/pull/1801) ([jamesnetherton](https://github.com/jamesnetherton))
- gRPC native support [\#1797](https://github.com/apache/camel-quarkus/pull/1797) ([jamesnetherton](https://github.com/jamesnetherton))
- Remove UpdateDocExtensionsListMojo followup \#1777 [\#1794](https://github.com/apache/camel-quarkus/pull/1794) ([ppalaga](https://github.com/ppalaga))
- FOP native support \#1642 [\#1793](https://github.com/apache/camel-quarkus/pull/1793) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Added jing native support fixes \#1741 [\#1792](https://github.com/apache/camel-quarkus/pull/1792) ([aldettinger](https://github.com/aldettinger))
- Disruptor native support [\#1791](https://github.com/apache/camel-quarkus/pull/1791) ([lburgazzoli](https://github.com/lburgazzoli))
- Update camel-quarkus-last-release property to 1.1.0 [\#1789](https://github.com/apache/camel-quarkus/pull/1789) ([jamesnetherton](https://github.com/jamesnetherton))
- Document update [\#1788](https://github.com/apache/camel-quarkus/pull/1788) ([NiteshKoushik](https://github.com/NiteshKoushik))
- Switch from Gitter to Zulip [\#1787](https://github.com/apache/camel-quarkus/pull/1787) ([lburgazzoli](https://github.com/lburgazzoli))
- Exclude daily branch build bot generated issues from the changelog [\#1786](https://github.com/apache/camel-quarkus/pull/1786) ([jamesnetherton](https://github.com/jamesnetherton))
- Caffeine native support [\#1785](https://github.com/apache/camel-quarkus/pull/1785) ([lburgazzoli](https://github.com/lburgazzoli))
- Added automatic changelog gh action [\#1784](https://github.com/apache/camel-quarkus/pull/1784) ([oscerd](https://github.com/oscerd))
- Fix intermittent failures of SmallRyeReactiveMessagingIT [\#1780](https://github.com/apache/camel-quarkus/pull/1780) ([jamesnetherton](https://github.com/jamesnetherton))
- Wrong jira component version definition in camel-quarkus-bom \#1775 [\#1778](https://github.com/apache/camel-quarkus/pull/1778) ([ppalaga](https://github.com/ppalaga))
- Use asciidoctor-antora-indexer to produce lists of extensions [\#1777](https://github.com/apache/camel-quarkus/pull/1777) ([ppalaga](https://github.com/ppalaga))
- Upgrade to cq-maven-plugin 0.19.0, Make mvn -N cq:format remove empty… [\#1774](https://github.com/apache/camel-quarkus/pull/1774) ([ppalaga](https://github.com/ppalaga))
## [1.1.0](https://github.com/apache/camel-quarkus/tree/1.1.0) (2020-09-09)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.0.1...1.1.0)
**Fixed bugs:**
- KuduIT fails with Camel 3.5.0 [\#1664](https://github.com/apache/camel-quarkus/issues/1664)
- Unable to use quartz as scheduler for ScheduledPollConsumer in native mode [\#1663](https://github.com/apache/camel-quarkus/issues/1663)
- \[Camel 3.5\] OpenTracing integration test fails with Camel 3.5.0-SNAPSHOT [\#1493](https://github.com/apache/camel-quarkus/issues/1493)
**Closed issues:**
- camel-quarkus-main - Uses reflection for setting its name [\#1765](https://github.com/apache/camel-quarkus/issues/1765)
- Add TLS based authentication support to the nats extension [\#1761](https://github.com/apache/camel-quarkus/issues/1761)
- @Simple annotated bean parameter binding not working in native mode [\#1685](https://github.com/apache/camel-quarkus/issues/1685)
- Create an AWS2-STS extension [\#1680](https://github.com/apache/camel-quarkus/issues/1680)
- Weather native support [\#1631](https://github.com/apache/camel-quarkus/issues/1631)
- ClassNotFoundException thrown when using onException in native mode [\#1605](https://github.com/apache/camel-quarkus/issues/1605)
- Speed up the CI [\#1602](https://github.com/apache/camel-quarkus/issues/1602)
- jakarta.xml.bind:jakarta.xml.bind-api version alignment issues [\#1601](https://github.com/apache/camel-quarkus/issues/1601)
- NATS native support [\#1578](https://github.com/apache/camel-quarkus/issues/1578)
- Dropbox native support [\#1577](https://github.com/apache/camel-quarkus/issues/1577)
- AWS 2 Lambda native support [\#1572](https://github.com/apache/camel-quarkus/issues/1572)
- make camel-management a camel-quarkus extension. [\#1564](https://github.com/apache/camel-quarkus/issues/1564)
- \[Camel 3.5?\] contextPath ignored for platform-http with REST DSL [\#1563](https://github.com/apache/camel-quarkus/issues/1563)
- Cron component not initialized when used with Endpoint DSL \(since Quarkus 1.7.0.Final\) [\#1553](https://github.com/apache/camel-quarkus/issues/1553)
- Telegram test doesn't work [\#1550](https://github.com/apache/camel-quarkus/issues/1550)
- Flatpack component support [\#1541](https://github.com/apache/camel-quarkus/issues/1541)
- http related tests rely on external service that may sometimes be down [\#1538](https://github.com/apache/camel-quarkus/issues/1538)
- Add ArangoDB component extension [\#1533](https://github.com/apache/camel-quarkus/issues/1533)
- RabbitMQ native support [\#1531](https://github.com/apache/camel-quarkus/issues/1531)
- Add entry in Quarkus MAINTAINERS.adoc [\#1523](https://github.com/apache/camel-quarkus/issues/1523)
- health example throws VerifyError as class MonkeyHealthCheck\_ClientProxy overrides final method AbstractHealthCheck.addMetaData [\#1517](https://github.com/apache/camel-quarkus/issues/1517)
- Add core extension to the list of extensions documentation [\#1510](https://github.com/apache/camel-quarkus/issues/1510)
- UpdateExtensionDocPageMojo generates wrong link for Camel threadpoolfactory-vertx component [\#1506](https://github.com/apache/camel-quarkus/issues/1506)
- \[Camel 3.5/3.4.3\] xml-io should pass namespace info to NamespaceAware elements [\#1497](https://github.com/apache/camel-quarkus/issues/1497)
- Create a vert.x http client extension [\#1491](https://github.com/apache/camel-quarkus/issues/1491)
- org.apache.camel.NoTypeConversionAvailableException: No type converter available to convert from type: java.util.HashMap to the required type: java.nio.ByteBuffer with value {name=e} [\#1475](https://github.com/apache/camel-quarkus/issues/1475)
- Add Camel AS2 Modules as Quarkus Extension [\#1471](https://github.com/apache/camel-quarkus/issues/1471)
- \[Camel 3.5\] Move FastUuidGenerator to Camel [\#1470](https://github.com/apache/camel-quarkus/issues/1470)
- Add support for smallrye-reactive-messaging-camel [\#1469](https://github.com/apache/camel-quarkus/issues/1469)
- Extension for camel-threadpoolfactory-vertx [\#1430](https://github.com/apache/camel-quarkus/issues/1430)
- \[Camel 3.5\] Configuring api context path with property camel.context.rest-configuration.api-context-path does not work [\#1303](https://github.com/apache/camel-quarkus/issues/1303)
- \[Camel 3.5\] Create a vert.x websocket extension [\#1301](https://github.com/apache/camel-quarkus/issues/1301)
- Investigate removing reflective class configuration for components that extend AbstractApiComponent [\#1108](https://github.com/apache/camel-quarkus/issues/1108)
- Flatpack dataformat support [\#796](https://github.com/apache/camel-quarkus/issues/796)
- Create extension for camel-master component [\#711](https://github.com/apache/camel-quarkus/issues/711)
- Remove UnbannedReflectiveBuildItem + policy extension ? [\#699](https://github.com/apache/camel-quarkus/issues/699)
**Merged pull requests:**
- Add some pre-release tasks to the release guide [\#1771](https://github.com/apache/camel-quarkus/pull/1771) ([jamesnetherton](https://github.com/jamesnetherton))
- camel-quarkus-main - Uses reflection for setting its name [\#1768](https://github.com/apache/camel-quarkus/pull/1768) ([lburgazzoli](https://github.com/lburgazzoli))
- Document cq:create -Dcq.nativeSupported=false for creating JVM-only e… [\#1767](https://github.com/apache/camel-quarkus/pull/1767) ([ppalaga](https://github.com/ppalaga))
- Quarkus 1.8.0.final [\#1766](https://github.com/apache/camel-quarkus/pull/1766) ([jamesnetherton](https://github.com/jamesnetherton))
- Added ssl authentation to the nats extensions [\#1764](https://github.com/apache/camel-quarkus/pull/1764) ([aldettinger](https://github.com/aldettinger))
- Test for \#1497 xml-io should pass namespace info to NamespaceAware [\#1760](https://github.com/apache/camel-quarkus/pull/1760) ([ppalaga](https://github.com/ppalaga))
- AWS2-Lambda Extension: Adding interceptors and align to the other ext… [\#1758](https://github.com/apache/camel-quarkus/pull/1758) ([oscerd](https://github.com/oscerd))
- JGroups, JGroups raft, HL7 Terser, Syslog, JSonApi, ASN.1 File, Barcode, BeanIO, CBOR, JSon Fastjson, uniVocity, Freemarker JVM support [\#1757](https://github.com/apache/camel-quarkus/pull/1757) ([ppalaga](https://github.com/ppalaga))
- Aws2 sts [\#1745](https://github.com/apache/camel-quarkus/pull/1745) ([oscerd](https://github.com/oscerd))
- Management JVM support [\#1744](https://github.com/apache/camel-quarkus/pull/1744) ([jamesnetherton](https://github.com/jamesnetherton))
- JT400, JSLT, Jing, JCR, JClouds JVM support [\#1743](https://github.com/apache/camel-quarkus/pull/1743) ([ppalaga](https://github.com/ppalaga))
- Enhance Github itest with configurable credentials [\#1738](https://github.com/apache/camel-quarkus/pull/1738) ([llowinge](https://github.com/llowinge))
- MLLP, Milo, Lumberjack, Lucene, LDIF, LDAP, Language JVM support [\#1736](https://github.com/apache/camel-quarkus/pull/1736) ([ppalaga](https://github.com/ppalaga))
- Promote AWS 2 Lambda to native [\#1730](https://github.com/apache/camel-quarkus/pull/1730) ([Jeansen](https://github.com/Jeansen))
- SSH, Nagios, MyBatis, MVEL and MSV JVM support [\#1729](https://github.com/apache/camel-quarkus/pull/1729) ([ppalaga](https://github.com/ppalaga))
- Printer, PostgresSQL Event, PostgresSQL Replication Slot, OptaPlanner and NSQ JVM support [\#1724](https://github.com/apache/camel-quarkus/pull/1724) ([ppalaga](https://github.com/ppalaga))
- Fixed bean parameter bindings using language annotations in native mo… [\#1716](https://github.com/apache/camel-quarkus/pull/1716) ([aldettinger](https://github.com/aldettinger))
- Weather native support fixes \#1631 [\#1715](https://github.com/apache/camel-quarkus/pull/1715) ([zbendhiba](https://github.com/zbendhiba))
- XQuery, Saga, RSS, Robot Framework and QuickFix JVM support [\#1713](https://github.com/apache/camel-quarkus/pull/1713) ([ppalaga](https://github.com/ppalaga))
- Soroush, Solr, SNMP, SMPP, SIP, and Schematron JVM support [\#1708](https://github.com/apache/camel-quarkus/pull/1708) ([ppalaga](https://github.com/ppalaga))
- Upgrade to cq-maven-plugin 0.18.1 [\#1700](https://github.com/apache/camel-quarkus/pull/1700) ([ppalaga](https://github.com/ppalaga))
- String Template, Stomp, StAX, Splunk HEC and Splunk JVM support [\#1699](https://github.com/apache/camel-quarkus/pull/1699) ([ppalaga](https://github.com/ppalaga))
- Dropbox native support [\#1693](https://github.com/apache/camel-quarkus/pull/1693) ([jamesnetherton](https://github.com/jamesnetherton))
- Speedup the initial CI mvn install by adding -T1C [\#1692](https://github.com/apache/camel-quarkus/pull/1692) ([ppalaga](https://github.com/ppalaga))
- Remove camel 3.5.0 staging repositories [\#1690](https://github.com/apache/camel-quarkus/pull/1690) ([jamesnetherton](https://github.com/jamesnetherton))
- Replace mvnd.builder.rules with virtual dependencies [\#1689](https://github.com/apache/camel-quarkus/pull/1689) ([ppalaga](https://github.com/ppalaga))
- Feat\(mongodb\): add support for named client [\#1688](https://github.com/apache/camel-quarkus/pull/1688) ([squakez](https://github.com/squakez))
- Move FastUuidGenerator to Camel [\#1683](https://github.com/apache/camel-quarkus/pull/1683) ([lburgazzoli](https://github.com/lburgazzoli))
- Align dependencies with latest camel & quarkus releases [\#1682](https://github.com/apache/camel-quarkus/pull/1682) ([jamesnetherton](https://github.com/jamesnetherton))
- Add vertx-websocket component extension [\#1681](https://github.com/apache/camel-quarkus/pull/1681) ([jamesnetherton](https://github.com/jamesnetherton))
- Add integration tests for the camel-quarkus-kotlin extension [\#1679](https://github.com/apache/camel-quarkus/pull/1679) ([lburgazzoli](https://github.com/lburgazzoli))
- Upgrade to Quarkus 1.8.0.CR1 [\#1678](https://github.com/apache/camel-quarkus/pull/1678) ([jamesnetherton](https://github.com/jamesnetherton))
- Remove UnbannedReflectiveBuildItem [\#1677](https://github.com/apache/camel-quarkus/pull/1677) ([jamesnetherton](https://github.com/jamesnetherton))
- Added nats native support fixes \#1578 [\#1674](https://github.com/apache/camel-quarkus/pull/1674) ([aldettinger](https://github.com/aldettinger))
- Add vertx-http component extension [\#1673](https://github.com/apache/camel-quarkus/pull/1673) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix Google gmail itest to wait for deletion of mail [\#1671](https://github.com/apache/camel-quarkus/pull/1671) ([llowinge](https://github.com/llowinge))
- Upgrade to Camel 3.5.0 [\#1670](https://github.com/apache/camel-quarkus/pull/1670) ([ppalaga](https://github.com/ppalaga))
- Add some logging to debug \#1632 [\#1668](https://github.com/apache/camel-quarkus/pull/1668) ([jamesnetherton](https://github.com/jamesnetherton))
- Register missing Camel quartz job classes for reflection [\#1665](https://github.com/apache/camel-quarkus/pull/1665) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix Twitter itest to wait for latest sent message [\#1660](https://github.com/apache/camel-quarkus/pull/1660) ([llowinge](https://github.com/llowinge))
- Hipchat, IEC 60870, Ignite, IOTA and JBPM JVM support [\#1657](https://github.com/apache/camel-quarkus/pull/1657) ([ppalaga](https://github.com/ppalaga))
- Re-ballance test-categories.yaml once again [\#1655](https://github.com/apache/camel-quarkus/pull/1655) ([ppalaga](https://github.com/ppalaga))
- More CI tweaks [\#1651](https://github.com/apache/camel-quarkus/pull/1651) ([ppalaga](https://github.com/ppalaga))
- HDFS, hazelcast, Guava EventBus, Geocoder and Ganglia JVM support [\#1650](https://github.com/apache/camel-quarkus/pull/1650) ([ppalaga](https://github.com/ppalaga))
- FOP, Flink, Facebook, ElSQL and Ehcache JVM support [\#1643](https://github.com/apache/camel-quarkus/pull/1643) ([ppalaga](https://github.com/ppalaga))
- Weather, Velocity, Twilio, Thrift and Stub JVM support [\#1636](https://github.com/apache/camel-quarkus/pull/1636) ([ppalaga](https://github.com/ppalaga))
- XChange, Workday, Wordpress, Weka and Web3j JVM support [\#1629](https://github.com/apache/camel-quarkus/pull/1629) ([ppalaga](https://github.com/ppalaga))
- Upgrade Quarkus to 1.7.1.Final [\#1628](https://github.com/apache/camel-quarkus/pull/1628) ([jamesnetherton](https://github.com/jamesnetherton))
- Add IPFS, IRC & JSch JVM only extensions [\#1627](https://github.com/apache/camel-quarkus/pull/1627) ([jamesnetherton](https://github.com/jamesnetherton))
- CI definition tweaks [\#1624](https://github.com/apache/camel-quarkus/pull/1624) ([ppalaga](https://github.com/ppalaga))
- ZooKeeper, ZooKeeper Master, Zendesk, Yammer, XSLT Saxon, XMPP, XML Security and XJ JVM support [\#1618](https://github.com/apache/camel-quarkus/pull/1618) ([ppalaga](https://github.com/ppalaga))
- Fix JAXB dependency alignment issues [\#1609](https://github.com/apache/camel-quarkus/pull/1609) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#1602 Speed up the CI [\#1606](https://github.com/apache/camel-quarkus/pull/1606) ([ppalaga](https://github.com/ppalaga))
- Send unique messages in Slack itest to avoid false positive tests [\#1604](https://github.com/apache/camel-quarkus/pull/1604) ([llowinge](https://github.com/llowinge))
- Upgrade to cq-maven-plugin 0.17.0, sanitize model.name when using it as [\#1603](https://github.com/apache/camel-quarkus/pull/1603) ([ppalaga](https://github.com/ppalaga))
- Crypto \(JCE\), DigitalOcean, Disruptor, Deep Java Library and Drill JVM support [\#1600](https://github.com/apache/camel-quarkus/pull/1600) ([ppalaga](https://github.com/ppalaga))
- Fix servicenow itest to clean resources [\#1596](https://github.com/apache/camel-quarkus/pull/1596) ([llowinge](https://github.com/llowinge))
- Add DNS, etcd & plusar JVM only extensions [\#1595](https://github.com/apache/camel-quarkus/pull/1595) ([jamesnetherton](https://github.com/jamesnetherton))
- CM SMS Gateway, CMIS, CoAP, CometD and Corda JVM support [\#1590](https://github.com/apache/camel-quarkus/pull/1590) ([ppalaga](https://github.com/ppalaga))
- Bonita, Beanstalk, Caffeine, ChatScript and Chunk JVM support [\#1585](https://github.com/apache/camel-quarkus/pull/1585) ([ppalaga](https://github.com/ppalaga))
- Improve docs [\#1579](https://github.com/apache/camel-quarkus/pull/1579) ([ppalaga](https://github.com/ppalaga))
- Add Dropbox, jOOQ & NATS JVM support [\#1576](https://github.com/apache/camel-quarkus/pull/1576) ([jamesnetherton](https://github.com/jamesnetherton))
- Clean google drive in google sheets itest [\#1575](https://github.com/apache/camel-quarkus/pull/1575) ([llowinge](https://github.com/llowinge))
- Atomix, AWS 2 Kinesis, AWS 2 Lambda, Azure Storage Blob and Azure Storage Queue JVM support [\#1569](https://github.com/apache/camel-quarkus/pull/1569) ([ppalaga](https://github.com/ppalaga))
- Added flatpack component support \#1541 [\#1568](https://github.com/apache/camel-quarkus/pull/1568) ([aldettinger](https://github.com/aldettinger))
- RabbitMQ native extension [\#1567](https://github.com/apache/camel-quarkus/pull/1567) ([Jeansen](https://github.com/Jeansen))
- Tests for \#1563 contextPath ignored for platform-http with REST DSL [\#1565](https://github.com/apache/camel-quarkus/pull/1565) ([ppalaga](https://github.com/ppalaga))
- Fix itest when Twitter acount have spaces in name [\#1562](https://github.com/apache/camel-quarkus/pull/1562) ([llowinge](https://github.com/llowinge))
- APNS, Asterisk and Atom JVM support [\#1559](https://github.com/apache/camel-quarkus/pull/1559) ([ppalaga](https://github.com/ppalaga))
- Update mvnd rules and split their entries by newlines where merge con… [\#1555](https://github.com/apache/camel-quarkus/pull/1555) ([ppalaga](https://github.com/ppalaga))
- Fix telegram itest component property resolution [\#1554](https://github.com/apache/camel-quarkus/pull/1554) ([llowinge](https://github.com/llowinge))
- Compute the component counts using JavaScript to avoid merge conflicts [\#1552](https://github.com/apache/camel-quarkus/pull/1552) ([ppalaga](https://github.com/ppalaga))
- Document snapshot builds in CI docs [\#1551](https://github.com/apache/camel-quarkus/pull/1551) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#765 Git support [\#1548](https://github.com/apache/camel-quarkus/pull/1548) ([ppalaga](https://github.com/ppalaga))
- Publish SNAPSHOT builds [\#1547](https://github.com/apache/camel-quarkus/pull/1547) ([jamesnetherton](https://github.com/jamesnetherton))
- Use proper extension page URLs in quarkus-extension.yaml [\#1546](https://github.com/apache/camel-quarkus/pull/1546) ([ppalaga](https://github.com/ppalaga))
- update create new extension guide : add update of test-categories.yaml [\#1544](https://github.com/apache/camel-quarkus/pull/1544) ([zbendhiba](https://github.com/zbendhiba))
- Add missing netty dependencies to olingo4 extension [\#1543](https://github.com/apache/camel-quarkus/pull/1543) ([jamesnetherton](https://github.com/jamesnetherton))
- Added support for flatpack dataformat fixes \#796 [\#1542](https://github.com/apache/camel-quarkus/pull/1542) ([aldettinger](https://github.com/aldettinger))
- Switch from restcountries.eu to estcountries.com as the .eu service is not reliable anymore [\#1539](https://github.com/apache/camel-quarkus/pull/1539) ([lburgazzoli](https://github.com/lburgazzoli))
- Fixup c11d8da9 Let the list of extensions page show extensions [\#1537](https://github.com/apache/camel-quarkus/pull/1537) ([ppalaga](https://github.com/ppalaga))
- chore\(build\): configure ci to run on release rbanches [\#1536](https://github.com/apache/camel-quarkus/pull/1536) ([lburgazzoli](https://github.com/lburgazzoli))
- Let the list of extensions page show extensions, move list of supported [\#1534](https://github.com/apache/camel-quarkus/pull/1534) ([ppalaga](https://github.com/ppalaga))
- Avoid purging artifacts for builds that may be in progress [\#1529](https://github.com/apache/camel-quarkus/pull/1529) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgarde to camel v3.4.3 [\#1527](https://github.com/apache/camel-quarkus/pull/1527) ([lburgazzoli](https://github.com/lburgazzoli))
- Fixed the VerifyError in the health example fixes \#1517 [\#1525](https://github.com/apache/camel-quarkus/pull/1525) ([aldettinger](https://github.com/aldettinger))
- 1.0.0 post release cleanup [\#1524](https://github.com/apache/camel-quarkus/pull/1524) ([ppalaga](https://github.com/ppalaga))
- Completed bean itests with an @InjectMock test [\#1515](https://github.com/apache/camel-quarkus/pull/1515) ([aldettinger](https://github.com/aldettinger))
- Add extension for smallrye-reactive-messaging-camel [\#1514](https://github.com/apache/camel-quarkus/pull/1514) ([jamesnetherton](https://github.com/jamesnetherton))
- Add master extension [\#1511](https://github.com/apache/camel-quarkus/pull/1511) ([jamesnetherton](https://github.com/jamesnetherton))
## [1.0.1](https://github.com/apache/camel-quarkus/tree/1.0.1) (2020-08-26)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.0.0...1.0.1)
**Closed issues:**
- IPFS native support [\#1623](https://github.com/apache/camel-quarkus/issues/1623)
- Browse component native support [\#1582](https://github.com/apache/camel-quarkus/issues/1582)
- Add support for Azure SDK12 components [\#1494](https://github.com/apache/camel-quarkus/issues/1494)
- Git support [\#765](https://github.com/apache/camel-quarkus/issues/765)
- Provide aggregated tests for quarkus-platform [\#413](https://github.com/apache/camel-quarkus/issues/413)
**Merged pull requests:**
- Cherry pick fixes to 1.0.x [\#1637](https://github.com/apache/camel-quarkus/pull/1637) ([ppalaga](https://github.com/ppalaga))
- Upgrade camel to v3.4.3 \(1.0.x\) [\#1535](https://github.com/apache/camel-quarkus/pull/1535) ([lburgazzoli](https://github.com/lburgazzoli))
## [1.0.0](https://github.com/apache/camel-quarkus/tree/1.0.0) (2020-08-10)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.0.0-CR3...1.0.0)
**Implemented enhancements:**
- Don't bind auto-discovered beans to the registry if they are produced by the user [\#1406](https://github.com/apache/camel-quarkus/issues/1406)
- Create a Camel Json Jackson extension [\#306](https://github.com/apache/camel-quarkus/issues/306)
- Auto configuration of metrics management strategies [\#195](https://github.com/apache/camel-quarkus/issues/195)
- Initialization ordering [\#147](https://github.com/apache/camel-quarkus/issues/147)
- Create a Camel Kafka extension [\#142](https://github.com/apache/camel-quarkus/issues/142)
- Expose health in quarkus [\#141](https://github.com/apache/camel-quarkus/issues/141)
- Expose metrics in quarkus [\#128](https://github.com/apache/camel-quarkus/issues/128)
**Fixed bugs:**
- Support path parameters in platform-http [\#382](https://github.com/apache/camel-quarkus/issues/382)
- The synthetic test poms are missing signatures [\#207](https://github.com/apache/camel-quarkus/issues/207)
**Closed issues:**
- @BindToRegistry not working with @ApplicationScoped route builders [\#1505](https://github.com/apache/camel-quarkus/issues/1505)
- Add camel-master extension [\#1476](https://github.com/apache/camel-quarkus/issues/1476)
- Running a Camel-main batch application [\#1474](https://github.com/apache/camel-quarkus/issues/1474)
- Quarkus And XML Routes [\#1436](https://github.com/apache/camel-quarkus/issues/1436)
- \[Quarkus 1.6.1.Final\] platform-http: dev mode breaking with log "Request has already been read" [\#1373](https://github.com/apache/camel-quarkus/issues/1373)
- Kafka Component Writing Messages with ProducerTemplate [\#743](https://github.com/apache/camel-quarkus/issues/743)
- vertx-websocket extension [\#1507](https://github.com/apache/camel-quarkus/issues/1507)
- Health example fails to start [\#1500](https://github.com/apache/camel-quarkus/issues/1500)
- Debezium test fails on branch camel-master [\#1490](https://github.com/apache/camel-quarkus/issues/1490)
- Intermittent failure of CamelDevModeTest [\#1468](https://github.com/apache/camel-quarkus/issues/1468)
- Add Grok Extension [\#1466](https://github.com/apache/camel-quarkus/issues/1466)
- Unable to build from source release zip [\#1460](https://github.com/apache/camel-quarkus/issues/1460)
- @Handler on Bean does not resolve method [\#1459](https://github.com/apache/camel-quarkus/issues/1459)
- src kit need to exclude the node installation [\#1455](https://github.com/apache/camel-quarkus/issues/1455)
- org.apache.camel.quarkus.main.CamelMainApplication should be registered for reflection [\#1453](https://github.com/apache/camel-quarkus/issues/1453)
- Document how to use mock in JVM mode tests [\#1449](https://github.com/apache/camel-quarkus/issues/1449)
- Add an integration test for the command mode [\#1448](https://github.com/apache/camel-quarkus/issues/1448)
- Document JTA extension usage [\#1428](https://github.com/apache/camel-quarkus/issues/1428)
- \[Quarkus 1.6.0\] Remove our dependency parity check once quarkusio/quarkus\#10279 is fixed [\#1426](https://github.com/apache/camel-quarkus/issues/1426)
- Upgrade to Debezium 1.2.0.Final [\#1418](https://github.com/apache/camel-quarkus/issues/1418)
- The CI should fail if there are uncommitted changes after the build [\#1415](https://github.com/apache/camel-quarkus/issues/1415)
- \[Quarkus 1.7\] quarkus-extension-processor race conditions when modules are built in parallel [\#1403](https://github.com/apache/camel-quarkus/issues/1403)
- Asterisk not escaped in Quarkus config docs [\#1402](https://github.com/apache/camel-quarkus/issues/1402)
- Remove service exclude for ThreadPoolProfileConfigurationProperties [\#1380](https://github.com/apache/camel-quarkus/issues/1380)
- OpenAPI Java extension cannot handle non-default API context path [\#1309](https://github.com/apache/camel-quarkus/issues/1309)
- Pass deprecation info to quarkus-extension.yaml [\#1286](https://github.com/apache/camel-quarkus/issues/1286)
- Make camel-quarkus-rest depend on camel-quarkus-platform-http [\#1244](https://github.com/apache/camel-quarkus/issues/1244)
- Add extension support for camel-jpa [\#889](https://github.com/apache/camel-quarkus/issues/889)
- Unable to GET an https URL with netty-http client [\#695](https://github.com/apache/camel-quarkus/issues/695)
- Fhir test are not working in native mode [\#473](https://github.com/apache/camel-quarkus/issues/473)
- Fix camel-quarkus-pdf native tests [\#472](https://github.com/apache/camel-quarkus/issues/472)
- Add an option to filter auto-discovered routes [\#396](https://github.com/apache/camel-quarkus/issues/396)
- Remove MicroProfile Metrics extension workarounds [\#319](https://github.com/apache/camel-quarkus/issues/319)
- Improve dev mode [\#314](https://github.com/apache/camel-quarkus/issues/314)
- Use Camel's async processor in platform-http [\#299](https://github.com/apache/camel-quarkus/issues/299)
- Add OpenTracing extension [\#276](https://github.com/apache/camel-quarkus/issues/276)
- Ensure the PlatformHttpComponent is registered before the routes are started [\#218](https://github.com/apache/camel-quarkus/issues/218)
- \[platform http\] support for rest dsl [\#217](https://github.com/apache/camel-quarkus/issues/217)
- Make xml and jaxb disabled by default and opt-in when depending on camel [\#188](https://github.com/apache/camel-quarkus/issues/188)
- Leverage platform http service [\#184](https://github.com/apache/camel-quarkus/issues/184)
- Generate documentation to be included in quarkus [\#183](https://github.com/apache/camel-quarkus/issues/183)
- @ConfigProperty and @Inject do not work in RouteBuilders [\#136](https://github.com/apache/camel-quarkus/issues/136)
- Add support for quarkus provided event loop [\#131](https://github.com/apache/camel-quarkus/issues/131)
- Include quarkus info in camel-catalog [\#75](https://github.com/apache/camel-quarkus/issues/75)
- quarkus-camel - Use MainSupport as base for running Camel [\#9](https://github.com/apache/camel-quarkus/issues/9)
**Merged pull requests:**
- Upgrade Quarkus Qpid JMS to 0.17.0 [\#1521](https://github.com/apache/camel-quarkus/pull/1521) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to Quarkus 1.7.0.Final [\#1520](https://github.com/apache/camel-quarkus/pull/1520) ([jamesnetherton](https://github.com/jamesnetherton))
- Disable merge commits on pull requests [\#1519](https://github.com/apache/camel-quarkus/pull/1519) ([jamesnetherton](https://github.com/jamesnetherton))
- Simplify component configuration for box and fhir itests [\#1518](https://github.com/apache/camel-quarkus/pull/1518) ([jamesnetherton](https://github.com/jamesnetherton))
- Add missing camel-quarkus-main dependency to braintree & twitter itests [\#1516](https://github.com/apache/camel-quarkus/pull/1516) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to Quarkus 1.7.0.CR2 [\#1513](https://github.com/apache/camel-quarkus/pull/1513) ([jamesnetherton](https://github.com/jamesnetherton))
- Upgrade to Quarkus 1.7.0.CR1 [\#1508](https://github.com/apache/camel-quarkus/pull/1508) ([ppalaga](https://github.com/ppalaga))
- Added grok support \#1466 [\#1504](https://github.com/apache/camel-quarkus/pull/1504) ([aldettinger](https://github.com/aldettinger))
- Fixup \#1244 Improve the docs about the default REST transport provider [\#1503](https://github.com/apache/camel-quarkus/pull/1503) ([ppalaga](https://github.com/ppalaga))
- Remove service exclude for ThreadPoolProfileConfigurationProperties [\#1499](https://github.com/apache/camel-quarkus/pull/1499) ([jamesnetherton](https://github.com/jamesnetherton))
- Correct bind type for OpenTracingTracer bean [\#1498](https://github.com/apache/camel-quarkus/pull/1498) ([jamesnetherton](https://github.com/jamesnetherton))
- Make camel-quarkus-rest depend on camel-quarkus-platform-http [\#1496](https://github.com/apache/camel-quarkus/pull/1496) ([lburgazzoli](https://github.com/lburgazzoli))
- Upgrade to Camel 3.4.2 [\#1492](https://github.com/apache/camel-quarkus/pull/1492) ([lburgazzoli](https://github.com/lburgazzoli))
- Upgrade Quarkus to 1.6.1.Final [\#1489](https://github.com/apache/camel-quarkus/pull/1489) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#1286 Pass deprecation info to quarkus-extension.yaml [\#1485](https://github.com/apache/camel-quarkus/pull/1485) ([ppalaga](https://github.com/ppalaga))
- Upgrade to Apache Camel 3.4.1 [\#1484](https://github.com/apache/camel-quarkus/pull/1484) ([lburgazzoli](https://github.com/lburgazzoli))
- Fixup \#1468 Intermittent failure of CamelDevModeTest [\#1483](https://github.com/apache/camel-quarkus/pull/1483) ([ppalaga](https://github.com/ppalaga))
- Fix \#1426 Dependency parity checks are now done by Quarkus extension-descriptor mojo [\#1481](https://github.com/apache/camel-quarkus/pull/1481) ([ppalaga](https://github.com/ppalaga))
- Fixup \#1448 Add delay=-1&repeatCount=1 to the command mode test route… [\#1480](https://github.com/apache/camel-quarkus/pull/1480) ([ppalaga](https://github.com/ppalaga))
- Use java.home system property in TrustStoreResource [\#1479](https://github.com/apache/camel-quarkus/pull/1479) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#1448 Add an integration test for the command mode [\#1477](https://github.com/apache/camel-quarkus/pull/1477) ([ppalaga](https://github.com/ppalaga))
- Fix \#1468 Intermittent failure of CamelDevModeTest [\#1473](https://github.com/apache/camel-quarkus/pull/1473) ([ppalaga](https://github.com/ppalaga))
- Add JPA extension [\#1467](https://github.com/apache/camel-quarkus/pull/1467) ([jamesnetherton](https://github.com/jamesnetherton))
- Reproducer for \#1459 [\#1465](https://github.com/apache/camel-quarkus/pull/1465) ([lburgazzoli](https://github.com/lburgazzoli))
- improve bootstrap and configuration documentation [\#1464](https://github.com/apache/camel-quarkus/pull/1464) ([lburgazzoli](https://github.com/lburgazzoli))
- Fix issues with building from the source release zip [\#1463](https://github.com/apache/camel-quarkus/pull/1463) ([jamesnetherton](https://github.com/jamesnetherton))
- Add example about how to use @Handler with beans registered to the Camel Context [\#1461](https://github.com/apache/camel-quarkus/pull/1461) ([lburgazzoli](https://github.com/lburgazzoli))
- Fix \#1455 Exclude the node directory from src kit [\#1458](https://github.com/apache/camel-quarkus/pull/1458) ([WillemJiang](https://github.com/WillemJiang))
- Fix \#1428 to add the usage.adoc [\#1457](https://github.com/apache/camel-quarkus/pull/1457) ([zhfeng](https://github.com/zhfeng))
- org.apache.camel.quarkus.main.CamelMainApplication should be registered for reflection [\#1454](https://github.com/apache/camel-quarkus/pull/1454) ([lburgazzoli](https://github.com/lburgazzoli))
- Document how to use mock in JVM mode tests \#1449 [\#1452](https://github.com/apache/camel-quarkus/pull/1452) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Fix README link [\#161](https://github.com/apache/camel-quarkus/pull/161) ([fviolette](https://github.com/fviolette))
## [1.0.0-CR3](https://github.com/apache/camel-quarkus/tree/1.0.0-CR3) (2020-07-03)
[Full Changelog](https://github.com/apache/camel-quarkus/compare/1.0.0-CR2...1.0.0-CR3)
**Implemented enhancements:**
- Observe Camel's Management events [\#1398](https://github.com/apache/camel-quarkus/issues/1398)
- Observe Camel's events [\#1353](https://github.com/apache/camel-quarkus/issues/1353)
**Fixed bugs:**
- CamelBeanPostProcessor is invoked after routes are already configured [\#1368](https://github.com/apache/camel-quarkus/issues/1368)
- \[Quarkus 1.6\]\[iCal\] TimeZone-less DTSTART and DTEND changed to GMT in native mode [\#838](https://github.com/apache/camel-quarkus/issues/838)
**Closed issues:**
- Question regarding AWS Credentials without XML beans [\#1431](https://github.com/apache/camel-quarkus/issues/1431)
- Commit cannot be completed since the group has already rebalanced and assigned the partitions to another member [\#1328](https://github.com/apache/camel-quarkus/issues/1328)
- camel-quarkus-avro: Remove ObjectSubstitution when/if quarkus serialization has been fixed [\#1247](https://github.com/apache/camel-quarkus/issues/1247)
- Tests fail on integration-tests/platform-http for 1.0.0-M5 [\#906](https://github.com/apache/camel-quarkus/issues/906)
- camel-quarkus - Optimize to not allow adding new routes [\#726](https://github.com/apache/camel-quarkus/issues/726)
- JAX-RS endpoint accessible before Camel context is started [\#1439](https://github.com/apache/camel-quarkus/issues/1439)
- Jolt support [\#1421](https://github.com/apache/camel-quarkus/issues/1421)
- Observe Camel's Lifecycle events [\#1399](https://github.com/apache/camel-quarkus/issues/1399)
- Package Maven Plugin: Goal prefix is specified as: 'camel-quarkus'. Maven currently expects it to be 'camel-quarkus-package'. [\#1395](https://github.com/apache/camel-quarkus/issues/1395)
- The quarkus-bootstrap-maven-plugin is listed twice on all the runtime extensions POMs [\#1390](https://github.com/apache/camel-quarkus/issues/1390)
- AWS2-Athena extension [\#1388](https://github.com/apache/camel-quarkus/issues/1388)
- Create a camel-componentdsl extension [\#1376](https://github.com/apache/camel-quarkus/issues/1376)
- Json Validator Support [\#1367](https://github.com/apache/camel-quarkus/issues/1367)
- \[suggestion\] log message for FileNotFound exception not clear enough [\#1365](https://github.com/apache/camel-quarkus/issues/1365)
- Add an AWS2-SES native extension [\#1363](https://github.com/apache/camel-quarkus/issues/1363)
- Add an AWS2-MSK native extension [\#1360](https://github.com/apache/camel-quarkus/issues/1360)
- Add an AWS2-MQ native extension [\#1359](https://github.com/apache/camel-quarkus/issues/1359)
- Add an AWS2-KMS native extension [\#1358](https://github.com/apache/camel-quarkus/issues/1358)
- Add an AWS2-IAM native extension [\#1357](https://github.com/apache/camel-quarkus/issues/1357)
- Add an AWS2-DDB native extension [\#1356](https://github.com/apache/camel-quarkus/issues/1356)
- List all the configuration properties onthe website [\#1350](https://github.com/apache/camel-quarkus/issues/1350)
- Replace joschi/setup-jdk with AdoptOpenJDK/install-jdk [\#1349](https://github.com/apache/camel-quarkus/issues/1349)
- Create vertx component extension [\#1322](https://github.com/apache/camel-quarkus/issues/1322)
- NoClassDefFoundError for HttpServletRequest in native tests for olingo4 [\#1319](https://github.com/apache/camel-quarkus/issues/1319)
- Make Kudu native test runnable on Quarkus Platform on Java 8 and 11 [\#1314](https://github.com/apache/camel-quarkus/issues/1314)
- \[Quarkus 1.6\] Unresolved method AutoscalingAPIGroupDSL.v1\(\) error in Kubernetes native image generation [\#1313](https://github.com/apache/camel-quarkus/issues/1313)
- Debezium unit tests failing with Quarkus master [\#1312](https://github.com/apache/camel-quarkus/issues/1312)
- Add an AWS2-Translate native extension [\#1308](https://github.com/apache/camel-quarkus/issues/1308)
- Document SSL auto-enabled by extensions [\#1300](https://github.com/apache/camel-quarkus/issues/1300)
- Platform HTTP does not automatically set content-length or chunked [\#1288](https://github.com/apache/camel-quarkus/issues/1288)
- Add rest and restapi to the list of discoverable factories [\#1287](https://github.com/apache/camel-quarkus/issues/1287)
- Create extension for camel-openapi-java [\#1281](https://github.com/apache/camel-quarkus/issues/1281)
- Add enforce rule to avoid extension depending on camel-quarkus-xml-io or camel-quarkus-xml-jaxb directly [\#1277](https://github.com/apache/camel-quarkus/issues/1277)
- \[Quarkus 1.6\] quarkus:dev can't reload when updating timer-log example [\#1274](https://github.com/apache/camel-quarkus/issues/1274)
- \[Quarkus 1.6\] Unsupported type MethodAccessorGenerator on Consul [\#1273](https://github.com/apache/camel-quarkus/issues/1273)
- Azure native test failure [\#1269](https://github.com/apache/camel-quarkus/issues/1269)
- camel-jta support [\#1263](https://github.com/apache/camel-quarkus/issues/1263)
- Remove NettyHttpComponent producer method from RestOpenapiResource [\#1237](https://github.com/apache/camel-quarkus/issues/1237)
- Remove mongodb from BOM after upgrade to Quarkus 1.5.x [\#1225](https://github.com/apache/camel-quarkus/issues/1225)
- Example can't be run from the project itself [\#1223](https://github.com/apache/camel-quarkus/issues/1223)
- Revert workaround for @EnabledIf after upgrade to Quarkus 1.5.x [\#1222](https://github.com/apache/camel-quarkus/issues/1222)
- transacted\(\) support in camel-quarkus [\#1197](https://github.com/apache/camel-quarkus/issues/1197)
- Debezium SQL Server Connector native support [\#1193](https://github.com/apache/camel-quarkus/issues/1193)
- Unresolved type Base64 in camel-jira native test [\#1166](https://github.com/apache/camel-quarkus/issues/1166)
- Add an AWS2-EKS native extension [\#1142](https://github.com/apache/camel-quarkus/issues/1142)
- Add an AWS2-ECS native extension [\#1141](https://github.com/apache/camel-quarkus/issues/1141)
- Add an AWS2-EC2 native extensions [\#1140](https://github.com/apache/camel-quarkus/issues/1140)
- Revisit camel-quarkus bootstrap [\#1128](https://github.com/apache/camel-quarkus/issues/1128)
- Jira test fails in native mode on Quarkus Platform [\#1090](https://github.com/apache/camel-quarkus/issues/1090)
- Remove the need for registering RestBindingJaxbDataFormatFactory service [\#1066](https://github.com/apache/camel-quarkus/issues/1066)
- Remove enforcing camel keyword in metadata [\#1058](https://github.com/apache/camel-quarkus/issues/1058)
- Support Quarkus command mode [\#1037](https://github.com/apache/camel-quarkus/issues/1037)
- Couchdb native support for Consumer Mode [\#1022](https://github.com/apache/camel-quarkus/issues/1022)
- camel-quarkus-aws-sns failing to compile image-native [\#870](https://github.com/apache/camel-quarkus/issues/870)
- NullPointerException when starting with quarkus:dev goal [\#828](https://github.com/apache/camel-quarkus/issues/828)
- Tika support [\#799](https://github.com/apache/camel-quarkus/issues/799)
- Test the Jira extension using Testcontainer and the Jira image [\#752](https://github.com/apache/camel-quarkus/issues/752)
- Add documentation about configuration options [\#536](https://github.com/apache/camel-quarkus/issues/536)
- Feature: Add camel-mock [\#531](https://github.com/apache/camel-quarkus/issues/531)
- Improve extension summary so they have more details in the code.quarkus.io [\#465](https://github.com/apache/camel-quarkus/issues/465)
**Merged pull requests:**
- Upgrade Quarkus Qpid JMS to 0.16.0 [\#1450](https://github.com/apache/camel-quarkus/pull/1450) ([jamesnetherton](https://github.com/jamesnetherton))
- Feature: Add camel-mock \#531 [\#1447](https://github.com/apache/camel-quarkus/pull/1447) ([JiriOndrusek](https://github.com/JiriOndrusek))
- Upgrade to Quarkus 1.6.0.Final [\#1446](https://github.com/apache/camel-quarkus/pull/1446) ([ppalaga](https://github.com/ppalaga))
- Make sure that Quarkus orders booting our runtime before starting to serve HTTP endpoints. [\#1445](https://github.com/apache/camel-quarkus/pull/1445) ([ppalaga](https://github.com/ppalaga))
- Split main startup logic [\#1444](https://github.com/apache/camel-quarkus/pull/1444) ([lburgazzoli](https://github.com/lburgazzoli))
- Improve the bootstrap docs [\#1442](https://github.com/apache/camel-quarkus/pull/1442) ([ppalaga](https://github.com/ppalaga))
- Re-enable TimerDevModeTest.logMessageEdit\(\) after the upgrade to Quar… [\#1440](https://github.com/apache/camel-quarkus/pull/1440) ([ppalaga](https://github.com/ppalaga))
- Upgrade cq-maven-plugin to 0.11.0 [\#1438](https://github.com/apache/camel-quarkus/pull/1438) ([jamesnetherton](https://github.com/jamesnetherton))
- Fix \#1415 The CI should fail if there are uncommitted changes after t… [\#1435](https://github.com/apache/camel-quarkus/pull/1435) ([ppalaga](https://github.com/ppalaga))
- Add skip option to UpdateExtensionDocPageMojo to be able to workaroun… [\#1434](https://github.com/apache/camel-quarkus/pull/1434) ([ppalaga](https://github.com/ppalaga))
- Added Jolt support \#1421 [\#1432](https://github.com/apache/camel-quarkus/pull/1432) ([aldettinger](https://github.com/aldettinger))
- Fix \#1313 Upgrade to Kubernetes Client 4.10.2 to align with Quarkus [\#1425](https://github.com/apache/camel-quarkus/pull/1425) ([ppalaga](https://github.com/ppalaga))
- Enable Debezium tests after the upgrade to Quarkus 1.6.0.CR1 [\#1424](https://github.com/apache/camel-quarkus/pull/1424) ([ppalaga](https://github.com/ppalaga))
- Upgrade to Quarkus 1.6.0.CR1 [\#1423](https://github.com/apache/camel-quarkus/pull/1423) ([ppalaga](https://github.com/ppalaga))
- Ensure Quarkus Vertx instance is set on the camel component when not using camel-quarkus-main [\#1422](https://github.com/apache/camel-quarkus/pull/1422) ([jamesnetherton](https://github.com/jamesnetherton))
- Ensure CamelContextAware beans have CamelContext set when bound to the registry [\#1420](https://github.com/apache/camel-quarkus/pull/1420) ([jamesnetherton](https://github.com/jamesnetherton))
- Rename camel-quarkus-package-maven-plugin to camel-quarkus-maven-plugin [\#1416](https://github.com/apache/camel-quarkus/pull/1416) ([lburgazzoli](https://github.com/lburgazzoli))
- CAMEL-15216 : Omit the warning of level index [\#1414](https://github.com/apache/camel-quarkus/pull/1414) ([AemieJ](https://github.com/AemieJ))
- Added an AWS2-Athena native extension [\#1412](https://github.com/apache/camel-quarkus/pull/1412) ([oscerd](https://github.com/oscerd))
- Fix \#1263 - Add the camel-jta extension [\#1411](https://github.com/apache/camel-quarkus/pull/1411) ([zhfeng](https://github.com/zhfeng))