-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.xml
More file actions
5115 lines (5115 loc) · 327 KB
/
index.xml
File metadata and controls
5115 lines (5115 loc) · 327 KB
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Home on Apache Camel</title>
<link>https://camel.apache.org/</link>
<description>Recent content in Home on Apache Camel</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 04 Jun 2026 00:00:00 +0000</lastBuildDate>
<atom:link href="https://camel.apache.org/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Camel Monitor Operator</title>
<link>https://camel.apache.org/blog/2026/06/camel-monitor-operator/</link>
<pubDate>Thu, 04 Jun 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/06/camel-monitor-operator/</guid>
<description>During the last years we&rsquo;ve worked hard to bring cloud native operations capabilities for your Camel workloads on Kubernetes. Camel K was the first historic initiative and it gave us the possibility to experiment several features that we&rsquo;ve decided to move off into a brand new project: Camel Monitor Operator (formerly known as Camel Dashboard operator).
Whilst Camel K will keep the focus and excel on the building and deploying part of a Camel application on the cloud, the goal of the new project is to focus on the monitoring part only.</description>
</item>
<item>
<title>Wanaku 0.1.1: Bringing Apache Camel Integration Capabilities to AI Agents via MCP</title>
<link>https://camel.apache.org/blog/2026/05/wanaku-0.1.1/</link>
<pubDate>Sun, 31 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/05/wanaku-0.1.1/</guid>
<description>We&rsquo;re excited to announce Wanaku 0.1.1, a significant milestone that showcases how Apache Camel&rsquo;s powerful integration capabilities can be seamlessly exposed to AI agents through the Model Context Protocol (MCP). This release introduces Service Catalogs and Service Templates — features that leverage Apache Camel as the integration runtime to bridge the gap between AI and enterprise systems.
What is Wanaku? Wanaku is an open-source MCP router and capability management platform that acts as a smart intermediary between AI agents and integration capabilities.</description>
</item>
<item>
<title>Camel Quarkus 3.36.0 Released</title>
<link>https://camel.apache.org/blog/2026/05/camel-quarkus-release-3.36.0/</link>
<pubDate>Thu, 28 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/05/camel-quarkus-release-3.36.0/</guid>
<description>Camel Quarkus 3.36.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.36.0</title>
<link>https://camel.apache.org/releases/q-3.36.0/</link>
<pubDate>Tue, 26 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.36.0/</guid>
<description></description>
</item>
<item>
<title>Camel Karaf 4.14.7 Released</title>
<link>https://camel.apache.org/blog/2026/05/camel-karaf-4.14.7/</link>
<pubDate>Sun, 24 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/05/camel-karaf-4.14.7/</guid>
<description>Camel Karaf 4.14.7 release</description>
</item>
<item>
<title>Camel Karaf 4.18.2 Released</title>
<link>https://camel.apache.org/blog/2026/05/camel-karaf-4.18.2/</link>
<pubDate>Sun, 24 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/05/camel-karaf-4.18.2/</guid>
<description>Camel Karaf 4.18.2 release</description>
</item>
<item>
<title>Camel Karaf release 4.14.7</title>
<link>https://camel.apache.org/releases/karaf-4.14.7/</link>
<pubDate>Sun, 24 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.14.7/</guid>
<description></description>
</item>
<item>
<title>Camel Karaf release 4.18.2</title>
<link>https://camel.apache.org/releases/karaf-4.18.2/</link>
<pubDate>Sun, 24 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.18.2/</guid>
<description></description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-45760</title>
<link>https://camel.apache.org/security/CVE-2026-45760.html</link>
<pubDate>Mon, 18 May 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-45760.html</guid>
<description>Camel K Cross-Namespace Build Deputy Attack</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-47323</title>
<link>https://camel.apache.org/security/CVE-2026-47323.html</link>
<pubDate>Mon, 18 May 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-47323.html</guid>
<description>Camel-CXF and Camel-Knative Message Header Injection via Missing Inbound Filtering</description>
</item>
<item>
<title>Camel-K 2.10.1</title>
<link>https://camel.apache.org/releases/k-2.10.1/</link>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.10.1/</guid>
<description></description>
</item>
<item>
<title>Camel-K 2.8.1</title>
<link>https://camel.apache.org/releases/k-2.8.1/</link>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.8.1/</guid>
<description></description>
</item>
<item>
<title>Camel-K 2.9.2</title>
<link>https://camel.apache.org/releases/k-2.9.2/</link>
<pubDate>Mon, 18 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.9.2/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.18.2</title>
<link>https://camel.apache.org/releases/kamelets-4.18.2/</link>
<pubDate>Fri, 15 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.18.2/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.27.4 Released</title>
<link>https://camel.apache.org/blog/2026/05/camel-quarkus-3.27.4/</link>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/05/camel-quarkus-3.27.4/</guid>
<description>Camel Quarkus 3.27.4 release</description>
</item>
<item>
<title>Camel Quarkus 3.33.1 Released</title>
<link>https://camel.apache.org/blog/2026/05/camel-quarkus-3.33.1/</link>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/05/camel-quarkus-3.33.1/</guid>
<description>Camel Quarkus 3.33.1 release</description>
</item>
<item>
<title>Camel Quarkus release 3.27.4</title>
<link>https://camel.apache.org/releases/q-3.27.4/</link>
<pubDate>Thu, 07 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.27.4/</guid>
<description></description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-33453</title>
<link>https://camel.apache.org/security/CVE-2026-33453.html</link>
<pubDate>Wed, 06 May 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-33453.html</guid>
<description>Apache Camel: Improperly Controlled Modification of Dynamically-Determined Object Attributes vulnerability in Camel-Coap component.</description>
</item>
<item>
<title>Camel Quarkus release 3.33.1</title>
<link>https://camel.apache.org/releases/q-3.33.1/</link>
<pubDate>Wed, 06 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.33.1/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.20.0</title>
<link>https://camel.apache.org/releases/kamelets-4.20.0/</link>
<pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.20.0/</guid>
<description></description>
</item>
<item>
<title>Upgrade Recipes 4.20.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.20.0/</link>
<pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.20.0/</guid>
<description>Upgrade Instructions For detailed instructions on using Apache Camel Upgrade Recipes, please see the Apache Camel Upgrade Recipes Tool Manual.
Full Release Notes Complete release notes for this version are available in the Camel Upgrade Recipes repository.</description>
</item>
<item>
<title>Camel Quarkus 3.35.0 Released</title>
<link>https://camel.apache.org/blog/2026/04/camel-quarkus-release-3.35.0/</link>
<pubDate>Thu, 30 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/camel-quarkus-release-3.35.0/</guid>
<description>Camel Quarkus 3.35.0 release</description>
</item>
<item>
<title>Apache Camel 4.20 What's New</title>
<link>https://camel.apache.org/blog/2026/04/camel420-whatsnew/</link>
<pubDate>Mon, 27 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/camel420-whatsnew/</guid>
<description>Apache Camel 4.20 has just been released.
This release is an expedited security fix release on top of the previous 4.19 release.
JDK25 compatibility This is the first release supporting JDK25.
However, there are a few 3rd party libraries that does not yet fully support JDK25, see more in CAMEL-22114.
Camel JBang You can now easier configure HTTPS for development purposes with self-signed certificates, so you can host services via HTTPS locally in Camel.</description>
</item>
<item>
<title>Camel Quarkus release 3.35.0</title>
<link>https://camel.apache.org/releases/q-3.35.0/</link>
<pubDate>Mon, 27 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.35.0/</guid>
<description></description>
</item>
<item>
<title>Release 4.20.0</title>
<link>https://camel.apache.org/releases/release-4.20.0/</link>
<pubDate>Sat, 25 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.20.0/</guid>
<description>This release is the new Camel 4.20.0 release.</description>
</item>
<item>
<title>RELEASE 4.20.0</title>
<link>https://camel.apache.org/blog/2026/04/RELEASE-4.20.0/</link>
<pubDate>Sat, 25 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/RELEASE-4.20.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.20.0 release with 25 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-27172</title>
<link>https://camel.apache.org/security/CVE-2026-27172.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-27172.html</guid>
<description>Apache Camel: Unsafe Java deserialization in camel-consul ConsulRegistry allows arbitrary code execution via malicious values read from the Consul KV store</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-33454</title>
<link>https://camel.apache.org/security/CVE-2026-33454.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-33454.html</guid>
<description>Camel-Mail Message Header Injection via Improper Filtering</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-40022</title>
<link>https://camel.apache.org/security/CVE-2026-40022.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-40022.html</guid>
<description>Camel-Platform-HTTP-Main: Authentication Bypass on Non-Root Context Paths in camel main runtime</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-40048</title>
<link>https://camel.apache.org/security/CVE-2026-40048.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-40048.html</guid>
<description>Camel-PQC: Unsafe Deserialization from FileBasedKeyLifecycleManager</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-40453</title>
<link>https://camel.apache.org/security/CVE-2026-40453.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-40453.html</guid>
<description>Incomplete fix for CVE-2025-27636 in non-HTTP HeaderFilterStrategies (camel-jms, camel-sjms, camel-coap, camel-google-pubsub) allows case-variant header injection</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-40473</title>
<link>https://camel.apache.org/security/CVE-2026-40473.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-40473.html</guid>
<description>Camel-Mina: Unsafe Deserialization in MinaConverter.toObjectInput() via TCP/UDP</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-40858</title>
<link>https://camel.apache.org/security/CVE-2026-40858.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-40858.html</guid>
<description>Camel-Infinispan: Unsafe Deserialization in ProtoStream Remote Aggregation Repository</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-40860</title>
<link>https://camel.apache.org/security/CVE-2026-40860.html</link>
<pubDate>Fri, 24 Apr 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-40860.html</guid>
<description>Unsafe Deserialization of JMS ObjectMessage in camel-jms, camel-sjms, camel-sjms2 and camel-amqp</description>
</item>
<item>
<title>Release 4.14.7</title>
<link>https://camel.apache.org/releases/release-4.14.7/</link>
<pubDate>Fri, 24 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.7/</guid>
<description>This release is the new Camel 4.14.7 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.7</title>
<link>https://camel.apache.org/blog/2026/04/RELEASE-4.14.7/</link>
<pubDate>Fri, 24 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/RELEASE-4.14.7/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.7 patch release with 3 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Release 4.18.2</title>
<link>https://camel.apache.org/releases/release-4.18.2/</link>
<pubDate>Wed, 22 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.18.2/</guid>
<description>This release is the new Camel 4.18.2 LTS release.</description>
</item>
<item>
<title>RELEASE 4.18.2</title>
<link>https://camel.apache.org/blog/2026/04/RELEASE-4.18.2/</link>
<pubDate>Wed, 22 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/RELEASE-4.18.2/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.18.2 LTS release with 26 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Karaf 4.18.1 Released</title>
<link>https://camel.apache.org/blog/2026/04/camel-karaf-4.18.1/</link>
<pubDate>Sat, 18 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/camel-karaf-4.18.1/</guid>
<description>Camel Karaf 4.18.1 release</description>
</item>
<item>
<title>Camel Karaf release 4.18.1</title>
<link>https://camel.apache.org/releases/karaf-4.18.1/</link>
<pubDate>Sat, 18 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.18.1/</guid>
<description></description>
</item>
<item>
<title>Release 4.14.6</title>
<link>https://camel.apache.org/releases/release-4.14.6/</link>
<pubDate>Sat, 18 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.6/</guid>
<description>This release is the new Camel 4.14.6 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.6</title>
<link>https://camel.apache.org/blog/2026/04/RELEASE-4.14.6/</link>
<pubDate>Sat, 18 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/RELEASE-4.14.6/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.6 patch release with 26 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Apache Camel 4.19 What's New</title>
<link>https://camel.apache.org/blog/2026/04/camel419-whatsnew/</link>
<pubDate>Fri, 17 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/camel419-whatsnew/</guid>
<description>Apache Camel 4.19 has just been released.
This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
Camel Spring Boot This is our first release that supports Spring Boot v4. Spring Boot v3 is no longer supported.
Camel Jackson 3 Components Four new components have been added which provide Jackson 3 support - they are named similarly to the previously existing camel-jackson components.</description>
</item>
<item>
<title>Apache Camel AI: Building an Email Triage Agent with OpenAI, Gmail Transformers, and Camel JBang</title>
<link>https://camel.apache.org/blog/2026/04/email-triage-agent/</link>
<pubDate>Thu, 16 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/email-triage-agent/</guid>
<description>Recent Camel releases introduced several features that work well together for AI-powered integrations: the camel-openai component (4.17), the SimpleFunction interface, chain operator, and structured output with JSON Schema (4.18), and Gmail DataType Transformers (4.19).
To show how these pieces fit, I built an email triage agent that classifies Gmail messages using an LLM, moves them to labels, and drafts smart replies. The whole thing runs with Camel JBang. No Maven project, no framework setup.</description>
</item>
<item>
<title>Release 4.19.0</title>
<link>https://camel.apache.org/releases/release-4.19.0/</link>
<pubDate>Thu, 16 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.19.0/</guid>
<description>This release is the new Camel 4.19.0 release.</description>
</item>
<item>
<title>RELEASE 4.19.0</title>
<link>https://camel.apache.org/blog/2026/04/RELEASE-4.19.0/</link>
<pubDate>Thu, 16 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/RELEASE-4.19.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.19.0 release with 283 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel K 2.10.0</title>
<link>https://camel.apache.org/blog/2026/04/camel-k-2-10/</link>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/04/camel-k-2-10/</guid>
<description>© Smithsonian Magazine
Here a new fresh release of Camel K: version 2.10.0 is ready to go. We&rsquo;ve worked to several improvements around the GitOps and Git features introduced lately. We&rsquo;ve stabilized a few bugs discovered and upgraded dependencies as well.
GitOps Pipe We&rsquo;ve worked to make sure the Camel GitOps is available not only for Integrations but also for Pipes. The principle is exactly the same. You need to configure the gitops trait on the Pipe you want to include in your GitOps flow and the operator will be in charge to provide a PR on the Git repository with the Pipe custom resource.</description>
</item>
<item>
<title>Camel-K 2.10.0</title>
<link>https://camel.apache.org/releases/k-2.10.0/</link>
<pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.10.0/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.18.1</title>
<link>https://camel.apache.org/releases/kamelets-4.18.1/</link>
<pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.18.1/</guid>
<description></description>
</item>
<item>
<title>Camel Kafka Connector release 4.14.5</title>
<link>https://camel.apache.org/releases/ckc-4.14.5/</link>
<pubDate>Mon, 30 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.14.5/</guid>
<description>This release is the new Camel Kafka Connector 4.14.5 release.</description>
</item>
<item>
<title>Camel Kafka Connector release 4.18.0</title>
<link>https://camel.apache.org/releases/ckc-4.18.0/</link>
<pubDate>Mon, 30 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.18.0/</guid>
<description>This release is the new Camel Kafka Connector 4.18.0 release.</description>
</item>
<item>
<title>Release 4.18.1</title>
<link>https://camel.apache.org/releases/release-4.18.1/</link>
<pubDate>Fri, 27 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.18.1/</guid>
<description>This release is the new Camel 4.18.1 LTS release.</description>
</item>
<item>
<title>RELEASE 4.18.1</title>
<link>https://camel.apache.org/blog/2026/03/RELEASE-4.18.1/</link>
<pubDate>Fri, 27 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/03/RELEASE-4.18.1/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.18.1 LTS release with 51 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Quarkus 3.33.0 Released</title>
<link>https://camel.apache.org/blog/2026/03/camel-quarkus-3.33.0/</link>
<pubDate>Wed, 25 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/03/camel-quarkus-3.33.0/</guid>
<description>Camel Quarkus 3.33.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.33.0</title>
<link>https://camel.apache.org/releases/q-3.33.0/</link>
<pubDate>Wed, 25 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.33.0/</guid>
<description></description>
</item>
<item>
<title>Kaoto v2.10 release</title>
<link>https://camel.apache.org/blog/2026/03/kaoto-release-2.10.0/</link>
<pubDate>Wed, 25 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/03/kaoto-release-2.10.0/</guid>
<description>What&rsquo;s New in Kaoto 2.10? Kaoto 2.10 represents a major leap forward in visual integration design, now powered by Apache Camel 4.18.0. This release bridges the gap between API-first design and integration development with full REST DSL and OpenAPI support, while significantly expanding DataMapper capabilities to handle complex multi-file schemas. Combined with production-ready drag-and-drop functionality, building sophisticated integrations has never been more intuitive.
Here are the key highlights of this release: REST DSL Support with OpenAPI Integration Kaoto 2.</description>
</item>
<item>
<title>Camel Karaf 4.14.5 Released</title>
<link>https://camel.apache.org/blog/2026/03/camel-karaf-4.14.5/</link>
<pubDate>Tue, 17 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/03/camel-karaf-4.14.5/</guid>
<description>Camel Karaf 4.14.5 release</description>
</item>
<item>
<title>Camel Karaf release 4.14.5</title>
<link>https://camel.apache.org/releases/karaf-4.14.5/</link>
<pubDate>Mon, 16 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.14.5/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.27.3 Released</title>
<link>https://camel.apache.org/blog/2026/03/camel-quarkus-3.27.3/</link>
<pubDate>Fri, 06 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/03/camel-quarkus-3.27.3/</guid>
<description>Camel Quarkus 3.27.3 release</description>
</item>
<item>
<title>Camel Quarkus release 3.27.3</title>
<link>https://camel.apache.org/releases/q-3.27.3/</link>
<pubDate>Fri, 06 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.27.3/</guid>
<description></description>
</item>
<item>
<title>Your REST APIs already speak MCP. They just don't know it yet.</title>
<link>https://camel.apache.org/blog/2026/03/CAPIGateway/</link>
<pubDate>Tue, 03 Mar 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/03/CAPIGateway/</guid>
<description>Four years ago, I started writing an API Gateway. Not because I wanted to build a product — but because we needed more from the tools we had.
I was working inside a government institution running a complex hybrid environment — services spread across on-premises data centers and cloud, strict security and compliance requirements, and a growing number of APIs that all needed to be managed, secured, and observed.
We were using a well known API Gateway product, a capable and powerful platform, but for our use case, it was too heavy.</description>
</item>
<item>
<title>Camel GitOps on Cloud</title>
<link>https://camel.apache.org/blog/2026/02/camel-k-gitops-apps/</link>
<pubDate>Tue, 24 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/camel-k-gitops-apps/</guid>
<description>With Camel K version 2.9 we have enhanced the GitOps capability of the operator to run a builtin opinionated GitOps strategy. In this blog we are going to expand with a complete example and show how to enabled with a sample Camel application we build on an environment and we promote to another environment controlled with a gateway.
The process will be the following: a development team (the &ldquo;citizen integrator&rdquo;?) is in charge to develop and test a given Camel application on a development environment.</description>
</item>
<item>
<title>Camel Quarkus 3.32.0 Released</title>
<link>https://camel.apache.org/blog/2026/02/camel-quarkus-3.32.0/</link>
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/camel-quarkus-3.32.0/</guid>
<description>Camel Quarkus 3.32.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.32.0</title>
<link>https://camel.apache.org/releases/q-3.32.0/</link>
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.32.0/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.14.5</title>
<link>https://camel.apache.org/releases/kamelets-4.14.5/</link>
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.14.5/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.18.0</title>
<link>https://camel.apache.org/releases/kamelets-4.18.0/</link>
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.18.0/</guid>
<description></description>
</item>
<item>
<title>Camel Karaf 4.8.9 Released</title>
<link>https://camel.apache.org/blog/2026/02/camel-karaf-release-4.8.9/</link>
<pubDate>Sun, 22 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/camel-karaf-release-4.8.9/</guid>
<description>Camel Karaf 4.8.9 release</description>
</item>
<item>
<title>Camel Karaf release 4.8.9</title>
<link>https://camel.apache.org/releases/karaf-4.8.9/</link>
<pubDate>Sun, 22 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.8.9/</guid>
<description></description>
</item>
<item>
<title>Upgrade Recipes 4.18.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.18.0/</link>
<pubDate>Fri, 20 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.18.0/</guid>
<description>Upgrade Instructions For detailed instructions on using Apache Camel Upgrade Recipes, please see the Apache Camel Upgrade Recipes Tool Manual.
Full Release Notes Complete release notes for this version are available in the Camel Upgrade Recipes repository.</description>
</item>
<item>
<title>Apache Camel 4.18 What's New</title>
<link>https://camel.apache.org/blog/2026/02/camel418-whatsnew/</link>
<pubDate>Thu, 19 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/camel418-whatsnew/</guid>
<description>Apache Camel 4.18 LTS has just been released.
This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
Camel Core Added the possibility to add note(s) to EIPs. This is intended for developer notes or other kind of notes, that is convention to have at the source code. The note has no impaction on the running Camel. Another use case is to build tutorials with half complete code, and have note(s) that describe what to do.</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-25747</title>
<link>https://camel.apache.org/security/CVE-2026-25747.html</link>
<pubDate>Wed, 18 Feb 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-25747.html</guid>
<description>Apache Camel: Camel-LevelDB: Unsafe Deserialization from LevelDBAggregationRepository</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2026-23552</title>
<link>https://camel.apache.org/security/CVE-2026-23552.html</link>
<pubDate>Tue, 17 Feb 2026 09:00:00 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2026-23552.html</guid>
<description>Apache Camel: Camel-Keycloak: Cross-Realm Token Acceptance in KeycloakSecurityPolicy</description>
</item>
<item>
<title>Release 4.18.0</title>
<link>https://camel.apache.org/releases/release-4.18.0/</link>
<pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.18.0/</guid>
<description>This release is the new Camel 4.18.0 LTS release.</description>
</item>
<item>
<title>RELEASE 4.18.0</title>
<link>https://camel.apache.org/blog/2026/02/RELEASE-4.18.0/</link>
<pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/RELEASE-4.18.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.18.0 LTS release with 174 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Release 4.14.5</title>
<link>https://camel.apache.org/releases/release-4.14.5/</link>
<pubDate>Fri, 13 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.5/</guid>
<description>This release is the new Camel 4.14.5 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.5</title>
<link>https://camel.apache.org/blog/2026/02/RELEASE-4.14.5/</link>
<pubDate>Fri, 13 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/RELEASE-4.14.5/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.5 patch release with 21 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Release 4.10.9</title>
<link>https://camel.apache.org/releases/release-4.10.9/</link>
<pubDate>Thu, 12 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.9/</guid>
<description>This release is the new Camel 4.10.9 release.</description>
</item>
<item>
<title>RELEASE 4.10.9</title>
<link>https://camel.apache.org/blog/2026/02/RELEASE-4.10.9/</link>
<pubDate>Thu, 12 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/RELEASE-4.10.9/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.9 LTS patch release with 7 bug fixes and improvements. Please note that this is the last patch release for the 4.10.x branch.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,</description>
</item>
<item>
<title>Camel-K 2.9.1</title>
<link>https://camel.apache.org/releases/k-2.9.1/</link>
<pubDate>Wed, 11 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.9.1/</guid>
<description></description>
</item>
<item>
<title>Apache Camel MCP Server: Bringing Camel Knowledge to AI Coding Assistants</title>
<link>https://camel.apache.org/blog/2026/02/camel-jbang-mcp/</link>
<pubDate>Tue, 10 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/camel-jbang-mcp/</guid>
<description>Working with Apache Camel means dealing with over 300 components, dozens of Enterprise Integration Patterns, multiple DSL formats, and a rich set of configuration options. Keeping all of that in your head while writing integration routes is not trivial, and AI coding assistants have become a natural companion for this kind of work. The problem is that general-purpose LLMs lack deep, structured knowledge of Camel&rsquo;s catalog, its component options, its URI syntax rules, and its security best practices.</description>
</item>
<item>
<title>Apache Camel 2025 Download Statistics</title>
<link>https://camel.apache.org/blog/2026/02/2025-downloads/</link>
<pubDate>Mon, 09 Feb 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/02/2025-downloads/</guid>
<description>In 2025, Apache Camel&rsquo;s adoption continued to surge, as shown by monthly download statistics from Maven Central.
The graph below tracks downloads over the last 12 months (December 2024 to December 2025). It starts at approximately 29 million downloads in December 2024 and shows steady overall growth, with some fluctuations along the way. Monthly figures rose progressively, reaching peaks around 47 million in July and over 50 million in October, before settling at about 44.</description>
</item>
<item>
<title>Building a Smart Log Analyzer with Apache Camel</title>
<link>https://camel.apache.org/blog/2026/01/log-analyzer/</link>
<pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/log-analyzer/</guid>
<description>In this blogpost, we&rsquo;ll walk through a modern approach to developing Apache Camel applications. We&rsquo;ll build a distributed log analyzer that automatically detects errors and uses an LLM for root cause analysis. Along the way, we&rsquo;ll explore how tools like Camel JBang and Kaoto make development incredibly productive, and why Apache Camel&rsquo;s YAML DSL is a perfect match for LLM-assisted development.
Why Apache Camel? Before diving into the implementation, let&rsquo;s address why Apache Camel is an excellent choice for this kind of system.</description>
</item>
<item>
<title>Camel Quarkus 3.31.0 Released</title>
<link>https://camel.apache.org/blog/2026/01/camel-quarkus-3.31.0/</link>
<pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/camel-quarkus-3.31.0/</guid>
<description>Camel Quarkus 3.31.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.31.0</title>
<link>https://camel.apache.org/releases/q-3.31.0/</link>
<pubDate>Mon, 26 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.31.0/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.20.4 Released</title>
<link>https://camel.apache.org/blog/2026/01/camel-quarkus-3.20.4/</link>
<pubDate>Mon, 19 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/camel-quarkus-3.20.4/</guid>
<description>Camel Quarkus 3.20.4 release</description>
</item>
<item>
<title>Camel Quarkus release 3.20.4</title>
<link>https://camel.apache.org/releases/q-3.20.4/</link>
<pubDate>Mon, 19 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.20.4/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.17.0</title>
<link>https://camel.apache.org/releases/kamelets-4.17.0/</link>
<pubDate>Mon, 19 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.17.0/</guid>
<description></description>
</item>
<item>
<title>Upgrade Recipes 4.17.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.17.0/</link>
<pubDate>Fri, 16 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.17.0/</guid>
<description>Upgrade Instructions For detailed instructions on using Apache Camel Upgrade Recipes, please see the Apache Camel Upgrade Recipes Tool Manual.
Full Release Notes Complete release notes for this version are available in the Camel Upgrade Recipes repository.</description>
</item>
<item>
<title>Kamelets 4.14.4</title>
<link>https://camel.apache.org/releases/kamelets-4.14.4/</link>
<pubDate>Thu, 15 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.14.4/</guid>
<description></description>
</item>
<item>
<title>Simple LLM Integration with Camel OpenAI Component</title>
<link>https://camel.apache.org/blog/2026/01/camel-openai/</link>
<pubDate>Wed, 14 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/camel-openai/</guid>
<description>The integration of Large Language Models (LLMs) into enterprise applications has become increasingly important. Whether you&rsquo;re building intelligent document processing pipelines, automated customer support systems, or data privacy solutions, the ability to seamlessly connect your integration flows with AI capabilities is essential.
Apache Camel 4.17 introduces the new camel-openai component, providing native integration with OpenAI and OpenAI-compatible APIs for chat completion. In this post, we&rsquo;ll explore the component&rsquo;s features and demonstrate a practical use case: Personal Identifiable Information (PII) redaction using structured output.</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2025-66169</title>
<link>https://camel.apache.org/security/CVE-2025-66169.html</link>
<pubDate>Tue, 13 Jan 2026 07:30:42 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2025-66169.html</guid>
<description>Cypher injection vulnerability in Camel-Neo4j component</description>
</item>
<item>
<title>Apache Camel 4.17 What's New</title>
<link>https://camel.apache.org/blog/2026/01/camel417-whatsnew/</link>
<pubDate>Tue, 13 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/camel417-whatsnew/</guid>
<description>Apache Camel 4.17 has just been released.
This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
Camel Core We have marked up important headers in various EIPs and components for tooling and troubleshooting assistance.
If you have the need to trigger only once and are using a timer such as timer:tick?repeatCount=1, then we have added the once component to trigger only once on startup, and made it much easier to pre configure the message body and headers as needed.</description>
</item>
<item>
<title>Release 4.17.0</title>
<link>https://camel.apache.org/releases/release-4.17.0/</link>
<pubDate>Mon, 12 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.17.0/</guid>
<description>This release is the new Camel 4.17.0 release.</description>
</item>
<item>
<title>RELEASE 4.17.0</title>
<link>https://camel.apache.org/blog/2026/01/RELEASE-4.17.0/</link>
<pubDate>Mon, 12 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/RELEASE-4.17.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.17.0 release with 160 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Release 4.14.4</title>
<link>https://camel.apache.org/releases/release-4.14.4/</link>
<pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.4/</guid>
<description>This release is the new Camel 4.14.4 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.4</title>
<link>https://camel.apache.org/blog/2026/01/RELEASE-4.14.4/</link>
<pubDate>Sat, 10 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/RELEASE-4.14.4/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.4 patch release with 10 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Quarkus 3.27.2 Released</title>
<link>https://camel.apache.org/blog/2026/01/camel-quarkus-3.27.2/</link>
<pubDate>Thu, 08 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/camel-quarkus-3.27.2/</guid>
<description>Camel Quarkus 3.27.2 release</description>
</item>
<item>
<title>Camel Quarkus release 3.27.2</title>
<link>https://camel.apache.org/releases/q-3.27.2/</link>
<pubDate>Thu, 08 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.27.2/</guid>
<description></description>
</item>
<item>
<title>Camel 2025 in Numbers</title>
<link>https://camel.apache.org/blog/2026/01/2025-numbers/</link>
<pubDate>Thu, 01 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/2025-numbers/</guid>
<description>It&rsquo;s the time of the year when we take a look back at 2025, and compile a brief summary (by numbers) of the Apache Camel project(s).
You can find previous year 2024 numbers here.
Camel 2025 in Numbers Number of Camel Core / Camel Spring Boot releases in 2025: 25
Number of Camel Quarkus releases in 2025: 18
Number of Camel Karavan releases in 2025: 3
Number of Camel K releases in 2025: 5</description>
</item>
<item>
<title>Release 4.14.3</title>
<link>https://camel.apache.org/releases/release-4.14.3/</link>
<pubDate>Thu, 01 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.3/</guid>
<description>This release is the new Camel 4.14.3 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.3</title>
<link>https://camel.apache.org/blog/2026/01/RELEASE-4.14.3/</link>
<pubDate>Thu, 01 Jan 2026 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2026/01/RELEASE-4.14.3/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.3 patch release with 29 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel K 2.9.0</title>
<link>https://camel.apache.org/blog/2025/12/camel-k-2-9/</link>
<pubDate>Tue, 23 Dec 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/12/camel-k-2-9/</guid>
<description>© ‘Camel Caravan’ by D.Damdinsuren
Last release of 2025! A present just in time for those celebrating Christmas. And this time, a very big package you&rsquo;ll be happy to open! Camel K version 2.9.0 is bringing a lot of new features, improved traits and a new shiny GitOps operator assisted strategy. Let&rsquo;s unfold it together.
GitOps operator side During 2025 we have introduced several enhancements around GitOps. We had introduced the possibility to use a Kustomize based overlay structure already in the kamel promote CLI.</description>
</item>
<item>
<title>Camel-K 2.9.0</title>
<link>https://camel.apache.org/releases/k-2.9.0/</link>
<pubDate>Tue, 23 Dec 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.9.0/</guid>
<description></description>
</item>
<item>
<title>Release 4.10.8</title>
<link>https://camel.apache.org/releases/release-4.10.8/</link>
<pubDate>Sat, 13 Dec 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.8/</guid>
<description>This release is the new Camel 4.10.8 release.</description>
</item>
<item>
<title>RELEASE 4.10.8</title>
<link>https://camel.apache.org/blog/2025/12/RELEASE-4.10.8/</link>
<pubDate>Sat, 13 Dec 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/12/RELEASE-4.10.8/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.8 LTS patch release with 23 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Quarkus 3.30.0 Released</title>
<link>https://camel.apache.org/blog/2025/11/camel-quarkus-3.30.0/</link>
<pubDate>Wed, 26 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/camel-quarkus-3.30.0/</guid>
<description>Camel Quarkus 3.30.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.30.0</title>
<link>https://camel.apache.org/releases/q-3.30.0/</link>
<pubDate>Mon, 24 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.30.0/</guid>
<description></description>
</item>
<item>
<title>Upgrade Recipes 4.16.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.16.0/</link>
<pubDate>Mon, 24 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.16.0/</guid>
<description>Upgrade Instructions For detailed instructions on using Apache Camel Upgrade Recipes, please see the Apache Camel Upgrade Recipes Tool Manual.
Full Release Notes Complete release notes for this version are available in the Camel Upgrade Recipes repository.</description>
</item>
<item>
<title>Making Apache Camel Documentation Accessible to LLMs</title>
<link>https://camel.apache.org/blog/2025/11/camel-website-llmstxt/</link>
<pubDate>Wed, 12 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/camel-website-llmstxt/</guid>
<description>The Apache Camel website now generates markdown versions of all documentation pages following the llms.txt specification. This makes our documentation easily accessible to Large Language Models (LLMs) and AI coding assistants.
What is llms.txt? The llms.txt specification is a standardized format that helps LLMs discover and consume website content efficiently. Similar to how robots.txt guides web crawlers and sitemap.xml helps search engines, llms.txt provides a structured entry point for AI systems to understand and access documentation.</description>
</item>
<item>
<title>Kaoto v2.8 release</title>
<link>https://camel.apache.org/blog/2025/11/kaoto-release-2.8.0/</link>
<pubDate>Tue, 11 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/kaoto-release-2.8.0/</guid>
<description>What&rsquo;s New in Kaoto 2.8? This release represents a major step forward in DataMapper maturity, with extensive XML Schema support improvements, better visual feedback, and numerous stability fixes. We&rsquo;ve also enhanced the canvas experience with contextual menus and improved the forms system for better configuration management.
Here are the key highlights of this release: DataMapper XML Schema Support Enhancements Kaoto 2.8 brings improvements to XML Schema handling in the DataMapper:</description>
</item>
<item>
<title>Kamelets 4.14.2</title>
<link>https://camel.apache.org/releases/kamelets-4.14.2/</link>
<pubDate>Mon, 10 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.14.2/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.16.0</title>
<link>https://camel.apache.org/releases/kamelets-4.16.0/</link>
<pubDate>Mon, 10 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.16.0/</guid>
<description></description>
</item>
<item>
<title>Apache Camel 4.16 What's New</title>
<link>https://camel.apache.org/blog/2025/11/camel416-whatsnew/</link>
<pubDate>Thu, 06 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/camel416-whatsnew/</guid>
<description>Apache Camel 4.16 has just been released.
This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
Camel Core You can now add note(s) to EIPs in the DSL. The notes have no impact on running Camel, but makes it consistent to include code comments or other notes that are valuable for developers for maintaining. You can of course still use code comments, but note make them available for Camel tooling.</description>
</item>
<item>
<title>Release 4.16.0</title>
<link>https://camel.apache.org/releases/release-4.16.0/</link>
<pubDate>Wed, 05 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.16.0/</guid>
<description>This release is the new Camel 4.16.0 release.</description>
</item>
<item>
<title>RELEASE 4.16.0</title>
<link>https://camel.apache.org/blog/2025/11/RELEASE-4.16.0/</link>
<pubDate>Wed, 05 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/RELEASE-4.16.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.16.0 release with 123 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Quarkus 3.27.1 Released</title>
<link>https://camel.apache.org/blog/2025/11/camel-quarkus-3.27.1/</link>
<pubDate>Mon, 03 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/camel-quarkus-3.27.1/</guid>
<description>Camel Quarkus 3.27.1 release</description>
</item>
<item>
<title>Camel Quarkus release 3.27.1</title>
<link>https://camel.apache.org/releases/q-3.27.1/</link>
<pubDate>Mon, 03 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.27.1/</guid>
<description></description>
</item>
<item>
<title>Release 4.14.2</title>
<link>https://camel.apache.org/releases/release-4.14.2/</link>
<pubDate>Sat, 01 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.2/</guid>
<description>This release is the new Camel 4.14.2 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.2</title>
<link>https://camel.apache.org/blog/2025/11/RELEASE-4.14.2/</link>
<pubDate>Sat, 01 Nov 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/11/RELEASE-4.14.2/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.2 patch release with 40 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Quarkus 3.29.0 Released</title>
<link>https://camel.apache.org/blog/2025/10/camel-quarkus-3.29.0/</link>
<pubDate>Wed, 29 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/camel-quarkus-3.29.0/</guid>
<description>Camel Quarkus 3.29.0 release</description>
</item>
<item>
<title>Camel Quarkus 3.20.3 Released</title>
<link>https://camel.apache.org/blog/2025/10/camel-quarkus-3.20.3/</link>
<pubDate>Tue, 28 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/camel-quarkus-3.20.3/</guid>
<description>Camel Quarkus 3.20.3 release</description>
</item>
<item>
<title>Camel Quarkus release 3.20.3</title>
<link>https://camel.apache.org/releases/q-3.20.3/</link>
<pubDate>Mon, 27 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.20.3/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus release 3.29.0</title>
<link>https://camel.apache.org/releases/q-3.29.0/</link>
<pubDate>Mon, 27 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.29.0/</guid>
<description></description>
</item>
<item>
<title>Camel Karaf 4.10.7 Released</title>
<link>https://camel.apache.org/blog/2025/10/camel-karaf-release-4.10.7/</link>
<pubDate>Sun, 26 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/camel-karaf-release-4.10.7/</guid>
<description>Camel Karaf 4.10.7 release</description>
</item>
<item>
<title>Camel Karaf release 4.10.7</title>
<link>https://camel.apache.org/releases/karaf-4.10.7/</link>
<pubDate>Sun, 26 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.10.7/</guid>
<description></description>
</item>
<item>
<title>Apache Camel Meets MCP: Securely Exposing Your Enterprise Routes as MCP Tools with Wanaku</title>
<link>https://camel.apache.org/blog/2025/10/wanaku-and-camel/</link>
<pubDate>Wed, 22 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/wanaku-and-camel/</guid>
<description>The biggest challenge for enterprises in the rapidly evolving world of Generative AI isn&rsquo;t just building &ldquo;smarter&rdquo; LLMs or agents — it&rsquo;s securely connecting that AI to the decades of business logic and data locked away in enterprise systems. How do you let an AI agent interact with your Salesforce data, your Kafka topics, or your internal databases without rewriting everything or creating a massive security hole?
It turns out the answer may already be running in your organization.</description>
</item>
<item>
<title>Building Intelligent Document Processing with Apache Camel: Docling meets LangChain4j</title>
<link>https://camel.apache.org/blog/2025/10/camel-docling/</link>
<pubDate>Wed, 15 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/camel-docling/</guid>
<description>In the rapidly evolving landscape of AI-powered applications, the ability to process and understand documents has become increasingly crucial. Whether you&rsquo;re dealing with PDFs, Word documents, or PowerPoint presentations, extracting meaningful insights from unstructured data is a challenge many developers face daily.
In this post, we&rsquo;ll explore how Apache Camel&rsquo;s new AI components enable developers to build sophisticated RAG (Retrieval Augmented Generation) pipelines with minimal code. We&rsquo;ll combine the power of Docling for document conversion with LangChain4j for AI orchestration, all orchestrated through Camel&rsquo;s YAML DSL.</description>
</item>
<item>
<title>Kamelets 4.15.0</title>
<link>https://camel.apache.org/releases/kamelets-4.15.0/</link>
<pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.15.0/</guid>
<description></description>
</item>
<item>
<title>Upgrade Recipes 4.15.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.15.0/</link>
<pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.15.0/</guid>
<description>Upgrade Instructions For detailed instructions on using Apache Camel Upgrade Recipes, please see the Apache Camel Upgrade Recipes Tool Manual.
Full Release Notes Complete release notes for this version are available in the Camel Upgrade Recipes repository.</description>
</item>
<item>
<title>Apache Camel 4.15 What's New</title>
<link>https://camel.apache.org/blog/2025/10/camel415-whatsnew/</link>
<pubDate>Thu, 09 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/camel415-whatsnew/</guid>
<description>Apache Camel 4.15 has just been released.
This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
Camel Core You can now easier extend Camel via 3d-party dependencies via Java ServiceLoader using the ContextServicePlugin SPI.
You can add custom sensitive keys to camel.main.additionalSensitiveKeywords which Camel will mask in logging.
Camel JBang camel debug now also supports debugging Camel Quarkus applications, by executing camel debug pom.</description>
</item>
<item>
<title>Release 4.15.0</title>
<link>https://camel.apache.org/releases/release-4.15.0/</link>
<pubDate>Tue, 07 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.15.0/</guid>
<description>This release is the new Camel 4.15.0 release.</description>
</item>
<item>
<title>RELEASE 4.15.0</title>
<link>https://camel.apache.org/blog/2025/10/RELEASE-4.15.0/</link>
<pubDate>Tue, 07 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/RELEASE-4.15.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.15.0 release with 123 new features and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Kamelets 4.14.1</title>
<link>https://camel.apache.org/releases/kamelets-4.14.1/</link>
<pubDate>Mon, 06 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.14.1/</guid>
<description></description>
</item>
<item>
<title>Release 4.14.1</title>
<link>https://camel.apache.org/releases/release-4.14.1/</link>
<pubDate>Wed, 01 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.14.1/</guid>
<description>This release is the new Camel 4.14.1 LTS release.</description>
</item>
<item>
<title>RELEASE 4.14.1</title>
<link>https://camel.apache.org/blog/2025/10/RELEASE-4.14.1/</link>
<pubDate>Wed, 01 Oct 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/10/RELEASE-4.14.1/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.14.1 patch release with 45 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel Kafka Connector release 4.14.0</title>
<link>https://camel.apache.org/releases/ckc-4.14.0/</link>
<pubDate>Mon, 29 Sep 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.14.0/</guid>
<description>This release is the new Camel Kafka Connector 4.14.0 release.</description>
</item>
<item>
<title>Kamelets 4.10.7</title>
<link>https://camel.apache.org/releases/kamelets-4.10.7/</link>
<pubDate>Mon, 29 Sep 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.10.7/</guid>
<description></description>
</item>
<item>
<title>Release 4.10.7</title>
<link>https://camel.apache.org/releases/release-4.10.7/</link>
<pubDate>Wed, 24 Sep 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.7/</guid>
<description>This release is the new Camel 4.10.7 release.</description>
</item>
<item>
<title>RELEASE 4.10.7</title>
<link>https://camel.apache.org/blog/2025/09/RELEASE-4.10.7/</link>
<pubDate>Wed, 24 Sep 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/09/RELEASE-4.10.7/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.7 LTS patch release with 38 bug fixes and improvements.
The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes.
Many thanks to all who made this release possible.
On behalf of the Camel PMC,
Gregor Zurowski</description>
</item>
<item>
<title>Camel K 2.8.0</title>
<link>https://camel.apache.org/blog/2025/09/camel-k-2-8/</link>
<pubDate>Mon, 22 Sep 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/09/camel-k-2-8/</guid>
<description>© Paul Klee - Kunstsammlung Nordrhein-Westfalen
Here we are with Camel K 2.8.0. We are please to announce the general availability of a new Camel K version. There are a few new exciting features we want to share within this release.
Git branch/tag/commit In version 2.7.0 we announced the possibility to build a Camel application directly from Git source. We have worked in this release to include the possibility to specify a branch, tag or generically a commit to the configuration.</description>
</item>
<item>
<title>Camel Quarkus 3.27.0 Released</title>
<link>https://camel.apache.org/blog/2025/09/camel-quarkus-3.27.0/</link>
<pubDate>Mon, 22 Sep 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/09/camel-quarkus-3.27.0/</guid>
<description>Camel Quarkus 3.27.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.27.0</title>
<link>https://camel.apache.org/releases/q-3.27.0/</link>