-
Notifications
You must be signed in to change notification settings - Fork 17
/
news.html
2289 lines (2111 loc) · 166 KB
/
news.html
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
---
layout: page
title: Apache Karaf - News
permalink: /news
---
<main role="main">
<div class="container pt-5">
<div class="row mb-2">
<div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<div class="card-body d-flex flex-column align-items-start">
<strong class="d-inline-block mb-2 text-success"><i class="fas fa-rocket"></i> Announce</strong>
<h3 class="mb-0">
<a class="text-dark">Karaf OSGi runtime 4.4.6</a>
</h3>
<div class="mb-1 text-muted">April 12, 2024</div>
<p class="card-text mb-auto">Apache Karaf 4.4.x series brings OSGi R8 support, Pax Web 8.0.x, Pax Logging 2.1.x, and a lot of other improvements and updates.</p>
<a href="#">Learn more</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<div class="card-body d-flex flex-column align-items-start">
<strong class="d-inline-block mb-2 text-success"><i class="fas fa-rocket"></i> Announce</strong>
<h3 class="mb-0">
<a class="text-dark">Karaf OSGi runtime 4.3.10</a>
</h3>
<div class="mb-1 text-muted">September 20, 2023</div>
<p class="card-text mb-auto">This is an important update patch for Apache Karaf runtime 4.3.x series, containing many fixes and dependency updates.</p>
<a href="#">Learn more</a>
</div>
</div>
</div>
</div>
</div>
<main role="main">
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container">
<div class="row mb-5 mt-5">
<div class="col-md-10">
<h2 class="pb-3 mb-4 font-italic border-bottom"><i class="fas fa-bullhorn"></i> Fresh news</h2>
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.4.6 has been released! <span class="text-muted">April 12, 2024</span></h3>
<p>Apache Karaf runtime 4.4.6 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>new Spring 6.x features</li>
<li>upgrade to Pax Web 8.0.27 / Jetty 9.4.54.v20240208</li>
<li>upgrade to Bouncycastle 1.77</li>
<li>upgrade to sshd 2.12.1</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12354057" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.4.5 has been released! <span class="text-muted">January 10, 2024</span></h3>
<p>Apache Karaf runtime 4.4.5 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>isolate config shell commands in a dedicated bundle to avoid refresh and race condition at startup</li>
<li>better JDK21 support with new ASM version (9.6)</li>
<li>upgrade to Jetty 9.4.53.v20231009 and Pax Web 8.0.24</li>
<li>upgrade to Pax Logging 2.2.6 supporting Log4j 2.22.1 and commons-logging 1.3.0</li>
<li>fix webconsole plugins loading</li>
<li>upgrade to sshd 2.11.0 fixing ecdsa key support</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12353604" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.4.4 has been released! <span class="text-muted">September 17, 2023</span></h3>
<p>Apache Karaf runtime 4.4.4 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>fix race condition between the FeatureService and FeatureDeploymentListener</li>
<li>fix --patch-module on Instance startup</li>
<li>add exec:groovy shell command</li>
<li>a lot of dependency updated including CVE fixes (Johnzon, BouncyCastle, Commons FileUpload, and much more !)</li>
<li>better JDK20+ support</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12352693" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.3.10 has been released! <span class="text-muted">September 20, 2023</span></h3>
<p>Apache Karaf runtime 4.3.10 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>fix race condition between the FeaturesService and FeatureDeploymentListener</li>
<li>fix --patch-module on Instance startup</li>
<li>add exec:groovy shell command</li>
<li>dependency updates including CVE fixes (Johnzon, BouncyCastle, Commons FileUpload, ...)</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12352694" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Cave project is no longer maintain and has been moved to attic <span class="text-muted">April 15, 2023</span></h3>
<p>As there is no more interest of users and no active contributors, the Karaf team decided to move the Karaf Cave subproject to attic.</p>
<p>The archives are still available for download.</p>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.10.0 has been released! <span class="text-muted">February 24, 2023</span></h3>
<p>Apache Karaf Decanter 2.10.0 is a major release on the 2.x series. It provides:
<ul>
<li>bunch of dependency updates</li>
<li>fix and improvement on the split parser</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351427" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.4.3 has been released! <span class="text-muted">January 10, 2023</span></h3>
<p>Apache Karaf runtime 4.4.3 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>fix threads leak in karaf-maven-plugin:verify goal</li>
<li>fix JMX RmiServer stub IP address assignation</li>
<li>add shell:alias and instance:package shell commands</li>
<li>fix SSH client on Windows</li>
<li>a lot of dependency updates, especially Pax Web 8.0.15 and Aries JAX RS Whiteboard 2.0.2</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12352048" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.3.9 has been released! <span class="text-muted">January 14, 2023</span></h3>
<p>Apache Karaf runtime 4.3.9 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>fix threads leak in karaf-maven-plugin:verify goal</li>
<li>fix JMX RmiServer stub IP address assignation</li>
<li>add shell:alias and instance:package shell commands</li>
<li>fix SSH client on Windows</li>
<li>a lot of dependency updates</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12352383" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf OSGi runtime 4.4.2 has been released! <span class="text-muted">October 23, 2022</span></h3>
<p>Apache Karaf runtime 4.4.2 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>fix several race conditions on clean start</li>
<li>features version alignement</li>
<li>a bunch of dependencies updates</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12352048" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.8 has been released! <span class="text-muted">October 23, 2022</span></h3>
<p>Apache Karaf runtime 4.3.8 is a maintenance release on the 4.3.x series, including many dependency updates, improvements and fixes.
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351577" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.4.1 has been released! <span class="text-muted">July 14, 2022</span></h3>
<p>Apache Karaf runtime 4.4.1 is a maintenance release, bringing a lot of dependency updates and fixes, especially:
<ul>
<li>fix on the exported system packages</li>
<li>fix on the config management in the features service</li>
<li>upgrade to Pax Web 8.0.6, Pax URL 2.6.11, Pax Logging 2.1.3</li>
<li>upgrade OSGi frameworks (both Felix Framework 7.0.5 and Equinox 3.18.0)</li>
<li>upgrade to Spring 5.3.21 and 5.2.22.RELEASE</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351548" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.2.16 has been released! <span class="text-muted">June 19, 2022</span></h3>
<p>Apache Karaf runtime 4.2.16 is a maintenance release. This release is supposed to be the last release on the 4.2.x series. It includes:
<ul>
<li>Pax Logging 1.11.15 upgrade</li>
<li>Pax URL 2.6.10 upgrade</li>
<li>...</li>
</ul>
<a class="btn btn-outline-primary" href="archives.html">Archives »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351218" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.4.0 has been released! <span class="text-muted">April 22, 2022</span></h3>
<p>Apache Karaf runtime 4.4.0 is a new milestone in Karaf runtime roadmap, starting the 4.4.x series. It includes:
<ul>
<li>OSGi R8 support</li>
<li>Pax Web 8.0.x upgrade</li>
<li>Pax Logging 2.1.x upgrade</li>
<li>and much much more!</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12349243" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.7 has been released! <span class="text-muted">April 23, 2022</span></h3>
<p>Apache Karaf runtime 4.3.6 is a maintenance release on the 4.3.x series, including many dependency updates, improvements and fixes.
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351181" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.9.0 has been released! <span class="text-muted">February 20, 2022</span></h3>
<p>Apache Karaf Decanter 2.9.0 is a major release on the 2.x series. It provides:
<ul>
<li>bunch of dependency updates</li>
<li>new property in the log collector to include selected loggers</li>
<li>make the inclusion of Camel history configurable in the Camel collector</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12350585" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.6 has been released! <span class="text-muted">January 14, 2022</span></h3>
<p>Apache Karaf runtime 4.3.6 is a release on the 4.3.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>upgrade to Pax Logging 2.0.14, with log4j 2.17.1 fixing CVE-2021-44832</li>
<li>prepare support for JDK 18</li>
<li>fix issue on Apache Felix FileInstall 3.7.4 fixing deployment issue</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351123" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.2.15 has been released! <span class="text-muted">January 14, 2022</span></h3>
<p>Apache Karaf runtime 4.2.15 is a release on the 4.2.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>upgrade to Pax Loggin 1.11.13 upgrading to log4j 2.17.1 (fixing CVE-2021-44832)</li>
<li>upgrade to Apache Felix FileInstall 3.7.4 fixing deployment issue</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12351124" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.5 has been released! <span class="text-muted">December 19, 2021</span></h3>
<p>Apache Karaf runtime 4.3.5 is a release on the 4.3.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>upgrade to Pax Logging 2.0.12, with log4j 2.17.0 fixing CVE-2021-45105 and logback 1.2.9 fixing CVE-2021-42550</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12350548" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.2.14 has been released! <span class="text-muted">December 24, 2021</span></h3>
<p>Apache Karaf runtime 4.2.14 is a release on the 4.2.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>upgrade to Pax Logging 1.11.12, with log4j 2.17.0 fixing CVE-2021-45105 and logback 1.2.9 fixing CVE-2021-42550</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12350548" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.2.13 has been released! <span class="text-muted">December 19, 2021</span></h3>
<p>Apache Karaf runtime 4.2.13 is a release on the 4.2.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>upgrade to Pax Logging 1.11.11 and log4j 2.16.0 fixing CVE-2021-44228</li>
<li>upgrade to Apache Felix FileInstall 3.7.2 fixing file polling</li>
<li>add kill command to interrupt running threads</li>
<li>fix autoRefresh flag behavior in features service</li>
<li>and much more!</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12350548" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.4 has been released! <span class="text-muted">December 18, 2021</span></h3>
<p>Apache Karaf runtime 4.3.4 is a release on the 4.3.x series.It provides important updates, fixes, improvements, especially:
<ul>
<li>upgrade to Pax Logging 2.0.11 and log4j 2.16.0 fixing CVE-2021-44228</li>
<li>add additional system export packages for JDK11+</li>
<li>upgrade to Pax URL 2.6.8 fixing big memory consumption related to bnd</li>
<li>fix autoRefresh flag behavior in features service</li>
<li>several dependencies upgrades to align versions all together</li>
<li>and much more !</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12350547" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.2.12 has been released! <span class="text-muted">September 16, 2021</span></h3>
<p>Apache Karaf runtime 4.2.11 is a release on the 4.2.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>prevent NPE when creating shell session without in parameter<li>
<li>fix on JMX connection with security manager</li>
<li>fix on war deployment when the war contains module-info.class</li>
<li>fix warning on the org.apache.karaf.specs.locator package</li>
<li>bunch of dependency updates</li>
<li>and much more!</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12349962" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.3 has been released! <span class="text-muted">September 07, 2021</span></h3>
<p>Apache Karaf runtime 4.3.3 is a release on the 4.3.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>first round of the specs features repository. This repository use will spread (in Karaf and third party projects) and we will improve it, but this first round introduces the skeleton we need.</li>
<li>ssh fix new closing socket cleanly</li>
<li>memory leak fix on the blueprint state service</li>
<li>fix on JMX exception push back to the client</li>
<li>bunch of dependency updates</li>
<li>and much more !</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12350142" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.1 has been released! <span class="text-muted">April 02, 2021</span></h3>
<p>Apache Karaf runtime 4.3.1 is a release on the 4.3.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>java.* packages are now part of system packages</li>
<li>fix on configuration with json format</li>
<li>jetty alias feature for backward compatibility</li>
<li>fix default resolver parallelism value</li>
<li>fix on SSH, and log commands</li>
<li>improvements on the JMX layer</li>
<li>env/prop interpolation support on the SSH client</li>
<li>add property to disable auto refresh in features service</li>
<li>and much more !</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12348818" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.2.11 has been released! <span class="text-muted">March 15, 2021</span></h3>
<p>Apache Karaf runtime 4.2.11 is a release on the 4.2.x series. It provides updates, fixes, improvements, especially:
<ul>
<li>Karaf BillOfMaterial</li>
<li>JMXMP improvements for Karaf MBean server</li>
<li>SSH client fixes</li>
<li>log:* commands fixes</li>
<li>bunch of dependency updates</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12348692" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.7.0 has been released! <span class="text-muted">February 15, 2021</span></h3>
<p>Apache Karaf Decanter 2.7.0 is a major release on the 2.x series. It provides dependency updates, fixes, improvements, and new features, especially:
<ul>
<li>refactoring of the Camel Collector as interceptor strategy</li>
<li>improvements on the REST collector</li>
<li>new OpenStack collector</li>
<li>new Apache Druid collector</li>
<li>new Grafana Loki appender</li>
<li>new HDFS appender</li>
<li>new AWS S3 appender</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12349505" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf runtime 4.3.0 has been released! <span class="text-muted">October 30, 2020</span></h3>
<p>Apache Karaf runtime 4.3.0 has been released. It's a new milestone for the project. This first release on the 4.3.x series brings lot of new features, improvements and fixes especially:</p>
<ul>
<li>OSGi R7</li>
<li>JDK 11+</li>
<li>JSON configuration format support</li>
<li>better feature definition using requirements and capabilities</li>
<li>BoM to simplify dependencies management</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12343304" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Cellar 4.2.1 has been released! <span class="text-muted">August 21, 2020</span></h3>
<p>Apache Karaf Cellar 4.2.1 is a major release on the 4.x series. It provides dependency updates and improvements especially:</p>
<ul>
<li>fix startup of the features synchronizer with JDK 1.8</li>
<li>fix hazelcast group manager startup</li>
<li>fix a race condition between ConfigurationAdmin and Cellar group manager</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12348569" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Cellar 4.2.0 has been released! <span class="text-muted">July 18, 2020</span></h3>
<p>Apache Karaf Cellar 4.2.0 is a major release on the 4.x series. It provides dependency updates and improvements especially:</p>
<ul>
<li>possibility to use JCache with appended hazelcast instance</li>
<li>all cluster:* commands should use the node alias when possible</li>
<li>improve cellar groups configuration synchronisation from hazelcast</li>
<li>implement better support to configure Kubernetes API client</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12344252" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.5.0 has been released! <span class="text-muted">June 22, 2020</span></h3>
<p>Apache Karaf Decanter 2.5.0 is a major release on the 2.x series. It provides dependency updates and improvements especially:</p>
<ul>
<li>extended REST support in REST collector and appender (REST verbs, basic authentication, custom headers, ...)</li>
<li>connected mode on the socket collector</li>
<li>streaming mode on the socket appender</li>
<li>new Pax Web Jetty handler collector</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12348163" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.9 has been released! <span class="text-muted">June 9, 2020</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>VerifyMojo performance improvement</li>
<li>Disallow calling getMBeansFromURL</li>
<li>Prevent JMX rebinding</li>
<li>Provide Spring Security 5.3.x feature</li>
</ul>
<div class="pb-3">
<em>See the release note for the librairies update.</em>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12346465" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.4.0 has been released! <span class="text-muted">April 30, 2020</span></h3>
<p>This is a new major release for Apache Decanter 2.x, containing bug fixes, new features, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>New processing layer with first aggregator processor</li>
<li>New prometheus collector</li>
<li>New elasticsearch collector</li>
<li>New configadmin collector</li>
<li>New oshi collector</li>
<li>New redis collector</li>
</ul>
<a class="btn btn-outline-primary" href="download.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12346613" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.3.0 has been released! <span class="text-muted">April 6, 2020</span></h3>
<p>This is a first minor release for Apache Decanter 2.3.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Add prometheus appender</li>
<li>Improve Decanter alerting by supporting time series and multi-attributes</li>
<li>Be able to personalize the email sent by the alerter</li>
<li>Avoid blacklisting of the appenders</li>
<li>Improve Split and Regex parser by casting data</li>
<li>Be able to persist AlertStore data</li>
<li>Use JDK8 in Decanter</li>
<li>Improve SOAP collector by adding request response time</li>
<li>Use a thread pool executor in the collector system</li>
<li>Use non typed index in elasticsearch appender</li>
<li>Add itest coverage in Decanter</li>
<li>Be able to use property/templating in email alerter</li>
</ul>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12345165" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.8 has been released! <span class="text-muted">January 14, 2020</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>HTTP proxy should be able to support several addresses with balancing policies</li>
<li>Add filter attribute on command @Reference annotation</li>
<li>Maven plugin feature to define custom bundle location prefixes</li>
<li>Be able to override the Karaf distribution in KarafTestSupport</li>
<li>Improve the jaas command to be able to add a new realm</li>
<li>Add JMXMP support</li>
</ul>
<div class="pb-3">
<em>See the release note for the librairies update.</em>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12346100" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<!-- 2019 -->
<h2 id="2019" class="pb-3 mb-4 font-italic border-bottom">2019</h2>
<div class="pb-4 mb-3">
<h3 class="text-dark">Karaf Cave 4.2.1 has been released ! <span class="text-muted">November 29, 2019</span></h3>
<p>This is an update patch for Cave 4.2.x series. It brings bug fixes.</p>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12346450" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3">
<h3 class="text-dark">Karaf Cave 4.2.0 has been released ! <span class="text-muted">October 28, 2019</span></h3>
<p>This is the first release in the Cave 4.2.x series. It brings bug fixes, improvements, and a complete refactor to reduce number of bundles and simplify API.</p>
<p>With this new version, you can:</p>
<ul>
<li>Proxy a maven repository with authentication and activate mirroring of the artifacts in local storage.</li>
<li>Manage your repositories with the Karaf scheduler.</li>
</ul>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12343975" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.7 has been released ! <span class="text-muted">September 29, 2019</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Add flag to mark transitive dependencies</li>
<li>Add jetty-proxy bundle in http/jetty feature</li>
<li>Add support for elliptic keys in the PublicKeyLoginModule</li>
<li>ConfigMBean should reflect config:edit command for factory</li>
<li>Move Spring 5.0.x features in spring-legacy features repository</li>
</ul>
<div class="pl-5 pb-3">
<table class="table table-striped table-sm w-75">
<thead class="thead-dark">
<th>Name</th>
<th>Versions</th>
</thead>
<tbody>
<tr>
<td><strong>Pax Web 7.2.11</strong></td>
<td>7.2.10</td>
</tr>
<tr>
<td><strong>Spring</strong></td>
<td>5.1.9.RELEASE</td>
</tr>
<tr>
<td><strong>Aries Proxy</strong></td>
<td>1.1.6</td>
</tr>
<tr>
<td><strong>Aries Spi Fly</strong></td>
<td>1.2.2</td>
</tr>
<tr>
<td><strong>Felix ConfigAdmin</strong></td>
<td>1.9.16</td>
</tr>
<tr>
<td><strong>Felix HTTP</strong></td>
<td>4.0.10</td>
</tr>
<tr>
<td><strong>Jetty</strong></td>
<td>9.4.20.v20190813</td>
</tr>
<tr>
<td><strong>jline</strong></td>
<td>3.12.1</td>
</tr>
<tr>
<td><strong>CXF</strong></td>
<td>3.3.2</td>
</tr>
<tr>
<td><strong>JNA</strong></td>
<td>5.4.0</td>
</tr>
<tr>
<td><strong>Felix WebConsole</strong></td>
<td>4.3.16</td>
</tr>
<tr>
<td><strong>Narayana</strong></td>
<td>5.9.7.Final</td>
</tr>
<tr>
<td><strong>Pax Logging</strong></td>
<td>1.11.2</td>
</tr>
<tr>
<td><strong>Hibernate-validator</strong></td>
<td>6.0.17.Final</td>
</tr>
</tbody>
</table>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12345539" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.6 has been released ! <span class="text-muted">June 10, 2019</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Add override property to <code><config/></code> in feature</li>
<li>Add <code>web:install</code> command</li>
<li>Add <code>spring-messaging</code> feature</li>
<li>Add option to <code>feature:uninstall</code> to cleanup feature <code>configs/config-files</code></li>
</ul>
<div class="pl-5 pb-3">
<table class="table table-striped table-sm w-75">
<thead class="thead-dark">
<th>Name</th>
<th>Versions</th>
</thead>
<tbody>
<tr>
<td><strong>felix-http</strong></td>
<td>4.0.8</td>
</tr>
<tr>
<td><strong>Pax-Web</strong></td>
<td>7.2.10</td>
</tr>
<tr>
<td><strong>Quartz</strong></td>
<td>2.3.1</td>
</tr>
<tr>
<td><strong>XBean</strong></td>
<td>4.14</td>
</tr>
<tr>
<td><strong>Felix WebConsole MemoryUsage plugin</strong></td>
<td>1.0.10</td>
</tr>
<tr>
<td><strong>Maven</strong></td>
<td>3.6.1</td>
</tr>
<tr>
<td><strong>jansi</strong></td>
<td>1.18</td>
</tr>
<tr>
<td><strong>narayana</strong></td>
<td>5.9.5.Final</td>
</tr>
<tr>
<td><strong>jline</strong></td>
<td>3.11.0</td>
</tr>
<tr>
<td><strong>Pax Web</strong></td>
<td>7.2.9</td>
</tr>
<tr>
<td><strong>Jetty</strong></td>
<td>9.4.18</td>
</tr>
<tr>
<td><strong>Spring Security</strong></td>
<td>5.1.5.RELEASE</td>
</tr>
<tr>
<td><strong>Spring</strong></td>
<td>4.3.24.RELEASE</td>
</tr>
<tr>
<td><strong>Spring</strong></td>
<td>5.0.14.RELEASE</td>
</tr>
<tr>
<td><strong>Spring</strong></td>
<td>5.1.7.RELEASE</td>
</tr>
<tr>
<td><strong>Apache Felix Webconsole</strong></td>
<td>4.3.12</td>
</tr>
<tr>
<td><strong>equinox</strong></td>
<td>3.12.100</td>
</tr>
<tr>
<td><strong>Pax Logging</strong></td>
<td>1.10.2</td>
</tr>
<tr>
<td><strong>ActiveMQ</strong></td>
<td>5.15.9</td>
</tr>
<tr>
<td><strong>aspectj</strong></td>
<td>1.9.4</td>
</tr>
<tr>
<td><strong>ant</strong></td>
<td>1.10.5</td>
</tr>
<tr>
<td><strong>cglib</strong></td>
<td>3.2.9</td>
</tr>
<tr>
<td><strong>JNA</strong></td>
<td>5.3.1</td>
</tr>
<tr>
<td><strong>commons-beanutils</strong></td>
<td>1.9.3</td>
</tr>
<tr>
<td><strong>commons-codec</strong></td>
<td>1.12</td>
</tr>
<tr>
<td><strong>commons-fileupload</strong></td>
<td>1.4</td>
</tr>
<tr>
<td><strong>commons-pool2</strong></td>
<td>2.6.2</td>
</tr>
<tr>
<td><strong>jolokia</strong></td>
<td>1.6.1</td>
</tr>
<tr>
<td><strong>serp</strong></td>
<td>1.15.1</td>
</tr>
<tr>
<td><strong>Pax JMS</strong></td>
<td>1.0.4</td>
</tr>
<tr>
<td><strong>bndlib</strong></td>
<td>3.5.0</td>
</tr>
</tbody>
</table>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12345365" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.5 has been released ! <span class="text-muted">April 21, 2019</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Add karaf:dockerfile & karaf:docker Maven goals</li>
<li>Add SortedProperties class to karaf tooling</li>
<li>Add principal info to audit logs</li>
<li>Add MAX_CONCURRENT_SESSIONS option to Karaf ssh server</li>
<li>Prevent relative path in config install command and ConfigMBean</li>
<li>Introduce new property EnabledProtocals for org.apache.karaf.management.cfg</li>
</ul>
<div class="pl-5 pb-3">
<table class="table table-striped table-sm w-75">
<thead class="thead-dark">
<th>Name</th>
<th>Versions</th>
</thead>
<tbody>
<tr>
<td><strong>hibernate-validator</strong></td>
<td>6.0.16.Final</td>
</tr>
<tr>
<td><strong>Pax-jdbc</strong></td>
<td>1.3.5</td>
</tr>
<tr>
<td><strong>Pax-transx</strong></td>
<td>0.4.3</td>
</tr>
<tr>
<td><strong>Aries Blueprint Core</strong></td>
<td>1.10.2</td>
</tr>
<tr>
<td><strong>Equinox</strong></td>
<td>3.13.300</td>
</tr>
<tr>
<td><strong>Narayana</strong></td>
<td>5.9.4.Final</td>
</tr>
<tr>
<td><strong>Geronimo Connector</strong></td>
<td>3.1.4</td>
</tr>
</tbody>
</table>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12345153" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Decanter 2.2.0 has been released ! <span class="text-muted">March 22, 2019</span></h3>
<p>This is a first minor release for Apache Decanter 2.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Add websocket appender</li>
<li>Add InfluxDB appender</li>
<li>Add TimescaleDB appender</li>
<li>Add SOAP collector</li>
<li>Improve the API Parser adding key data as parameter</li>
<li>Be able to add property filters on appenders</li>
<li>Be able to define the marshaller in log appender</li>
<li>Reuse existing karafName, hostAddress, hostName if exist in "bridgeable" collectors</li>
<li>Kafka appender should perform send().get()</li>
<li>Provide split and regex parsers</li>
<li>REST collector should populate the status code when connection doesn't work</li>
</ul>
<div class="pl-5 pb-3">
<table class="table table-striped table-sm w-75">
<thead class="thead-dark">
<th>Name</th>
<th>Versions</th>
</thead>
<tbody>
<tr>
<td><strong>Netty and netty handler versions in Karaf Decanter Cassandra</strong></td>
<td>4.0.37.Final</td>
</tr>
<tr>
<td><strong>Spring-boot</strong></td>
<td>2.1.3.RELEASE</td>
</tr>
</tbody>
</table>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12344040" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.4 has been released ! <span class="text-muted">March 18, 2019</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Ensure karaf-maven-plugin can honor start-level for bootBundles</li>
<li>Allow to override/blacklist some features for VerifyMojo</li>
<li>Add skip option to karaf-maven-plugin</li>
<li>Improve shell:exit help message</li>
<li>FeaturesProcessorImpl improvement for bundle override</li>
</ul>
<div class="pl-5 pb-3">
<table class="table table-striped table-sm w-75">
<thead class="thead-dark">
<th>Name</th>
<th>Versions</th>
</thead>
<tbody>
<tr>
<td><strong>Aries JPA</strong></td>
<td>2.7.2</td>
</tr>
<tr>
<td><strong>Felix ConfigAdmin</strong></td>
<td>1.9.14</td>
</tr>
<tr>
<td><strong>Spring</strong></td>
<td>5.1.5.RELEASE</td>
</tr>
<tr>
<td><strong>Spring</strong></td>
<td>4.3.22.RELEASE</td>
</tr>
<tr>
<td><strong>Felix SCR</strong></td>
<td>2.1.16</td>
</tr>
<tr>
<td><strong>Awaitility</strong></td>
<td>3.1.6</td>
</tr>
<tr>
<td><strong>ASM</strong></td>
<td>7.1</td>
</tr>
<tr>
<td><strong>jline</strong></td>
<td>3.10.0</td>
</tr>
</tbody>
</table>
</div>
<a class="btn btn-outline-primary" href="/documentation.html">Download »</a>
<a class="btn btn-outline-primary" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311140&version=12344856" target="_blank">Release Notes »</a>
</div><!-- /.blog-post -->
<div class="pb-4 mb-3 border-bottom">
<h3 class="text-dark">Karaf Runtime 4.2.3 has been released ! <span class="text-muted">February 11, 2019</span></h3>
<p>This is an update patch for Apache Karaf 4.2.x, containing bug fixes, improvements and dependency upgrades.</p>
<p>Among this new features, we have:</p>
<ul>
<li>Add operation to get features contained in a feature repository</li>
<li>Service wrapper should add selected JAVA_HOME also to the PATH variable</li>
<li>Enhance bundle report to reflect effective installed features for custom distributions</li>
<li>Create Aries JAXRS whiteboard example</li>
</ul>
<div class="pl-5 pb-3">
<table class="table table-striped table-sm w-75">
<thead class="thead-dark">
<th>Name</th>
<th>Versions</th>
</thead>
<tbody>
<tr>
<td><strong>pax-transx</strong></td>
<td>0.4.1</td>
</tr>
<tr>
<td><strong>Aries Proxy Impl</strong></td>
<td>1.1.4</td>
</tr>
<tr>
<td><strong>pax-web</strong></td>
<td>7.2.7</td>
</tr>
<tr>
<td><strong>jaxb</strong></td>
<td>2.3.2</td>
</tr>
<tr>
<td><strong>itstack-commons-runtime</strong></td>
<td>3.0.8</td>
</tr>
<tr>
<td><strong>Aries JPA</strong></td>
<td>2.7.1</td>
</tr>
<tr>
<td><strong>Felix Gogo</strong></td>
<td>1.1.4</td>
</tr>
<tr>
<td><strong>Maven Wagon</strong></td>
<td>3.3.1</td>
</tr>
<tr>
<td><strong>awaitility</strong></td>
<td>3.1.5</td>
</tr>
<tr>
<td><strong>Narayana</strong></td>
<td>5.9.2.Final</td>
</tr>
<tr>
<td><strong>pax-cdi</strong></td>
<td>1.1.0</td>
</tr>
<tr>
<td><strong>pax-jms</strong></td>
<td>1.0.3</td>
</tr>
<tr>
<td><strong>pax-jdbc</strong></td>
<td>1.3.3</td>
</tr>
<tr>
<td><strong>pax-transx</strong></td>
<td>0.4.2</td>
</tr>
<tr>
<td><strong>pax-web</strong></td>
<td>7.2.7</td>
</tr>
<tr>
<td><strong>Hibernate</strong></td>
<td>5.2.17.Final</td>
</tr>
<tr>
<td><strong>Felix Framework</strong></td>
<td>5.6.12</td>
</tr>
<tr>
<td><strong>javax.annotation</strong></td>