-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.xml
5913 lines (5913 loc) · 447 KB
/
index.xml
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>Fri, 04 Apr 2025 00:00:00 +0000</lastBuildDate>
<atom:link href="https://camel.apache.org/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Apache Camel 4.11 What's New</title>
<link>https://camel.apache.org/blog/2025/04/camel411-whatsnew/</link>
<pubDate>Fri, 04 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/04/camel411-whatsnew/</guid>
<description>Apache Camel 4.11 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 The component verifier extension has been deprecated. This functionality has not been in use for many years, and we will start to deprecate more of these unused features in camel-core going forward.
Recipient List, Split and Multicast EIP In parallel processing mode, you can also enable synchronous=true to force these EIPs to process the sub-tasks using the upper bounds of the thread-pool.</description>
</item>
<item>
<title>Kamelets 4.10.3</title>
<link>https://camel.apache.org/releases/kamelets-4.10.3/</link>
<pubDate>Thu, 03 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.10.3/</guid>
<description></description>
</item>
<item>
<title>Release 4.11.0</title>
<link>https://camel.apache.org/releases/release-4.11.0/</link>
<pubDate>Thu, 03 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.11.0/</guid>
<description>This release is the new Camel 4.11.0 release.</description>
</item>
<item>
<title>RELEASE 4.11.0</title>
<link>https://camel.apache.org/blog/2025/04/RELEASE-4.11.0/</link>
<pubDate>Thu, 03 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/04/RELEASE-4.11.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.11.0 release with 136 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 AI: Inference via Model Serving #3: KServe</title>
<link>https://camel.apache.org/blog/2025/04/camel-kserve/</link>
<pubDate>Wed, 02 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/04/camel-kserve/</guid>
<description>Introduction In the previous blog posts (camel-tensorflow-serving and camel-torchserve), we discussed the recent release of Apache Camel 4.10 LTS, which introduced three new AI model serving components. 1
TorchServe component TensorFlow Serving component KServe component We previously wrote about the TorchServe and TensorFlow Serving components. This post introduces the KServe component, concluding the series.
KServe Component KServe is a platform for serving AI models on Kubernetes. KServe defines an API protocol enabling clients to perform health checks, retrieve metadata, and run inference on model servers.</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2025-30177</title>
<link>https://camel.apache.org/security/CVE-2025-30177.html</link>
<pubDate>Tue, 01 Apr 2025 07:30:42 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2025-30177.html</guid>
<description>Camel-Undertow Message Header Injection via Improper Filtering</description>
</item>
<item>
<title>Release 4.8.6</title>
<link>https://camel.apache.org/releases/release-4.8.6/</link>
<pubDate>Tue, 01 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.6/</guid>
<description>This release is the new Camel 4.8.6 release.</description>
</item>
<item>
<title>RELEASE 4.8.6</title>
<link>https://camel.apache.org/blog/2025/04/RELEASE-4.8.6/</link>
<pubDate>Tue, 01 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/04/RELEASE-4.8.6/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.6 LTS patch release with 6 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.3</title>
<link>https://camel.apache.org/releases/release-4.10.3/</link>
<pubDate>Mon, 31 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.3/</guid>
<description>This release is the new Camel 4.10.3 release.</description>
</item>
<item>
<title>RELEASE 4.10.3</title>
<link>https://camel.apache.org/blog/2025/03/RELEASE-4.10.3/</link>
<pubDate>Mon, 31 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/RELEASE-4.10.3/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.3 LTS patch release with 12 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.20.0 Released</title>
<link>https://camel.apache.org/blog/2025/03/camel-quarkus-release-3.20.0/</link>
<pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/camel-quarkus-release-3.20.0/</guid>
<description>Camel Quarkus 3.20.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.20.0</title>
<link>https://camel.apache.org/releases/q-3.20.0/</link>
<pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.20.0/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.15.3 Released</title>
<link>https://camel.apache.org/blog/2025/03/camel-quarkus-release-3.15.3/</link>
<pubDate>Tue, 18 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/camel-quarkus-release-3.15.3/</guid>
<description>Camel Quarkus 3.15.3 release</description>
</item>
<item>
<title>Camel Karaf 4.8.5 Released</title>
<link>https://camel.apache.org/blog/2025/03/camel-karaf-release-4.8.5/</link>
<pubDate>Sun, 16 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/camel-karaf-release-4.8.5/</guid>
<description>Camel Karaf 4.8.5 release</description>
</item>
<item>
<title>Camel Karaf release 4.8.5</title>
<link>https://camel.apache.org/releases/karaf-4.8.5/</link>
<pubDate>Sun, 16 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.8.5/</guid>
<description></description>
</item>
<item>
<title>Camel Kafka Connector release 4.10.2</title>
<link>https://camel.apache.org/releases/ckc-4.10.2/</link>
<pubDate>Sat, 15 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.10.2/</guid>
<description>This release is the new Camel Kafka Connector 4.10.2 release.</description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2025-29891</title>
<link>https://camel.apache.org/security/CVE-2025-29891.html</link>
<pubDate>Wed, 12 Mar 2025 07:30:42 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2025-29891.html</guid>
<description>Camel Message Header Injection through request parameters</description>
</item>
<item>
<title>Camel Kafka Connector release 4.8.5</title>
<link>https://camel.apache.org/releases/ckc-4.8.5/</link>
<pubDate>Tue, 11 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.8.5/</guid>
<description>This release is the new Camel Kafka Connector 4.8.5 release.</description>
</item>
<item>
<title>Camel Quarkus release 3.15.3</title>
<link>https://camel.apache.org/releases/q-3.15.3/</link>
<pubDate>Mon, 10 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.15.3/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.10.1</title>
<link>https://camel.apache.org/releases/kamelets-4.10.1/</link>
<pubDate>Mon, 10 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.10.1/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.10.2</title>
<link>https://camel.apache.org/releases/kamelets-4.10.2/</link>
<pubDate>Mon, 10 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.10.2/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.8.4</title>
<link>https://camel.apache.org/releases/kamelets-4.8.4/</link>
<pubDate>Mon, 10 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.8.4/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.8.5</title>
<link>https://camel.apache.org/releases/kamelets-4.8.5/</link>
<pubDate>Mon, 10 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.8.5/</guid>
<description></description>
</item>
<item>
<title>Apache Camel Security Advisory - CVE-2025-27636</title>
<link>https://camel.apache.org/security/CVE-2025-27636.html</link>
<pubDate>Sun, 09 Mar 2025 04:30:42 +0200</pubDate>
<guid>https://camel.apache.org/security/CVE-2025-27636.html</guid>
<description>Camel Message Header Injection via Improper Filtering</description>
</item>
<item>
<title>Release 3.22.4</title>
<link>https://camel.apache.org/releases/release-3.22.4/</link>
<pubDate>Sun, 09 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-3.22.4/</guid>
<description>This release is the new Camel 3.22.4 LTS release.</description>
</item>
<item>
<title>RELEASE 3.22.4</title>
<link>https://camel.apache.org/blog/2025/03/RELEASE-3.22.4/</link>
<pubDate>Sun, 09 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/RELEASE-3.22.4/</guid>
<description>The Camel community announces the immediate availability of Camel 3.22.4, a patch release with 1 fix.
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.2</title>
<link>https://camel.apache.org/releases/release-4.10.2/</link>
<pubDate>Sun, 09 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.2/</guid>
<description>This release is the new Camel 4.10.2 release.</description>
</item>
<item>
<title>RELEASE 4.10.2</title>
<link>https://camel.apache.org/blog/2025/03/RELEASE-4.10.2/</link>
<pubDate>Sun, 09 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/RELEASE-4.10.2/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.2 LTS patch release with 14 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.8.5</title>
<link>https://camel.apache.org/releases/release-4.8.5/</link>
<pubDate>Sat, 08 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.5/</guid>
<description>This release is the new Camel 4.8.5 release.</description>
</item>
<item>
<title>RELEASE 4.8.5</title>
<link>https://camel.apache.org/blog/2025/03/RELEASE-4.8.5/</link>
<pubDate>Sat, 08 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/RELEASE-4.8.5/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.5 LTS patch release with 6 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 Observability Services</title>
<link>https://camel.apache.org/blog/2025/03/camel-observability/</link>
<pubDate>Wed, 05 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/camel-observability/</guid>
<description>Observability is a pillar of any distributed Microservices oriented architecture. As the number of services to govern may rise in number, it&rsquo;s very important to have a clear and easy way to understand (observe) what&rsquo;s going on in a distributed system at any time. And this feature become even more important when you&rsquo;re running your application in the cloud.
What is Observability from Camel perspective The term Observability is often used with a wide perspective and may provide misunderstanding about what it really encompass.</description>
</item>
<item>
<title>Release 4.10.1</title>
<link>https://camel.apache.org/releases/release-4.10.1/</link>
<pubDate>Tue, 04 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.1/</guid>
<description>This release is the new Camel 4.10.1 release.</description>
</item>
<item>
<title>RELEASE 4.10.1</title>
<link>https://camel.apache.org/blog/2025/03/RELEASE-4.10.1/</link>
<pubDate>Tue, 04 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/RELEASE-4.10.1/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.1 LTS 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>Release 4.8.4</title>
<link>https://camel.apache.org/releases/release-4.8.4/</link>
<pubDate>Tue, 04 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.4/</guid>
<description>This release is the new Camel 4.8.4 release.</description>
</item>
<item>
<title>RELEASE 4.8.4</title>
<link>https://camel.apache.org/blog/2025/03/RELEASE-4.8.4/</link>
<pubDate>Tue, 04 Mar 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/03/RELEASE-4.8.4/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.4 LTS patch release with 35 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.19.0 Released</title>
<link>https://camel.apache.org/blog/2025/02/camel-quarkus-3.19.0/</link>
<pubDate>Wed, 26 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/camel-quarkus-3.19.0/</guid>
<description>Camel Quarkus 3.19.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.19.0</title>
<link>https://camel.apache.org/releases/q-3.19.0/</link>
<pubDate>Wed, 26 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.19.0/</guid>
<description></description>
</item>
<item>
<title>Apache Camel AI: Inference via Model Serving #2: TensorFlow Serving</title>
<link>https://camel.apache.org/blog/2025/02/camel-tensorflow-serving/</link>
<pubDate>Mon, 24 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/camel-tensorflow-serving/</guid>
<description>Introduction As noted in the previous article, the recent release of Apache Camel 4.10 LTS introduced three new AI model serving components into its supported component family. 1
TorchServe component TensorFlow Serving component KServe component Previously we wrote about the TorchServe component, this time we introduce the TensorFlow Serving component.
TensorFlow Serving component TensorFlow Serving is the serving feature provided by the popular machine learning framework TensorFlow. By using the Camel TensorFlow Serving component, you can invoke AI models deployed on the TensorFlow Serving model servers through their gRPC Client APIs.</description>
</item>
<item>
<title>Camel K 2.6.0</title>
<link>https://camel.apache.org/blog/2025/02/camel-k-2-6/</link>
<pubDate>Wed, 19 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/camel-k-2-6/</guid>
<description>© rawpixel.com
Apache Camel community is happy to announce the general availability of Camel K 2.6.0. We have a lot of new exciting features we want to share within this release.
Plain Camel Quarkus runtime From version 2.6.0 onward, you&rsquo;ll be able to run plain Camel Quarkus. You may know that since the beginning, Camel K had used Camel K Runtime, a lightweight runtime built on top of Camel Quarkus. In order to avoid introducing any breaking compatibility change, you will need to configure each of your Integrations (or the IntegrationPlatform) to be able to use this runtime.</description>
</item>
<item>
<title>Connecting EDI to the Enterprise with Camel & Smooks</title>
<link>https://camel.apache.org/blog/2025/02/connecting-edi-to-the-enterprise-with-camel-and-smooks/</link>
<pubDate>Wed, 19 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/connecting-edi-to-the-enterprise-with-camel-and-smooks/</guid>
<description>Electronic Data Interchange (EDI) underpins the flow of information in numerous industries. From healthcare, retail, and aviation, to finance, manufacturing, and logistics, EDI is the workhorse carrying billions of transactions across applications in these industries.
Historically viewed as a long, complex and costly journey, connecting EDI to the enterprise is traditionally thought to belong in the realm of expensive proprietary software or organisations with sizeable in-house IT teams. The goal of this blog post is to dispel this perception.</description>
</item>
<item>
<title>Kamelets 4.10.0</title>
<link>https://camel.apache.org/releases/kamelets-4.10.0/</link>
<pubDate>Mon, 17 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.10.0/</guid>
<description></description>
</item>
<item>
<title>Camel-K 2.6.0</title>
<link>https://camel.apache.org/releases/k-2.6.0/</link>
<pubDate>Sat, 15 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.6.0/</guid>
<description></description>
</item>
<item>
<title>Toward better data extraction with structured output</title>
<link>https://camel.apache.org/blog/2025/02/langchain-structured-output/</link>
<pubDate>Fri, 14 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/langchain-structured-output/</guid>
<description>Introduction This has been several blog posts now where we have learned about how to use generative AI for data extraction from a Camel route. Starting from the initial inception, we have then focused a lot on how to best combine Camel and Quarkus LangChain4j. In this blog post, we will reap the benefit of this great combination to improve the accuracy of our data extraction almost for free. Almost for free really?</description>
</item>
<item>
<title>Upgrade Recipes 4.10.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.10.0/</link>
<pubDate>Fri, 14 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.10.0/</guid>
<description>Upgrade recipes can now be applied to plain Apache Camel projects, and Apache Camel Spring Boot projects, enabling automated migration assistance across a broader range of Apache Camel implementations.</description>
</item>
<item>
<title>Apache Camel AI: Inference via Model Serving #1: TorchServe</title>
<link>https://camel.apache.org/blog/2025/02/camel-torchserve/</link>
<pubDate>Thu, 13 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/camel-torchserve/</guid>
<description>Introduction In the just released Apache Camel 4.10 LTS, AI-related components have been further enhanced. Among others, three new components related to AI model serving have been added. 1
TorchServe component TensorFlow Serving component KServe component My previous article Apache Camel AI: Leverage power of AI with DJL component demonstrated how the DJL component can be used to perform AI model inference within the Camel routes. Starting from 4.10, in addition to the in-route inference by DJL, these new components will allow the Camel routes to invoke external model servers to perform inference.</description>
</item>
<item>
<title>Apache Camel 4.10 What's New</title>
<link>https://camel.apache.org/blog/2025/02/camel410-whatsnew/</link>
<pubDate>Wed, 12 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/camel410-whatsnew/</guid>
<description>Apache Camel 4.10 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 customize to RouteBuilder to make it easier to configure a specific Camel component / dataformat, service in a Java lambda style, such as follows:
@Override public void configure() throws Exception { customize(KServeComponent.class, k -&gt; { k.getConfiguration().setTarget(&#34;localhost:8888&#34;); }); from(&#34;timer:kserve?repeatCount=1&#34;) .to(&#34;kserve:model/metadata?modelName=myModel&#34;) .log(&#34;${body}&#34;); } This makes it possible for low-code users that want to have a single Java file with the Camel route and all the Java based configuration done entirely from the same configure method.</description>
</item>
<item>
<title>Release 4.10.0</title>
<link>https://camel.apache.org/releases/release-4.10.0/</link>
<pubDate>Tue, 11 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.10.0/</guid>
<description>This release is the new Camel 4.10.0 release.</description>
</item>
<item>
<title>RELEASE 4.10.0</title>
<link>https://camel.apache.org/blog/2025/02/RELEASE-4.10.0/</link>
<pubDate>Tue, 11 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/02/RELEASE-4.10.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.10.0 LTS release with 214 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.5.1</title>
<link>https://camel.apache.org/releases/k-2.5.1/</link>
<pubDate>Fri, 07 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.5.1/</guid>
<description></description>
</item>
<item>
<title>Camel-K Runtime release 3.15.2</title>
<link>https://camel.apache.org/releases/k-runtime-3.15.2/</link>
<pubDate>Sat, 01 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-runtime-3.15.2/</guid>
<description></description>
</item>
<item>
<title>Camel Kafka Connector release 4.8.3</title>
<link>https://camel.apache.org/releases/ckc-4.8.3/</link>
<pubDate>Fri, 31 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.8.3/</guid>
<description>This release is the new Camel Kafka Connector 4.8.3 release.</description>
</item>
<item>
<title>Camel Karaf 4.9.0 Released</title>
<link>https://camel.apache.org/blog/2025/01/camel-karaf-release-4.9.0/</link>
<pubDate>Thu, 30 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/camel-karaf-release-4.9.0/</guid>
<description>Camel Karaf 4.9.0 release</description>
</item>
<item>
<title>Camel Karaf release 4.9.0</title>
<link>https://camel.apache.org/releases/karaf-4.9.0/</link>
<pubDate>Thu, 30 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.9.0/</guid>
<description></description>
</item>
<item>
<title>Camel Karaf 4.8.2 Released</title>
<link>https://camel.apache.org/blog/2025/01/camel-karaf-release-4.8.2/</link>
<pubDate>Wed, 29 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/camel-karaf-release-4.8.2/</guid>
<description>Camel Karaf 4.8.2 release</description>
</item>
<item>
<title>Camel Karaf release 4.8.2</title>
<link>https://camel.apache.org/releases/karaf-4.8.2/</link>
<pubDate>Wed, 29 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.8.2/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.18.0 Released</title>
<link>https://camel.apache.org/blog/2025/01/camel-quarkus-release-3.18.0/</link>
<pubDate>Wed, 29 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/camel-quarkus-release-3.18.0/</guid>
<description>Camel Quarkus 3.18.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.18.0</title>
<link>https://camel.apache.org/releases/q-3.18.0/</link>
<pubDate>Wed, 29 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.18.0/</guid>
<description></description>
</item>
<item>
<title>Upgrade Recipes 4.9.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.9.0/</link>
<pubDate>Tue, 28 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.9.0/</guid>
<description></description>
</item>
<item>
<title>Release 4.4.5</title>
<link>https://camel.apache.org/releases/release-4.4.5/</link>
<pubDate>Wed, 22 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.4.5/</guid>
<description>This release is the new Camel 4.4.5 LTS patch release.</description>
</item>
<item>
<title>RELEASE 4.4.5</title>
<link>https://camel.apache.org/blog/2025/01/RELEASE-4.4.5/</link>
<pubDate>Wed, 22 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/RELEASE-4.4.5/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.4.5 patch release with 12 bug fixes and improvements. This is the last planned patch release for Camel 4.4.x.
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 Quarkus 3.15.2 Released</title>
<link>https://camel.apache.org/blog/2025/01/camel-quarkus-release-3.15.2/</link>
<pubDate>Tue, 21 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/camel-quarkus-release-3.15.2/</guid>
<description>Camel Quarkus 3.15.2 release</description>
</item>
<item>
<title>Camel Quarkus release 3.15.2</title>
<link>https://camel.apache.org/releases/q-3.15.2/</link>
<pubDate>Tue, 21 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.15.2/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.8.3</title>
<link>https://camel.apache.org/releases/kamelets-4.8.3/</link>
<pubDate>Fri, 17 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.8.3/</guid>
<description></description>
</item>
<item>
<title>Resolving LangChain4j AI services by name</title>
<link>https://camel.apache.org/blog/2025/01/langchain4j-bean-name/</link>
<pubDate>Fri, 17 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/langchain4j-bean-name/</guid>
<description>Introduction In a previous blog post related to Artificial Intelligence with Camel, we introduced the resolution of AI services by interface. This feature brings Camel and Quarkus LangChain4j closer than ever so that it takes less code to invoke a LangChain4j AI service from a route. In this blog post, we would like to introduce a related feature that should be released in the next Camel Quarkus version. This time, we&rsquo;ll do the same kind of operation, except that we will resolve the bean by its name.</description>
</item>
<item>
<title>Release 4.8.3</title>
<link>https://camel.apache.org/releases/release-4.8.3/</link>
<pubDate>Sun, 12 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.3/</guid>
<description>This release is the new Camel 4.8.3 release.</description>
</item>
<item>
<title>RELEASE 4.8.3</title>
<link>https://camel.apache.org/blog/2025/01/RELEASE-4.8.3/</link>
<pubDate>Sun, 12 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/RELEASE-4.8.3/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.3 LTS 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 2024 in Numbers</title>
<link>https://camel.apache.org/blog/2025/01/2024-numbers/</link>
<pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2025/01/2024-numbers/</guid>
<description>It&rsquo;s the time of the year when we take a look back at 2024, and compile a brief summary (by numbers) of the Apache Camel project(s).
You can find previous year 2023 numbers here.
Camel 2024 in Numbers Number of Camel Core / Camel Spring Boot releases in 2024: 20
Number of Camel Quarkus releases in 2024: 16
Number of Camel Karavan releases in 2024: 5
Number of Camel K releases in 2024: 7</description>
</item>
<item>
<title>Apache Camel 3 - End of Life</title>
<link>https://camel.apache.org/blog/2024/12/camel3-eol/</link>
<pubDate>Mon, 23 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/camel3-eol/</guid>
<description>Apache Camel is officially end of life by end of 2024.
We have just released the last Apache Camel 3.22.3 release of Camel 3.x. There will be NO further releases, and support for Camel 3 has officially reached its end of life.
There will not be any new releases of Camel 3.x, and users are encouraged to start new development on Camel 4, and plan to migrate existing applications to Camel 4.</description>
</item>
<item>
<title>Release 3.22.3</title>
<link>https://camel.apache.org/releases/release-3.22.3/</link>
<pubDate>Fri, 20 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-3.22.3/</guid>
<description>This release is the new Camel 3.22.3 LTS release.</description>
</item>
<item>
<title>RELEASE 3.22.3</title>
<link>https://camel.apache.org/blog/2024/12/RELEASE-3.22.3/</link>
<pubDate>Fri, 20 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/RELEASE-3.22.3/</guid>
<description>The Camel community announces the immediate availability of Camel 3.22.3, a patch release with 11 fixes and improvements. This is the final EOL release for Camel 3.
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>Resolving LangChain4j AI services by interface</title>
<link>https://camel.apache.org/blog/2024/12/langchain4j-bean-interface/</link>
<pubDate>Fri, 20 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/langchain4j-bean-interface/</guid>
<description>Introduction In a recent series of Artificial Intelligence related blog posts, we have learned about the Camel Quarkus LangChain4j extension. It offers possibilities to implement new AI related scenarios like data extraction. The underlying implementation of Quarkus LangChain4j seems to offer interesting abstractions that, for instance make it possible to switch between Large Language Models quite simply. We have also started to see some improvements when it comes to invoking AI services thanks to camel bean binding and annotations.</description>
</item>
<item>
<title>Camel Quarkus 3.17.0 Released</title>
<link>https://camel.apache.org/blog/2024/12/camel-quarkus-release-3.17.0/</link>
<pubDate>Thu, 12 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/camel-quarkus-release-3.17.0/</guid>
<description>Camel Quarkus 3.17.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.17.0</title>
<link>https://camel.apache.org/releases/q-3.17.0/</link>
<pubDate>Thu, 12 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.17.0/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.8.2</title>
<link>https://camel.apache.org/releases/kamelets-4.8.2/</link>
<pubDate>Thu, 12 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.8.2/</guid>
<description></description>
</item>
<item>
<title>Kaoto v2.3 release</title>
<link>https://camel.apache.org/blog/2024/12/kaoto-release-2.3.0/</link>
<pubDate>Tue, 10 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/kaoto-release-2.3.0/</guid>
<description>Following the Apache Camel 4.9.0 release, we&rsquo;re happy to announce the release of Kaoto 2.3.
What’s New in Kaoto 2.3? We&rsquo;re thrilled to announce the release of Kaoto 2.3, bringing new features, improvements, and bug fixes to enhance your integration experience. This release also brings the first technical preview of a long awaited feature: the Kaoto DataMapper with the ability to perform data transformations using Camel.
Here are the key highlights of this release Kaoto DataMapper technical preview In this release, we are introducing the new Kaoto DataMapper, a graphical way of authoring data mappings inside your routes using Kaoto.</description>
</item>
<item>
<title>Migrating from Camel Karaf to Camel Spring Boot or Quarkus</title>
<link>https://camel.apache.org/blog/2024/12/migrate-blueprint/</link>
<pubDate>Mon, 09 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/migrate-blueprint/</guid>
<description>This is the 2nd blog post in a series of migration blogs to provide details and help for users to Camel 4.
The first blog post that focus on general migration principles can be found here.
This blog post focuses on migrating from legacy Apache Karaf OSGi Blueprint to Camel 4.
Migration Tasks The migration from Camel Karaf and OSGi Blueprint to Camel 4 is not a trivial migration effort.</description>
</item>
<item>
<title>Kamelets 4.9.0</title>
<link>https://camel.apache.org/releases/kamelets-4.9.0/</link>
<pubDate>Fri, 06 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.9.0/</guid>
<description></description>
</item>
<item>
<title>Apache Camel 4.9 What's New</title>
<link>https://camel.apache.org/blog/2024/12/camel49-whatsnew/</link>
<pubDate>Thu, 05 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/camel49-whatsnew/</guid>
<description>Apache Camel 4.9 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 startup condition feature to let Camel perform some checks on startup, before continuing. For example to check if a specific ENV exists, or wait for a specific file to be created etc.
The supervised route controller now emits RouteRestartingEvent when routes are attempted to be started again after a previous failure.</description>
</item>
<item>
<title>Release 4.8.2</title>
<link>https://camel.apache.org/releases/release-4.8.2/</link>
<pubDate>Thu, 05 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.2/</guid>
<description>This release is the new Camel 4.8.2 release.</description>
</item>
<item>
<title>RELEASE 4.8.2</title>
<link>https://camel.apache.org/blog/2024/12/RELEASE-4.8.2/</link>
<pubDate>Thu, 05 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/RELEASE-4.8.2/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.2 LTS patch release with 41 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.9.0</title>
<link>https://camel.apache.org/releases/release-4.9.0/</link>
<pubDate>Wed, 04 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.9.0/</guid>
<description>This release is the new Camel 4.9.0 release.</description>
</item>
<item>
<title>RELEASE 4.9.0</title>
<link>https://camel.apache.org/blog/2024/12/RELEASE-4.9.0/</link>
<pubDate>Wed, 04 Dec 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/12/RELEASE-4.9.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.9.0 release with 231 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>Avoiding model lock in while building an AI Camel route</title>
<link>https://camel.apache.org/blog/2024/11/langchain4j-granite3/</link>
<pubDate>Fri, 15 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/11/langchain4j-granite3/</guid>
<description>Introduction In a previous blog post, we have seen how Camel parameter binding annotations could be used in conjunction with LangChain4J AI services to easily create Camel routes using Large Language Models. All this work is best reflected in a Camel Quarkus example. While building this example, poor care was taken about the choice of the LLM as this was not the initial priority. Thinking a bit more, this situation is a great opportunity to experience the switch of an LLM inside of a Camel application.</description>
</item>
<item>
<title>Camel Quarkus 3.8.4 LTS Released</title>
<link>https://camel.apache.org/blog/2024/11/camel-quarkus-3.8.4/</link>
<pubDate>Fri, 15 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/11/camel-quarkus-3.8.4/</guid>
<description>Camel Quarkus 3.8.4 LTS release</description>
</item>
<item>
<title>Camel Quarkus release 3.8.4</title>
<link>https://camel.apache.org/releases/q-3.8.4/</link>
<pubDate>Fri, 15 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.8.4/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.8.1</title>
<link>https://camel.apache.org/releases/kamelets-4.8.1/</link>
<pubDate>Tue, 12 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.8.1/</guid>
<description></description>
</item>
<item>
<title>Camel K 2.5.0</title>
<link>https://camel.apache.org/blog/2024/11/camel-k-2-5/</link>
<pubDate>Mon, 04 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/11/camel-k-2-5/</guid>
<description>© Charles Theodore Frere
Apache Camel community is happy to announce the general availability of Camel K 2.5.0. In this release you will find several new features, fixes and a few deprecations that will simplify the project management in the long run.
Default Runtime Let&rsquo;s start highlighting the default runtime we are using in this release. The default is Camel K Runtime version 3.15.0 which is based on Camel Quarkus 3.</description>
</item>
<item>
<title>Camel-K 2.5.0</title>
<link>https://camel.apache.org/releases/k-2.5.0/</link>
<pubDate>Sun, 03 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.5.0/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.15.1 Released</title>
<link>https://camel.apache.org/blog/2024/11/camel-quarkus-release-3.15.1/</link>
<pubDate>Sat, 02 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/11/camel-quarkus-release-3.15.1/</guid>
<description>Camel Quarkus 3.15.1 release</description>
</item>
<item>
<title>Camel Quarkus release 3.15.1</title>
<link>https://camel.apache.org/releases/q-3.15.1/</link>
<pubDate>Sat, 02 Nov 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.15.1/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.16.0 Released</title>
<link>https://camel.apache.org/blog/2024/10/camel-quarkus-release-3.16.0/</link>
<pubDate>Wed, 30 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/10/camel-quarkus-release-3.16.0/</guid>
<description>Camel Quarkus 3.16.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.16.0</title>
<link>https://camel.apache.org/releases/q-3.16.0/</link>
<pubDate>Wed, 30 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.16.0/</guid>
<description></description>
</item>
<item>
<title>Release 4.8.1</title>
<link>https://camel.apache.org/releases/release-4.8.1/</link>
<pubDate>Fri, 25 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.1/</guid>
<description>This release is the new Camel 4.8.1 release.</description>
</item>
<item>
<title>RELEASE 4.8.1</title>
<link>https://camel.apache.org/blog/2024/10/RELEASE-4.8.1/</link>
<pubDate>Fri, 25 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/10/RELEASE-4.8.1/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.1 LTS patch release with 66 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>Modernizing Camel's Test Support Code: How To</title>
<link>https://camel.apache.org/blog/2024/10/modernizing-test-code-how-to/</link>
<pubDate>Thu, 24 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/10/modernizing-test-code-how-to/</guid>
<description>Earlier I wrote a blog post about a multi-release effort to clean up some of the legacy test code for Camel 4. In this blog post, I will dive into more details about how to adjust your code to use the modernized interfaces.
New Interfaces Camel 4.9 will introduce two new interfaces to CamelTestSupport that will help users adjust their code and will help us with future maintenance of the test support code.</description>
</item>
<item>
<title>Release 4.4.4</title>
<link>https://camel.apache.org/releases/release-4.4.4/</link>
<pubDate>Mon, 21 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.4.4/</guid>
<description>This release is the new Camel 4.4.4 LTS patch release.</description>
</item>
<item>
<title>RELEASE 4.4.4</title>
<link>https://camel.apache.org/blog/2024/10/RELEASE-4.4.4/</link>
<pubDate>Mon, 21 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/10/RELEASE-4.4.4/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.4.4 patch release with 41 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 Runtime release 3.15.0</title>
<link>https://camel.apache.org/releases/k-runtime-3.15.0/</link>
<pubDate>Thu, 10 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-runtime-3.15.0/</guid>
<description></description>
</item>
<item>
<title>Using Camel annotations with LangChain4j high level api available in next Camel Quarkus release</title>
<link>https://camel.apache.org/blog/2024/10/langchain4j-camel-annotations/</link>
<pubDate>Thu, 10 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/10/langchain4j-camel-annotations/</guid>
<description>Introduction In a previous blog post, we have seen how Camel could be used to transform raw unstructured text into structured Java objects. The shown example actually uses the LangChain4j high level API where a Java interface will handle the interactions needed with the underlying Large Language Model. However, at this time, a Quarkus LangChain4j issue prevented the usage of the Camel parameter binding annotations. This issue will be fixed in the next Camel Quarkus release, so let&rsquo;s see how it will work.</description>
</item>
<item>
<title>Camel Kafka Connector release 4.8.0</title>
<link>https://camel.apache.org/releases/ckc-4.8.0/</link>
<pubDate>Sun, 06 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.8.0/</guid>
<description>This release is the new Camel Kafka Connector 4.8.0 release.</description>
</item>
<item>
<title>Easier migration with Apache Camel</title>
<link>https://camel.apache.org/blog/2024/10/camel-upgrade-recipes-release-4.8.0/</link>
<pubDate>Fri, 04 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/10/camel-upgrade-recipes-release-4.8.0/</guid>
<description>This blog post introduces a Camel Upgrade Recipes project and shows an example of its usage.
Introduction Migrating Apache Camel code can often be a tedious and error-prone process, especially when it involves repetitive tasks like renaming classes, updating method signatures, or adapting to new Camel API changes. To address this need, Camel Upgrade Recipes project based on OpenRewrite was developed. The project is not designed to provide fully automated migration but rather to assist with manual migrations, making them more efficient and less error-prone.</description>
</item>
<item>
<title>Karavan 4.8.0</title>
<link>https://camel.apache.org/blog/2024/09/camel-karavan-4.8.0/</link>
<pubDate>Mon, 30 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/camel-karavan-4.8.0/</guid>
<description>We’re excited to announce the release of Apache Camel Karavan 4.8.0, the ultimate toolkit for efficient and accelerated integration development with Apache Camel. This version is fully synchronized with the latest Apache Camel Framework 4.8.0, ensuring seamless compatibility and allowing you to take advantage of the newest features for an optimized development experience.
What&rsquo;s New in Apache Camel Karavan 4.8.0? Our latest release brings a slew of improvements aimed at making your integration development more efficient and intuitive.</description>
</item>
<item>
<title>Upgrade Recipes 4.8.0</title>
<link>https://camel.apache.org/releases/upgrade-recipes-4.8.0/</link>
<pubDate>Mon, 30 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/upgrade-recipes-4.8.0/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.15.0 Released</title>
<link>https://camel.apache.org/blog/2024/09/camel-quarkus-release-3.15.0/</link>
<pubDate>Thu, 26 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/camel-quarkus-release-3.15.0/</guid>
<description>Camel Quarkus 3.15.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.15.0</title>
<link>https://camel.apache.org/releases/q-3.15.0/</link>
<pubDate>Mon, 23 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.15.0/</guid>
<description></description>
</item>
<item>
<title>Kaoto v2.2 release</title>
<link>https://camel.apache.org/blog/2024/09/kaoto-release-2.2.0/</link>
<pubDate>Fri, 20 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/kaoto-release-2.2.0/</guid>
<description>Following the Apache Camel 4.8 release, we are happy to announce the release of Kaoto 2.2 with many improvements to enhance the user experience.
This time, the theme was to improve the visualizations and the user experience in the Canvas, as well as to provide more flexibility to the users. Read on to discover the key highlights of this release and how they can improve your workflow with Kaoto.</description>
</item>
<item>
<title>Kamelets 4.8.0</title>
<link>https://camel.apache.org/releases/kamelets-4.8.0/</link>
<pubDate>Thu, 19 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.8.0/</guid>
<description></description>
</item>
<item>
<title>Apache Camel 4.8 What's New</title>
<link>https://camel.apache.org/blog/2024/09/camel48-whatsnew/</link>
<pubDate>Mon, 16 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/camel48-whatsnew/</guid>
<description>Apache Camel 4.8 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 The simple language has new functions such as a iif (ternary if). The @BindToRegistry now supports init/destroy methods, and can be declared as lazy as well.
The log EIP can more easily configure its logger name using dynamic patterns.
Add poll EIP as an easier and simpler version of pollEnrich EIP which is also more tooling friendly.</description>
</item>
<item>
<title>Unstructured data extraction with Apache Camel Quarkus and LangChain4j</title>
<link>https://camel.apache.org/blog/2024/09/data-extraction-example/</link>
<pubDate>Mon, 16 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/data-extraction-example/</guid>
<description>This blog post shows a concrete example of transforming raw unstructured text into structured Java objects with Camel Quarkus and Quarkus LangChain4j.
Introduction Following previous experiments about unstructured data extraction, some directions were given about how a large language model could be setup to transform unstructured data into its structured counterpart. In this blog post, we will see a ready to use example that could serve as a starting point to create your own Camel route performing data extraction.</description>
</item>
<item>
<title>Release 4.8.0</title>
<link>https://camel.apache.org/releases/release-4.8.0/</link>
<pubDate>Sun, 15 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.8.0/</guid>
<description>This release is the new Camel 4.8.0 release.</description>
</item>
<item>
<title>RELEASE 4.8.0</title>
<link>https://camel.apache.org/blog/2024/09/RELEASE-4.8.0/</link>
<pubDate>Sun, 15 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/RELEASE-4.8.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.8.0 LTS release with 185 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 Kafka Connector release 4.4.3</title>
<link>https://camel.apache.org/releases/ckc-4.4.3/</link>
<pubDate>Sat, 14 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/ckc-4.4.3/</guid>
<description>This release is the new Camel Kafka Connector 4.4.3 release.</description>
</item>
<item>
<title>Modernizing Camel's Test Support Code: What You Need to Know</title>
<link>https://camel.apache.org/blog/2024/09/modernizing-test-support/</link>
<pubDate>Wed, 11 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/modernizing-test-support/</guid>
<description>The first law of software complexity says that &ldquo;a well-designed system will degrade into a badly designed system over time&rdquo;. This law can be ruthless for open source projects receiving hundreds of contributions every month.
That&rsquo;s why projects must refactor code, evaluate APIs, review tests, and modernize code to leverage the latest and greatest features from Java.
Camel Test Support One area in Camel that has had little attention until recently was our test support code.</description>
</item>
<item>
<title>Unlocking Efficient Data Processing with the Chunking DSL</title>
<link>https://camel.apache.org/blog/2024/09/chunking-dsl/</link>
<pubDate>Fri, 06 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/chunking-dsl/</guid>
<description>Chunking is a crucial aspect of data processing that can significantly impact retrieval quality, query latency, costs, and even the accuracy of Large Language Model (LLM) outputs. In this blog post, we&rsquo;ll explore what chunking is, its importance, and how the new Chunking DSL in Apache Camel 4.8.0 improves data processing workflows.
The Problem with Traditional Chunking Approaches Before Camel 4.8.0, applications using Camel would have to implement custom chunking logic or rely on external libraries.</description>
</item>
<item>
<title>Apache Camel AI: Leverage power of AI with DJL component</title>
<link>https://camel.apache.org/blog/2024/09/camel-ai-examples/</link>
<pubDate>Wed, 04 Sep 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/09/camel-ai-examples/</guid>
<description>Apache Camel AI is a set of components that allow various AI-related technologies to be integrated with Camel.
Nowadays, LLMs such as OpenAI ChatGPT and Meta Llama are gaining a lot of attention, and many frameworks and tools are exploring ways to utilise them. Camel AI also includes the LangChain4j component suite, and there are already blog posts about how you can utilise LLMs using LangChain4j in the Camel Blog:</description>
</item>
<item>
<title>Camel Quarkus 3.14.0 Released</title>
<link>https://camel.apache.org/blog/2024/08/camel-quarkus-release-3.14.0/</link>
<pubDate>Wed, 28 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/08/camel-quarkus-release-3.14.0/</guid>
<description>Camel Quarkus 3.14.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.14.0</title>
<link>https://camel.apache.org/releases/q-3.14.0/</link>
<pubDate>Wed, 28 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.14.0/</guid>
<description></description>
</item>
<item>
<title>How to Camel Debug a Camel Spring Boot route deployed on OpenShift from VS Code</title>
<link>https://camel.apache.org/blog/2024/08/camel-springboot-remote-debug-to-openshift-from-vscode/</link>
<pubDate>Mon, 12 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/08/camel-springboot-remote-debug-to-openshift-from-vscode/</guid>
<description>How to Camel Debug a Camel Spring Boot route deployed on OpenShift from VS Code
Requirements This how-to will not cover in details the following points, it is assumed that it is installed/preconfigured:
VS Code with the Extension Pack for Apache Camel with a folder opened Active connection to an OpenShift cluster JBang available on Command-Line Interface (CLI) Maven available on CLI Note that this tutorial was made with the following versions:</description>
</item>
<item>
<title>Release 4.0.6</title>
<link>https://camel.apache.org/releases/release-4.0.6/</link>
<pubDate>Mon, 12 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.0.6/</guid>
<description>This release is the new Camel 4.0.6 LTS patch release.</description>
</item>
<item>
<title>RELEASE 4.0.6</title>
<link>https://camel.apache.org/blog/2024/08/RELEASE-4.0.6/</link>
<pubDate>Mon, 12 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/08/RELEASE-4.0.6/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.0.6 patch release with 10 improvements and fixes. This is the last planned patch release for Camel 4.0.
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.4.0</title>
<link>https://camel.apache.org/blog/2024/08/camel-k-2-4/</link>
<pubDate>Wed, 07 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/08/camel-k-2-4/</guid>
<description>© Seattle Art Museum
Apache Camel community is happy to announce the general availability of Camel K 2.4.0. We have released many new features and several works aimed to have a stable version, above all when using the so called &ldquo;Sourceless&rdquo; Integrations.
Default security settings The first important change we&rsquo;ve introduced is the default setting of security configuration in Kubernetes (SecurityContext). We&rsquo;ve worked to introduce this both in the operator and in every application deployed after your Integration.</description>
</item>
<item>
<title>Camel-K 2.4.0</title>
<link>https://camel.apache.org/releases/k-2.4.0/</link>
<pubDate>Wed, 07 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/k-2.4.0/</guid>
<description></description>
</item>
<item>
<title>How to Camel Debug a Camel Quarkus route deployed on OpenShift from VS Code</title>
<link>https://camel.apache.org/blog/2024/08/camel-quarkus-remote-debug-to-openshift-from-vscode/</link>
<pubDate>Tue, 06 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/08/camel-quarkus-remote-debug-to-openshift-from-vscode/</guid>
<description>How to Camel Debug a Camel Quarkus route deployed on OpenShift from VS Code
Requirements This how-to will not cover in details the following points, it is assumed that it is installed/preconfigured:
VS Code with the Extension Pack for Apache Camel with a folder opened Active connection to an OpenShift cluster JBang available on Command-Line Interface (CLI) Maven available on CLI Note that this tutorial was made with the following versions:</description>
</item>
<item>
<title>Camel Quarkus 3.13.0 Released</title>
<link>https://camel.apache.org/blog/2024/07/camel-quarkus-release-3.13.0/</link>
<pubDate>Wed, 31 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/camel-quarkus-release-3.13.0/</guid>
<description>Camel Quarkus 3.13.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.13.0</title>
<link>https://camel.apache.org/releases/q-3.13.0/</link>
<pubDate>Wed, 31 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.13.0/</guid>
<description></description>
</item>
<item>
<title>Karavan 4.7.0: Unleashing Flexibility</title>
<link>https://camel.apache.org/blog/2024/07/camel-karavan-4.7.0/</link>
<pubDate>Mon, 29 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/camel-karavan-4.7.0/</guid>
<description>We&rsquo;re thrilled to announce the release of Apache Camel Karavan 4.7.0, your ultimate toolkit for streamlined and expedited integration development using Apache Camel! This new version is meticulously aligned with the latest Apache Camel Framework 4.7.0, ensuring seamless compatibility and enabling you to leverage the newest features for an enhanced development experience.
What&rsquo;s New in Apache Camel Karavan 4.7.0? Our latest release brings a slew of improvements aimed at making your integration development more efficient and intuitive.</description>
</item>
<item>
<title>Camel Karaf release 4.8.1</title>
<link>https://camel.apache.org/releases/karaf-4.8.1/</link>
<pubDate>Fri, 19 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/karaf-4.8.1/</guid>
<description></description>
</item>
<item>
<title>Experimenting extraction from unstructured data with Apache Camel and LangChain4j</title>
<link>https://camel.apache.org/blog/2024/07/data-extraction-first-experiment/</link>
<pubDate>Fri, 19 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/data-extraction-first-experiment/</guid>
<description>This blog is based on experiments done about extracting structured data into its structured counterpart. More precisely, in this post, we&rsquo;ll give directions about how to convert a conversation transcript into a Java object.
Introduction Reading articles like this over the net, it seems that folks have a lot of unstructured data at the disposal while not being able to take advantage on it. So probably, in the future we might expect to deal more and more with unstructured data extraction in integration flow.</description>
</item>
<item>
<title>Kamelets 4.7.0</title>
<link>https://camel.apache.org/releases/kamelets-4.7.0/</link>
<pubDate>Thu, 18 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.7.0/</guid>
<description></description>
</item>
<item>
<title>Kaoto v2.1 release</title>
<link>https://camel.apache.org/blog/2024/07/kaoto-release-2.1.0/</link>
<pubDate>Tue, 16 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/kaoto-release-2.1.0/</guid>
<description>After the previous 2.0 GA release, we are happy to announce the release of Kaoto 2.1, packed with exciting new features, bug fixes, and various improvements to enhance the user experience.
This update introduces the capability to choose your preferred Runtime version among other notable upgrades. Read on to discover the key highlights of this release and how they can improve your workflow with Kaoto. New Features Catalog: Empower users to pick a runtime and specific version to display the right components with their precise configurations.</description>
</item>
<item>
<title>Apache Camel 4.7 What's New</title>
<link>https://camel.apache.org/blog/2024/07/camel47-whatsnew/</link>
<pubDate>Mon, 15 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/camel47-whatsnew/</guid>
<description>Apache Camel 4.7 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 The route template has some fixes and improvements, such as that a full local copy of the template is created when creating routes from the template; this prevents unforeseen side effects when the same template is used later to create new routes.</description>
</item>
<item>
<title>Release 4.7.0</title>
<link>https://camel.apache.org/releases/release-4.7.0/</link>
<pubDate>Sat, 13 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.7.0/</guid>
<description>This release is the new Camel 4.7.0 release.</description>
</item>
<item>
<title>RELEASE 4.7.0</title>
<link>https://camel.apache.org/blog/2024/07/RELEASE-4.7.0/</link>
<pubDate>Sat, 13 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/RELEASE-4.7.0/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.7.0 release with 198 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.8.3 LTS Released</title>
<link>https://camel.apache.org/blog/2024/07/camel-quarkus-release-3.8.3/</link>
<pubDate>Mon, 08 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/07/camel-quarkus-release-3.8.3/</guid>
<description>Camel Quarkus 3.8.3 LTS release</description>
</item>
<item>
<title>Camel Quarkus release 3.8.3</title>
<link>https://camel.apache.org/releases/q-3.8.3/</link>
<pubDate>Mon, 08 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.8.3/</guid>
<description></description>
</item>
<item>
<title>Kamelets 4.4.3</title>
<link>https://camel.apache.org/releases/kamelets-4.4.3/</link>
<pubDate>Thu, 04 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/kamelets-4.4.3/</guid>
<description></description>
</item>
<item>
<title>Camel Quarkus 3.12.0 Released</title>
<link>https://camel.apache.org/blog/2024/06/camel-quarkus-release-3.12.0/</link>
<pubDate>Thu, 27 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/06/camel-quarkus-release-3.12.0/</guid>
<description>Camel Quarkus 3.12.0 release</description>
</item>
<item>
<title>Camel Quarkus release 3.12.0</title>
<link>https://camel.apache.org/releases/q-3.12.0/</link>
<pubDate>Thu, 27 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/q-3.12.0/</guid>
<description></description>
</item>
<item>
<title>Release 4.4.3</title>
<link>https://camel.apache.org/releases/release-4.4.3/</link>
<pubDate>Thu, 27 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-4.4.3/</guid>
<description>This release is the new Camel 4.4.3 LTS patch release.</description>
</item>
<item>
<title>RELEASE 4.4.3</title>
<link>https://camel.apache.org/blog/2024/06/RELEASE-4.4.3/</link>
<pubDate>Thu, 27 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/blog/2024/06/RELEASE-4.4.3/</guid>
<description>The Camel community announces the immediate availability of the Camel 4.4.3 patch release with 31 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 3.21.5</title>
<link>https://camel.apache.org/releases/release-3.21.5/</link>
<pubDate>Fri, 21 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://camel.apache.org/releases/release-3.21.5/</guid>
<description>This release is the new Camel 3.21.5 LTS patch release.</description>
</item>
<item>
<title>RELEASE 3.21.5</title>
<link>https://camel.apache.org/blog/2024/06/RELEASE-3.21.5/</link>